Solum dashboard is currently using python logging module to implement logging functionality. This patch made a switch to oslo.log(logging for openstack projects) Reference:- http://docs.openstack.org/developer/oslo.log Change-Id: I73cae3ac8982f8e328387f867699f051c3097844
65 lines
2.3 KiB
Python
65 lines
2.3 KiB
Python
# Copyright (c) 2014 Rackspace Hosting.
|
|
#
|
|
# 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 horizon import exceptions
|
|
|
|
from solumclient import client as api_client
|
|
|
|
from openstack_dashboard.api import base
|
|
from openstack_dashboard.api import keystone
|
|
from oslo_log import log as logging
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
def get_horizon_parameter(name, default_value):
|
|
import openstack_dashboard.settings
|
|
|
|
if hasattr(openstack_dashboard.settings, name):
|
|
return getattr(openstack_dashboard.settings, name)
|
|
else:
|
|
LOG.warning('Parameter %s is not found in local_settings.py, '
|
|
'using default "%s"' % (name, default_value))
|
|
return default_value
|
|
|
|
|
|
# These parameters should be defined in Horizon's local_settings.py
|
|
# Example SOLUM_URL - http://localhost:9777
|
|
SOLUM_URL = get_horizon_parameter('SOLUM_URL', None)
|
|
# "type" of Solum service registered in keystone
|
|
SOLUM_SERVICE = get_horizon_parameter('SOLUM_SERVICE',
|
|
'application_deployment')
|
|
|
|
|
|
def get_solum_url(request):
|
|
endpoint = SOLUM_URL
|
|
if not endpoint:
|
|
try:
|
|
endpoint = base.url_for(request, SOLUM_SERVICE)
|
|
except exceptions.ServiceCatalogException:
|
|
endpoint = 'http://localhost:9777'
|
|
LOG.warning('Solum API location could not be found in Service '
|
|
'Catalog, using default: {0}'.format(endpoint))
|
|
return endpoint
|
|
|
|
|
|
def client(request):
|
|
endpoint_type = get_horizon_parameter('OPENSTACK_ENDPOINT_TYPE',
|
|
'internalURL')
|
|
auth_url = keystone._get_endpoint_url(request, endpoint_type)
|
|
return api_client.Client(1, endpoint=get_solum_url(request),
|
|
token=request.user.token.id,
|
|
auth_url=auth_url)
|