2015-01-14 02:05:26 +02:00
|
|
|
# -*- 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-04-27 23:19:17 +03:00
|
|
|
from aiohttp.web import HTTPConflict
|
2016-05-14 03:00:07 +03:00
|
|
|
from gns3server.web.route import Route
|
|
|
|
from gns3server.schemas.nio import NIO_SCHEMA
|
|
|
|
from gns3server.compute.vpcs import VPCS
|
|
|
|
|
|
|
|
from gns3server.schemas.vpcs import (
|
|
|
|
VPCS_CREATE_SCHEMA,
|
|
|
|
VPCS_UPDATE_SCHEMA,
|
|
|
|
VPCS_OBJECT_SCHEMA
|
|
|
|
)
|
2015-01-14 02:05:26 +02:00
|
|
|
|
|
|
|
|
2015-01-20 03:30:57 +02:00
|
|
|
class VPCSHandler:
|
2015-01-20 14:24:00 +02:00
|
|
|
|
2015-01-18 21:12:11 +02:00
|
|
|
"""
|
|
|
|
API entry points for VPCS.
|
|
|
|
"""
|
|
|
|
|
2015-01-14 02:05:26 +02:00
|
|
|
@Route.post(
|
2016-05-11 20:35:36 +03:00
|
|
|
r"/projects/{project_id}/vpcs/nodes",
|
2015-02-05 02:13:35 +02:00
|
|
|
parameters={
|
2016-05-14 03:00:07 +03:00
|
|
|
"project_id": "Project UUID"
|
2015-02-05 02:13:35 +02:00
|
|
|
},
|
2015-01-14 02:05:26 +02:00
|
|
|
status_codes={
|
2015-01-24 01:36:58 +02:00
|
|
|
201: "Instance created",
|
2015-02-05 02:13:35 +02:00
|
|
|
400: "Invalid request",
|
2015-01-14 02:05:26 +02:00
|
|
|
409: "Conflict"
|
|
|
|
},
|
2015-01-18 21:12:11 +02:00
|
|
|
description="Create a new VPCS instance",
|
2015-01-14 02:05:26 +02:00
|
|
|
input=VPCS_CREATE_SCHEMA,
|
|
|
|
output=VPCS_OBJECT_SCHEMA)
|
|
|
|
def create(request, response):
|
2015-01-18 21:12:11 +02:00
|
|
|
|
2015-01-14 02:05:26 +02:00
|
|
|
vpcs = VPCS.instance()
|
2016-05-14 03:00:07 +03:00
|
|
|
vm = yield from vpcs.create_node(request.json["name"],
|
|
|
|
request.match_info["project_id"],
|
|
|
|
request.json.get("node_id"),
|
|
|
|
console=request.json.get("console"),
|
|
|
|
startup_script=request.json.get("startup_script"))
|
2015-01-21 23:01:15 +02:00
|
|
|
response.set_status(201)
|
2016-05-14 03:00:07 +03:00
|
|
|
response.json(vm)
|
2015-01-14 02:05:26 +02:00
|
|
|
|
2015-01-21 18:21:17 +02:00
|
|
|
@Route.get(
|
2016-05-11 20:35:36 +03:00
|
|
|
r"/projects/{project_id}/vpcs/nodes/{node_id}",
|
2015-01-21 18:21:17 +02:00
|
|
|
parameters={
|
2016-05-14 03:00:07 +03:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID"
|
2015-01-21 18:21:17 +02:00
|
|
|
},
|
|
|
|
status_codes={
|
2015-01-21 23:01:15 +02:00
|
|
|
200: "Success",
|
2015-02-05 02:13:35 +02:00
|
|
|
400: "Invalid request",
|
2015-01-24 01:36:58 +02:00
|
|
|
404: "Instance doesn't exist"
|
2015-01-21 18:21:17 +02:00
|
|
|
},
|
2015-01-24 01:36:58 +02:00
|
|
|
description="Get a VPCS instance",
|
|
|
|
output=VPCS_OBJECT_SCHEMA)
|
2015-01-21 18:21:17 +02:00
|
|
|
def show(request, response):
|
|
|
|
|
|
|
|
vpcs_manager = VPCS.instance()
|
2016-05-11 20:35:36 +03:00
|
|
|
vm = vpcs_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
2015-01-21 18:21:17 +02:00
|
|
|
response.json(vm)
|
|
|
|
|
2015-01-21 22:46:16 +02:00
|
|
|
@Route.put(
|
2016-05-11 20:35:36 +03:00
|
|
|
r"/projects/{project_id}/vpcs/nodes/{node_id}",
|
2015-01-23 11:11:40 +02:00
|
|
|
parameters={
|
2016-05-14 03:00:07 +03:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID"
|
2015-01-23 11:11:40 +02:00
|
|
|
},
|
2015-01-21 22:46:16 +02:00
|
|
|
status_codes={
|
2015-01-24 01:36:58 +02:00
|
|
|
200: "Instance updated",
|
2015-02-05 02:13:35 +02:00
|
|
|
400: "Invalid request",
|
2015-01-24 01:36:58 +02:00
|
|
|
404: "Instance doesn't exist",
|
2015-01-21 22:46:16 +02:00
|
|
|
409: "Conflict"
|
|
|
|
},
|
|
|
|
description="Update a VPCS instance",
|
|
|
|
input=VPCS_UPDATE_SCHEMA,
|
|
|
|
output=VPCS_OBJECT_SCHEMA)
|
|
|
|
def update(request, response):
|
|
|
|
|
|
|
|
vpcs_manager = VPCS.instance()
|
2016-05-11 20:35:36 +03:00
|
|
|
vm = vpcs_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
2015-01-21 22:46:16 +02:00
|
|
|
vm.name = request.json.get("name", vm.name)
|
|
|
|
vm.console = request.json.get("console", vm.console)
|
|
|
|
vm.startup_script = request.json.get("startup_script", vm.startup_script)
|
2016-05-18 12:00:35 +03:00
|
|
|
vm.updated()
|
2015-01-21 22:46:16 +02:00
|
|
|
response.json(vm)
|
|
|
|
|
2015-01-22 12:34:10 +02:00
|
|
|
@Route.delete(
|
2016-05-11 20:35:36 +03:00
|
|
|
r"/projects/{project_id}/vpcs/nodes/{node_id}",
|
2015-01-23 11:11:40 +02:00
|
|
|
parameters={
|
2016-05-14 03:00:07 +03:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID"
|
2015-01-23 11:11:40 +02:00
|
|
|
},
|
2015-01-22 12:34:10 +02:00
|
|
|
status_codes={
|
2015-01-24 01:36:58 +02:00
|
|
|
204: "Instance deleted",
|
2015-02-05 02:13:35 +02:00
|
|
|
400: "Invalid request",
|
2015-01-24 01:36:58 +02:00
|
|
|
404: "Instance doesn't exist"
|
2015-01-22 12:34:10 +02:00
|
|
|
},
|
|
|
|
description="Delete a VPCS instance")
|
|
|
|
def delete(request, response):
|
|
|
|
|
2016-05-11 20:35:36 +03:00
|
|
|
yield from VPCS.instance().delete_node(request.match_info["node_id"])
|
2015-01-22 12:34:10 +02:00
|
|
|
response.set_status(204)
|
|
|
|
|
2015-01-14 19:52:02 +02:00
|
|
|
@Route.post(
|
2016-05-11 20:35:36 +03:00
|
|
|
r"/projects/{project_id}/vpcs/nodes/{node_id}/start",
|
2015-01-14 19:52:02 +02:00
|
|
|
parameters={
|
2016-05-14 03:00:07 +03:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID"
|
2015-01-14 19:52:02 +02:00
|
|
|
},
|
|
|
|
status_codes={
|
2015-01-24 01:36:58 +02:00
|
|
|
204: "Instance started",
|
2015-02-05 02:13:35 +02:00
|
|
|
400: "Invalid request",
|
2015-01-24 01:36:58 +02:00
|
|
|
404: "Instance doesn't exist"
|
2015-01-14 19:52:02 +02:00
|
|
|
},
|
2016-02-02 19:25:17 +02:00
|
|
|
description="Start a VPCS instance",
|
|
|
|
output=VPCS_OBJECT_SCHEMA)
|
2015-01-22 02:41:35 +02:00
|
|
|
def start(request, response):
|
2015-01-18 21:12:11 +02:00
|
|
|
|
2015-01-14 19:52:02 +02:00
|
|
|
vpcs_manager = VPCS.instance()
|
2016-05-11 20:35:36 +03:00
|
|
|
vm = vpcs_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
2015-01-22 02:41:35 +02:00
|
|
|
yield from vm.start()
|
2016-02-02 19:25:17 +02:00
|
|
|
response.json(vm)
|
2015-01-14 19:52:02 +02:00
|
|
|
|
|
|
|
@Route.post(
|
2016-05-11 20:35:36 +03:00
|
|
|
r"/projects/{project_id}/vpcs/nodes/{node_id}/stop",
|
2015-01-14 19:52:02 +02:00
|
|
|
parameters={
|
2016-05-14 03:00:07 +03:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID"
|
2015-01-14 19:52:02 +02:00
|
|
|
},
|
|
|
|
status_codes={
|
2015-01-24 01:36:58 +02:00
|
|
|
204: "Instance stopped",
|
2015-02-05 02:13:35 +02:00
|
|
|
400: "Invalid request",
|
2015-01-24 01:36:58 +02:00
|
|
|
404: "Instance doesn't exist"
|
2015-01-14 19:52:02 +02:00
|
|
|
},
|
2015-01-18 21:12:11 +02:00
|
|
|
description="Stop a VPCS instance")
|
2015-01-22 02:41:35 +02:00
|
|
|
def stop(request, response):
|
2015-01-18 21:12:11 +02:00
|
|
|
|
2015-01-14 19:52:02 +02:00
|
|
|
vpcs_manager = VPCS.instance()
|
2016-05-11 20:35:36 +03:00
|
|
|
vm = vpcs_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
2015-01-22 02:41:35 +02:00
|
|
|
yield from vm.stop()
|
2015-01-21 23:01:15 +02:00
|
|
|
response.set_status(204)
|
2015-01-14 19:52:02 +02:00
|
|
|
|
2015-01-24 01:36:58 +02:00
|
|
|
@Route.post(
|
2016-05-11 20:35:36 +03:00
|
|
|
r"/projects/{project_id}/vpcs/nodes/{node_id}/reload",
|
2015-01-24 01:36:58 +02:00
|
|
|
parameters={
|
2016-05-14 03:00:07 +03:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID",
|
2015-01-24 01:36:58 +02:00
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
204: "Instance reloaded",
|
2015-02-05 02:13:35 +02:00
|
|
|
400: "Invalid request",
|
2015-01-24 01:36:58 +02:00
|
|
|
404: "Instance doesn't exist"
|
|
|
|
},
|
|
|
|
description="Reload a VPCS instance")
|
|
|
|
def reload(request, response):
|
|
|
|
|
|
|
|
vpcs_manager = VPCS.instance()
|
2016-05-11 20:35:36 +03:00
|
|
|
vm = vpcs_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
2015-01-24 01:36:58 +02:00
|
|
|
yield from vm.reload()
|
|
|
|
response.set_status(204)
|
|
|
|
|
2015-01-14 02:05:26 +02:00
|
|
|
@Route.post(
|
2016-05-11 20:35:36 +03:00
|
|
|
r"/projects/{project_id}/vpcs/nodes/{node_id}/adapters/{adapter_number:\d+}/ports/{port_number:\d+}/nio",
|
2015-01-14 02:05:26 +02:00
|
|
|
parameters={
|
2016-05-14 03:00:07 +03:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID",
|
2015-02-13 19:09:50 +02:00
|
|
|
"adapter_number": "Network adapter where the nio is located",
|
2015-01-31 21:01:23 +02:00
|
|
|
"port_number": "Port where the nio should be added"
|
2015-01-14 02:05:26 +02:00
|
|
|
},
|
|
|
|
status_codes={
|
2015-01-18 21:23:42 +02:00
|
|
|
201: "NIO created",
|
2015-02-05 02:13:35 +02:00
|
|
|
400: "Invalid request",
|
2015-01-24 01:36:58 +02:00
|
|
|
404: "Instance doesn't exist"
|
2015-01-14 02:05:26 +02:00
|
|
|
},
|
2015-01-24 01:36:58 +02:00
|
|
|
description="Add a NIO to a VPCS instance",
|
2015-04-27 23:19:17 +03:00
|
|
|
input=NIO_SCHEMA,
|
|
|
|
output=NIO_SCHEMA)
|
2015-01-14 02:05:26 +02:00
|
|
|
def create_nio(request, response):
|
2015-01-18 21:23:42 +02:00
|
|
|
|
2015-01-16 17:20:10 +02:00
|
|
|
vpcs_manager = VPCS.instance()
|
2016-05-11 20:35:36 +03:00
|
|
|
vm = vpcs_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
2015-04-27 23:19:17 +03:00
|
|
|
nio_type = request.json["type"]
|
|
|
|
if nio_type not in ("nio_udp", "nio_tap"):
|
|
|
|
raise HTTPConflict(text="NIO of type {} is not supported".format(nio_type))
|
2015-01-23 03:04:24 +02:00
|
|
|
nio = vpcs_manager.create_nio(vm.vpcs_path, request.json)
|
2015-01-31 21:01:23 +02:00
|
|
|
vm.port_add_nio_binding(int(request.match_info["port_number"]), nio)
|
2015-01-21 23:01:15 +02:00
|
|
|
response.set_status(201)
|
2015-01-16 18:09:45 +02:00
|
|
|
response.json(nio)
|
2015-01-14 02:05:26 +02:00
|
|
|
|
2015-01-16 22:39:58 +02:00
|
|
|
@Route.delete(
|
2016-05-11 20:35:36 +03:00
|
|
|
r"/projects/{project_id}/vpcs/nodes/{node_id}/adapters/{adapter_number:\d+}/ports/{port_number:\d+}/nio",
|
2015-01-14 02:05:26 +02:00
|
|
|
parameters={
|
2016-05-14 03:00:07 +03:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID",
|
2015-02-13 19:09:50 +02:00
|
|
|
"adapter_number": "Network adapter where the nio is located",
|
2015-01-31 21:01:23 +02:00
|
|
|
"port_number": "Port from where the nio should be removed"
|
2015-01-14 02:05:26 +02:00
|
|
|
},
|
|
|
|
status_codes={
|
2015-01-21 23:01:15 +02:00
|
|
|
204: "NIO deleted",
|
2015-02-05 02:13:35 +02:00
|
|
|
400: "Invalid request",
|
2015-01-24 01:36:58 +02:00
|
|
|
404: "Instance doesn't exist"
|
2015-01-14 02:05:26 +02:00
|
|
|
},
|
2015-01-24 01:36:58 +02:00
|
|
|
description="Remove a NIO from a VPCS instance")
|
2015-01-16 22:39:58 +02:00
|
|
|
def delete_nio(request, response):
|
2015-01-18 21:12:11 +02:00
|
|
|
|
2015-01-16 22:39:58 +02:00
|
|
|
vpcs_manager = VPCS.instance()
|
2016-05-11 20:35:36 +03:00
|
|
|
vm = vpcs_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
2015-01-31 21:01:23 +02:00
|
|
|
vm.port_remove_nio_binding(int(request.match_info["port_number"]))
|
2015-01-22 11:55:11 +02:00
|
|
|
response.set_status(204)
|