1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-19 14:58:07 +00:00
gns3-server/gns3server/handlers/vpcs_handler.py

121 lines
3.4 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
from ..schemas.vpcs import VPCS_ADD_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(object):
"""
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()
vm = yield from vpcs.create_vm(request.json["name"])
response.json({"name": vm.name,
"id": vm.id,
2015-01-15 15:59:01 +00:00
"console": vm.console})
2015-01-14 00:05:26 +00:00
2015-01-14 17:52:02 +00:00
@classmethod
@Route.post(
r"/vpcs/{id:\d+}/start",
2015-01-14 17:52:02 +00:00
parameters={
"id": "VPCS instance ID"
2015-01-14 17:52:02 +00:00
},
status_codes={
204: "VPCS instance started",
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(int(request.match_info["id"]))
2015-01-14 17:52:02 +00:00
response.json({})
@classmethod
@Route.post(
r"/vpcs/{id:\d+}/stop",
2015-01-14 17:52:02 +00:00
parameters={
"id": "VPCS instance ID"
2015-01-14 17:52:02 +00:00
},
status_codes={
201: "Success of stopping VPCS",
},
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(int(request.match_info["id"]))
2015-01-14 17:52:02 +00:00
response.json({})
2015-01-14 00:05:26 +00:00
@classmethod
@Route.get(
r"/vpcs/{id:\d+}",
2015-01-14 00:05:26 +00:00
parameters={
"id": "VPCS instance ID"
2015-01-14 00:05:26 +00:00
},
description="Get information about a VPCS",
output=VPCS_OBJECT_SCHEMA)
def show(request, response):
response.json({'name': "PC 1", "id": 42, "console": 4242})
2015-01-14 00:05:26 +00:00
@classmethod
@Route.put(
r"/vpcs/{id:\d+}",
2015-01-14 00:05:26 +00:00
parameters={
"id": "VPCS instance ID"
2015-01-14 00:05:26 +00:00
},
description="Update VPCS information",
input=VPCS_OBJECT_SCHEMA,
output=VPCS_OBJECT_SCHEMA)
def update(request, response):
response.json({'name': "PC 1", "id": 42, "console": 4242})
2015-01-14 00:05:26 +00:00
@classmethod
@Route.post(
r"/vpcs/{id:\d+}/nio",
2015-01-14 00:05:26 +00:00
parameters={
"id": "VPCS instance ID"
2015-01-14 00:05:26 +00:00
},
status_codes={
201: "NIO created",
2015-01-14 00:05:26 +00:00
409: "Conflict"
},
description="ADD NIO to a VPCS",
input=VPCS_ADD_NIO_SCHEMA)
def create_nio(request, response):
2015-01-14 00:05:26 +00:00
# TODO: raise 404 if VPCS not found
response.json({'name': "PC 2", "id": 42, "console": 4242})