Newer
Older
# 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.
Lluis Gifre Renom
committed
from flask import jsonify, redirect, render_template, Blueprint, flash, session, url_for, request
from common.proto.context_pb2 import Empty, ContextIdList, TopologyId, TopologyIdList
from common.tools.descriptor.Loader import DescriptorLoader, compose_notifications
from common.tools.grpc.Tools import grpc_message_to_json_string
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
Lluis Gifre Renom
committed
from device.client.DeviceClient import DeviceClient
from webui.service.main.forms import ContextTopologyForm, DescriptorForm
context_client = ContextClient()
device_client = DeviceClient()
Lluis Gifre Renom
committed
def process_descriptors(descriptors):
try:
descriptors_file = request.files[descriptors.name]
descriptors_data = descriptors_file.read()
descriptors = json.loads(descriptors_data)
except Exception as e: # pylint: disable=broad-except
flash(f'Unable to load descriptor file: {str(e)}', 'danger')
return
descriptor_loader = DescriptorLoader(descriptors)
results = descriptor_loader.process()
for message,level in compose_notifications(results):
flash(message, level)
@main.route('/', methods=['GET', 'POST'])
def home():
context_client.connect()
Lluis Gifre Renom
committed
device_client.connect()
context_topology_form: ContextTopologyForm = ContextTopologyForm()
context_topology_form.context_topology.choices.append(('', 'Select...'))
ctx_response: ContextIdList = context_client.ListContextIds(Empty())
for context_id in ctx_response.context_ids:
context_uuid = context_id.context_uuid.uuid
topo_response: TopologyIdList = context_client.ListTopologyIds(context_id)
for topology_id in topo_response.topology_ids:
topology_uuid = topology_id.topology_uuid.uuid
context_topology_uuid = 'ctx[{:s}]/topo[{:s}]'.format(context_uuid, topology_uuid)
context_topology_name = 'Context({:s}):Topology({:s})'.format(context_uuid, topology_uuid)
context_topology_entry = (context_topology_uuid, context_topology_name)
context_topology_form.context_topology.choices.append(context_topology_entry)
if context_topology_form.validate_on_submit():
context_topology_uuid = context_topology_form.context_topology.data
if len(context_topology_uuid) > 0:
match = re.match('ctx\[([^\]]+)\]\/topo\[([^\]]+)\]', context_topology_uuid)
if match is not None:
session['context_topology_uuid'] = context_topology_uuid = match.group(0)
session['context_uuid'] = context_uuid = match.group(1)
session['topology_uuid'] = topology_uuid = match.group(2)
MSG = f'Context({context_uuid})/Topology({topology_uuid}) successfully selected.'
flash(MSG, 'success')
return redirect(url_for("main.home"))
if 'context_topology_uuid' in session:
context_topology_form.context_topology.data = session['context_topology_uuid']
Lluis Gifre Renom
committed
descriptor_form: DescriptorForm = DescriptorForm()
try:
if descriptor_form.validate_on_submit():
process_descriptors(descriptor_form.descriptors)
return redirect(url_for("main.home"))
Lluis Gifre Renom
committed
logger.exception('Descriptor load failed')
flash(f'Descriptor load failed: `{str(e)}`', 'danger')
finally:
context_client.close()
device_client.close()
return render_template(
'main/home.html', context_topology_form=context_topology_form, descriptor_form=descriptor_form)
Lluis Gifre Renom
committed
@main.route('/topology', methods=['GET'])
def topology():
context_client.connect()
try:
if 'context_topology_uuid' not in session:
return jsonify({'devices': [], 'links': []})
context_uuid = session['context_uuid']
topology_uuid = session['topology_uuid']
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}
topo_link_uuids = {link_id .link_uuid .uuid for link_id in grpc_topology.link_ids }
Lluis Gifre Renom
committed
response = context_client.ListDevices(Empty())
devices = []
for device in response.devices:
if device.device_id.device_uuid.uuid not in topo_device_uuids: continue
devices.append({
'id': device.device_id.device_uuid.uuid,
'name': device.device_id.device_uuid.uuid,
'type': device.device_type,
})
Lluis Gifre Renom
committed
response = context_client.ListLinks(Empty())
if link.link_id.link_uuid.uuid not in topo_link_uuids: continue
if len(link.link_endpoint_ids) != 2:
str_link = grpc_message_to_json_string(link)
logger.warning('Unexpected link with len(endpoints) != 2: {:s}'.format(str_link))
continue
links.append({
'id': link.link_id.link_uuid.uuid,
'source': link.link_endpoint_ids[0].device_id.device_uuid.uuid,
'target': link.link_endpoint_ids[1].device_id.device_uuid.uuid,
})
Lluis Gifre Renom
committed
return jsonify({'devices': devices, 'links': links})
except:
logger.exception('Error retrieving topology')
finally:
context_client.close()
@main.get('/about')
def about():
return render_template('main/about.html')
@main.get('/debug')
def debug():
return render_template('main/debug.html')
Lluis Gifre Renom
committed
@main.get('/resetsession')
def reset_session():
session.clear()