2016-11-29 04:18:44 +00:00
|
|
|
import argparse
|
|
|
|
import os
|
|
|
|
import sqlite3
|
|
|
|
import sys
|
|
|
|
|
2017-02-05 04:01:03 +00:00
|
|
|
import etiquette.photodb
|
2016-11-29 04:18:44 +00:00
|
|
|
|
|
|
|
def upgrade_1_to_2(sql):
|
|
|
|
'''
|
|
|
|
In this version, a column `tagged_at` was added to the Photos table, to keep
|
|
|
|
track of the last time the photo's tags were edited (added or removed).
|
|
|
|
'''
|
|
|
|
cur = sql.cursor()
|
|
|
|
cur.execute('ALTER TABLE photos ADD COLUMN tagged_at INT')
|
|
|
|
|
2016-12-16 23:45:46 +00:00
|
|
|
def upgrade_2_to_3(sql):
|
|
|
|
'''
|
|
|
|
Preliminary support for user account management was added. This includes a `user` table
|
|
|
|
with id, username, password hash, and a timestamp.
|
|
|
|
Plus some indices.
|
|
|
|
'''
|
|
|
|
cur = sql.cursor()
|
|
|
|
cur.execute('''
|
|
|
|
CREATE TABLE IF NOT EXISTS users(
|
|
|
|
id TEXT,
|
|
|
|
username TEXT COLLATE NOCASE,
|
|
|
|
password BLOB,
|
|
|
|
created INT
|
|
|
|
)
|
|
|
|
''')
|
|
|
|
cur.execute('CREATE INDEX IF NOT EXISTS index_user_id ON users(id)')
|
|
|
|
cur.execute('CREATE INDEX IF NOT EXISTS index_user_username ON users(username COLLATE NOCASE)')
|
|
|
|
|
2016-12-20 22:54:23 +00:00
|
|
|
def upgrade_3_to_4(sql):
|
|
|
|
'''
|
|
|
|
Add an `author_id` column to Photos.
|
|
|
|
'''
|
|
|
|
cur = sql.cursor()
|
|
|
|
cur.execute('ALTER TABLE photos ADD COLUMN author_id TEXT')
|
2017-03-04 05:15:31 +00:00
|
|
|
cur.execute('CREATE INDEX IF NOT EXISTS index_photo_author ON photos(author_id)')
|
2016-11-29 04:18:44 +00:00
|
|
|
|
2017-02-05 02:30:02 +00:00
|
|
|
def upgrade_4_to_5(sql):
|
|
|
|
'''
|
|
|
|
Add table `bookmarks` and its indices.
|
|
|
|
'''
|
|
|
|
cur = sql.cursor()
|
|
|
|
cur.execute('''
|
|
|
|
CREATE TABLE IF NOT EXISTS bookmarks(
|
|
|
|
id TEXT,
|
|
|
|
title TEXT,
|
|
|
|
url TEXT,
|
|
|
|
author_id TEXT
|
|
|
|
)
|
|
|
|
''')
|
2017-03-04 05:15:31 +00:00
|
|
|
cur.execute('CREATE INDEX IF NOT EXISTS index_bookmark_id ON bookmarks(id)')
|
|
|
|
cur.execute('CREATE INDEX IF NOT EXISTS index_bookmark_author ON bookmarks(author_id)')
|
2017-02-05 02:30:02 +00:00
|
|
|
|
2017-03-04 09:13:22 +00:00
|
|
|
def upgrade_5_to_6(sql):
|
|
|
|
'''
|
|
|
|
When Albums were first introduced, they shared the ID counter and
|
|
|
|
relationship table with tags, because they were mostly identical at the time.
|
|
|
|
However this is very ugly and confusing and it's time to finally change it.
|
|
|
|
- Renames old indices `index_grouprel_*` to `index_taggroup_*`
|
|
|
|
- Creates new indices `index_albumgroup_*`
|
|
|
|
- Creates new table `album_group_rel`
|
|
|
|
- Moves all album group relationships out of `tag_group_rel` and
|
|
|
|
into `album_group_rel`
|
|
|
|
- Gives albums their own last_id value, starting with the current tag value.
|
|
|
|
'''
|
|
|
|
# 1. Start the id_numbers.albums value at the tags value so that the number
|
|
|
|
# can continue to increment safely and separately, instead of starting at
|
|
|
|
# zero and bumping into existing albums.
|
|
|
|
cur = sql.cursor()
|
|
|
|
cur.execute('SELECT * FROM id_numbers WHERE tab == "tags"')
|
|
|
|
last_id = cur.fetchone()[1]
|
|
|
|
cur.execute('INSERT INTO id_numbers VALUES("albums", ?)', [last_id])
|
|
|
|
|
|
|
|
# 2. Now's a good chance to rename 'index_grouprel' to 'index_taggroup'.
|
|
|
|
cur.execute('DROP INDEX index_grouprel_parentid')
|
|
|
|
cur.execute('DROP INDEX index_grouprel_memberid')
|
|
|
|
cur.execute('CREATE INDEX index_taggroup_parentid ON tag_group_rel(parentid)')
|
|
|
|
cur.execute('CREATE INDEX index_taggroup_memberid ON tag_group_rel(memberid)')
|
|
|
|
|
|
|
|
# 3. All of the album group relationships need to be moved into their
|
|
|
|
# own table, out of tag_group_rel
|
|
|
|
cur.execute('CREATE TABLE album_group_rel(parentid TEXT, memberid TEXT)')
|
2017-03-10 13:49:18 +00:00
|
|
|
cur.execute('CREATE INDEX index_albumgroup_parentid ON album_group_rel(parentid)')
|
|
|
|
cur.execute('CREATE INDEX index_albumgroup_memberid ON album_group_rel(memberid)')
|
2017-03-04 09:13:22 +00:00
|
|
|
cur.execute('SELECT id FROM albums')
|
|
|
|
album_ids = [f[0] for f in cur.fetchall()]
|
|
|
|
for album_id in album_ids:
|
|
|
|
cur.execute(
|
|
|
|
'SELECT * FROM tag_group_rel WHERE parentid == ? OR memberid == ?',
|
|
|
|
[album_id, album_id]
|
|
|
|
)
|
|
|
|
f = cur.fetchall()
|
|
|
|
if f == []:
|
|
|
|
continue
|
|
|
|
for grouprel in f:
|
|
|
|
cur.execute('INSERT INTO album_group_rel VALUES(?, ?)', grouprel)
|
|
|
|
cur.execute(
|
|
|
|
'DELETE FROM tag_group_rel WHERE parentid == ? OR memberid == ?',
|
|
|
|
[album_id, album_id]
|
|
|
|
)
|
|
|
|
|
2017-03-17 06:57:31 +00:00
|
|
|
def upgrade_6_to_7(sql):
|
|
|
|
'''
|
|
|
|
Most of the indices were renamed, so delete them and let them regenerate
|
|
|
|
next time.
|
|
|
|
|
|
|
|
Albums lost their `associated_directory` column, and it has been moved to a
|
|
|
|
separate table `album_associated_directories`, so that we can have albums
|
|
|
|
which load from multiple directories.
|
|
|
|
'''
|
|
|
|
cur = sql.cursor()
|
|
|
|
cur.execute('SELECT name FROM sqlite_master WHERE type == "index"')
|
|
|
|
indices = [x[0] for x in cur.fetchall()]
|
|
|
|
for index in indices:
|
|
|
|
cur.execute('DROP INDEX %s' % index)
|
|
|
|
|
|
|
|
|
|
|
|
cur.execute('''
|
|
|
|
CREATE TABLE album_associated_directories(
|
|
|
|
albumid TEXT,
|
|
|
|
directory TEXT COLLATE NOCASE
|
|
|
|
)''')
|
|
|
|
cur.execute('ALTER TABLE albums RENAME TO deleting_albums')
|
|
|
|
cur.execute('''
|
|
|
|
CREATE TABLE albums(
|
|
|
|
id TEXT,
|
|
|
|
title TEXT,
|
|
|
|
description TEXT
|
|
|
|
)''')
|
|
|
|
cur.execute('INSERT INTO albums SELECT id, title, description FROM deleting_albums')
|
|
|
|
cur.execute('''
|
2017-03-23 06:56:58 +00:00
|
|
|
INSERT INTO album_associated_directories
|
|
|
|
SELECT id, associated_directory
|
|
|
|
FROM deleting_albums
|
|
|
|
WHERE associated_directory IS NOT NULL
|
2017-03-17 06:57:31 +00:00
|
|
|
''')
|
|
|
|
cur.execute('DROP TABLE deleting_albums')
|
|
|
|
|
|
|
|
|
2016-11-29 04:18:44 +00:00
|
|
|
def upgrade_all(database_filename):
|
|
|
|
'''
|
|
|
|
Given the filename of a phototagger database, apply all of the needed
|
|
|
|
upgrade_x_to_y functions in order.
|
|
|
|
'''
|
|
|
|
if not os.path.isfile(database_filename):
|
|
|
|
raise FileNotFoundError(database_filename)
|
|
|
|
|
|
|
|
sql = sqlite3.connect(database_filename)
|
|
|
|
cur = sql.cursor()
|
|
|
|
|
|
|
|
cur.execute('PRAGMA user_version')
|
|
|
|
current_version = cur.fetchone()[0]
|
2017-02-05 04:01:03 +00:00
|
|
|
needed_version = etiquette.photodb.DATABASE_VERSION
|
2016-11-29 04:18:44 +00:00
|
|
|
|
|
|
|
if current_version == needed_version:
|
2016-12-17 01:59:43 +00:00
|
|
|
print('Already up-to-date with version %d.' % needed_version)
|
2016-11-29 04:18:44 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
for version_number in range(current_version + 1, needed_version + 1):
|
|
|
|
print('Upgrading from %d to %d' % (current_version, version_number))
|
|
|
|
upgrade_function = 'upgrade_%d_to_%d' % (current_version, version_number)
|
|
|
|
upgrade_function = eval(upgrade_function)
|
|
|
|
upgrade_function(sql)
|
2016-12-16 23:45:46 +00:00
|
|
|
sql.cursor().execute('PRAGMA user_version = %d' % version_number)
|
2016-11-29 04:18:44 +00:00
|
|
|
sql.commit()
|
|
|
|
current_version = version_number
|
|
|
|
print('Upgrades finished.')
|
|
|
|
|
|
|
|
|
|
|
|
def upgrade_all_argparse(args):
|
|
|
|
return upgrade_all(database_filename=args.database_filename)
|
|
|
|
|
|
|
|
def main(argv):
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
|
|
|
|
parser.add_argument('database_filename')
|
|
|
|
parser.set_defaults(func=upgrade_all_argparse)
|
|
|
|
|
|
|
|
args = parser.parse_args(argv)
|
|
|
|
args.func(args)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main(sys.argv[1:])
|