forked from fabric8-analytics/fabric8-analytics-jobs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
f8a-jobs.py
executable file
·137 lines (108 loc) · 3.81 KB
/
f8a-jobs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#!/usr/bin/env python3
"""Module containing handlers for REST API calls, Swagger UI etc."""
import os
import json
import connexion
import logging
from flask import redirect, jsonify
from datetime import datetime
from flask_script import Manager
from f8a_jobs.scheduler import Scheduler
import f8a_jobs.defaults as defaults
from f8a_jobs.models import create_models
from f8a_jobs.auth import oauth
from raven.contrib.flask import Sentry
from werkzeug.contrib.fixers import ProxyFix
from f8a_worker.setup_celery import init_celery, init_selinon
class SafeJSONEncoder(json.JSONEncoder):
"""Convert objects to JSON, safely."""
def default(self, o):
"""Override the base class method to work with datetimes properly."""
if isinstance(o, datetime):
return o.isoformat()
try:
return json.JSONEncoder.default(self, o)
except TypeError:
return repr(o)
def init_logging(logger):
"""Initialize application logging."""
# Initialize flask logging
formatter = logging.Formatter('%(asctime)s - %(message)s')
handler = logging.StreamHandler()
handler.setLevel(logging.WARNING)
handler.setFormatter(formatter)
# Use flask App instead of Connexion's one
application.logger.addHandler(handler)
# API logger
logger.setLevel(logging.DEBUG)
# lib logger
formatter = logging.Formatter('%(asctime)s - %(message)s')
handler = logging.StreamHandler()
handler.setFormatter(formatter)
liblog = logging.getLogger('f8a_jobs')
liblog.setLevel(logging.DEBUG)
liblog.addHandler(handler)
app = connexion.App(__name__)
app.app.wsgi_app = ProxyFix(app.app.wsgi_app)
sentry = Sentry(app.app, dsn=defaults.SENTRY_DSN, logging=True, level=logging.ERROR)
application = app.app
# Setup Logging
logger = logging.getLogger(__name__)
init_logging(logger)
app.add_api(defaults.SWAGGER_YAML_PATH)
app.add_api(defaults.SWAGGER_INGESTION_YAML_PATH)
# Expose for uWSGI
application.json_encoder = SafeJSONEncoder
manager = Manager(application)
# Needed for session
application.secret_key = defaults.APP_SECRET_KEY
oauth.init_app(application)
# Initializing Selinon and Celery while starting the application
logger.debug("Initializing Selinon")
init_celery(result_backend=False)
init_selinon()
logger.debug("Selinon initialized successfully")
@app.route('/')
def base_url():
"""Redirect client to the Swagger UI web page."""
# Be nice with user access
return redirect('api/v1/ui')
@app.route('/api/v1')
def api_v1():
"""Accept and respont to all REST API calls."""
paths = []
for rule in application.url_map.iter_rules():
rule = str(rule)
if rule.startswith('/api/v1'):
paths.append(rule)
return jsonify({'paths': paths})
@manager.command
def initjobs():
"""Initialize default jobs."""""
logger.debug("Initializing default jobs")
Scheduler.register_default_jobs(defaults.DEFAULT_JOB_DIR)
logger.debug("Default jobs initialized")
logger.debug("Initializing DB for tokens")
create_models()
logger.debug("DB for tokens initialized")
@manager.command
def runserver():
"""Run job service server."""
#
# The Flasks's runserver command was overwritten because we are using connexion.
#
# Make sure that you do not run the application with multiple processes since we would
# have multiple scheduler instances. If you would like to do so, just create one scheduler
# that would serve jobs and per-process scheduler would be in paused mode
# just for creating/listing jobs.
app.run(
port=os.environ.get('JOB_SERVICE_PORT', defaults.DEFAULT_SERVICE_PORT),
server='flask',
debug=True,
use_reloader=True,
threaded=True,
json_encoder=SafeJSONEncoder,
processes=1
)
if __name__ == '__main__':
manager.run()