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
|
|
|
|
|
|
|
|
2015-01-20 01:30:57 +00:00
|
|
|
class VPCSHandler:
|
2015-01-20 12:24:00 +00:00
|
|
|
|
2015-01-18 19:12:11 +00:00
|
|
|
"""
|
|
|
|
API entry points for VPCS.
|
|
|
|
"""
|
|
|
|
|
2015-01-14 00:05:26 +00:00
|
|
|
@classmethod
|
|
|
|
@Route.post(
|
|
|
|
r"/vpcs",
|
|
|
|
status_codes={
|
2015-01-18 19:12:11 +00:00
|
|
|
201: "VPCS instance created",
|
2015-01-14 00:05:26 +00:00
|
|
|
409: "Conflict"
|
|
|
|
},
|
2015-01-18 19:12:11 +00:00
|
|
|
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-18 19:12:11 +00:00
|
|
|
|
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(
|
2015-01-20 01:30:57 +00:00
|
|
|
r"/vpcs/{uuid}/start",
|
2015-01-14 17:52:02 +00:00
|
|
|
parameters={
|
2015-01-20 01:30:57 +00:00
|
|
|
"uuid": "VPCS instance UUID"
|
2015-01-14 17:52:02 +00:00
|
|
|
},
|
|
|
|
status_codes={
|
2015-01-18 19:12:11 +00:00
|
|
|
204: "VPCS instance started",
|
2015-01-20 01:30:57 +00:00
|
|
|
400: "Invalid VPCS instance UUID",
|
2015-01-18 19:23:42 +00:00
|
|
|
404: "VPCS instance doesn't exist"
|
2015-01-14 17:52:02 +00:00
|
|
|
},
|
2015-01-18 19:12:11 +00:00
|
|
|
description="Start a VPCS instance")
|
2015-01-14 17:52:02 +00:00
|
|
|
def create(request, response):
|
2015-01-18 19:12:11 +00:00
|
|
|
|
2015-01-14 17:52:02 +00:00
|
|
|
vpcs_manager = VPCS.instance()
|
2015-01-20 01:30:57 +00:00
|
|
|
yield from vpcs_manager.start_vm(request.match_info["uuid"])
|
2015-01-14 17:52:02 +00:00
|
|
|
response.json({})
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
@Route.post(
|
2015-01-20 01:30:57 +00:00
|
|
|
r"/vpcs/{uuid}/stop",
|
2015-01-14 17:52:02 +00:00
|
|
|
parameters={
|
2015-01-20 01:30:57 +00:00
|
|
|
"uuid": "VPCS instance UUID"
|
2015-01-14 17:52:02 +00:00
|
|
|
},
|
|
|
|
status_codes={
|
2015-01-18 19:23:42 +00:00
|
|
|
204: "VPCS instance stopped",
|
2015-01-20 01:30:57 +00:00
|
|
|
400: "Invalid VPCS instance UUID",
|
2015-01-18 19:23:42 +00:00
|
|
|
404: "VPCS instance doesn't exist"
|
2015-01-14 17:52:02 +00:00
|
|
|
},
|
2015-01-18 19:12:11 +00:00
|
|
|
description="Stop a VPCS instance")
|
2015-01-14 17:52:02 +00:00
|
|
|
def create(request, response):
|
2015-01-18 19:12:11 +00:00
|
|
|
|
2015-01-14 17:52:02 +00:00
|
|
|
vpcs_manager = VPCS.instance()
|
2015-01-20 01:30:57 +00:00
|
|
|
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(
|
2015-01-20 01:30:57 +00:00
|
|
|
r"/vpcs/{uuid}/ports/{port_id}/nio",
|
2015-01-14 00:05:26 +00:00
|
|
|
parameters={
|
2015-01-20 01:30:57 +00:00
|
|
|
"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={
|
2015-01-18 19:23:42 +00:00
|
|
|
201: "NIO created",
|
2015-01-20 01:30:57 +00:00
|
|
|
400: "Invalid VPCS instance UUID",
|
2015-01-18 19:23:42 +00:00
|
|
|
404: "VPCS instance doesn't exist"
|
2015-01-14 00:05:26 +00:00
|
|
|
},
|
2015-01-18 19:23:42 +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-18 19:23:42 +00:00
|
|
|
|
2015-01-16 15:20:10 +00:00
|
|
|
vpcs_manager = VPCS.instance()
|
2015-01-20 01:30:57 +00:00
|
|
|
vm = vpcs_manager.get_vm(request.match_info["uuid"])
|
2015-01-18 19:23:42 +00:00
|
|
|
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(
|
2015-01-20 01:30:57 +00:00
|
|
|
r"/vpcs/{uuid}/ports/{port_id}/nio",
|
2015-01-14 00:05:26 +00:00
|
|
|
parameters={
|
2015-01-20 01:30:57 +00:00
|
|
|
"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={
|
2015-01-18 19:23:42 +00:00
|
|
|
200: "NIO deleted",
|
2015-01-20 01:30:57 +00:00
|
|
|
400: "Invalid VPCS instance UUID",
|
2015-01-18 19:23:42 +00:00
|
|
|
404: "VPCS instance doesn't exist"
|
2015-01-14 00:05:26 +00:00
|
|
|
},
|
2015-01-18 19:23:42 +00:00
|
|
|
description="Remove a NIO from a VPCS")
|
2015-01-16 20:39:58 +00:00
|
|
|
def delete_nio(request, response):
|
2015-01-18 19:12:11 +00:00
|
|
|
|
2015-01-16 20:39:58 +00:00
|
|
|
vpcs_manager = VPCS.instance()
|
2015-01-20 01:30:57 +00:00
|
|
|
vm = vpcs_manager.get_vm(request.match_info["uuid"])
|
2015-01-18 19:23:42 +00:00
|
|
|
nio = vm.port_remove_nio_binding(int(request.match_info["port_id"]))
|
2015-01-16 20:39:58 +00:00
|
|
|
response.json({})
|