murano/murano/api/v1/router.py

273 lines
13 KiB
Python

# Copyright (c) 2013 Mirantis, Inc.
#
# 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 routes
from murano.api.v1 import actions
from murano.api.v1 import catalog
from murano.api.v1 import deployments
from murano.api.v1 import environments
from murano.api.v1 import instance_statistics
from murano.api.v1 import request_statistics
from murano.api.v1 import services
from murano.api.v1 import sessions
from murano.api.v1 import template_applications
from murano.api.v1 import templates
from murano.common import wsgi
class API(wsgi.Router):
@classmethod
def factory(cls, global_conf, **local_conf):
return cls(routes.Mapper())
def __init__(self, mapper):
services_resource = services.create_resource()
mapper.connect('/environments/{environment_id}/services',
controller=services_resource,
action='get',
conditions={'method': ['GET']}, path='')
mapper.connect('/environments/{environment_id}/services/{path:.*?}',
controller=services_resource,
action='get',
conditions={'method': ['GET']}, path='')
mapper.connect('/environments/{environment_id}/services',
controller=services_resource,
action='post',
conditions={'method': ['POST']}, path='')
mapper.connect('/environments/{environment_id}/services/{path:.*?}',
controller=services_resource,
action='post',
conditions={'method': ['POST']}, path='')
mapper.connect('/environments/{environment_id}/services',
controller=services_resource,
action='put',
conditions={'method': ['PUT']}, path='')
mapper.connect('/environments/{environment_id}/services/{path:.*?}',
controller=services_resource,
action='put',
conditions={'method': ['PUT']}, path='')
mapper.connect('/environments/{environment_id}/services',
controller=services_resource,
action='delete',
conditions={'method': ['DELETE']}, path='')
mapper.connect('/environments/{environment_id}/services/{path:.*?}',
controller=services_resource,
action='delete',
conditions={'method': ['DELETE']}, path='')
environments_resource = environments.create_resource()
mapper.connect('/environments',
controller=environments_resource,
action='index',
conditions={'method': ['GET']})
mapper.connect('/environments',
controller=environments_resource,
action='create',
conditions={'method': ['POST']})
mapper.connect('/environments/{environment_id}',
controller=environments_resource,
action='update',
conditions={'method': ['PUT']})
mapper.connect('/environments/{environment_id}',
controller=environments_resource,
action='show',
conditions={'method': ['GET']})
mapper.connect('/environments/{environment_id}',
controller=environments_resource,
action='delete',
conditions={'method': ['DELETE']})
mapper.connect('/environments/{environment_id}/lastStatus',
controller=environments_resource,
action='last',
conditions={'method': ['GET']})
templates_resource = templates.create_resource()
mapper.connect('/templates',
controller=templates_resource,
action='index',
conditions={'method': ['GET']})
mapper.connect('/templates',
controller=templates_resource,
action='create',
conditions={'method': ['POST']})
mapper.connect('/templates/{env_template_id}',
controller=templates_resource,
action='update',
conditions={'method': ['PUT']})
mapper.connect('/templates/{env_template_id}',
controller=templates_resource,
action='show',
conditions={'method': ['GET']})
mapper.connect('/templates/{env_template_id}',
controller=templates_resource,
action='delete',
conditions={'method': ['DELETE']})
mapper.connect('/templates/{env_template_id}/create-environment',
controller=templates_resource,
action='create_environment',
conditions={'method': ['POST']})
mapper.connect('/templates/{env_template_id}/clone',
controller=templates_resource,
action='clone',
conditions={'method': ['POST']})
applications_resource = template_applications.create_resource()
mapper.connect('/templates/{env_template_id}/services',
controller=applications_resource,
action='index',
conditions={'method': ['GET']}, path='')
mapper.connect('/templates/{env_template_id}/services/{path:.*?}',
controller=applications_resource,
action='show',
conditions={'method': ['GET']}, path='')
mapper.connect('/templates/{env_template_id}/services',
controller=applications_resource,
action='post',
conditions={'method': ['POST']}, path='')
mapper.connect('/templates/{env_template_id}/services/{path:.*?}',
controller=applications_resource,
action='put',
conditions={'method': ['PUT']}, path='')
mapper.connect('/templates/{env_template_id}/services/{path:.*?}',
controller=applications_resource,
action='delete',
conditions={'method': ['DELETE']}, path='')
deployments_resource = deployments.create_resource()
mapper.connect('/environments/{environment_id}/deployments',
controller=deployments_resource,
action='index',
conditions={'method': ['GET']})
mapper.connect('/environments/{environment_id}/deployments/'
'{deployment_id}',
controller=deployments_resource,
action='statuses',
conditions={'method': ['GET']})
sessions_resource = sessions.create_resource()
mapper.connect('/environments/{environment_id}/configure',
controller=sessions_resource,
action='configure',
conditions={'method': ['POST']})
mapper.connect('/environments/{environment_id}/sessions/{session_id}',
controller=sessions_resource,
action='show',
conditions={'method': ['GET']})
mapper.connect('/environments/{environment_id}/sessions/{session_id}',
controller=sessions_resource,
action='delete',
conditions={'method': ['DELETE']})
mapper.connect('/environments/{environment_id}/sessions/'
'{session_id}/deploy',
controller=sessions_resource,
action='deploy',
conditions={'method': ['POST']})
statistics_resource = instance_statistics.create_resource()
mapper.connect(
'/environments/{environment_id}/instance-statistics/raw/'
'{instance_id}',
controller=statistics_resource,
action='get_for_instance',
conditions={'method': ['GET']})
mapper.connect(
'/environments/{environment_id}/instance-statistics/raw',
controller=statistics_resource,
action='get_for_environment',
conditions={'method': ['GET']})
mapper.connect(
'/environments/{environment_id}/instance-statistics/aggregated',
controller=statistics_resource,
action='get_aggregated',
conditions={'method': ['GET']})
actions_resource = actions.create_resource()
mapper.connect('/environments/{environment_id}/actions/{action_id}',
controller=actions_resource,
action='execute',
conditions={'method': ['POST']})
mapper.connect('/environments/{environment_id}/actions/{task_id}',
controller=actions_resource,
action='get_result',
conditions={'method': ['GET']})
catalog_resource = catalog.create_resource()
mapper.connect('/catalog/packages/categories',
controller=catalog_resource,
action='show_categories',
conditions={'method': ['GET']})
mapper.connect('/catalog/packages/{package_id}',
controller=catalog_resource,
action='get',
conditions={'method': ['GET']})
mapper.connect('/catalog/packages/{package_id}',
controller=catalog_resource,
action='delete',
conditions={'method': ['DELETE']})
mapper.connect('/catalog/packages/{package_id}',
controller=catalog_resource,
action='update',
conditions={'method': ['PATCH']})
mapper.connect('/catalog/packages',
controller=catalog_resource,
action='search',
conditions={'method': ['GET']})
mapper.connect('/catalog/packages',
controller=catalog_resource,
action='upload',
conditions={'method': ['POST']})
mapper.connect('/catalog/packages/{package_id}/ui',
controller=catalog_resource,
action='get_ui',
conditions={'method': ['GET']})
mapper.connect('/catalog/packages/{package_id}/logo',
controller=catalog_resource,
action='get_logo',
conditions={'method': ['GET']})
mapper.connect('/catalog/packages/{package_id}/supplier_logo',
controller=catalog_resource,
action='get_supplier_logo',
conditions={'method': ['GET']})
mapper.connect('/catalog/packages/{package_id}/download',
controller=catalog_resource,
action='download',
conditions={'method': ['GET']})
mapper.connect('/catalog/categories',
controller=catalog_resource,
action='list_categories',
conditions={'method': ['GET']})
mapper.connect('/catalog/categories/{category_id}',
controller=catalog_resource,
action='get_category',
conditions={'method': ['GET']})
mapper.connect('/catalog/categories',
controller=catalog_resource,
action='add_category',
conditions={'method': ['POST']})
mapper.connect('/catalog/categories/{category_id}',
controller=catalog_resource,
action='delete_category',
conditions={'method': ['DELETE']})
req_stats_resource = request_statistics.create_resource()
mapper.connect('/stats',
controller=req_stats_resource,
action='get',
conditions={'method': ['GET']})
super(API, self).__init__(mapper)