# Copyright 2021-2023 H2020 TeraFlow (https://www.teraflow-h2020.eu/) # # 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. from flask import current_app, render_template, Blueprint, flash, session, redirect, url_for from common.proto.context_pb2 import ( ConfigActionEnum, ConfigRule, Device, DeviceDriverEnum, DeviceId, DeviceList, DeviceOperationalStatusEnum, Empty, TopologyId) from common.tools.object_factory.Context import json_context_id from common.tools.object_factory.Topology import json_topology_id from context.client.ContextClient import ContextClient from device.client.DeviceClient import DeviceClient from webui.service.device.forms import AddDeviceForm device = Blueprint('device', __name__, url_prefix='/device') context_client = ContextClient() device_client = DeviceClient() @device.get('/') def home(): if 'context_topology_uuid' not in session: flash("Please select a context!", "warning") return redirect(url_for("main.home")) context_uuid = session['context_uuid'] topology_uuid = session['topology_uuid'] context_client.connect() json_topo_id = json_topology_id(topology_uuid, context_id=json_context_id(context_uuid)) grpc_topology = context_client.GetTopology(TopologyId(**json_topo_id)) topo_device_uuids = {device_id.device_uuid.uuid for device_id in grpc_topology.device_ids} grpc_devices: DeviceList = context_client.ListDevices(Empty()) context_client.close() devices = [ device for device in grpc_devices.devices if device.device_id.device_uuid.uuid in topo_device_uuids ] return render_template( 'device/home.html', devices=devices, dde=DeviceDriverEnum, dose=DeviceOperationalStatusEnum) @device.route('add', methods=['GET', 'POST']) def add(): form = AddDeviceForm() # listing enum values form.operational_status.choices = [(-1, 'Select...')] for key, value in DeviceOperationalStatusEnum.DESCRIPTOR.values_by_name.items(): form.operational_status.choices.append( (DeviceOperationalStatusEnum.Value(key), key.replace('DEVICEOPERATIONALSTATUS_', ''))) # device driver ids device_driver_ids = [] for key in DeviceDriverEnum.DESCRIPTOR.values_by_name: device_driver_ids.append(f"{DeviceDriverEnum.Value(key)}={key.replace('DEVICEDRIVER_', '')}") device_driver_ids = ', '.join(device_driver_ids) if form.validate_on_submit(): device = Device() device.device_id.device_uuid.uuid = form.device_id.data device.device_type = form.device_type.data if '\n' not in form.device_config.data: data = form.device_config.data.strip() + '\n' else: data = form.device_config.data.strip() for config in data.split('\n'): if len(config.strip()) > 0: parts = config.strip().split('=') config_rule: ConfigRule = ConfigRule() config_rule.action = ConfigActionEnum.CONFIGACTION_SET config_rule.custom.resource_key = parts[0].strip() config_rule.custom.resource_value = parts[1].strip() device.device_config.config_rules.append(config_rule) device.device_operational_status = form.operational_status.data if ',' not in form.device_drivers.data: data = form.device_drivers.data.strip() + ',' else: data = form.device_drivers.data.strip() for driver in data.split(','): driver = driver.strip() if len(driver) == 0: continue device.device_drivers.append(int(driver)) try: device_client.connect() response: DeviceId = device_client.AddDevice(device) device_client.close() flash(f'New device was created with ID "{response.device_uuid.uuid}".', 'success') return redirect(url_for('device.home')) except Exception as e: flash(f'Problem adding the device. {e.details()}', 'danger') return render_template('device/add.html', form=form, submit_text='Add New Device', device_driver_ids=device_driver_ids) @device.route('detail/', methods=['GET', 'POST']) def detail(device_uuid: str): request = DeviceId() request.device_uuid.uuid = device_uuid context_client.connect() response = context_client.GetDevice(request) context_client.close() return render_template('device/detail.html', device=response, dde=DeviceDriverEnum, dose=DeviceOperationalStatusEnum) @device.get('/delete') def delete(device_uuid): try: # first, check if device exists! # request: DeviceId = DeviceId() # request.device_uuid.uuid = device_uuid # response: Device = client.GetDevice(request) # TODO: finalize implementation request = DeviceId() request.device_uuid.uuid = device_uuid device_client.connect() response = device_client.DeleteDevice(request) device_client.close() flash(f'Device "{device_uuid}" deleted successfully!', 'success') except Exception as e: flash(f'Problem deleting device "{device_uuid}": {e.details()}', 'danger') current_app.logger.exception(e) return redirect(url_for('device.home'))