mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 17:35:04 +00:00
105 lines
3.7 KiB
Python
105 lines
3.7 KiB
Python
# Author: Tyler Fenby <tylerfenby@gmail.com>
|
|
#
|
|
# This file is part of SickGear.
|
|
#
|
|
# SickGear is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# SickGear is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with SickGear. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
from .. import db
|
|
from ..common import Quality
|
|
|
|
from six import iteritems
|
|
|
|
MIN_DB_VERSION = 1
|
|
MAX_DB_VERSION = 2
|
|
TEST_BASE_VERSION = None # the base production db version, only needed for TEST db versions (>=100000)
|
|
|
|
|
|
# Add new migrations at the bottom of the list; subclass the previous migration.
|
|
class InitialSchema(db.SchemaUpgrade):
|
|
def test(self):
|
|
return self.has_table('failed')
|
|
|
|
def execute(self):
|
|
queries = [
|
|
('CREATE TABLE failed (`release` TEXT);',),
|
|
('CREATE TABLE db_version (db_version INTEGER);',),
|
|
('INSERT INTO db_version (db_version) VALUES (?)', 1),
|
|
]
|
|
for query in queries:
|
|
if 1 == len(query):
|
|
self.connection.action(query[0])
|
|
else:
|
|
self.connection.action(query[0], query[1:])
|
|
|
|
|
|
class SizeAndProvider(InitialSchema):
|
|
def test(self):
|
|
return self.has_column('failed', 'size') and self.has_column('failed', 'provider')
|
|
|
|
def execute(self):
|
|
self.add_column('failed', 'size')
|
|
self.add_column('failed', 'provider', 'TEXT', '')
|
|
|
|
|
|
class History(SizeAndProvider):
|
|
"""Snatch history that can't be modified by the user"""
|
|
|
|
def test(self):
|
|
return self.has_table('history')
|
|
|
|
def execute(self):
|
|
self.connection.action('CREATE TABLE history (date NUMERIC, ' +
|
|
'size NUMERIC, release TEXT, provider TEXT);')
|
|
|
|
|
|
class HistoryStatus(History):
|
|
"""Store episode status before snatch to revert to if necessary"""
|
|
|
|
def test(self):
|
|
return self.has_column('history', 'old_status')
|
|
|
|
def execute(self):
|
|
self.add_column('history', 'old_status', 'NUMERIC', Quality.NONE)
|
|
self.add_column('history', 'showid', 'NUMERIC', '-1')
|
|
self.add_column('history', 'season', 'NUMERIC', '-1')
|
|
self.add_column('history', 'episode', 'NUMERIC', '-1')
|
|
|
|
|
|
class AddIndexerToTables(HistoryStatus):
|
|
def test(self):
|
|
return self.has_column('history', 'indexer')
|
|
|
|
def execute(self):
|
|
self.add_column('history', 'indexer', 'NUMERIC')
|
|
|
|
main_db = db.DBConnection('sickbeard.db')
|
|
show_ids = {s['prod_id']: s['tv_id'] for s in
|
|
main_db.select('SELECT indexer AS tv_id, indexer_id AS prod_id FROM tv_shows')}
|
|
cl = []
|
|
for s_id, i in iteritems(show_ids):
|
|
cl.append(['UPDATE history SET indexer = ? WHERE showid = ?', [i, s_id]])
|
|
self.connection.mass_action(cl)
|
|
|
|
if self.connection.has_table('backup_history'):
|
|
self.connection.action(
|
|
'REPLACE INTO history '
|
|
'(date, size, `release`, provider, old_status, showid, season, episode, indexer)'
|
|
' SELECT'
|
|
' date, size, `release`, provider, old_status, showid, season, episode, indexer'
|
|
' FROM backup_history')
|
|
self.connection.remove_table('backup_history')
|
|
|
|
self.connection.action('VACUUM')
|
|
|
|
self.set_db_version(2, check_db_version=False)
|