Bugfix: openrc api dump should be safe_dump
[yardstick.git] / api / server.py
1 ##############################################################################
2 # Copyright (c) 2016 Huawei Technologies Co.,Ltd and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9 from __future__ import absolute_import
10
11 import inspect
12 import logging
13 import socket
14 from six.moves import filter
15
16 from flasgger import Swagger
17 from flask import Flask
18 from flask_restful import Api
19
20 from api.database import Base
21 from api.database import db_session
22 from api.database import engine
23 from api.database.v1 import models
24 from api.urls import urlpatterns
25 from api import ApiResource
26 from yardstick import _init_logging
27 from yardstick.common import utils
28 from yardstick.common import constants as consts
29
30 try:
31     from urlparse import urljoin
32 except ImportError:
33     from urllib.parse import urljoin
34
35 LOG = logging.getLogger(__name__)
36
37 app = Flask(__name__)
38 app.config['MAX_CONTENT_LENGTH'] = 2 * 1024 * 1024 * 1024
39
40 Swagger(app)
41
42 api = Api(app, errors=consts.API_ERRORS)
43
44
45 @app.teardown_request
46 def shutdown_session(exception=None):
47     if exception:
48         LOG.warning(exception.message)
49     db_session.remove()
50
51
52 def get_resource(resource_name):
53     name = ''.join(resource_name.split('_'))
54     return next((r for r in utils.itersubclasses(ApiResource)
55                  if r.__name__.lower() == name))
56
57
58 def init_db():
59     def func(a):
60         try:
61             if issubclass(a[1], Base):
62                 return True
63         except TypeError:
64             pass
65         return False
66
67     subclses = filter(func, inspect.getmembers(models, inspect.isclass))
68     LOG.debug('Import models: %s', [a[1] for a in subclses])
69     Base.metadata.create_all(bind=engine)
70
71
72 def app_wrapper(*args, **kwargs):
73     init_db()
74     return app(*args, **kwargs)
75
76
77 def get_endpoint(url):
78     ip = socket.gethostbyname(socket.gethostname())
79     return urljoin('http://{}:{}'.format(ip, consts.API_PORT), url)
80
81
82 for u in urlpatterns:
83     try:
84         api.add_resource(get_resource(u.target), u.url, endpoint=get_endpoint(u.url))
85     except StopIteration:
86         LOG.error('url resource not found: %s', u.url)
87
88
89 if __name__ == '__main__':
90     _init_logging()
91     LOG.setLevel(logging.DEBUG)
92     LOG.info('Starting server')
93     init_db()
94     app.run(host='0.0.0.0')