2016-03-11 17:51:35 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright (C) 2016 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
from ....web.route import Route
|
|
|
|
from ....schemas.link import LINK_OBJECT_SCHEMA
|
|
|
|
from ....controller.project import Project
|
|
|
|
from ....controller import Controller
|
|
|
|
|
|
|
|
|
|
|
|
class LinkHandler:
|
|
|
|
"""
|
|
|
|
API entry point for Link
|
|
|
|
"""
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
@Route.post(
|
|
|
|
r"/projects/{project_id}/links",
|
|
|
|
parameters={
|
|
|
|
"project_id": "UUID for the project"
|
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
201: "Link created",
|
|
|
|
400: "Invalid request"
|
|
|
|
},
|
|
|
|
description="Create a new link instance",
|
|
|
|
input=LINK_OBJECT_SCHEMA,
|
|
|
|
output=LINK_OBJECT_SCHEMA)
|
|
|
|
def create(request, response):
|
|
|
|
|
|
|
|
controller = Controller.instance()
|
|
|
|
project = controller.getProject(request.match_info["project_id"])
|
|
|
|
link = yield from project.addLink()
|
|
|
|
for vm in request.json["vms"]:
|
|
|
|
yield from link.addVM(project.getVM(vm["vm_id"]),
|
2016-03-11 18:02:50 +02:00
|
|
|
vm["adapter_number"],
|
|
|
|
vm["port_number"])
|
2016-03-14 17:51:47 +02:00
|
|
|
yield from link.create()
|
2016-03-11 17:51:35 +02:00
|
|
|
response.set_status(201)
|
|
|
|
response.json(link)
|
2016-03-14 18:40:27 +02:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
@Route.delete(
|
|
|
|
r"/projects/{project_id}/links/{link_id}",
|
|
|
|
parameters={
|
|
|
|
"project_id": "UUID for the project",
|
|
|
|
"link_id": "UUID of the link"
|
|
|
|
},
|
|
|
|
status_codes={
|
2016-03-14 21:54:05 +02:00
|
|
|
204: "Link deleted",
|
2016-03-14 18:40:27 +02:00
|
|
|
400: "Invalid request"
|
|
|
|
},
|
|
|
|
description="Delete a link instance")
|
|
|
|
def delete(request, response):
|
|
|
|
|
|
|
|
controller = Controller.instance()
|
|
|
|
project = controller.getProject(request.match_info["project_id"])
|
|
|
|
link = project.getLink(request.match_info["link_id"])
|
|
|
|
yield from link.delete()
|
2016-03-14 21:54:05 +02:00
|
|
|
response.set_status(204)
|
2016-03-14 18:40:27 +02:00
|
|
|
response.json(link)
|