iotronic-ui/iotronic_ui/iot/services/forms.py

163 lines
5.5 KiB
Python

# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import logging
from django.utils.translation import ugettext_lazy as _
from horizon import exceptions
from horizon import forms
from horizon import messages
from openstack_dashboard.api import iotronic
from openstack_dashboard import policy
LOG = logging.getLogger(__name__)
class CreateServiceForm(forms.SelfHandlingForm):
name = forms.CharField(label=_("Service Name"))
port = forms.IntegerField(
label=_("Port"),
help_text=_("Service port")
)
protocol = forms.ChoiceField(
label=_("Protocol"),
choices=[('TCP', _('TCP')), ('UDP', _('UDP'))],
widget=forms.Select(
attrs={'class': 'switchable', 'data-slug': 'slug-protocol'},
)
)
def handle(self, request, data):
try:
iotronic.service_create(request, data["name"],
data["port"], data["protocol"])
messages.success(request, _("Service " + str(data["name"]) +
" created successfully."))
return True
except Exception:
exceptions.handle(request, _('Unable to create service.'))
class UpdateServiceForm(forms.SelfHandlingForm):
uuid = forms.CharField(label=_("Service ID"), widget=forms.HiddenInput)
name = forms.CharField(label=_("Service Name"))
port = forms.IntegerField(label=_("Port"))
protocol = forms.ChoiceField(
label=_("Protocol"),
choices=[('TCP', _('TCP')), ('UDP', _('UDP'))],
widget=forms.Select(
attrs={'class': 'switchable', 'data-slug': 'slug-protocol'},
)
)
def __init__(self, *args, **kwargs):
super(UpdateServiceForm, self).__init__(*args, **kwargs)
# Admin
if policy.check((("iot", "iot:update_services"),), self.request):
# LOG.debug("ADMIN")
pass
# Manager or Admin of the iot project
elif (policy.check((("iot", "iot_manager"),), self.request) or
policy.check((("iot", "iot_admin"),), self.request)):
# LOG.debug("NO-edit IOT ADMIN")
pass
# Other users
else:
if self.request.user.id != kwargs["initial"]["owner"]:
# LOG.debug("IMMUTABLE FIELDS")
self.fields["name"].widget.attrs = {'readonly': 'readonly'}
self.fields["port"].widget.attrs = {'readonly': 'readonly'}
self.fields["protocol"].widget.attrs = {'readonly': 'readonly'}
def handle(self, request, data):
try:
iotronic.service_update(request, data["uuid"],
{"name": data["name"],
"port": data["port"],
"protocol": data["protocol"]})
messages.success(request, _("Service updated successfully."))
return True
except Exception:
exceptions.handle(request, _('Unable to update service.'))
class ServiceActionForm(forms.SelfHandlingForm):
uuid = forms.CharField(label=_("Plugin ID"), widget=forms.HiddenInput)
name = forms.CharField(
label=_('Service Name'),
widget=forms.TextInput(attrs={'readonly': 'readonly'})
)
board_list = forms.MultipleChoiceField(
label=_("Boards List"),
widget=forms.SelectMultiple(
attrs={'class': 'switchable', 'data-slug': 'slug-select-boards'}),
help_text=_("Select boards in this pool")
)
action = forms.ChoiceField(
label=_("Action"),
choices=[('ServiceEnable', _('Enable')),
('ServiceDisable', _('Disable')),
('ServiceRestore', _('Restore'))],
widget=forms.Select(
attrs={'class': 'switchable', 'data-slug': 'slug-action'},
)
)
def __init__(self, *args, **kwargs):
super(ServiceActionForm, self).__init__(*args, **kwargs)
# input=kwargs.get('initial',{})
self.fields["board_list"].choices = kwargs["initial"]["board_list"]
def handle(self, request, data):
counter = 0
for board in data["board_list"]:
for key, value in self.fields["board_list"].choices:
if key == board:
try:
action = iotronic.service_action(request, key,
data["uuid"],
data["action"])
message_text = action
messages.success(request, _(message_text))
if counter != len(data["board_list"]) - 1:
counter += 1
else:
return True
except Exception:
message_text = "Unable to execute action on board " \
+ str(value) + "."
exceptions.handle(request, _(message_text))
break