forked from mozilla-conduit/phabricator-emails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprepare.py
39 lines (31 loc) · 1.37 KB
/
prepare.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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from phabricatoremails.query_position_store import DBQueryPositionStore
from phabricatoremails.settings import Settings
def prepare(settings: Settings):
"""Initializes the database.
Creates the schema and sets the position to the end of the Phabricator feed.
"""
db = settings.db()
source = settings.source
worker = settings.worker
# There's one-time setup that occurs as part of preparation logic that we don't
# want to invoke multiple times. This check asserts that "prepare" isn't
# run more than one time.
if db.is_initialized():
settings.logger.warning(
"Database has already been initialized! Run "
"`phabricator-emails migrate` to upgrade an existing "
"database"
)
return
# We fetch the end key at the beginning here so that we fail early if
# we can't successfully communicate with Phabricator
end_key = source.fetch_feed_end()
db.upgrade_schema()
with db.session() as db_session:
worker.set_initial_position(DBQueryPositionStore(db_session), end_key)
settings.logger.info(
f'Database initialized, current Phabricator position is "{end_key}".'
)