# # Copyright (C) 2015 GNS3 Technologies Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . from ..web.route import Route from ..controller import Controller from ..compute.port_manager import PortManager from ..compute.project_manager import ProjectManager from ..version import __version__ class IndexHandler: @classmethod @Route.get( r"/", description="Home page for GNS3Server" ) def index(request, response): response.template("index.html") @classmethod @Route.get( r"/compute", description="Ressources used by GNS3 Compute" ) def compute(request, response): response.template("compute.html", port_manager=PortManager.instance(), project_manager=ProjectManager.instance() ) @classmethod @Route.get( r"/controller", description="Ressources used by GNS3 Controller" ) def controller(request, response): response.template("controller.html", controller=Controller.instance() ) @classmethod @Route.get( r"/projects/{project_id}", description="Ressources used by GNS3 Controller" ) def project(request, response): controller = Controller.instance() response.template("project.html", project=controller.get_project(request.match_info["project_id"])) @classmethod @Route.get( r"/v1/version", description="Old API" ) def get_v1(request, response): response.json({"version": __version__})