Skip to content
routes.py 6.62 KiB
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.
Lucie LONG's avatar
Lucie LONG committed

Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
import json, logging, re
from flask import jsonify, redirect, render_template, Blueprint, flash, session, url_for, request
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
from common.proto.context_pb2 import Empty, ContextIdList, TopologyId, TopologyIdList
from common.tools.descriptor.Loader import DescriptorLoader, compose_notifications
Lucie LONG's avatar
Lucie LONG committed
from common.tools.grpc.Tools import grpc_message_to_json_string
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
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
Lucie LONG's avatar
Lucie LONG committed
from service.client.ServiceClient import ServiceClient
Lucie LONG's avatar
Lucie LONG committed
from slice.client.SliceClient import SliceClient
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
from webui.service.main.forms import ContextTopologyForm, DescriptorForm
Lucie LONG's avatar
Lucie LONG committed

main = Blueprint('main', __name__)
Lucie LONG's avatar
Lucie LONG committed

context_client = ContextClient()
device_client = DeviceClient()
Lucie LONG's avatar
Lucie LONG committed
service_client = ServiceClient()
Lucie LONG's avatar
Lucie LONG committed
slice_client = SliceClient()

logger = logging.getLogger(__name__)
Lucie LONG's avatar
Lucie LONG 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
Lucie LONG's avatar
Lucie LONG committed

Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    descriptor_loader = DescriptorLoader(descriptors)
    results = descriptor_loader.process()
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    for message,level in compose_notifications(results):
        flash(message, level)
Lucie LONG's avatar
Lucie LONG committed

@main.route('/', methods=['GET', 'POST'])
def home():
    context_client.connect()
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    context_topology_form: ContextTopologyForm = ContextTopologyForm()
    context_topology_form.context_topology.choices.append(('', 'Select...'))
Lucie LONG's avatar
Lucie LONG committed

Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    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)
Lucie LONG's avatar
Lucie LONG committed

Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    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"))
Lucie LONG's avatar
Lucie LONG committed

Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    if 'context_topology_uuid' in session:
        context_topology_form.context_topology.data = session['context_topology_uuid']
Lucie LONG's avatar
Lucie LONG 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's avatar
Lluis Gifre Renom committed
    except Exception as e: # pylint: disable=broad-except
        logger.exception('Descriptor load failed')
        flash(f'Descriptor load failed: `{str(e)}`', 'danger')
    finally:
        context_client.close()
        device_client.close()
Lucie LONG's avatar
Lucie LONG committed

Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    return render_template(
        'main/home.html', context_topology_form=context_topology_form, descriptor_form=descriptor_form)
Lucie LONG's avatar
Lucie LONG committed

@main.route('/topology', methods=['GET'])
def topology():
    context_client.connect()
    try:
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
        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  }

        response = context_client.ListDevices(Empty())
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
        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,
            })
Lucie LONG's avatar
Lucie LONG committed

        response = context_client.ListLinks(Empty())
Lucie LONG's avatar
Lucie LONG committed
        links = []
        for link in response.links:
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
            if link.link_id.link_uuid.uuid not in topo_link_uuids: continue
Lucie LONG's avatar
Lucie LONG committed
            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,
            })
Lucie LONG's avatar
Lucie LONG committed

        return jsonify({'devices': devices, 'links': links})
    except:
        logger.exception('Error retrieving topology')
    finally:
        context_client.close()
Lucie LONG's avatar
Lucie LONG committed

@main.get('/about')
def about():
    return render_template('main/about.html')
Lucie LONG's avatar
Lucie LONG committed

Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
@main.get('/debug')
def debug():
    return render_template('main/debug.html')
Lucie LONG's avatar
Lucie LONG committed

@main.get('/resetsession')
def reset_session():
    session.clear()
Lucie LONG's avatar
Lucie LONG committed
    return redirect(url_for("main.home"))