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
|
|
|
|
from ..schemas.vpcs import VPCS_ADD_NIO_SCHEMA
|
2015-01-14 03:26:32 +02:00
|
|
|
from ..modules import VPCS
|
2015-01-14 02:05:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
class VPCSHandler(object):
|
|
|
|
@classmethod
|
|
|
|
@Route.post(
|
|
|
|
r"/vpcs",
|
|
|
|
parameters={
|
|
|
|
"vpcs_id": "Id of VPCS instance"
|
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
201: "Success of creation of VPCS",
|
|
|
|
409: "Conflict"
|
|
|
|
},
|
|
|
|
description="Create a new VPCS and return it",
|
|
|
|
input=VPCS_CREATE_SCHEMA,
|
|
|
|
output=VPCS_OBJECT_SCHEMA)
|
|
|
|
def create(request, response):
|
|
|
|
vpcs = VPCS.instance()
|
2015-01-14 03:26:32 +02:00
|
|
|
vm = yield from vpcs.create_vm(request.json['name'])
|
|
|
|
response.json({'name': vm.name,
|
|
|
|
"vpcs_id": vm.id,
|
2015-01-14 02:05:26 +02:00
|
|
|
"console": 4242})
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
@Route.get(
|
|
|
|
r"/vpcs/{vpcs_id}",
|
|
|
|
parameters={
|
|
|
|
"vpcs_id": "Id of VPCS instance"
|
|
|
|
},
|
|
|
|
description="Get information about a VPCS",
|
|
|
|
output=VPCS_OBJECT_SCHEMA)
|
|
|
|
def show(request, response):
|
|
|
|
response.json({'name': "PC 1", "vpcs_id": 42, "console": 4242})
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
@Route.put(
|
|
|
|
r"/vpcs/{vpcs_id}",
|
|
|
|
parameters={
|
|
|
|
"vpcs_id": "Id of VPCS instance"
|
|
|
|
},
|
|
|
|
description="Update VPCS information",
|
|
|
|
input=VPCS_OBJECT_SCHEMA,
|
|
|
|
output=VPCS_OBJECT_SCHEMA)
|
|
|
|
def update(request, response):
|
|
|
|
response.json({'name': "PC 1", "vpcs_id": 42, "console": 4242})
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
@Route.post(
|
|
|
|
r"/vpcs/{vpcs_id}/nio",
|
|
|
|
parameters={
|
|
|
|
"vpcs_id": "Id of VPCS instance"
|
|
|
|
},
|
|
|
|
status_codes={
|
|
|
|
201: "Success of creation of NIO",
|
|
|
|
409: "Conflict"
|
|
|
|
},
|
|
|
|
description="ADD NIO to a VPCS",
|
|
|
|
input=VPCS_ADD_NIO_SCHEMA)
|
|
|
|
def create_nio(request, response):
|
|
|
|
# TODO: raise 404 if VPCS not found
|
|
|
|
response.json({'name': "PC 2", "vpcs_id": 42, "console": 4242})
|