2013-09-23 16:37:40 +00:00
|
|
|
import logging
|
2013-10-01 03:54:12 +00:00
|
|
|
import os
|
2014-06-23 15:24:54 +00:00
|
|
|
import json
|
2013-09-23 16:37:40 +00:00
|
|
|
|
2015-09-01 19:03:46 +00:00
|
|
|
from functools import partial
|
2015-07-15 21:25:41 +00:00
|
|
|
from flask import Flask, request, Request, _request_ctx_stack
|
2013-09-20 22:38:17 +00:00
|
|
|
from flask.ext.principal import Principal
|
2015-01-17 03:41:54 +00:00
|
|
|
from flask.ext.login import LoginManager, UserMixin
|
2013-09-27 23:29:01 +00:00
|
|
|
from flask.ext.mail import Mail
|
2015-06-22 21:37:13 +00:00
|
|
|
from werkzeug.routing import BaseConverter
|
2015-09-28 19:43:20 +00:00
|
|
|
from jwkest.jwk import RSAKey
|
|
|
|
from Crypto.PublicKey import RSA
|
2013-10-03 20:19:01 +00:00
|
|
|
|
2014-04-03 22:47:17 +00:00
|
|
|
import features
|
|
|
|
|
2015-02-05 20:37:14 +00:00
|
|
|
from avatars.avatars import Avatar
|
2014-04-03 21:31:46 +00:00
|
|
|
from storage import Storage
|
2014-05-13 16:17:26 +00:00
|
|
|
from data import model
|
|
|
|
from data import database
|
2014-04-03 21:31:46 +00:00
|
|
|
from data.userfiles import Userfiles
|
2014-05-09 21:39:43 +00:00
|
|
|
from data.users import UserAuthentication
|
2014-04-10 19:20:16 +00:00
|
|
|
from data.billing import Billing
|
2014-05-09 22:45:11 +00:00
|
|
|
from data.buildlogs import BuildLogs
|
2014-09-08 20:43:17 +00:00
|
|
|
from data.archivedlogs import LogArchive
|
2014-05-30 18:25:29 +00:00
|
|
|
from data.userevent import UserEventsBuilderModule
|
2016-06-28 18:36:17 +00:00
|
|
|
from data.queue import WorkQueue, BuildMetricQueueReporter
|
2015-09-01 19:03:46 +00:00
|
|
|
from util import get_app_url
|
2015-08-03 19:49:10 +00:00
|
|
|
from util.saas.analytics import Analytics
|
|
|
|
from util.saas.exceptionlog import Sentry
|
2015-01-09 21:23:31 +00:00
|
|
|
from util.names import urn_generator
|
2015-09-04 20:14:46 +00:00
|
|
|
from util.config.oauth import (GoogleOAuthConfig, GithubOAuthConfig, GitLabOAuthConfig,
|
|
|
|
DexOAuthConfig)
|
|
|
|
|
2015-08-03 19:49:10 +00:00
|
|
|
from util.security.signing import Signer
|
2016-05-31 20:48:19 +00:00
|
|
|
from util.security.instancekeys import InstanceKeys
|
2015-08-12 19:14:09 +00:00
|
|
|
from util.saas.cloudwatch import start_cloudwatch_sender
|
2015-07-24 18:52:19 +00:00
|
|
|
from util.config.provider import get_config_provider
|
2015-10-30 19:48:29 +00:00
|
|
|
from util.config.provider.baseprovider import SetupIncompleteException
|
2015-01-09 21:23:31 +00:00
|
|
|
from util.config.configutil import generate_secret_key
|
2015-01-20 17:43:11 +00:00
|
|
|
from util.config.superusermanager import SuperUserManager
|
2015-11-10 20:01:33 +00:00
|
|
|
from util.secscan.api import SecurityScannerAPI
|
2016-07-01 18:16:15 +00:00
|
|
|
from util.metrics.metricqueue import MetricQueue
|
|
|
|
from util.metrics.prometheus import PrometheusPlugin
|
2016-07-18 22:20:00 +00:00
|
|
|
from util.label_validator import LabelValidator
|
2014-04-07 20:59:22 +00:00
|
|
|
|
2015-02-04 20:29:24 +00:00
|
|
|
OVERRIDE_CONFIG_DIRECTORY = 'conf/stack/'
|
2014-08-22 00:36:11 +00:00
|
|
|
OVERRIDE_CONFIG_YAML_FILENAME = 'conf/stack/config.yaml'
|
|
|
|
OVERRIDE_CONFIG_PY_FILENAME = 'conf/stack/config.py'
|
|
|
|
|
2014-06-23 15:24:54 +00:00
|
|
|
OVERRIDE_CONFIG_KEY = 'QUAY_OVERRIDE_CONFIG'
|
2014-04-07 20:59:22 +00:00
|
|
|
|
2015-09-28 19:43:20 +00:00
|
|
|
DOCKER_V2_SIGNINGKEY_FILENAME = 'docker_v2.pem'
|
|
|
|
|
2013-09-20 15:55:44 +00:00
|
|
|
app = Flask(__name__)
|
2013-10-03 20:19:01 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2015-07-27 15:17:44 +00:00
|
|
|
# Instantiate the configuration.
|
2015-07-24 18:52:19 +00:00
|
|
|
is_testing = 'TEST' in os.environ
|
2015-07-27 15:17:44 +00:00
|
|
|
is_kubernetes = 'KUBERNETES_SERVICE_HOST' in os.environ
|
2015-07-24 18:52:19 +00:00
|
|
|
config_provider = get_config_provider(OVERRIDE_CONFIG_DIRECTORY, 'config.yaml', 'config.py',
|
2015-07-27 15:17:44 +00:00
|
|
|
testing=is_testing, kubernetes=is_kubernetes)
|
2015-01-09 21:23:31 +00:00
|
|
|
|
2015-07-24 18:52:19 +00:00
|
|
|
if is_testing:
|
2014-04-07 20:59:22 +00:00
|
|
|
from test.testconfig import TestConfig
|
|
|
|
logger.debug('Loading test config.')
|
|
|
|
app.config.from_object(TestConfig())
|
|
|
|
else:
|
|
|
|
from config import DefaultConfig
|
|
|
|
logger.debug('Loading default config.')
|
|
|
|
app.config.from_object(DefaultConfig())
|
2015-01-09 21:23:31 +00:00
|
|
|
app.teardown_request(database.close_db_filter)
|
2014-04-03 21:31:46 +00:00
|
|
|
|
2015-01-09 21:23:31 +00:00
|
|
|
# Load the override config via the provider.
|
2015-07-24 18:52:19 +00:00
|
|
|
config_provider.update_app_config(app.config)
|
2013-09-27 23:29:01 +00:00
|
|
|
|
2015-01-09 21:23:31 +00:00
|
|
|
# Update any configuration found in the override environment variable.
|
|
|
|
environ_config = json.loads(os.environ.get(OVERRIDE_CONFIG_KEY, '{}'))
|
|
|
|
app.config.update(environ_config)
|
2014-10-14 17:58:08 +00:00
|
|
|
|
2015-11-06 18:34:49 +00:00
|
|
|
# Allow user to define a custom storage preference for the local instance.
|
|
|
|
_distributed_storage_preference = os.environ.get('QUAY_DISTRIBUTED_STORAGE_PREFERENCE', '').split()
|
|
|
|
if _distributed_storage_preference:
|
|
|
|
app.config['DISTRIBUTED_STORAGE_PREFERENCE'] = _distributed_storage_preference
|
|
|
|
|
2016-04-28 17:41:50 +00:00
|
|
|
# Generate a secret key if none was specified.
|
|
|
|
if app.config['SECRET_KEY'] is None:
|
|
|
|
logger.debug('Generating in-memory secret key')
|
|
|
|
app.config['SECRET_KEY'] = generate_secret_key()
|
|
|
|
|
|
|
|
# If the "preferred" scheme is https, then http is not allowed. Therefore, ensure we have a secure
|
|
|
|
# session cookie.
|
2016-08-11 20:16:15 +00:00
|
|
|
if (app.config['PREFERRED_URL_SCHEME'] == 'https' and
|
|
|
|
not app.config.get('FORCE_NONSECURE_SESSION_COOKIE', False)):
|
2016-04-28 17:41:50 +00:00
|
|
|
app.config['SESSION_COOKIE_SECURE'] = True
|
|
|
|
|
|
|
|
# Load features from config.
|
|
|
|
features.import_features(app.config)
|
|
|
|
|
2014-10-14 17:58:08 +00:00
|
|
|
|
|
|
|
class RequestWithId(Request):
|
|
|
|
request_gen = staticmethod(urn_generator(['request']))
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(RequestWithId, self).__init__(*args, **kwargs)
|
|
|
|
self.request_id = self.request_gen()
|
|
|
|
|
|
|
|
|
|
|
|
@app.before_request
|
|
|
|
def _request_start():
|
2015-02-11 19:15:18 +00:00
|
|
|
logger.debug('Starting request: %s', request.path)
|
2014-10-14 17:58:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
@app.after_request
|
|
|
|
def _request_end(r):
|
2015-02-11 19:15:18 +00:00
|
|
|
logger.debug('Ending request: %s', request.path)
|
2014-10-14 17:58:08 +00:00
|
|
|
return r
|
|
|
|
|
|
|
|
|
|
|
|
class InjectingFilter(logging.Filter):
|
|
|
|
def filter(self, record):
|
2015-02-11 19:15:18 +00:00
|
|
|
if _request_ctx_stack.top is not None:
|
|
|
|
record.msg = '[%s] %s' % (request.request_id, record.msg)
|
2014-10-14 17:58:08 +00:00
|
|
|
return True
|
|
|
|
|
2016-01-28 16:30:47 +00:00
|
|
|
root_logger = logging.getLogger()
|
|
|
|
|
2015-02-11 19:15:18 +00:00
|
|
|
# Add the request id filter to all handlers of the root logger
|
2016-01-28 16:30:47 +00:00
|
|
|
for handler in root_logger.handlers:
|
2015-02-11 19:15:18 +00:00
|
|
|
handler.addFilter(InjectingFilter())
|
2014-10-14 17:58:08 +00:00
|
|
|
|
|
|
|
app.request_class = RequestWithId
|
|
|
|
|
2016-01-21 20:40:51 +00:00
|
|
|
# Register custom converters.
|
|
|
|
class RegexConverter(BaseConverter):
|
|
|
|
""" Converter for handling custom regular expression patterns in paths. """
|
2016-05-04 21:38:21 +00:00
|
|
|
def __init__(self, url_map, regex_value):
|
2016-01-21 20:40:51 +00:00
|
|
|
super(RegexConverter, self).__init__(url_map)
|
2016-05-04 21:38:21 +00:00
|
|
|
self.regex = regex_value
|
|
|
|
|
2016-01-21 20:40:51 +00:00
|
|
|
|
|
|
|
class RepositoryPathConverter(BaseConverter):
|
|
|
|
""" Converter for handling repository paths. Handles both library and non-library paths (if
|
|
|
|
configured).
|
|
|
|
"""
|
2016-05-04 21:38:21 +00:00
|
|
|
def __init__(self, url_map):
|
2016-01-21 20:40:51 +00:00
|
|
|
super(RepositoryPathConverter, self).__init__(url_map)
|
|
|
|
self.weight = 200
|
|
|
|
|
|
|
|
if features.LIBRARY_SUPPORT:
|
|
|
|
# Allow names without namespaces.
|
|
|
|
self.regex = r'[^/]+(/[^/]+)?'
|
|
|
|
else:
|
|
|
|
self.regex = r'([^/]+/[^/]+)'
|
|
|
|
|
|
|
|
|
|
|
|
class APIRepositoryPathConverter(BaseConverter):
|
|
|
|
""" Converter for handling repository paths. Does not handle library paths.
|
|
|
|
"""
|
2016-05-04 21:38:21 +00:00
|
|
|
def __init__(self, url_map):
|
2016-01-21 20:40:51 +00:00
|
|
|
super(APIRepositoryPathConverter, self).__init__(url_map)
|
|
|
|
self.weight = 200
|
|
|
|
self.regex = r'([^/]+/[^/]+)'
|
|
|
|
|
|
|
|
|
|
|
|
app.url_map.converters['regex'] = RegexConverter
|
|
|
|
app.url_map.converters['repopath'] = RepositoryPathConverter
|
|
|
|
app.url_map.converters['apirepopath'] = APIRepositoryPathConverter
|
|
|
|
|
2014-03-17 16:01:13 +00:00
|
|
|
Principal(app, use_sessions=False)
|
2013-09-20 22:38:17 +00:00
|
|
|
|
2014-11-25 00:25:13 +00:00
|
|
|
avatar = Avatar(app)
|
2014-04-09 03:05:45 +00:00
|
|
|
login_manager = LoginManager(app)
|
|
|
|
mail = Mail(app)
|
2016-02-01 20:07:46 +00:00
|
|
|
prometheus = PrometheusPlugin(app)
|
|
|
|
metric_queue = MetricQueue(prometheus)
|
2016-08-24 16:55:33 +00:00
|
|
|
instance_keys = InstanceKeys(app)
|
|
|
|
storage = Storage(app, metric_queue, instance_keys)
|
2014-09-09 19:54:03 +00:00
|
|
|
userfiles = Userfiles(app, storage)
|
2014-09-11 15:18:28 +00:00
|
|
|
log_archive = LogArchive(app, storage)
|
2014-04-09 03:05:45 +00:00
|
|
|
analytics = Analytics(app)
|
2014-04-10 19:20:16 +00:00
|
|
|
billing = Billing(app)
|
2014-04-28 22:59:22 +00:00
|
|
|
sentry = Sentry(app)
|
2014-05-09 22:45:11 +00:00
|
|
|
build_logs = BuildLogs(app)
|
2016-05-03 19:02:39 +00:00
|
|
|
authentication = UserAuthentication(app, config_provider, OVERRIDE_CONFIG_DIRECTORY)
|
2014-05-30 18:25:29 +00:00
|
|
|
userevents = UserEventsBuilderModule(app)
|
2015-01-20 17:43:11 +00:00
|
|
|
superusers = SuperUserManager(app)
|
2016-05-23 21:10:03 +00:00
|
|
|
signer = Signer(app, config_provider)
|
2016-05-31 20:48:19 +00:00
|
|
|
instance_keys = InstanceKeys(app)
|
2016-07-18 22:20:00 +00:00
|
|
|
label_validator = LabelValidator(app)
|
2016-05-31 20:48:19 +00:00
|
|
|
|
2015-08-12 20:31:01 +00:00
|
|
|
start_cloudwatch_sender(metric_queue, app)
|
2015-01-16 18:44:29 +00:00
|
|
|
|
|
|
|
tf = app.config['DB_TRANSACTION_FACTORY']
|
2014-05-21 23:50:37 +00:00
|
|
|
|
2015-01-07 21:20:51 +00:00
|
|
|
github_login = GithubOAuthConfig(app.config, 'GITHUB_LOGIN_CONFIG')
|
|
|
|
github_trigger = GithubOAuthConfig(app.config, 'GITHUB_TRIGGER_CONFIG')
|
2015-05-02 21:54:48 +00:00
|
|
|
gitlab_trigger = GitLabOAuthConfig(app.config, 'GITLAB_TRIGGER_CONFIG')
|
2015-01-07 21:20:51 +00:00
|
|
|
google_login = GoogleOAuthConfig(app.config, 'GOOGLE_LOGIN_CONFIG')
|
2015-09-04 20:14:46 +00:00
|
|
|
dex_login = DexOAuthConfig(app.config, 'DEX_LOGIN_CONFIG')
|
|
|
|
|
|
|
|
oauth_apps = [github_login, github_trigger, gitlab_trigger, google_login, dex_login]
|
2014-11-05 21:43:37 +00:00
|
|
|
|
2015-10-06 21:07:27 +00:00
|
|
|
image_replication_queue = WorkQueue(app.config['REPLICATION_QUEUE_NAME'], tf)
|
2014-05-22 16:13:41 +00:00
|
|
|
dockerfile_build_queue = WorkQueue(app.config['DOCKERFILE_BUILD_QUEUE_NAME'], tf,
|
2016-06-28 18:36:17 +00:00
|
|
|
reporter=BuildMetricQueueReporter(metric_queue))
|
2015-10-06 21:07:27 +00:00
|
|
|
notification_queue = WorkQueue(app.config['NOTIFICATION_QUEUE_NAME'], tf)
|
2015-11-09 23:30:14 +00:00
|
|
|
secscan_notification_queue = WorkQueue(app.config['SECSCAN_NOTIFICATION_QUEUE_NAME'], tf)
|
2016-05-04 21:40:09 +00:00
|
|
|
secscan_api = SecurityScannerAPI(app, app.config, storage)
|
2014-05-22 16:13:41 +00:00
|
|
|
|
2015-09-28 19:43:20 +00:00
|
|
|
# Check for a key in config. If none found, generate a new signing key for Docker V2 manifests.
|
|
|
|
_v2_key_path = os.path.join(OVERRIDE_CONFIG_DIRECTORY, DOCKER_V2_SIGNINGKEY_FILENAME)
|
|
|
|
if os.path.exists(_v2_key_path):
|
|
|
|
docker_v2_signing_key = RSAKey().load(_v2_key_path)
|
|
|
|
else:
|
|
|
|
docker_v2_signing_key = RSAKey(key=RSA.generate(2048))
|
|
|
|
|
2015-11-20 20:32:17 +00:00
|
|
|
|
2014-05-13 16:17:26 +00:00
|
|
|
database.configure(app.config)
|
|
|
|
model.config.app_config = app.config
|
|
|
|
model.config.store = storage
|
2014-07-29 17:47:54 +00:00
|
|
|
|
2015-01-17 03:41:54 +00:00
|
|
|
@login_manager.user_loader
|
|
|
|
def load_user(user_uuid):
|
|
|
|
logger.debug('User loader loading deferred user with uuid: %s' % user_uuid)
|
|
|
|
return LoginWrappedDBUser(user_uuid)
|
|
|
|
|
|
|
|
class LoginWrappedDBUser(UserMixin):
|
|
|
|
def __init__(self, user_uuid, db_user=None):
|
|
|
|
self._uuid = user_uuid
|
|
|
|
self._db_user = db_user
|
|
|
|
|
|
|
|
def db_user(self):
|
|
|
|
if not self._db_user:
|
2015-07-15 21:25:41 +00:00
|
|
|
self._db_user = model.user.get_user_by_uuid(self._uuid)
|
2015-01-17 03:41:54 +00:00
|
|
|
return self._db_user
|
|
|
|
|
2016-01-27 16:36:40 +00:00
|
|
|
@property
|
2015-01-17 03:41:54 +00:00
|
|
|
def is_authenticated(self):
|
|
|
|
return self.db_user() is not None
|
|
|
|
|
2016-01-27 16:36:40 +00:00
|
|
|
@property
|
2015-01-17 03:41:54 +00:00
|
|
|
def is_active(self):
|
|
|
|
return self.db_user().verified
|
|
|
|
|
|
|
|
def get_id(self):
|
|
|
|
return unicode(self._uuid)
|
|
|
|
|
2015-09-01 19:03:46 +00:00
|
|
|
get_app_url = partial(get_app_url, app.config)
|