mirror of https://github.com/morpheus65535/bazarr
Continue developing
This commit is contained in:
parent
7f2a13f702
commit
a26f64efc5
|
@ -1,3 +1,5 @@
|
||||||
|
# coding=utf-8
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import platform
|
import platform
|
||||||
import re
|
import re
|
||||||
|
@ -12,31 +14,6 @@ from get_args import args
|
||||||
from config import settings
|
from config import settings
|
||||||
|
|
||||||
|
|
||||||
# from main import bazarr_version
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class FakeLock(object):
|
|
||||||
"""
|
|
||||||
If no locking or request throttling is needed, use this
|
|
||||||
"""
|
|
||||||
|
|
||||||
def __enter__(self):
|
|
||||||
"""
|
|
||||||
Do nothing on enter
|
|
||||||
"""
|
|
||||||
pass
|
|
||||||
|
|
||||||
def __exit__(self, type, value, traceback):
|
|
||||||
"""
|
|
||||||
Do nothing on exit
|
|
||||||
"""
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
fake_lock = FakeLock()
|
|
||||||
|
|
||||||
|
|
||||||
def check_releases():
|
def check_releases():
|
||||||
releases = []
|
releases = []
|
||||||
url_releases = 'https://api.github.com/repos/morpheus65535/Bazarr/releases'
|
url_releases = 'https://api.github.com/repos/morpheus65535/Bazarr/releases'
|
||||||
|
@ -58,249 +35,209 @@ def check_releases():
|
||||||
json.dump(releases, f)
|
json.dump(releases, f)
|
||||||
|
|
||||||
|
|
||||||
class Updater(object):
|
def run_git(args):
|
||||||
def __init__(self):
|
git_locations = ['git']
|
||||||
self.bazarr_version = '7.2.0'
|
|
||||||
|
|
||||||
self.LATEST_VERSION = ''
|
|
||||||
self.INSTALL_TYPE = ''
|
|
||||||
self.UPDATE_AVAILABLE = ''
|
|
||||||
self.COMMITS_BEHIND = ''
|
|
||||||
self.LATEST_RELEASE = ''
|
|
||||||
self.CURRENT_VERSION = ''
|
|
||||||
self.PREV_RELEASE = self.bazarr_version
|
|
||||||
self.CURRENT_VERSION, self.GIT_REMOTE, self.GIT_BRANCH = self.getVersion()
|
|
||||||
|
|
||||||
def runGit(self, args):
|
if platform.system().lower() == 'darwin':
|
||||||
git_locations = ['git']
|
git_locations.append('/usr/local/git/bin/git')
|
||||||
|
|
||||||
if platform.system().lower() == 'darwin':
|
|
||||||
git_locations.append('/usr/local/git/bin/git')
|
|
||||||
|
|
||||||
output = err = None
|
|
||||||
|
|
||||||
for cur_git in git_locations:
|
|
||||||
cmd = cur_git + ' ' + args
|
|
||||||
|
|
||||||
try:
|
|
||||||
logging.debug('Trying to execute: "' + cmd + '"')
|
|
||||||
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True)
|
|
||||||
output, err = p.communicate()
|
|
||||||
output = output.strip()
|
|
||||||
|
|
||||||
logging.debug('Git output: ' + output)
|
|
||||||
except OSError:
|
|
||||||
logging.debug('Command failed: %s', cmd)
|
|
||||||
continue
|
|
||||||
|
|
||||||
if 'not found' in output or "not recognized as an internal or external command" in output:
|
|
||||||
logging.debug('Unable to find git with command ' + cmd)
|
|
||||||
output = None
|
|
||||||
elif 'fatal:' in output or err:
|
|
||||||
logging.error('Git returned bad info. Are you sure this is a git installation?')
|
|
||||||
output = None
|
|
||||||
elif output:
|
|
||||||
break
|
|
||||||
|
|
||||||
return (output, err)
|
|
||||||
|
|
||||||
def getVersion(self):
|
output = err = None
|
||||||
if os.path.isdir(os.path.join(os.path.dirname(__file__), '..', '.git')) and not args.release_update:
|
|
||||||
|
|
||||||
self.INSTALL_TYPE = 'git'
|
|
||||||
output, err = self.runGit('rev-parse HEAD')
|
|
||||||
|
|
||||||
if not output:
|
|
||||||
logging.error('Could not find latest installed version.')
|
|
||||||
cur_commit_hash = None
|
|
||||||
|
|
||||||
cur_commit_hash = str(output)
|
|
||||||
|
|
||||||
if not re.match('^[a-z0-9]+$', cur_commit_hash):
|
|
||||||
logging.error('Output does not look like a hash, not using it.')
|
|
||||||
cur_commit_hash = None
|
|
||||||
|
|
||||||
if settings.general.branch:
|
|
||||||
branch_name = settings.general.branch
|
|
||||||
|
|
||||||
else:
|
|
||||||
remote_branch, err = self.runGit('rev-parse --abbrev-ref --symbolic-full-name @{u}')
|
|
||||||
remote_branch = remote_branch.rsplit('/', 1) if remote_branch else []
|
|
||||||
if len(remote_branch) == 2:
|
|
||||||
remote_name, branch_name = remote_branch
|
|
||||||
else:
|
|
||||||
remote_name = branch_name = None
|
|
||||||
|
|
||||||
if not remote_name and settings.general.branch:
|
|
||||||
logging.error('Could not retrieve remote name from git. Defaulting to origin.')
|
|
||||||
branch_name = settings.general.branch
|
|
||||||
|
|
||||||
if not branch_name:
|
|
||||||
logging.error('Could not retrieve branch name from git. Defaulting to master.')
|
|
||||||
branch_name = 'master'
|
|
||||||
|
|
||||||
return cur_commit_hash, 'origin', branch_name
|
|
||||||
|
|
||||||
else:
|
|
||||||
self.INSTALL_TYPE = 'source'
|
|
||||||
|
|
||||||
if self.CURRENT_VERSION:
|
|
||||||
return self.CURRENT_VERSION, 'origin', settings.general.branch
|
|
||||||
else:
|
|
||||||
return None, 'origin', settings.general.branch
|
|
||||||
|
|
||||||
def check_updates(self):
|
for cur_git in git_locations:
|
||||||
self.check_github()
|
cmd = cur_git + ' ' + args
|
||||||
if not self.CURRENT_VERSION:
|
|
||||||
self.UPDATE_AVAILABLE = None
|
|
||||||
elif self.COMMITS_BEHIND > 0 and settings.general.branch in ('master') and \
|
|
||||||
('v' + self.bazarr_version) != self.LATEST_RELEASE:
|
|
||||||
self.UPDATE_AVAILABLE = 'release'
|
|
||||||
elif self.COMMITS_BEHIND > 0 and self.CURRENT_VERSION != self.LATEST_VERSION:
|
|
||||||
self.UPDATE_AVAILABLE = 'commit'
|
|
||||||
else:
|
|
||||||
self.UPDATE_AVAILABLE = False
|
|
||||||
print self.UPDATE_AVAILABLE
|
|
||||||
|
|
||||||
def check_github(self):
|
|
||||||
self.COMMITS_BEHIND = 0
|
|
||||||
|
|
||||||
# Get the latest version available from github
|
|
||||||
logging.info('Retrieving latest version information from GitHub')
|
|
||||||
url = 'https://api.github.com/repos/morpheus65535/bazarr/commits/%s' % settings.general.branch
|
|
||||||
version = request_json(url, timeout=20, validator=lambda x: type(x) == dict)
|
|
||||||
|
|
||||||
if version is None:
|
|
||||||
logging.warn('Could not get the latest version from GitHub. Are you running a local development version?')
|
|
||||||
return self.CURRENT_VERSION
|
|
||||||
|
|
||||||
self.LATEST_VERSION = version['sha']
|
|
||||||
logging.debug("Latest version is %s", self.LATEST_VERSION)
|
|
||||||
|
|
||||||
# See how many commits behind we are
|
|
||||||
if not self.CURRENT_VERSION:
|
|
||||||
logging.info('You are running an unknown version of Bazarr. Run the updater to identify your version')
|
|
||||||
return self.LATEST_VERSION
|
|
||||||
|
|
||||||
if self.LATEST_VERSION == self.CURRENT_VERSION:
|
|
||||||
logging.info('Bazarr is up to date')
|
|
||||||
return self.LATEST_VERSION
|
|
||||||
|
|
||||||
logging.info('Comparing currently installed version with latest GitHub version')
|
|
||||||
url = 'https://api.github.com/repos/morpheus65535/bazarr/compare/%s...%s' % (self.LATEST_VERSION,
|
|
||||||
self.CURRENT_VERSION)
|
|
||||||
commits = request_json(url, timeout=20, whitelist_status_code=404, validator=lambda x: type(x) == dict)
|
|
||||||
|
|
||||||
if commits is None:
|
|
||||||
logging.warn('Could not get commits behind from GitHub.')
|
|
||||||
return self.LATEST_VERSION
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
self.COMMITS_BEHIND = int(commits['behind_by'])
|
logging.debug('Trying to execute: "' + cmd + '"')
|
||||||
logging.debug("In total, %d commits behind", self.COMMITS_BEHIND)
|
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True)
|
||||||
except KeyError:
|
output, err = p.communicate()
|
||||||
logging.info('Cannot compare versions. Are you running a local development version?')
|
output = output.strip()
|
||||||
self.COMMITS_BEHIND = 0
|
|
||||||
|
|
||||||
if self.COMMITS_BEHIND > 0:
|
|
||||||
logging.info('New version is available. You are %s commits behind' % self.COMMITS_BEHIND)
|
|
||||||
|
|
||||||
url = 'https://api.github.com/repos/morpheus65535/bazarr/releases'
|
logging.debug('Git output: ' + output)
|
||||||
releases = request_json(url, timeout=20, whitelist_status_code=404, validator=lambda x: type(x) == list)
|
except OSError:
|
||||||
|
logging.debug('Command failed: %s', cmd)
|
||||||
if releases is None:
|
continue
|
||||||
logging.warn('Could not get releases from GitHub.')
|
|
||||||
return self.LATEST_VERSION
|
|
||||||
|
|
||||||
if settings.general.branch == 'master':
|
|
||||||
release = next((r for r in releases if not r['prerelease']), releases[0])
|
|
||||||
else:
|
|
||||||
release = releases[0]
|
|
||||||
self.LATEST_RELEASE = release['tag_name']
|
|
||||||
|
|
||||||
elif self.COMMITS_BEHIND == 0:
|
if 'not found' in output or "not recognized as an internal or external command" in output:
|
||||||
logging.info('Bazarr is up to date')
|
logging.debug('Unable to find git with command ' + cmd)
|
||||||
|
output = None
|
||||||
return self.LATEST_VERSION
|
elif 'fatal:' in output or err:
|
||||||
|
logging.error('Git returned bad info. Are you sure this is a git installation?')
|
||||||
|
output = None
|
||||||
|
elif output:
|
||||||
|
break
|
||||||
|
|
||||||
def update(self):
|
return output, err
|
||||||
if self.INSTALL_TYPE == 'git' and not args.release_update:
|
|
||||||
output, err = self.runGit('pull ' + 'origin' + ' ' + settings.general.branch)
|
|
||||||
|
def check_updates():
|
||||||
if not output:
|
commits_behind = 0
|
||||||
logging.error('Unable to download latest version')
|
current_version = get_version()
|
||||||
return
|
|
||||||
|
# Get the latest version available from github
|
||||||
for line in output.split('\n'):
|
logging.info('Retrieving latest version information from GitHub')
|
||||||
|
url = 'https://api.github.com/repos/morpheus65535/bazarr/commits/%s' % settings.general.branch
|
||||||
if 'Already up-to-date.' in line:
|
version = request_json(url, timeout=20, validator=lambda x: type(x) == dict)
|
||||||
logging.info('No update available, not updating')
|
|
||||||
logging.info('Output: ' + str(output))
|
if version is None:
|
||||||
elif line.endswith(('Aborting', 'Aborting.')):
|
logging.warn('Could not get the latest version from GitHub. Are you running a local development version?')
|
||||||
logging.error('Unable to update from git: ' + line)
|
return current_version
|
||||||
logging.info('Output: ' + str(output))
|
|
||||||
|
latest_version = version['sha']
|
||||||
|
logging.debug("Latest version is %s", latest_version)
|
||||||
|
|
||||||
|
# See how many commits behind we are
|
||||||
|
if not current_version:
|
||||||
|
logging.info('You are running an unknown version of Bazarr. Run the updater to identify your version')
|
||||||
|
return latest_version
|
||||||
|
|
||||||
|
if latest_version == current_version:
|
||||||
|
logging.info('Bazarr is up to date')
|
||||||
|
return latest_version
|
||||||
|
|
||||||
|
logging.info('Comparing currently installed version with latest GitHub version')
|
||||||
|
url = 'https://api.github.com/repos/morpheus65535/bazarr/compare/%s...%s' % (latest_version,
|
||||||
|
current_version)
|
||||||
|
commits = request_json(url, timeout=20, whitelist_status_code=404, validator=lambda x: type(x) == dict)
|
||||||
|
|
||||||
|
if commits is None:
|
||||||
|
logging.warn('Could not get commits behind from GitHub.')
|
||||||
|
return latest_version
|
||||||
|
|
||||||
|
try:
|
||||||
|
commits_behind = int(commits['behind_by'])
|
||||||
|
logging.debug("In total, %d commits behind", commits_behind)
|
||||||
|
except KeyError:
|
||||||
|
logging.info('Cannot compare versions. Are you running a local development version?')
|
||||||
|
commits_behind = 0
|
||||||
|
|
||||||
|
if commits_behind > 0:
|
||||||
|
logging.info('New version is available. You are %s commits behind' % commits_behind)
|
||||||
|
update()
|
||||||
|
|
||||||
|
url = 'https://api.github.com/repos/morpheus65535/bazarr/releases'
|
||||||
|
releases = request_json(url, timeout=20, whitelist_status_code=404, validator=lambda x: type(x) == list)
|
||||||
|
|
||||||
|
if releases is None:
|
||||||
|
logging.warn('Could not get releases from GitHub.')
|
||||||
|
return latest_version
|
||||||
|
else:
|
||||||
|
release = releases[0]
|
||||||
|
latest_release = release['tag_name']
|
||||||
|
|
||||||
|
if ('v' + current_version) != latest_release and args.release_update:
|
||||||
|
update()
|
||||||
|
|
||||||
|
elif commits_behind == 0:
|
||||||
|
logging.info('Bazarr is up to date')
|
||||||
|
|
||||||
|
return latest_version
|
||||||
|
|
||||||
|
|
||||||
|
def get_version():
|
||||||
|
if os.path.isdir(os.path.join(os.path.dirname(__file__), '..', '.git')):
|
||||||
|
|
||||||
|
output, err = run_git('rev-parse HEAD')
|
||||||
|
|
||||||
|
if not output:
|
||||||
|
logging.error('Could not find latest installed version.')
|
||||||
|
cur_commit_hash = None
|
||||||
else:
|
else:
|
||||||
tar_download_url = 'https://github.com/morpheus65535/bazarr/tarball/{}'.format(settings.general.branch)
|
cur_commit_hash = str(output)
|
||||||
update_dir = os.path.join(os.path.dirname(__file__), '..', 'update')
|
|
||||||
|
if not re.match('^[a-z0-9]+$', cur_commit_hash):
|
||||||
logging.info('Downloading update from: ' + tar_download_url)
|
logging.error('Output does not look like a hash, not using it.')
|
||||||
data = request_content(tar_download_url)
|
cur_commit_hash = None
|
||||||
|
|
||||||
if not data:
|
return cur_commit_hash
|
||||||
logging.error("Unable to retrieve new version from '%s', can't update", tar_download_url)
|
|
||||||
return
|
|
||||||
|
|
||||||
download_name = settings.general.branch + '-github'
|
|
||||||
tar_download_path = os.path.join(os.path.dirname(__file__), '..', download_name)
|
|
||||||
|
|
||||||
# Save tar to disk
|
|
||||||
with open(tar_download_path, 'wb') as f:
|
|
||||||
f.write(data)
|
|
||||||
|
|
||||||
# Extract the tar to update folder
|
|
||||||
logging.info('Extracting file: ' + tar_download_path)
|
|
||||||
tar = tarfile.open(tar_download_path)
|
|
||||||
tar.extractall(update_dir)
|
|
||||||
tar.close()
|
|
||||||
|
|
||||||
# Delete the tar.gz
|
|
||||||
logging.info('Deleting file: ' + tar_download_path)
|
|
||||||
os.remove(tar_download_path)
|
|
||||||
|
|
||||||
# Find update dir name
|
|
||||||
update_dir_contents = [x for x in os.listdir(update_dir) if os.path.isdir(os.path.join(update_dir, x))]
|
|
||||||
if len(update_dir_contents) != 1:
|
|
||||||
logging.error("Invalid update data, update failed: " + str(update_dir_contents))
|
|
||||||
return
|
|
||||||
content_dir = os.path.join(update_dir, update_dir_contents[0])
|
|
||||||
|
|
||||||
# walk temp folder and move files to main folder
|
|
||||||
for dirname, dirnames, filenames in os.walk(content_dir):
|
|
||||||
dirname = dirname[len(content_dir) + 1:]
|
|
||||||
for curfile in filenames:
|
|
||||||
old_path = os.path.join(content_dir, dirname, curfile)
|
|
||||||
new_path = os.path.join(os.path.dirname(__file__), '..', dirname, curfile)
|
|
||||||
|
|
||||||
if os.path.isfile(new_path):
|
|
||||||
os.remove(new_path)
|
|
||||||
os.renames(old_path, new_path)
|
|
||||||
|
|
||||||
def checkout_git_branch(self):
|
else:
|
||||||
if self.INSTALL_TYPE == 'git' and not args.release_update:
|
return os.environ["BAZARR_VERSION"]
|
||||||
output, err = self.runGit('fetch origin')
|
|
||||||
output, err = self.runGit('checkout %s' % settings.general.branch)
|
|
||||||
|
def update():
|
||||||
|
if not args.release_update:
|
||||||
|
output, err = run_git('pull ' + 'origin' + ' ' + settings.general.branch)
|
||||||
|
|
||||||
|
if not output:
|
||||||
|
logging.error('Unable to download latest version')
|
||||||
|
return
|
||||||
|
|
||||||
|
for line in output.split('\n'):
|
||||||
|
|
||||||
if not output:
|
if 'Already up-to-date.' in line:
|
||||||
logging.error('Unable to change git branch.')
|
logging.info('No update available, not updating')
|
||||||
return
|
logging.info('Output: ' + str(output))
|
||||||
|
elif line.endswith(('Aborting', 'Aborting.')):
|
||||||
for line in output.split('\n'):
|
logging.error('Unable to update from git: ' + line)
|
||||||
if line.endswith(('Aborting', 'Aborting.')):
|
logging.info('Output: ' + str(output))
|
||||||
logging.error('Unable to checkout from git: ' + line)
|
updated()
|
||||||
logging.info('Output: ' + str(output))
|
else:
|
||||||
|
tar_download_url = 'https://github.com/morpheus65535/bazarr/tarball/{}'.format(settings.general.branch)
|
||||||
output, err = self.runGit('pull origin %s' % settings.general.branch)
|
update_dir = os.path.join(os.path.dirname(__file__), '..', 'update')
|
||||||
|
|
||||||
|
logging.info('Downloading update from: ' + tar_download_url)
|
||||||
|
data = request_content(tar_download_url)
|
||||||
|
|
||||||
|
if not data:
|
||||||
|
logging.error("Unable to retrieve new version from '%s', can't update", tar_download_url)
|
||||||
|
return
|
||||||
|
|
||||||
|
download_name = settings.general.branch + '-github'
|
||||||
|
tar_download_path = os.path.join(os.path.dirname(__file__), '..', download_name)
|
||||||
|
|
||||||
|
# Save tar to disk
|
||||||
|
with open(tar_download_path, 'wb') as f:
|
||||||
|
f.write(data)
|
||||||
|
|
||||||
|
# Extract the tar to update folder
|
||||||
|
logging.info('Extracting file: ' + tar_download_path)
|
||||||
|
tar = tarfile.open(tar_download_path)
|
||||||
|
tar.extractall(update_dir)
|
||||||
|
tar.close()
|
||||||
|
|
||||||
|
# Delete the tar.gz
|
||||||
|
logging.info('Deleting file: ' + tar_download_path)
|
||||||
|
os.remove(tar_download_path)
|
||||||
|
|
||||||
|
# Find update dir name
|
||||||
|
update_dir_contents = [x for x in os.listdir(update_dir) if os.path.isdir(os.path.join(update_dir, x))]
|
||||||
|
if len(update_dir_contents) != 1:
|
||||||
|
logging.error("Invalid update data, update failed: " + str(update_dir_contents))
|
||||||
|
return
|
||||||
|
content_dir = os.path.join(update_dir, update_dir_contents[0])
|
||||||
|
|
||||||
|
# walk temp folder and move files to main folder
|
||||||
|
for dirname, dirnames, filenames in os.walk(content_dir):
|
||||||
|
dirname = dirname[len(content_dir) + 1:]
|
||||||
|
for curfile in filenames:
|
||||||
|
old_path = os.path.join(content_dir, dirname, curfile)
|
||||||
|
new_path = os.path.join(os.path.dirname(__file__), '..', dirname, curfile)
|
||||||
|
|
||||||
|
if os.path.isfile(new_path):
|
||||||
|
os.remove(new_path)
|
||||||
|
os.renames(old_path, new_path)
|
||||||
|
updated()
|
||||||
|
|
||||||
|
|
||||||
|
class FakeLock(object):
|
||||||
|
"""
|
||||||
|
If no locking or request throttling is needed, use this
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __enter__(self):
|
||||||
|
"""
|
||||||
|
Do nothing on enter
|
||||||
|
"""
|
||||||
|
pass
|
||||||
|
|
||||||
|
def __exit__(self, type, value, traceback):
|
||||||
|
"""
|
||||||
|
Do nothing on exit
|
||||||
|
"""
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
fake_lock = FakeLock()
|
||||||
|
|
||||||
|
|
||||||
def request_content(url, **kwargs):
|
def request_content(url, **kwargs):
|
||||||
|
|
|
@ -57,8 +57,8 @@ from get_providers import get_providers, get_providers_auth, list_throttled_prov
|
||||||
from get_series import *
|
from get_series import *
|
||||||
from get_episodes import *
|
from get_episodes import *
|
||||||
|
|
||||||
if not args.no_update:
|
# if not args.no_update:
|
||||||
from check_update import Updater
|
# from check_update import check_updates
|
||||||
from list_subtitles import store_subtitles, store_subtitles_movie, series_scan_subtitles, movies_scan_subtitles, \
|
from list_subtitles import store_subtitles, store_subtitles_movie, series_scan_subtitles, movies_scan_subtitles, \
|
||||||
list_missing_subtitles, list_missing_subtitles_movies
|
list_missing_subtitles, list_missing_subtitles_movies
|
||||||
from get_subtitle import download_subtitle, series_download_subtitles, movies_download_subtitles, \
|
from get_subtitle import download_subtitle, series_download_subtitles, movies_download_subtitles, \
|
||||||
|
|
|
@ -8,7 +8,7 @@ from get_subtitle import wanted_search_missing_subtitles, upgrade_subtitles
|
||||||
from get_args import args
|
from get_args import args
|
||||||
|
|
||||||
if not args.no_update:
|
if not args.no_update:
|
||||||
from check_update import Updater, check_releases
|
from check_update import check_updates, check_releases
|
||||||
else:
|
else:
|
||||||
from check_update import check_releases
|
from check_update import check_releases
|
||||||
from apscheduler.schedulers.background import BackgroundScheduler
|
from apscheduler.schedulers.background import BackgroundScheduler
|
||||||
|
@ -84,10 +84,10 @@ scheduler.add_listener(task_listener, EVENT_JOB_SUBMITTED | EVENT_JOB_EXECUTED)
|
||||||
|
|
||||||
if not args.no_update:
|
if not args.no_update:
|
||||||
if settings.general.getboolean('auto_update'):
|
if settings.general.getboolean('auto_update'):
|
||||||
scheduler.add_job(Updater().check_updates, IntervalTrigger(hours=6), max_instances=1, coalesce=True,
|
scheduler.add_job(check_updates, IntervalTrigger(hours=6), max_instances=1, coalesce=True,
|
||||||
misfire_grace_time=15, id='update_bazarr', name='Update bazarr from source on Github')
|
misfire_grace_time=15, id='update_bazarr', name='Update bazarr from source on Github')
|
||||||
else:
|
else:
|
||||||
scheduler.add_job(Updater().check_updates, CronTrigger(year='2100'), hour=4, id='update_bazarr',
|
scheduler.add_job(check_updates, CronTrigger(year='2100'), hour=4, id='update_bazarr',
|
||||||
name='Update bazarr from source on Github')
|
name='Update bazarr from source on Github')
|
||||||
scheduler.add_job(check_releases, IntervalTrigger(hours=6), max_instances=1, coalesce=True,
|
scheduler.add_job(check_releases, IntervalTrigger(hours=6), max_instances=1, coalesce=True,
|
||||||
misfire_grace_time=15, id='update_release', name='Update release info')
|
misfire_grace_time=15, id='update_release', name='Update release info')
|
||||||
|
|
|
@ -148,43 +148,6 @@
|
||||||
% elif restart_required[0] == '1':
|
% elif restart_required[0] == '1':
|
||||||
<div class='ui center aligned grid'><div class='fifteen wide column'><div class="ui red message">Bazarr need to be restarted to apply changes to general settings. Click <a href=# id="restart_link">here</a> to restart.</div></div></div>
|
<div class='ui center aligned grid'><div class='fifteen wide column'><div class="ui red message">Bazarr need to be restarted to apply changes to general settings. Click <a href=# id="restart_link">here</a> to restart.</div></div></div>
|
||||||
% end
|
% end
|
||||||
% from check_update import Updater
|
|
||||||
% if Updater().UPDATE_AVAILABLE is None:
|
|
||||||
<div id="updatebar" class='ui center aligned grid'>
|
|
||||||
<div class='fifteen wide column'>
|
|
||||||
<div class="ui red message">
|
|
||||||
You are running an unknown version of Bazarr.
|
|
||||||
<a href="update">Update</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
% elif Updater().UPDATE_AVAILABLE == 'release':
|
|
||||||
<div id="updatebar" class='ui center aligned grid'>
|
|
||||||
<div class='fifteen wide column'>
|
|
||||||
<div class="ui red message">
|
|
||||||
A <a
|
|
||||||
href="{{ 'https://github.com/morpheus65535/bazarr/releases/tag/%s' % Updater().LATEST_RELEASE }}"
|
|
||||||
target="_blank">
|
|
||||||
new release ({{ Updater().LATEST_RELEASE }})</a> of Bazarr is available!
|
|
||||||
<a href="update">Update</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
% elif Updater().UPDATE_AVAILABLE == 'commit':
|
|
||||||
<div id="updatebar" class='ui center aligned grid'>
|
|
||||||
<div class='fifteen wide column'>
|
|
||||||
<div class="ui red message">
|
|
||||||
A <a
|
|
||||||
href="{{ 'https://github.com/morpheus65535/bazarr/compare/%s...%s' % (Updater().CURRENT_VERSION, Updater().LATEST_VERSION) }}"
|
|
||||||
target="_blank">
|
|
||||||
newer version</a> of Bazarr is available!<br/>
|
|
||||||
You are {{ Updater().COMMITS_BEHIND }} commit{{ 's' if Updater().COMMITS_BEHIND > 1 else '' }}
|
|
||||||
behind.
|
|
||||||
<a href="update">Update</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
% end
|
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue