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

152 lines
5.0 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 CreateFleetForm(forms.SelfHandlingForm):
name = forms.CharField(label=_("Fleet Name"))
description = forms.CharField(
label=_("Description"),
widget=forms.Textarea(
attrs={'class': 'switchable', 'data-slug': 'slug-description'})
)
def handle(self, request, data):
try:
iotronic.fleet_create(request, data["name"],
data["description"])
messages.success(request, _("Fleet " + str(data["name"]) +
" created successfully."))
return True
except Exception:
exceptions.handle(request, _('Unable to create fleet.'))
class UpdateFleetForm(forms.SelfHandlingForm):
uuid = forms.CharField(label=_("Fleet ID"), widget=forms.HiddenInput)
name = forms.CharField(label=_("Fleet Name"))
description = forms.CharField(
label=_("Description"),
widget=forms.Textarea(
attrs={'class': 'switchable', 'data-slug': 'slug-description'})
)
def __init__(self, *args, **kwargs):
super(UpdateFleetForm, self).__init__(*args, **kwargs)
# Admin
if policy.check((("iot", "iot:update_fleets"),), 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["description"].widget.attrs = {'readonly': 'readonly'}
def handle(self, request, data):
try:
iotronic.fleet_update(request, data["uuid"],
{"name": data["name"],
"description": data["description"]})
messages.success(request, _("Fleet updated successfully."))
return True
except Exception:
exceptions.handle(request, _('Unable to update fleet.'))
class FleetActionForm(forms.SelfHandlingForm):
uuid = forms.CharField(label=_("Plugin ID"), widget=forms.HiddenInput)
name = forms.CharField(
label=_('Fleet 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=[('FleetEnable', _('Enable')),
('FleetDisable', _('Disable')),
('FleetRestore', _('Restore'))],
widget=forms.Select(
attrs={'class': 'switchable', 'data-slug': 'slug-action'},
)
)
def __init__(self, *args, **kwargs):
super(FleetActionForm, 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.fleet_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