9c77e650f1
Permission of the following files is set to "-rwxrwxr-x". It's not necessary for python scripts to be executable. xjob/ __init__.py xservice.py xmanager.py common/ baserpc.py topics.py serializer.py rpc.py xrpcapi.py api root.py __init__.py nova_apigw/ __init__.py root.py cinder_apigw/ root.py __init__.py Change-Id: Id397bf29574493bf1977ff40d0647d050fac2f5a Signed-off-by: Chaoyi Huang <joehuang@huawei.com> Closes-Bug: 1581271
119 lines
3.4 KiB
Python
119 lines
3.4 KiB
Python
# Copyright (c) 2015 Huawei Tech. Co., Ltd.
|
|
# 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.
|
|
|
|
import pecan
|
|
|
|
import oslo_log.log as logging
|
|
|
|
from tricircle.cinder_apigw.controllers import volume
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class RootController(object):
|
|
|
|
@pecan.expose()
|
|
def _lookup(self, version, *remainder):
|
|
if version == 'v2':
|
|
return V2Controller(), remainder
|
|
|
|
@pecan.expose(generic=True, template='json')
|
|
def index(self):
|
|
return {
|
|
"versions": [
|
|
{
|
|
"status": "CURRENT",
|
|
"updated": "2012-11-21T11:33:21Z",
|
|
"id": "v2.0",
|
|
"links": [
|
|
{
|
|
"href": pecan.request.application_url + "/v2/",
|
|
"rel": "self"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
|
|
@index.when(method='POST')
|
|
@index.when(method='PUT')
|
|
@index.when(method='DELETE')
|
|
@index.when(method='HEAD')
|
|
@index.when(method='PATCH')
|
|
def not_supported(self):
|
|
pecan.abort(405)
|
|
|
|
|
|
class V2Controller(object):
|
|
|
|
_media_type1 = "application/vnd.openstack.volume+xml;version=1"
|
|
_media_type2 = "application/vnd.openstack.volume+json;version=1"
|
|
|
|
def __init__(self):
|
|
|
|
self.resource_controller = {
|
|
'volumes': volume.VolumeController,
|
|
}
|
|
|
|
@pecan.expose()
|
|
def _lookup(self, tenant_id, *remainder):
|
|
if not remainder:
|
|
pecan.abort(404)
|
|
return
|
|
resource = remainder[0]
|
|
if resource not in self.resource_controller:
|
|
pecan.abort(404)
|
|
return
|
|
return self.resource_controller[resource](tenant_id), remainder[1:]
|
|
|
|
@pecan.expose(generic=True, template='json')
|
|
def index(self):
|
|
return {
|
|
"version": {
|
|
"status": "CURRENT",
|
|
"updated": "2012-11-21T11:33:21Z",
|
|
"media-types": [
|
|
{
|
|
"base": "application/xml",
|
|
"type": self._media_type1
|
|
},
|
|
{
|
|
"base": "application/json",
|
|
"type": self._media_type2
|
|
}
|
|
],
|
|
"id": "v2.0",
|
|
"links": [
|
|
{
|
|
"href": pecan.request.application_url + "/v2/",
|
|
"rel": "self"
|
|
},
|
|
{
|
|
"href": "http://docs.openstack.org/",
|
|
"type": "text/html",
|
|
"rel": "describedby"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
@index.when(method='POST')
|
|
@index.when(method='PUT')
|
|
@index.when(method='DELETE')
|
|
@index.when(method='HEAD')
|
|
@index.when(method='PATCH')
|
|
def not_supported(self):
|
|
pecan.abort(405)
|