bazarr/check_update.py

53 lines
2.4 KiB
Python
Raw Normal View History

2017-10-28 02:18:16 +00:00
from get_general_settings import *
2017-11-07 04:53:31 +00:00
import os
2017-11-11 05:54:19 +00:00
import pygit2
2017-11-07 04:53:31 +00:00
2017-11-14 14:38:34 +00:00
current_working_directory = os.path.dirname(__file__)
2017-11-11 05:54:19 +00:00
repository_path = pygit2.discover_repository(current_working_directory)
local_repo = pygit2.Repository(repository_path)
2017-11-07 05:11:42 +00:00
2017-11-11 05:54:19 +00:00
def check_and_apply_update(repo=local_repo, remote_name='origin'):
2017-12-05 19:21:19 +00:00
repo.config['user.name'] = 'Bazarr user'
repo.config['user.email'] ='bazarr@fakeuser.com'
2017-11-11 05:54:19 +00:00
for remote in repo.remotes:
if remote.name == remote_name:
remote.fetch()
2017-11-27 00:54:59 +00:00
remote_id = repo.lookup_reference('refs/remotes/origin/' + str(branch)).target
2017-11-11 05:54:19 +00:00
merge_result, _ = repo.merge_analysis(remote_id)
# Up to date, do nothing
if merge_result & pygit2.GIT_MERGE_ANALYSIS_UP_TO_DATE:
2017-11-15 01:20:44 +00:00
result = 'No new version of Bazarr available.'
pass
2017-11-11 05:54:19 +00:00
# We can just fastforward
elif merge_result & pygit2.GIT_MERGE_ANALYSIS_FASTFORWARD:
repo.checkout_tree(repo.get(remote_id))
2017-12-05 19:14:51 +00:00
master_ref = repo.lookup_reference('refs/remotes/origin/' + str(branch))
2017-11-11 05:54:19 +00:00
master_ref.set_target(remote_id)
repo.head.set_target(remote_id)
result = 'Bazarr updated to latest version and restarting.'
2017-11-15 01:20:44 +00:00
os.execlp('python', 'python', os.path.join(os.path.dirname(__file__), 'bazarr.py'))
2017-11-22 11:37:17 +00:00
# We can just do it normally
2017-11-21 21:09:33 +00:00
elif merge_result & pygit2.GIT_MERGE_ANALYSIS_NORMAL:
repo.merge(remote_id)
print repo.index.conflicts
assert repo.index.conflicts is None, 'Conflicts, ahhhh!'
user = repo.default_signature
tree = repo.index.write_tree()
commit = repo.create_commit('HEAD',
user,
user,
'Merge!',
tree,
2017-11-21 21:10:20 +00:00
[repo.head.target, remote_id])
2017-11-21 21:09:33 +00:00
repo.state_cleanup()
2017-11-22 00:58:52 +00:00
result = 'Conflict detected when trying to update.'
2017-11-22 11:37:17 +00:00
os.execlp('python', 'python', os.path.join(os.path.dirname(__file__), 'bazarr.py'))
# We can't do it
2017-11-11 05:54:19 +00:00
else:
2017-11-22 11:37:17 +00:00
result = 'Bazarr cannot be updated: Unknown merge analysis result'
2017-11-21 21:10:20 +00:00
2017-11-15 01:20:44 +00:00
return result