bazarr/bazarr/check_update.py

49 lines
1.3 KiB
Python
Raw Normal View History

from get_argv import config_dir
from get_settings import get_general_settings
2017-10-28 02:18:16 +00:00
2017-11-07 04:53:31 +00:00
import os
2017-12-06 04:07:37 +00:00
import logging
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
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 05:09:51 +00:00
def check_and_apply_update():
gitconfig()
branch = get_general_settings()[5]
2017-12-30 05:09:51 +00:00
g = git.cmd.Git(current_working_directory)
g.fetch('origin')
2018-06-05 03:25:07 +00:00
result = g.diff('--shortstat', 'origin/' + branch)
if len(result) == 0:
2017-12-30 13:33:36 +00:00
logging.info('No new version of Bazarr available.')
else:
2018-06-05 03:50:23 +00:00
g.reset('--hard', 'HEAD')
g.checkout(branch)
g.reset('--hard','origin/' + branch)
2018-06-05 03:28:16 +00:00
g.pull()
2018-06-05 03:25:07 +00:00
logging.info('Bazarr updated to latest version and need to be restarted. ' + result)
updated()
def updated():
conn = sqlite3.connect(os.path.join(config_dir, 'db/bazarr.db'), timeout=30)
c = conn.cursor()
c.execute("UPDATE system SET updated = 1")
conn.commit()
c.close()