1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-10 18:08:55 +00:00
gns3-server/gns3server/handlers/vpcs_handler.py

127 lines
4.1 KiB
Python
Raw Normal View History

2015-01-14 00:05:26 +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/>.
from ..web.route import Route
from ..schemas.vpcs import VPCS_CREATE_SCHEMA
from ..schemas.vpcs import VPCS_OBJECT_SCHEMA
2015-01-16 16:09:45 +00:00
from ..schemas.vpcs import VPCS_NIO_SCHEMA
2015-01-14 17:52:02 +00:00
from ..modules.vpcs import VPCS
2015-01-14 00:05:26 +00:00
class VPCSHandler:
2015-01-20 12:24:00 +00:00
"""
API entry points for VPCS.
"""
2015-01-14 00:05:26 +00:00
@classmethod
@Route.post(
r"/vpcs",
status_codes={
201: "VPCS instance created",
2015-01-14 00:05:26 +00:00
409: "Conflict"
},
description="Create a new VPCS instance",
2015-01-14 00:05:26 +00:00
input=VPCS_CREATE_SCHEMA,
output=VPCS_OBJECT_SCHEMA)
def create(request, response):
2015-01-14 00:05:26 +00:00
vpcs = VPCS.instance()
2015-01-20 18:56:18 +00:00
vm = yield from vpcs.create_vm(request.json["name"],
request.json["project_uuid"],
uuid=request.json.get("uuid"),
2015-01-20 19:54:46 +00:00
console=request.json.get("console"),
2015-01-20 18:56:18 +00:00
script_file=request.json.get("script_file"))
response.json(vm)
2015-01-14 00:05:26 +00:00
2015-01-14 17:52:02 +00:00
@classmethod
@Route.post(
r"/vpcs/{uuid}/start",
2015-01-14 17:52:02 +00:00
parameters={
"uuid": "VPCS instance UUID"
2015-01-14 17:52:02 +00:00
},
status_codes={
204: "VPCS instance started",
400: "Invalid VPCS instance UUID",
404: "VPCS instance doesn't exist"
2015-01-14 17:52:02 +00:00
},
description="Start a VPCS instance")
2015-01-14 17:52:02 +00:00
def create(request, response):
2015-01-14 17:52:02 +00:00
vpcs_manager = VPCS.instance()
yield from vpcs_manager.start_vm(request.match_info["uuid"])
2015-01-14 17:52:02 +00:00
response.json({})
@classmethod
@Route.post(
r"/vpcs/{uuid}/stop",
2015-01-14 17:52:02 +00:00
parameters={
"uuid": "VPCS instance UUID"
2015-01-14 17:52:02 +00:00
},
status_codes={
204: "VPCS instance stopped",
400: "Invalid VPCS instance UUID",
404: "VPCS instance doesn't exist"
2015-01-14 17:52:02 +00:00
},
description="Stop a VPCS instance")
2015-01-14 17:52:02 +00:00
def create(request, response):
2015-01-14 17:52:02 +00:00
vpcs_manager = VPCS.instance()
yield from vpcs_manager.stop_vm(request.match_info["uuid"])
2015-01-14 17:52:02 +00:00
response.json({})
2015-01-14 00:05:26 +00:00
@Route.post(
r"/vpcs/{uuid}/ports/{port_id}/nio",
2015-01-14 00:05:26 +00:00
parameters={
"uuid": "VPCS instance UUID",
2015-01-16 20:39:58 +00:00
"port_id": "Id of the port where the nio should be add"
2015-01-14 00:05:26 +00:00
},
status_codes={
201: "NIO created",
400: "Invalid VPCS instance UUID",
404: "VPCS instance doesn't exist"
2015-01-14 00:05:26 +00:00
},
description="Add a NIO to a VPCS",
2015-01-16 16:09:45 +00:00
input=VPCS_NIO_SCHEMA,
output=VPCS_NIO_SCHEMA)
2015-01-14 00:05:26 +00:00
def create_nio(request, response):
2015-01-16 15:20:10 +00:00
vpcs_manager = VPCS.instance()
vm = vpcs_manager.get_vm(request.match_info["uuid"])
nio = vm.port_add_nio_binding(int(request.match_info["port_id"]), request.json)
2015-01-16 16:09:45 +00:00
response.json(nio)
2015-01-14 00:05:26 +00:00
@classmethod
2015-01-16 20:39:58 +00:00
@Route.delete(
r"/vpcs/{uuid}/ports/{port_id}/nio",
2015-01-14 00:05:26 +00:00
parameters={
"uuid": "VPCS instance UUID",
"port_id": "ID of the port where the nio should be removed"
2015-01-14 00:05:26 +00:00
},
status_codes={
200: "NIO deleted",
400: "Invalid VPCS instance UUID",
404: "VPCS instance doesn't exist"
2015-01-14 00:05:26 +00:00
},
description="Remove a NIO from a VPCS")
2015-01-16 20:39:58 +00:00
def delete_nio(request, response):
2015-01-16 20:39:58 +00:00
vpcs_manager = VPCS.instance()
vm = vpcs_manager.get_vm(request.match_info["uuid"])
nio = vm.port_remove_nio_binding(int(request.match_info["port_id"]))
2015-01-16 20:39:58 +00:00
response.json({})