mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-11 01:07:36 +08:00
100 lines
No EOL
2.8 KiB
Python
100 lines
No EOL
2.8 KiB
Python
# coding=utf-8
|
|
import os
|
|
import sqlite3
|
|
|
|
from get_argv import config_dir
|
|
from scheduler import execute_now
|
|
from config import settings
|
|
|
|
# Check if database exist
|
|
if os.path.exists(os.path.join(config_dir, 'db', 'bazarr.db')):
|
|
# Open database connection
|
|
db = sqlite3.connect(os.path.join(config_dir, 'db', 'bazarr.db'), timeout=30)
|
|
c = db.cursor()
|
|
|
|
# Execute tables modifications
|
|
try:
|
|
c.execute('alter table table_settings_providers add column "username" "text"')
|
|
except:
|
|
pass
|
|
else:
|
|
c.execute('UPDATE table_settings_providers SET username=""')
|
|
|
|
try:
|
|
c.execute('alter table table_settings_providers add column "password" "text"')
|
|
except:
|
|
pass
|
|
else:
|
|
c.execute('UPDATE table_settings_providers SET password=""')
|
|
|
|
try:
|
|
c.execute('alter table table_shows add column "audio_language" "text"')
|
|
except:
|
|
pass
|
|
|
|
try:
|
|
c.execute('alter table table_shows add column "sortTitle" "text"')
|
|
except:
|
|
pass
|
|
|
|
try:
|
|
c.execute('alter table table_movies add column "sortTitle" "text"')
|
|
except:
|
|
pass
|
|
|
|
try:
|
|
rows = c.execute('SELECT name FROM table_settings_notifier WHERE name = "Kodi/XBMC"').fetchall()
|
|
if len(rows) == 0:
|
|
providers = [['KODI', 'Kodi/XBMC'], ['Windows', 'Windows Notification'], ['Super Toasty', 'Toasty'],
|
|
['PushBullet', 'Pushbullet'], ['Mattermost', 'MatterMost']]
|
|
for provider_old, provider_new in providers:
|
|
c.execute('UPDATE table_settings_notifier SET name=? WHERE name=?', (provider_new, provider_old))
|
|
except:
|
|
pass
|
|
|
|
try:
|
|
c.execute('alter table table_movies add column "failedAttempts" "text"')
|
|
c.execute('alter table table_episodes add column "failedAttempts" "text"')
|
|
except:
|
|
pass
|
|
|
|
try:
|
|
c.execute('alter table table_settings_languages add column "code3b" "text"')
|
|
except:
|
|
pass
|
|
|
|
|
|
# Commit change to db
|
|
db.commit()
|
|
|
|
try:
|
|
c.execute('alter table table_episodes add column "scene_name" TEXT')
|
|
db.commit()
|
|
except:
|
|
pass
|
|
else:
|
|
if settings.general.getboolean('use_sonarr'):
|
|
execute_now('sync_episodes')
|
|
if settings.general.getboolean('use_radarr'):
|
|
execute_now('update_movies')
|
|
|
|
try:
|
|
c.execute('alter table table_episodes add column "monitored" TEXT')
|
|
db.commit()
|
|
except:
|
|
pass
|
|
else:
|
|
if settings.general.getboolean('use_sonarr'):
|
|
execute_now('sync_episodes')
|
|
|
|
try:
|
|
c.execute('alter table table_movies add column "monitored" TEXT')
|
|
db.commit()
|
|
except:
|
|
pass
|
|
else:
|
|
if settings.general.getboolean('use_radarr'):
|
|
execute_now('update_movies')
|
|
|
|
db.close()
|
|
|