2014-04-09 23:11:33 +00:00
|
|
|
from __future__ import with_statement
|
2014-09-22 18:36:52 +00:00
|
|
|
|
2015-09-16 15:44:58 +00:00
|
|
|
import logging
|
2014-09-22 18:36:52 +00:00
|
|
|
import os
|
|
|
|
|
2014-04-09 23:11:33 +00:00
|
|
|
from alembic import context
|
2016-01-29 15:59:23 +00:00
|
|
|
from alembic.script.revision import ResolutionError
|
2015-09-16 15:44:58 +00:00
|
|
|
from alembic.util import CommandError
|
2014-04-09 23:11:33 +00:00
|
|
|
from sqlalchemy import engine_from_config, pool
|
|
|
|
from logging.config import fileConfig
|
2014-11-03 20:25:55 +00:00
|
|
|
from urllib import unquote, quote
|
2014-05-13 19:20:17 +00:00
|
|
|
from peewee import SqliteDatabase
|
2014-04-09 23:11:33 +00:00
|
|
|
|
2014-05-13 19:20:17 +00:00
|
|
|
from data.database import all_models, db
|
2018-05-07 13:45:57 +00:00
|
|
|
from data.migrations.tester import NoopTester, PopulateTestDataTester
|
|
|
|
|
2014-04-09 23:11:33 +00:00
|
|
|
from data.model.sqlalchemybridge import gen_sqlalchemy_metadata
|
2015-09-16 15:44:58 +00:00
|
|
|
from release import GIT_HEAD, REGION, SERVICE
|
2014-09-08 20:42:43 +00:00
|
|
|
from util.morecollections import AttrDict
|
2014-04-09 23:11:33 +00:00
|
|
|
|
|
|
|
config = context.config
|
2018-06-21 18:48:40 +00:00
|
|
|
DB_URI = config.get_main_option('db_uri', 'sqlite:///test/data/test.db')
|
|
|
|
|
2018-06-22 17:21:44 +00:00
|
|
|
|
|
|
|
# This option exists because alembic needs the db proxy to be configured in order
|
|
|
|
# to perform migrations. The app import does the init of the proxy, but we don't
|
|
|
|
# want that in the case of the config app, as we are explicitly connecting to a
|
|
|
|
# db that the user has passed in, and we can't have import dependency on app
|
2018-06-21 18:48:40 +00:00
|
|
|
if config.get_main_option('alembic_setup_app', 'True') == 'True':
|
|
|
|
from app import app
|
|
|
|
DB_URI = app.config['DB_URI']
|
|
|
|
|
2018-06-19 17:46:34 +00:00
|
|
|
config.set_main_option('sqlalchemy.url', unquote(DB_URI))
|
2014-04-09 23:11:33 +00:00
|
|
|
# Interpret the config file for Python logging.
|
|
|
|
# This line sets up loggers basically.
|
2015-01-23 22:19:15 +00:00
|
|
|
if config.config_file_name:
|
|
|
|
fileConfig(config.config_file_name)
|
2014-04-09 23:11:33 +00:00
|
|
|
|
2015-09-16 15:44:58 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2014-04-09 23:11:33 +00:00
|
|
|
# add your model's MetaData object here
|
|
|
|
# for 'autogenerate' support
|
|
|
|
# from myapp import mymodel
|
|
|
|
# target_metadata = mymodel.Base.metadata
|
|
|
|
target_metadata = gen_sqlalchemy_metadata(all_models)
|
2014-09-05 00:58:29 +00:00
|
|
|
tables = AttrDict(target_metadata.tables)
|
2014-04-09 23:11:33 +00:00
|
|
|
|
|
|
|
# other values from the config, defined by the needs of env.py,
|
|
|
|
# can be acquired:
|
|
|
|
# my_important_option = config.get_main_option("my_important_option")
|
|
|
|
# ... etc.
|
|
|
|
|
2018-05-07 13:45:57 +00:00
|
|
|
def get_tester():
|
|
|
|
""" Returns the tester to use. We only return the tester that populates data
|
|
|
|
if the TEST_MIGRATE env var is set to `true` AND we make sure we're not
|
|
|
|
connecting to a production database.
|
|
|
|
"""
|
|
|
|
if os.environ.get('TEST_MIGRATE', '') == 'true':
|
2018-06-19 17:46:34 +00:00
|
|
|
url = unquote(DB_URI)
|
2018-05-07 13:45:57 +00:00
|
|
|
if url.find('.quay.io') < 0:
|
|
|
|
return PopulateTestDataTester()
|
|
|
|
|
|
|
|
return NoopTester()
|
|
|
|
|
2014-04-09 23:11:33 +00:00
|
|
|
def run_migrations_offline():
|
|
|
|
"""Run migrations in 'offline' mode.
|
|
|
|
|
|
|
|
This configures the context with just a URL
|
|
|
|
and not an Engine, though an Engine is acceptable
|
|
|
|
here as well. By skipping the Engine creation
|
|
|
|
we don't even need a DBAPI to be available.
|
|
|
|
|
|
|
|
Calls to context.execute() here emit the given string to the
|
|
|
|
script output.
|
|
|
|
|
|
|
|
"""
|
2018-06-19 17:46:34 +00:00
|
|
|
url = unquote(DB_URI)
|
2014-05-13 19:20:17 +00:00
|
|
|
context.configure(url=url, target_metadata=target_metadata, transactional_ddl=True)
|
2014-04-09 23:11:33 +00:00
|
|
|
|
|
|
|
with context.begin_transaction():
|
2018-06-21 18:48:40 +00:00
|
|
|
context.run_migrations(tables=tables, tester=get_tester())
|
2014-04-09 23:11:33 +00:00
|
|
|
|
|
|
|
def run_migrations_online():
|
|
|
|
"""Run migrations in 'online' mode.
|
|
|
|
|
|
|
|
In this scenario we need to create an Engine
|
|
|
|
and associate a connection with the context.
|
|
|
|
|
|
|
|
"""
|
2014-05-13 19:20:17 +00:00
|
|
|
|
2014-11-03 20:25:55 +00:00
|
|
|
if isinstance(db.obj, SqliteDatabase) and not 'GENMIGRATE' in os.environ and not 'DB_URI' in os.environ:
|
2014-05-13 19:20:17 +00:00
|
|
|
print ('Skipping Sqlite migration!')
|
|
|
|
return
|
|
|
|
|
2014-04-09 23:11:33 +00:00
|
|
|
engine = engine_from_config(
|
|
|
|
config.get_section(config.config_ini_section),
|
|
|
|
prefix='sqlalchemy.',
|
|
|
|
poolclass=pool.NullPool)
|
|
|
|
|
|
|
|
connection = engine.connect()
|
|
|
|
context.configure(
|
|
|
|
connection=connection,
|
2014-11-18 19:07:33 +00:00
|
|
|
target_metadata=target_metadata,
|
|
|
|
transactional_ddl=False,
|
2014-04-09 23:11:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
try:
|
|
|
|
with context.begin_transaction():
|
2015-09-16 15:44:58 +00:00
|
|
|
try:
|
2018-06-21 18:48:40 +00:00
|
|
|
context.run_migrations(tables=tables, tester=get_tester())
|
2015-09-16 15:44:58 +00:00
|
|
|
except (CommandError, ResolutionError) as ex:
|
|
|
|
if 'No such revision' not in str(ex):
|
|
|
|
raise
|
|
|
|
|
|
|
|
if not REGION or not GIT_HEAD:
|
|
|
|
raise
|
|
|
|
|
|
|
|
from data.model.release import get_recent_releases
|
|
|
|
|
|
|
|
# ignore revision error if we're running the previous release
|
|
|
|
releases = list(get_recent_releases(SERVICE, REGION).offset(1).limit(1))
|
|
|
|
if releases and releases[0].version == GIT_HEAD:
|
|
|
|
logger.warn('Skipping database migration because revision not found')
|
|
|
|
else:
|
|
|
|
raise
|
2014-04-09 23:11:33 +00:00
|
|
|
finally:
|
|
|
|
connection.close()
|
|
|
|
|
|
|
|
if context.is_offline_mode():
|
|
|
|
run_migrations_offline()
|
|
|
|
else:
|
|
|
|
run_migrations_online()
|
|
|
|
|