# -*- coding: utf-8 -*- # # 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 . import aiohttp import asyncio from ....web.route import Route from ....schemas.project import PROJECT_OBJECT_SCHEMA, PROJECT_CREATE_SCHEMA from ....controller import Controller import logging log = logging.getLogger() class ProjectHandler: @classmethod @Route.post( r"/projects", description="Create a new project on the server", status_codes={ 201: "Project created", 409: "Project already created" }, output=PROJECT_OBJECT_SCHEMA, input=PROJECT_CREATE_SCHEMA) def create_project(request, response): controller = Controller.instance() project = yield from controller.addProject( name=request.json.get("name"), path=request.json.get("path"), project_id=request.json.get("project_id"), temporary=request.json.get("temporary", False)) response.set_status(201) response.json(project) @classmethod @Route.get( r"/projects/{project_id}", description="Get the project", parameters={ "project_id": "The UUID of the project", }, status_codes={ 200: "The project exist", 404: "The project doesn't exist" }) def get(request, response): controller = Controller.instance() project = controller.getProject(request.match_info["project_id"]) response.json(project) @classmethod @Route.post( r"/projects/{project_id}/commit", description="Write changes on disk", parameters={ "project_id": "The UUID of the project", }, status_codes={ 204: "Changes have been written on disk", 404: "The project doesn't exist" }) def commit(request, response): controller = Controller.instance() project = controller.getProject(request.match_info["project_id"]) yield from project.commit() response.set_status(204) @classmethod @Route.post( r"/projects/{project_id}/close", description="Close a project", parameters={ "project_id": "The UUID of the project", }, status_codes={ 204: "The project has been closed", 404: "The project doesn't exist" }) def close(request, response): controller = Controller.instance() project = controller.getProject(request.match_info["project_id"]) yield from project.close() controller.removeProject(project) response.set_status(204) @classmethod @Route.delete( r"/projects/{project_id}", description="Delete a project from disk", parameters={ "project_id": "The UUID of the project", }, status_codes={ 204: "Changes have been written on disk", 404: "The project doesn't exist" }) def delete(request, response): controller = Controller.instance() project = controller.getProject(request.match_info["project_id"]) yield from project.delete() controller.removeProject(project) response.set_status(204) @classmethod @Route.get( r"/projects/{project_id}/notifications", description="Receive notifications about the projects", parameters={ "project_id": "The UUID of the project", }, status_codes={ 200: "End of stream", 404: "The project doesn't exist" }) def notification(request, response): controller = Controller.instance() project = controller.getProject(request.match_info["project_id"]) response.content_type = "application/json" response.set_status(200) response.enable_chunked_encoding() # Very important: do not send a content lenght otherwise QT close the connection but curl can consume the Feed response.content_length = None response.start(request) with project.queue() as queue: while True: try: msg = yield from queue.get_json(5) response.write(("{}\n".format(msg)).encode("utf-8")) except asyncio.futures.CancelledError as e: break @classmethod @Route.get( r"/projects/{project_id}/notifications/ws", description="Receive notifications about the projects via Websocket", parameters={ "project_id": "The UUID of the project", }, status_codes={ 200: "End of stream", 404: "The project doesn't exist" }) def notification_ws(request, response): controller = Controller.instance() project = controller.getProject(request.match_info["project_id"]) ws = aiohttp.web.WebSocketResponse() yield from ws.prepare(request) with project.queue() as queue: while True: try: notif = yield from queue.get_json(5) except asyncio.futures.CancelledError as e: break ws.send_str(notif) return ws