2017-10-28 02:18:16 +00:00
|
|
|
from get_general_settings import *
|
|
|
|
|
2017-11-07 04:53:31 +00:00
|
|
|
import os
|
2017-12-06 04:07:37 +00:00
|
|
|
import logging
|
2017-12-23 03:40:14 +00:00
|
|
|
import sqlite3
|
2017-11-07 04:53:31 +00:00
|
|
|
|
2017-12-30 05:09:51 +00:00
|
|
|
import git
|
2017-12-05 20:02:08 +00:00
|
|
|
|
2017-12-30 05:09:51 +00:00
|
|
|
current_working_directory = os.path.dirname(__file__)
|
2017-11-21 21:09:33 +00:00
|
|
|
|
2017-12-30 05:09:51 +00:00
|
|
|
def check_and_apply_update():
|
|
|
|
g = git.cmd.Git(current_working_directory)
|
|
|
|
result = g.pull('origin', branch)
|
|
|
|
if result != 'Already up-to-date.':
|
|
|
|
logging.info('Bazarr updated to latest version and need to be restarted.')
|
|
|
|
updated()
|
|
|
|
else:
|
|
|
|
logging.info('No new version of Bazarr available.')
|
2017-12-23 03:40:14 +00: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()
|