2017-10-28 10:18:16 +08:00
|
|
|
from get_general_settings import *
|
|
|
|
|
2017-11-07 12:53:31 +08:00
|
|
|
import os
|
2017-12-06 12:07:37 +08:00
|
|
|
import logging
|
2017-12-23 11:40:14 +08:00
|
|
|
import sqlite3
|
2017-11-07 12:53:31 +08:00
|
|
|
|
2017-12-30 13:09:51 +08:00
|
|
|
import git
|
2017-12-06 04:02:08 +08:00
|
|
|
|
2017-12-30 13:09:51 +08:00
|
|
|
current_working_directory = os.path.dirname(__file__)
|
2017-11-22 05:09:33 +08:00
|
|
|
|
2018-01-16 12:00:29 +08:00
|
|
|
def gitconfig():
|
|
|
|
g = git.Repo.init(current_working_directory)
|
|
|
|
config_read = g.config_reader()
|
|
|
|
config_write = g.config_writer()
|
|
|
|
|
|
|
|
try:
|
|
|
|
username = config_read.get_value("user", "name")
|
|
|
|
except:
|
|
|
|
config_write.set_value("user", "name", "Bazarr")
|
|
|
|
|
|
|
|
try:
|
|
|
|
email = config_read.get_value("user", "email")
|
|
|
|
except:
|
|
|
|
config_write.set_value("user", "email", "bazarr@fake.email")
|
|
|
|
|
2017-12-30 13:09:51 +08:00
|
|
|
def check_and_apply_update():
|
2018-01-16 12:00:29 +08:00
|
|
|
gitconfig()
|
2017-12-30 13:09:51 +08:00
|
|
|
g = git.cmd.Git(current_working_directory)
|
|
|
|
result = g.pull('origin', branch)
|
2017-12-30 21:33:36 +08:00
|
|
|
if result.startswith('Already'):
|
|
|
|
logging.info('No new version of Bazarr available.')
|
2018-01-16 12:29:15 +08:00
|
|
|
elif result.startswith('Updating') or result.startswith('Merge made'):
|
2018-01-01 23:31:06 +08:00
|
|
|
logging.info('Bazarr updated to latest version and need to be restarted.')
|
2018-01-02 03:35:32 +08:00
|
|
|
updated()
|
2017-12-30 21:33:36 +08:00
|
|
|
else:
|
2017-12-30 21:23:45 +08:00
|
|
|
logging.info(result)
|
2017-12-23 11:40:14 +08:00
|
|
|
|
|
|
|
def updated():
|
|
|
|
conn = sqlite3.connect(os.path.join(os.path.dirname(__file__), 'data/db/bazarr.db'), timeout=30)
|
|
|
|
c = conn.cursor()
|
|
|
|
c.execute("UPDATE table_settings_general SET updated = 1")
|
|
|
|
conn.commit()
|
|
|
|
c.close()
|