blob: 9a2b49cc36addd9753f9a65b2c8ff5808a17f7e0 (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# coding=utf-8
import os
bazarr_version = 'unknown'
version_file = os.path.join(os.path.dirname(__file__), '..', 'VERSION')
if os.path.isfile(version_file):
with open(version_file, 'r') as f:
bazarr_version = f.readline()
bazarr_version = bazarr_version.rstrip('\n')
os.environ["BAZARR_VERSION"] = bazarr_version.lstrip('v')
import app.libs # noqa W0611
from threading import Thread # noqa E402
from app.get_args import args # noqa E402
from app.config import settings, configure_proxy_func, base_url # noqa E402
from init import * # noqa E402
from app.database import System # noqa E402
from app.notifier import update_notifier # noqa E402
from languages.get_languages import load_language_in_db # noqa E402
from app.signalr_client import sonarr_signalr_client, radarr_signalr_client # noqa E402
from app.check_update import apply_update, check_releases # noqa E402
from app.server import webserver # noqa E402
# Install downloaded update
if bazarr_version != '':
apply_update()
check_releases()
configure_proxy_func()
# Reset the updated once Bazarr have been restarted after an update
System.update({System.updated: '0'}).execute()
# Load languages in database
load_language_in_db()
login_auth = settings.auth.type
update_notifier()
if settings.general.getboolean('use_sonarr'):
Thread(target=sonarr_signalr_client.start).start()
if settings.general.getboolean('use_radarr'):
Thread(target=radarr_signalr_client.start).start()
if __name__ == "__main__":
webserver.start()
|