gns3-server/gns3server/handlers/vpcs_handler.py

100 lines
3.1 KiB
Python
Raw Normal View History

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/>.
2015-01-16 17:20:10 +02:00
2015-01-14 02:05:26 +02:00
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):
@classmethod
@Route.post(
r"/vpcs",
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-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(
r"/vpcs/{vpcs_id}/start",
parameters={
"vpcs_id": "Id of VPCS instance"
},
status_codes={
2015-01-16 18:09:45 +02:00
200: "Success of starting VPCS",
404: "If VPCS doesn't exist"
2015-01-14 19:52:02 +02:00
},
description="Start VPCS",
)
def create(request, response):
vpcs_manager = VPCS.instance()
vm = yield from vpcs_manager.start_vm(int(request.match_info['vpcs_id']))
response.json({})
@classmethod
@Route.post(
r"/vpcs/{vpcs_id}/stop",
parameters={
"vpcs_id": "Id of VPCS instance"
},
status_codes={
2015-01-16 18:09:45 +02:00
200: "Success of stopping VPCS",
404: "If VPCS doesn't exist"
2015-01-14 19:52:02 +02:00
},
description="Stop VPCS",
)
def create(request, response):
vpcs_manager = VPCS.instance()
vm = yield from vpcs_manager.stop_vm(int(request.match_info['vpcs_id']))
response.json({})
2015-01-14 02:05:26 +02:00
@classmethod
@Route.post(
2015-01-16 17:20:10 +02:00
r"/vpcs/{vpcs_id}/ports/{port_id}/nio",
2015-01-14 02:05:26 +02:00
parameters={
"vpcs_id": "Id of VPCS instance"
},
status_codes={
201: "Success of creation of NIO",
2015-01-16 18:09:45 +02:00
404: "If VPCS doesn't exist"
2015-01-14 02:05:26 +02:00
},
description="ADD 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-16 17:20:10 +02:00
# TODO: response with nio
vpcs_manager = VPCS.instance()
vm = vpcs_manager.get_vm(int(request.match_info['vpcs_id']))
2015-01-16 18:09:45 +02:00
nio = vm.port_add_nio_binding(int(request.match_info['port_id']), request.json)
2015-01-16 17:20:10 +02:00
2015-01-16 18:09:45 +02:00
response.json(nio)
2015-01-16 17:20:10 +02:00