183c3d5f07
The most of objects are removed from the extensions module. The last thing is the expected_errors decorator, but that decorator is nothing about the extensions. So move the decorator to the wsgi module where is the place put the other decorator also. Then we can remove the extensions module entirely. Partial implement bp api-extensions-merge-queens Change-Id: I4802c5b38001a756448d4feb9ca336908821f591
104 lines
3.8 KiB
Python
104 lines
3.8 KiB
Python
# Copyright 2010 OpenStack Foundation
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from webob import exc
|
|
|
|
from nova.api.openstack import wsgi
|
|
from nova.console import api as console_api
|
|
from nova import exception
|
|
from nova.policies import consoles as consoles_policies
|
|
|
|
|
|
def _translate_keys(cons):
|
|
"""Coerces a console instance into proper dictionary format."""
|
|
pool = cons['pool']
|
|
info = {'id': cons['id'],
|
|
'console_type': pool['console_type']}
|
|
return dict(console=info)
|
|
|
|
|
|
def _translate_detail_keys(cons):
|
|
"""Coerces a console instance into proper dictionary format with detail."""
|
|
pool = cons['pool']
|
|
info = {'id': cons['id'],
|
|
'console_type': pool['console_type'],
|
|
'password': cons['password'],
|
|
'instance_name': cons['instance_name'],
|
|
'port': cons['port'],
|
|
'host': pool['public_hostname']}
|
|
return dict(console=info)
|
|
|
|
|
|
class ConsolesController(wsgi.Controller):
|
|
"""The Consoles controller for the OpenStack API."""
|
|
|
|
def __init__(self):
|
|
self.console_api = console_api.API()
|
|
|
|
@wsgi.expected_errors(())
|
|
def index(self, req, server_id):
|
|
"""Returns a list of consoles for this instance."""
|
|
context = req.environ['nova.context']
|
|
context.can(consoles_policies.POLICY_ROOT % 'index')
|
|
|
|
consoles = self.console_api.get_consoles(
|
|
req.environ['nova.context'], server_id)
|
|
return dict(consoles=[_translate_keys(console)
|
|
for console in consoles])
|
|
|
|
# NOTE(gmann): Here should be 201 instead of 200 by v2.1
|
|
# +microversions because the console has been created
|
|
# completely when returning a response.
|
|
@wsgi.expected_errors(404)
|
|
def create(self, req, server_id, body):
|
|
"""Creates a new console."""
|
|
context = req.environ['nova.context']
|
|
context.can(consoles_policies.POLICY_ROOT % 'create')
|
|
|
|
try:
|
|
self.console_api.create_console(
|
|
req.environ['nova.context'], server_id)
|
|
except exception.InstanceNotFound as e:
|
|
raise exc.HTTPNotFound(explanation=e.format_message())
|
|
|
|
@wsgi.expected_errors(404)
|
|
def show(self, req, server_id, id):
|
|
"""Shows in-depth information on a specific console."""
|
|
context = req.environ['nova.context']
|
|
context.can(consoles_policies.POLICY_ROOT % 'show')
|
|
|
|
try:
|
|
console = self.console_api.get_console(
|
|
req.environ['nova.context'],
|
|
server_id,
|
|
int(id))
|
|
except exception.ConsoleNotFound as e:
|
|
raise exc.HTTPNotFound(explanation=e.format_message())
|
|
return _translate_detail_keys(console)
|
|
|
|
@wsgi.response(202)
|
|
@wsgi.expected_errors(404)
|
|
def delete(self, req, server_id, id):
|
|
"""Deletes a console."""
|
|
context = req.environ['nova.context']
|
|
context.can(consoles_policies.POLICY_ROOT % 'delete')
|
|
|
|
try:
|
|
self.console_api.delete_console(req.environ['nova.context'],
|
|
server_id,
|
|
int(id))
|
|
except exception.ConsoleNotFound as e:
|
|
raise exc.HTTPNotFound(explanation=e.format_message())
|