2015-02-11 14:37:05 +00: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-02-16 19:08:04 +00:00
|
|
|
import os
|
2017-11-13 21:12:39 +00:00
|
|
|
|
|
|
|
import aiohttp.web
|
2015-02-16 19:08:04 +00:00
|
|
|
|
2016-05-14 00:00:07 +00:00
|
|
|
from gns3server.web.route import Route
|
|
|
|
from gns3server.schemas.nio import NIO_SCHEMA
|
|
|
|
from gns3server.compute.iou import IOU
|
|
|
|
|
|
|
|
from gns3server.schemas.node import (
|
|
|
|
NODE_CAPTURE_SCHEMA,
|
|
|
|
NODE_LIST_IMAGES_SCHEMA,
|
|
|
|
)
|
|
|
|
|
|
|
|
from gns3server.schemas.iou import (
|
|
|
|
IOU_CREATE_SCHEMA,
|
|
|
|
IOU_START_SCHEMA,
|
2017-02-02 14:34:39 +00:00
|
|
|
IOU_OBJECT_SCHEMA
|
2016-05-14 00:00:07 +00:00
|
|
|
)
|
2015-02-11 14:37:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
class IOUHandler:
|
|
|
|
|
|
|
|
"""
|
|
|
|
API entry points for IOU.
|
|
|
|
"""
|
|
|
|
|
|
|
|
@Route.post(
|
2016-05-11 17:35:36 +00:00
|
|
|
r"/projects/{project_id}/iou/nodes",
|
2015-02-11 14:37:05 +00:00
|
|
|
parameters={
|
2016-05-14 00:00:07 +00:00
|
|
|
"project_id": "Project UUID"
|
2015-02-11 14:37:05 +00:00
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
201: "Instance created",
|
|
|
|
400: "Invalid request",
|
|
|
|
409: "Conflict"
|
|
|
|
},
|
|
|
|
description="Create a new IOU instance",
|
|
|
|
input=IOU_CREATE_SCHEMA,
|
|
|
|
output=IOU_OBJECT_SCHEMA)
|
|
|
|
def create(request, response):
|
|
|
|
|
|
|
|
iou = IOU.instance()
|
2016-05-11 17:35:36 +00:00
|
|
|
vm = yield from iou.create_node(request.json.pop("name"),
|
|
|
|
request.match_info["project_id"],
|
|
|
|
request.json.get("node_id"),
|
2017-11-16 09:52:19 +00:00
|
|
|
path=request.json.get("path"),
|
2018-03-24 11:11:21 +00:00
|
|
|
console=request.json.get("console"),
|
|
|
|
console_type=request.json.get("console_type", "telnet"))
|
2015-04-12 21:09:37 +00:00
|
|
|
|
|
|
|
for name, value in request.json.items():
|
|
|
|
if hasattr(vm, name) and getattr(vm, name) != value:
|
2018-03-12 06:38:50 +00:00
|
|
|
if name == "application_id":
|
|
|
|
continue # we must ignore this to avoid overwriting the application_id allocated by the IOU manager
|
2015-06-06 21:15:03 +00:00
|
|
|
if name == "startup_config_content" and (vm.startup_config_content and len(vm.startup_config_content) > 0):
|
|
|
|
continue
|
|
|
|
if name == "private_config_content" and (vm.private_config_content and len(vm.private_config_content) > 0):
|
2015-04-24 13:12:58 +00:00
|
|
|
continue
|
2017-11-16 09:52:19 +00:00
|
|
|
if request.json.get("use_default_iou_values") and (name == "ram" or name == "nvram"):
|
|
|
|
continue
|
2015-04-12 21:09:37 +00:00
|
|
|
setattr(vm, name, value)
|
2015-02-11 14:37:05 +00:00
|
|
|
response.set_status(201)
|
|
|
|
response.json(vm)
|
|
|
|
|
|
|
|
@Route.get(
|
2016-05-11 17:35:36 +00:00
|
|
|
r"/projects/{project_id}/iou/nodes/{node_id}",
|
2015-02-11 14:37:05 +00:00
|
|
|
parameters={
|
2016-05-14 00:00:07 +00:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID"
|
2015-02-11 14:37:05 +00:00
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
200: "Success",
|
|
|
|
400: "Invalid request",
|
|
|
|
404: "Instance doesn't exist"
|
|
|
|
},
|
2016-05-14 00:00:07 +00:00
|
|
|
description="Get an IOU instance",
|
2015-02-11 14:37:05 +00:00
|
|
|
output=IOU_OBJECT_SCHEMA)
|
|
|
|
def show(request, response):
|
|
|
|
|
|
|
|
iou_manager = IOU.instance()
|
2016-05-11 17:35:36 +00:00
|
|
|
vm = iou_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
2015-02-11 14:37:05 +00:00
|
|
|
response.json(vm)
|
|
|
|
|
|
|
|
@Route.put(
|
2016-05-11 17:35:36 +00:00
|
|
|
r"/projects/{project_id}/iou/nodes/{node_id}",
|
2015-02-11 14:37:05 +00:00
|
|
|
parameters={
|
2016-05-14 00:00:07 +00:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID"
|
2015-02-11 14:37:05 +00:00
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
200: "Instance updated",
|
|
|
|
400: "Invalid request",
|
|
|
|
404: "Instance doesn't exist",
|
|
|
|
409: "Conflict"
|
|
|
|
},
|
2016-05-14 00:00:07 +00:00
|
|
|
description="Update an IOU instance",
|
2016-07-18 16:43:55 +00:00
|
|
|
input=IOU_OBJECT_SCHEMA,
|
2015-02-11 14:37:05 +00:00
|
|
|
output=IOU_OBJECT_SCHEMA)
|
|
|
|
def update(request, response):
|
|
|
|
|
|
|
|
iou_manager = IOU.instance()
|
2016-05-11 17:35:36 +00:00
|
|
|
vm = iou_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
2015-02-12 20:02:52 +00:00
|
|
|
|
2015-04-12 21:09:37 +00:00
|
|
|
for name, value in request.json.items():
|
|
|
|
if hasattr(vm, name) and getattr(vm, name) != value:
|
2018-03-12 06:38:50 +00:00
|
|
|
if name == "application_id":
|
|
|
|
continue # we must ignore this to avoid overwriting the application_id allocated by the IOU manager
|
2015-04-12 21:09:37 +00:00
|
|
|
setattr(vm, name, value)
|
2017-11-16 09:52:19 +00:00
|
|
|
|
|
|
|
if vm.use_default_iou_values:
|
|
|
|
# update the default IOU values in case the image or use_default_iou_values have changed
|
|
|
|
# this is important to have the correct NVRAM amount in order to correctly push the configs to the NVRAM
|
|
|
|
yield from vm.update_default_iou_values()
|
2016-05-18 09:00:35 +00:00
|
|
|
vm.updated()
|
2015-02-11 14:37:05 +00:00
|
|
|
response.json(vm)
|
|
|
|
|
|
|
|
@Route.delete(
|
2016-05-11 17:35:36 +00:00
|
|
|
r"/projects/{project_id}/iou/nodes/{node_id}",
|
2015-02-11 14:37:05 +00:00
|
|
|
parameters={
|
2016-05-14 00:00:07 +00:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID"
|
2015-02-11 14:37:05 +00:00
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
204: "Instance deleted",
|
|
|
|
400: "Invalid request",
|
|
|
|
404: "Instance doesn't exist"
|
|
|
|
},
|
2016-05-14 00:00:07 +00:00
|
|
|
description="Delete an IOU instance")
|
2015-02-11 14:37:05 +00:00
|
|
|
def delete(request, response):
|
|
|
|
|
2016-05-11 17:35:36 +00:00
|
|
|
yield from IOU.instance().delete_node(request.match_info["node_id"])
|
2015-02-11 14:37:05 +00:00
|
|
|
response.set_status(204)
|
|
|
|
|
2017-07-25 09:39:46 +00:00
|
|
|
@Route.post(
|
|
|
|
r"/projects/{project_id}/iou/nodes/{node_id}/duplicate",
|
|
|
|
parameters={
|
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID"
|
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
201: "Instance duplicated",
|
|
|
|
404: "Instance doesn't exist"
|
|
|
|
},
|
|
|
|
description="Duplicate a IOU instance")
|
|
|
|
def duplicate(request, response):
|
|
|
|
|
|
|
|
new_node = yield from IOU.instance().duplicate_node(
|
|
|
|
request.match_info["node_id"],
|
|
|
|
request.json["destination_node_id"]
|
|
|
|
)
|
|
|
|
response.set_status(201)
|
|
|
|
response.json(new_node)
|
|
|
|
|
2015-02-11 14:37:05 +00:00
|
|
|
@Route.post(
|
2016-05-11 17:35:36 +00:00
|
|
|
r"/projects/{project_id}/iou/nodes/{node_id}/start",
|
2015-02-11 14:37:05 +00:00
|
|
|
parameters={
|
2016-05-14 00:00:07 +00:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID"
|
2015-02-11 14:37:05 +00:00
|
|
|
},
|
|
|
|
status_codes={
|
2016-02-02 17:25:17 +00:00
|
|
|
200: "Instance started",
|
2015-02-11 14:37:05 +00:00
|
|
|
400: "Invalid request",
|
|
|
|
404: "Instance doesn't exist"
|
|
|
|
},
|
2015-07-09 14:06:52 +00:00
|
|
|
input=IOU_START_SCHEMA,
|
2016-02-02 17:25:17 +00:00
|
|
|
output=IOU_OBJECT_SCHEMA,
|
2016-05-14 00:00:07 +00:00
|
|
|
description="Start an IOU instance")
|
2015-02-11 14:37:05 +00:00
|
|
|
def start(request, response):
|
|
|
|
|
|
|
|
iou_manager = IOU.instance()
|
2016-05-11 17:35:36 +00:00
|
|
|
vm = iou_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
2015-07-09 14:06:52 +00:00
|
|
|
|
|
|
|
for name, value in request.json.items():
|
|
|
|
if hasattr(vm, name) and getattr(vm, name) != value:
|
|
|
|
setattr(vm, name, value)
|
|
|
|
|
2015-02-11 14:37:05 +00:00
|
|
|
yield from vm.start()
|
2016-02-02 17:25:17 +00:00
|
|
|
response.json(vm)
|
2015-02-11 14:37:05 +00:00
|
|
|
|
|
|
|
@Route.post(
|
2016-05-11 17:35:36 +00:00
|
|
|
r"/projects/{project_id}/iou/nodes/{node_id}/stop",
|
2015-02-11 14:37:05 +00:00
|
|
|
parameters={
|
2016-05-14 00:00:07 +00:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID"
|
2015-02-11 14:37:05 +00:00
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
204: "Instance stopped",
|
|
|
|
400: "Invalid request",
|
|
|
|
404: "Instance doesn't exist"
|
|
|
|
},
|
2016-05-14 00:00:07 +00:00
|
|
|
description="Stop an IOU instance")
|
2015-02-11 14:37:05 +00:00
|
|
|
def stop(request, response):
|
|
|
|
|
|
|
|
iou_manager = IOU.instance()
|
2016-05-11 17:35:36 +00:00
|
|
|
vm = iou_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
2015-02-11 14:37:05 +00:00
|
|
|
yield from vm.stop()
|
|
|
|
response.set_status(204)
|
|
|
|
|
2018-01-18 03:43:04 +00:00
|
|
|
@Route.post(
|
|
|
|
r"/projects/{project_id}/iou/nodes/{node_id}/suspend",
|
|
|
|
parameters={
|
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID"
|
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
204: "Instance suspended",
|
|
|
|
400: "Invalid request",
|
|
|
|
404: "Instance doesn't exist"
|
|
|
|
},
|
|
|
|
description="Suspend an IOU instance (does nothing)")
|
|
|
|
def suspend(request, response):
|
|
|
|
|
|
|
|
iou_manager = IOU.instance()
|
|
|
|
iou_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
|
|
|
response.set_status(204)
|
|
|
|
|
2015-02-11 14:37:05 +00:00
|
|
|
@Route.post(
|
2016-05-11 17:35:36 +00:00
|
|
|
r"/projects/{project_id}/iou/nodes/{node_id}/reload",
|
2015-02-11 14:37:05 +00:00
|
|
|
parameters={
|
2016-05-14 00:00:07 +00:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID",
|
2015-02-11 14:37:05 +00:00
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
204: "Instance reloaded",
|
|
|
|
400: "Invalid request",
|
|
|
|
404: "Instance doesn't exist"
|
|
|
|
},
|
2016-05-14 00:00:07 +00:00
|
|
|
description="Reload an IOU instance")
|
2015-02-11 14:37:05 +00:00
|
|
|
def reload(request, response):
|
|
|
|
|
|
|
|
iou_manager = IOU.instance()
|
2016-05-11 17:35:36 +00:00
|
|
|
vm = iou_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
2015-02-11 14:37:05 +00:00
|
|
|
yield from vm.reload()
|
|
|
|
response.set_status(204)
|
2015-02-12 21:28:12 +00:00
|
|
|
|
|
|
|
@Route.post(
|
2016-05-11 17:35:36 +00:00
|
|
|
r"/projects/{project_id}/iou/nodes/{node_id}/adapters/{adapter_number:\d+}/ports/{port_number:\d+}/nio",
|
2015-02-12 21:28:12 +00:00
|
|
|
parameters={
|
2016-05-14 00:00:07 +00:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID",
|
2015-02-13 17:09:50 +00:00
|
|
|
"adapter_number": "Network adapter where the nio is located",
|
2015-02-12 21:28:12 +00:00
|
|
|
"port_number": "Port where the nio should be added"
|
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
201: "NIO created",
|
|
|
|
400: "Invalid request",
|
|
|
|
404: "Instance doesn't exist"
|
|
|
|
},
|
|
|
|
description="Add a NIO to a IOU instance",
|
2015-04-27 20:19:17 +00:00
|
|
|
input=NIO_SCHEMA,
|
|
|
|
output=NIO_SCHEMA)
|
2015-02-12 21:28:12 +00:00
|
|
|
def create_nio(request, response):
|
|
|
|
|
|
|
|
iou_manager = IOU.instance()
|
2016-05-11 17:35:36 +00:00
|
|
|
vm = iou_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
2015-04-27 20:19:17 +00:00
|
|
|
nio_type = request.json["type"]
|
2016-06-01 23:50:31 +00:00
|
|
|
if nio_type not in ("nio_udp", "nio_tap", "nio_ethernet", "nio_generic_ethernet"):
|
2017-11-13 21:12:39 +00:00
|
|
|
raise aiohttp.web.HTTPConflict(text="NIO of type {} is not supported".format(nio_type))
|
2016-06-25 00:35:39 +00:00
|
|
|
nio = iou_manager.create_nio(request.json)
|
2016-01-11 14:19:15 +00:00
|
|
|
yield from vm.adapter_add_nio_binding(int(request.match_info["adapter_number"]), int(request.match_info["port_number"]), nio)
|
2015-02-12 21:28:12 +00:00
|
|
|
response.set_status(201)
|
|
|
|
response.json(nio)
|
|
|
|
|
2017-07-17 09:21:54 +00:00
|
|
|
@Route.put(
|
|
|
|
r"/projects/{project_id}/iou/nodes/{node_id}/adapters/{adapter_number:\d+}/ports/{port_number:\d+}/nio",
|
|
|
|
parameters={
|
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID",
|
|
|
|
"adapter_number": "Network adapter where the nio is located",
|
|
|
|
"port_number": "Port where the nio should be added"
|
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
201: "NIO updated",
|
|
|
|
400: "Invalid request",
|
|
|
|
404: "Instance doesn't exist"
|
|
|
|
},
|
|
|
|
description="Update a NIO from a IOU instance",
|
|
|
|
input=NIO_SCHEMA,
|
|
|
|
output=NIO_SCHEMA)
|
|
|
|
def update_nio(request, response):
|
|
|
|
|
|
|
|
iou_manager = IOU.instance()
|
|
|
|
vm = iou_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
|
|
|
adapter_number = int(request.match_info["adapter_number"])
|
|
|
|
port_number = int(request.match_info["port_number"])
|
|
|
|
nio = vm.adapters[adapter_number].get_nio(port_number)
|
|
|
|
if "filters" in request.json and nio:
|
|
|
|
nio.filters = request.json["filters"]
|
|
|
|
yield from vm.adapter_update_nio_binding(
|
|
|
|
adapter_number,
|
|
|
|
port_number,
|
|
|
|
nio)
|
|
|
|
response.set_status(201)
|
|
|
|
response.json(nio)
|
|
|
|
|
2015-02-12 21:28:12 +00:00
|
|
|
@Route.delete(
|
2016-05-11 17:35:36 +00:00
|
|
|
r"/projects/{project_id}/iou/nodes/{node_id}/adapters/{adapter_number:\d+}/ports/{port_number:\d+}/nio",
|
2015-02-12 21:28:12 +00:00
|
|
|
parameters={
|
2016-05-14 00:00:07 +00:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID",
|
2015-02-13 17:09:50 +00:00
|
|
|
"adapter_number": "Network adapter where the nio is located",
|
2015-02-12 21:28:12 +00:00
|
|
|
"port_number": "Port from where the nio should be removed"
|
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
204: "NIO deleted",
|
|
|
|
400: "Invalid request",
|
|
|
|
404: "Instance doesn't exist"
|
|
|
|
},
|
|
|
|
description="Remove a NIO from a IOU instance")
|
|
|
|
def delete_nio(request, response):
|
|
|
|
|
|
|
|
iou_manager = IOU.instance()
|
2016-05-11 17:35:36 +00:00
|
|
|
vm = iou_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
2016-01-11 14:19:15 +00:00
|
|
|
yield from vm.adapter_remove_nio_binding(int(request.match_info["adapter_number"]), int(request.match_info["port_number"]))
|
2015-02-16 19:08:04 +00:00
|
|
|
response.set_status(204)
|
|
|
|
|
|
|
|
@Route.post(
|
2016-05-11 17:35:36 +00:00
|
|
|
r"/projects/{project_id}/iou/nodes/{node_id}/adapters/{adapter_number:\d+}/ports/{port_number:\d+}/start_capture",
|
2015-02-16 19:08:04 +00:00
|
|
|
parameters={
|
2016-05-14 00:00:07 +00:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID",
|
2015-02-16 19:08:04 +00:00
|
|
|
"adapter_number": "Adapter to start a packet capture",
|
|
|
|
"port_number": "Port on the adapter"
|
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
200: "Capture started",
|
|
|
|
400: "Invalid request",
|
2015-03-06 13:46:31 +00:00
|
|
|
404: "Instance doesn't exist",
|
|
|
|
409: "VM not started"
|
2015-02-16 19:08:04 +00:00
|
|
|
},
|
2016-05-14 00:00:07 +00:00
|
|
|
description="Start a packet capture on an IOU VM instance",
|
2016-05-11 17:35:36 +00:00
|
|
|
input=NODE_CAPTURE_SCHEMA)
|
2015-02-16 19:08:04 +00:00
|
|
|
def start_capture(request, response):
|
|
|
|
|
|
|
|
iou_manager = IOU.instance()
|
2016-05-11 17:35:36 +00:00
|
|
|
vm = iou_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
2015-02-16 19:08:04 +00:00
|
|
|
adapter_number = int(request.match_info["adapter_number"])
|
|
|
|
port_number = int(request.match_info["port_number"])
|
|
|
|
pcap_file_path = os.path.join(vm.project.capture_working_directory(), request.json["capture_file_name"])
|
|
|
|
yield from vm.start_capture(adapter_number, port_number, pcap_file_path, request.json["data_link_type"])
|
2015-03-06 13:46:31 +00:00
|
|
|
response.json({"pcap_file_path": str(pcap_file_path)})
|
2015-02-16 19:08:04 +00:00
|
|
|
|
|
|
|
@Route.post(
|
2016-05-11 17:35:36 +00:00
|
|
|
r"/projects/{project_id}/iou/nodes/{node_id}/adapters/{adapter_number:\d+}/ports/{port_number:\d+}/stop_capture",
|
2015-02-16 19:08:04 +00:00
|
|
|
parameters={
|
2016-05-14 00:00:07 +00:00
|
|
|
"project_id": "Project UUID",
|
|
|
|
"node_id": "Node UUID",
|
2015-02-16 19:08:04 +00:00
|
|
|
"adapter_number": "Adapter to stop a packet capture",
|
|
|
|
"port_number": "Port on the adapter (always 0)"
|
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
204: "Capture stopped",
|
|
|
|
400: "Invalid request",
|
2015-03-06 13:46:31 +00:00
|
|
|
404: "Instance doesn't exist",
|
|
|
|
409: "VM not started"
|
2015-02-16 19:08:04 +00:00
|
|
|
},
|
2016-05-14 00:00:07 +00:00
|
|
|
description="Stop a packet capture on an IOU VM instance")
|
2015-02-16 19:08:04 +00:00
|
|
|
def stop_capture(request, response):
|
|
|
|
|
|
|
|
iou_manager = IOU.instance()
|
2016-05-11 17:35:36 +00:00
|
|
|
vm = iou_manager.get_node(request.match_info["node_id"], project_id=request.match_info["project_id"])
|
2015-03-06 13:46:31 +00:00
|
|
|
|
2015-02-16 19:08:04 +00:00
|
|
|
adapter_number = int(request.match_info["adapter_number"])
|
|
|
|
port_number = int(request.match_info["port_number"])
|
|
|
|
yield from vm.stop_capture(adapter_number, port_number)
|
2015-02-12 21:28:12 +00:00
|
|
|
response.set_status(204)
|
2015-02-17 13:52:51 +00:00
|
|
|
|
2015-04-13 12:33:13 +00:00
|
|
|
@Route.get(
|
2016-05-14 00:00:07 +00:00
|
|
|
r"/iou/images",
|
2015-04-13 12:33:13 +00:00
|
|
|
status_codes={
|
2016-05-14 00:00:07 +00:00
|
|
|
200: "List of IOU images",
|
2015-04-13 12:33:13 +00:00
|
|
|
},
|
2016-05-14 00:00:07 +00:00
|
|
|
description="Retrieve the list of IOU images",
|
2016-05-11 17:35:36 +00:00
|
|
|
output=NODE_LIST_IMAGES_SCHEMA)
|
2016-05-14 00:00:07 +00:00
|
|
|
def list_iou_images(request, response):
|
2015-04-13 12:33:13 +00:00
|
|
|
|
|
|
|
iou_manager = IOU.instance()
|
2016-05-14 00:00:07 +00:00
|
|
|
images = yield from iou_manager.list_images()
|
2015-04-13 12:33:13 +00:00
|
|
|
response.set_status(200)
|
2016-05-14 00:00:07 +00:00
|
|
|
response.json(images)
|
2015-04-24 08:15:23 +00:00
|
|
|
|
|
|
|
@Route.post(
|
2016-05-14 00:00:07 +00:00
|
|
|
r"/iou/images/{filename:.+}",
|
|
|
|
parameters={
|
|
|
|
"filename": "Image filename"
|
|
|
|
},
|
2015-04-24 08:15:23 +00:00
|
|
|
status_codes={
|
|
|
|
204: "Image uploaded",
|
|
|
|
},
|
|
|
|
raw=True,
|
2016-05-14 00:00:07 +00:00
|
|
|
description="Upload an IOU image")
|
2016-05-11 17:35:36 +00:00
|
|
|
def upload_image(request, response):
|
2015-04-24 08:15:23 +00:00
|
|
|
|
|
|
|
iou_manager = IOU.instance()
|
2016-05-14 00:00:07 +00:00
|
|
|
yield from iou_manager.write_image(request.match_info["filename"], request.content)
|
2015-04-24 08:15:23 +00:00
|
|
|
response.set_status(204)
|
2017-11-13 21:12:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
@Route.get(
|
|
|
|
r"/iou/images/{filename:.+}",
|
|
|
|
parameters={
|
|
|
|
"filename": "Image filename"
|
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
200: "Image returned",
|
|
|
|
},
|
|
|
|
raw=True,
|
|
|
|
description="Download an IOU image")
|
|
|
|
def download_image(request, response):
|
|
|
|
filename = request.match_info["filename"]
|
|
|
|
|
|
|
|
iou_manager = IOU.instance()
|
|
|
|
image_path = iou_manager.get_abs_image_path(filename)
|
|
|
|
|
|
|
|
# Raise error if user try to escape
|
|
|
|
if filename[0] == ".":
|
2017-11-23 15:28:10 +00:00
|
|
|
raise aiohttp.web.HTTPForbidden()
|
2017-11-13 21:12:39 +00:00
|
|
|
|
|
|
|
yield from response.file(image_path)
|