
There are a bunch of files that define CONF but don't ever reference it. This cleans that up, removing unnecessary imports. In order to get flake8 to pass I also had to remove some (unrelated) unused imports from touched files. Change-Id: Ib96ebeeb5e4bfedb20afb02c56da1521df9fac4f
57 lines
2.4 KiB
Python
57 lines
2.4 KiB
Python
# Copyright (c) 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.
|
|
|
|
"""Handles ConsoleProxy API requests."""
|
|
|
|
|
|
from nova.compute import rpcapi as compute_rpcapi
|
|
from nova.console import rpcapi as console_rpcapi
|
|
from nova.db import base
|
|
from nova import objects
|
|
|
|
|
|
class API(base.Base):
|
|
"""API for spinning up or down console proxy connections."""
|
|
def get_consoles(self, context, instance_uuid):
|
|
return self.db.console_get_all_by_instance(context, instance_uuid,
|
|
columns_to_join=['pool'])
|
|
|
|
def get_console(self, context, instance_uuid, console_uuid):
|
|
return self.db.console_get(context, console_uuid, instance_uuid)
|
|
|
|
def delete_console(self, context, instance_uuid, console_uuid):
|
|
console = self.db.console_get(context, console_uuid, instance_uuid)
|
|
rpcapi = console_rpcapi.ConsoleAPI(topic=console_rpcapi.RPC_TOPIC,
|
|
server=console['pool']['host'])
|
|
rpcapi.remove_console(context, console['id'])
|
|
|
|
def create_console(self, context, instance_uuid):
|
|
# NOTE(mdragon): If we wanted to return this the console info
|
|
# here, as we would need to do a call.
|
|
# They can just do an index later to fetch
|
|
# console info. I am not sure which is better
|
|
# here.
|
|
instance = objects.Instance.get_by_uuid(context, instance_uuid)
|
|
topic = self._get_console_topic(context, instance.host)
|
|
server = None
|
|
if '.' in topic:
|
|
topic, server = topic.split('.', 1)
|
|
rpcapi = console_rpcapi.ConsoleAPI(topic=topic, server=server)
|
|
rpcapi.add_console(context, instance.id)
|
|
|
|
def _get_console_topic(self, context, instance_host):
|
|
rpcapi = compute_rpcapi.ComputeAPI()
|
|
return rpcapi.get_console_topic(context, instance_host)
|