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/>.
|
|
|
|
|
|
|
|
from ..web.route import Route
|
|
|
|
from ..schemas.vpcs import VPCS_CREATE_SCHEMA
|
|
|
|
from ..schemas.vpcs import VPCS_OBJECT_SCHEMA
|
2015-01-16 18:09:45 +02:00
|
|
|
from ..schemas.vpcs import VPCS_NIO_SCHEMA
|
2015-01-14 19:52:02 +02:00
|
|
|
from ..modules.vpcs import VPCS
|
2015-01-14 02:05:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
class VPCSHandler(object):
|
2015-01-18 21:12:11 +02:00
|
|
|
"""
|
|
|
|
API entry points for VPCS.
|
|
|
|
"""
|
|
|
|
|
2015-01-14 02:05:26 +02:00
|
|
|
@classmethod
|
|
|
|
@Route.post(
|
|
|
|
r"/vpcs",
|
|
|
|
status_codes={
|
2015-01-18 21:12:11 +02:00
|
|
|
201: "VPCS instance created",
|
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()
|
2015-01-18 21:12:11 +02:00
|
|
|
vm = yield from vpcs.create_vm(request.json["name"])
|
|
|
|
response.json({"name": vm.name,
|
|
|
|
"id": vm.id,
|
2015-01-15 17:59:01 +02:00
|
|
|
"console": vm.console})
|
2015-01-14 02:05:26 +02:00
|
|
|
|
2015-01-14 19:52:02 +02:00
|
|
|
@classmethod
|
|
|
|
@Route.post(
|
2015-01-18 21:12:11 +02:00
|
|
|
r"/vpcs/{id:\d+}/start",
|
2015-01-14 19:52:02 +02:00
|
|
|
parameters={
|
2015-01-18 21:12:11 +02:00
|
|
|
"id": "VPCS instance ID"
|
2015-01-14 19:52:02 +02:00
|
|
|
},
|
|
|
|
status_codes={
|
2015-01-18 21:12:11 +02:00
|
|
|
204: "VPCS instance started",
|
2015-01-18 21:23:42 +02:00
|
|
|
404: "VPCS instance doesn't exist"
|
2015-01-14 19:52:02 +02:00
|
|
|
},
|
2015-01-18 21:12:11 +02:00
|
|
|
description="Start a VPCS instance")
|
2015-01-14 19:52:02 +02:00
|
|
|
def create(request, response):
|
2015-01-18 21:12:11 +02:00
|
|
|
|
2015-01-14 19:52:02 +02:00
|
|
|
vpcs_manager = VPCS.instance()
|
2015-01-18 21:12:11 +02:00
|
|
|
yield from vpcs_manager.start_vm(int(request.match_info["id"]))
|
2015-01-14 19:52:02 +02:00
|
|
|
response.json({})
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
@Route.post(
|
2015-01-18 21:12:11 +02:00
|
|
|
r"/vpcs/{id:\d+}/stop",
|
2015-01-14 19:52:02 +02:00
|
|
|
parameters={
|
2015-01-18 21:12:11 +02:00
|
|
|
"id": "VPCS instance ID"
|
2015-01-14 19:52:02 +02:00
|
|
|
},
|
|
|
|
status_codes={
|
2015-01-18 21:23:42 +02:00
|
|
|
204: "VPCS instance stopped",
|
|
|
|
404: "VPCS 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-14 19:52:02 +02:00
|
|
|
def create(request, response):
|
2015-01-18 21:12:11 +02:00
|
|
|
|
2015-01-14 19:52:02 +02:00
|
|
|
vpcs_manager = VPCS.instance()
|
2015-01-18 21:12:11 +02:00
|
|
|
yield from vpcs_manager.stop_vm(int(request.match_info["id"]))
|
2015-01-14 19:52:02 +02:00
|
|
|
response.json({})
|
|
|
|
|
2015-01-14 02:05:26 +02:00
|
|
|
@Route.post(
|
2015-01-18 21:23:42 +02:00
|
|
|
r"/vpcs/{id:\d+}/ports/{port_id}/nio",
|
2015-01-14 02:05:26 +02:00
|
|
|
parameters={
|
2015-01-18 21:23:42 +02:00
|
|
|
"id": "VPCS instance ID",
|
2015-01-16 22:39:58 +02:00
|
|
|
"port_id": "Id of the port where the nio should be add"
|
2015-01-14 02:05:26 +02:00
|
|
|
},
|
|
|
|
status_codes={
|
2015-01-18 21:23:42 +02:00
|
|
|
201: "NIO created",
|
|
|
|
404: "VPCS instance doesn't exist"
|
2015-01-14 02:05:26 +02:00
|
|
|
},
|
2015-01-18 21:23:42 +02:00
|
|
|
description="Add a NIO to a VPCS",
|
2015-01-16 18:09:45 +02:00
|
|
|
input=VPCS_NIO_SCHEMA,
|
|
|
|
output=VPCS_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()
|
2015-01-18 21:23:42 +02:00
|
|
|
vm = vpcs_manager.get_vm(int(request.match_info["id"]))
|
|
|
|
nio = vm.port_add_nio_binding(int(request.match_info["port_id"]), request.json)
|
2015-01-18 21:12:11 +02:00
|
|
|
|
2015-01-16 18:09:45 +02:00
|
|
|
response.json(nio)
|
2015-01-14 02:05:26 +02:00
|
|
|
|
|
|
|
@classmethod
|
2015-01-16 22:39:58 +02:00
|
|
|
@Route.delete(
|
2015-01-18 21:23:42 +02:00
|
|
|
r"/vpcs/{id:\d+}/ports/{port_id}/nio",
|
2015-01-14 02:05:26 +02:00
|
|
|
parameters={
|
2015-01-18 21:23:42 +02:00
|
|
|
"id": "VPCS instance ID",
|
2015-01-16 22:39:58 +02:00
|
|
|
"port_id": "Id of the port where the nio should be remove"
|
2015-01-14 02:05:26 +02:00
|
|
|
},
|
|
|
|
status_codes={
|
2015-01-18 21:23:42 +02:00
|
|
|
200: "NIO deleted",
|
|
|
|
404: "VPCS instance doesn't exist"
|
2015-01-14 02:05:26 +02:00
|
|
|
},
|
2015-01-18 21:23:42 +02:00
|
|
|
description="Remove a NIO from a VPCS")
|
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()
|
2015-01-18 21:23:42 +02:00
|
|
|
vm = vpcs_manager.get_vm(int(request.match_info["id"]))
|
|
|
|
nio = vm.port_remove_nio_binding(int(request.match_info["port_id"]))
|
2015-01-16 22:39:58 +02:00
|
|
|
response.json({})
|