[update] Expose more functionality to API

This commit is contained in:
pukkandan 2022-06-21 17:02:56 +05:30
parent f0500bd1e4
commit 57e0f077a6
No known key found for this signature in database
GPG Key ID: 7EEE9E1E817D0A39
4 changed files with 159 additions and 119 deletions

View File

@ -5,7 +5,6 @@ import sys
from PyInstaller.__main__ import run as run_pyinstaller from PyInstaller.__main__ import run as run_pyinstaller
OS_NAME, ARCH = sys.platform, platform.architecture()[0][:2] OS_NAME, ARCH = sys.platform, platform.architecture()[0][:2]

View File

@ -55,7 +55,7 @@ if compat_os_name == 'nt' and sys.version_info < (3, 8):
def compat_realpath(path): def compat_realpath(path):
while os.path.islink(path): while os.path.islink(path):
path = os.path.abspath(os.readlink(path)) path = os.path.abspath(os.readlink(path))
return path return os.path.realpath(path)
else: else:
compat_realpath = os.path.realpath compat_realpath = os.path.realpath

View File

@ -11,8 +11,8 @@ from .compat import compat_realpath
from .utils import Popen, traverse_obj, version_tuple from .utils import Popen, traverse_obj, version_tuple
from .version import __version__ from .version import __version__
REPOSITORY = 'yt-dlp/yt-dlp'
RELEASE_JSON_URL = 'https://api.github.com/repos/yt-dlp/yt-dlp/releases/latest' API_URL = f'https://api.github.com/repos/{REPOSITORY}/releases/latest'
@functools.cache @functools.cache
@ -60,137 +60,176 @@ def is_non_updateable():
return _NON_UPDATEABLE_REASONS.get(detect_variant(), _NON_UPDATEABLE_REASONS['other']) return _NON_UPDATEABLE_REASONS.get(detect_variant(), _NON_UPDATEABLE_REASONS['other'])
def run_update(ydl): def _sha256_file(path):
""" h = hashlib.sha256()
Update the program file with the latest version from the repository mv = memoryview(bytearray(128 * 1024))
Returns whether the program should terminate with open(os.path.realpath(path), 'rb', buffering=0) as f:
""" for n in iter(lambda: f.readinto(mv), 0):
h.update(mv[:n])
return h.hexdigest()
def report_error(msg, expected=False):
ydl.report_error(msg, tb=False if expected else None)
def report_unable(action, expected=False): class Updater:
report_error(f'Unable to {action}', expected) def __init__(self, ydl):
self.ydl = ydl
def report_permission_error(file): @functools.cached_property
report_unable(f'write to {file}; Try running as administrator', True) def _new_version_info(self):
self.ydl.write_debug(f'Fetching release info: {API_URL}')
return json.loads(self.ydl.urlopen(API_URL).read().decode())
def report_network_error(action, delim=';'): @property
report_unable(f'{action}{delim} Visit https://github.com/yt-dlp/yt-dlp/releases/latest', True) def current_version(self):
"""Current version"""
return __version__
def calc_sha256sum(path): @property
h = hashlib.sha256() def new_version(self):
mv = memoryview(bytearray(128 * 1024)) """Version of the latest release"""
with open(os.path.realpath(path), 'rb', buffering=0) as f: return self._new_version_info['tag_name']
for n in iter(lambda: f.readinto(mv), 0):
h.update(mv[:n])
return h.hexdigest()
try: @property
version_info = json.loads(ydl.urlopen(RELEASE_JSON_URL).read().decode()) def has_update(self):
except Exception: """Whether there is an update available"""
return report_network_error('obtain version info', delim='; Please try again later or') return version_tuple(__version__) < version_tuple(self.new_version)
version_id = version_info['tag_name'] @functools.cached_property
ydl.to_screen(f'Latest version: {version_id}, Current version: {__version__}') def filename(self):
if version_tuple(__version__) >= version_tuple(version_id): """Filename of the executable"""
ydl.to_screen(f'yt-dlp is up to date ({__version__})') return compat_realpath(_get_variant_and_executable_path()[1])
return
err = is_non_updateable() def _download(self, name=None):
if err: name = name or self.release_name
return report_error(err, True) url = traverse_obj(self._new_version_info, (
'assets', lambda _, v: v['name'] == name, 'browser_download_url'), get_all=False)
variant, filename = _get_variant_and_executable_path()
filename = compat_realpath(filename) # Absolute path, following symlinks
label = _FILE_SUFFIXES[variant]
if label and platform.architecture()[0][:2] == '32':
label = f'_x86{label}'
release_name = f'yt-dlp{label}'
ydl.to_screen(f'Current Build Hash {calc_sha256sum(filename)}')
ydl.to_screen(f'Updating to version {version_id} ...')
def get_file(name, fatal=True):
error = report_network_error if fatal else lambda _: None
url = traverse_obj(
version_info, ('assets', lambda _, v: v['name'] == name, 'browser_download_url'), get_all=False)
if not url: if not url:
return error('fetch updates') raise Exception('Unable to find download URL')
try: self.ydl.write_debug(f'Downloading {name} from {url}')
return ydl.urlopen(url).read() return self.ydl.urlopen(url).read()
except OSError:
return error('download latest version')
def verify(content): @functools.cached_property
if not content: def release_name(self):
return False """The release filename"""
hash_data = get_file('SHA2-256SUMS', fatal=False) or b'' label = _FILE_SUFFIXES[detect_variant()]
expected = dict(ln.split()[::-1] for ln in hash_data.decode().splitlines()).get(release_name) if label and platform.architecture()[0][:2] == '32':
if not expected: label = f'_x86{label}'
ydl.report_warning('no hash information found for the release') return f'yt-dlp{label}'
elif hashlib.sha256(content).hexdigest() != expected:
return report_network_error('verify the new executable') @functools.cached_property
def release_hash(self):
"""Hash of the latest release"""
hash_data = dict(ln.split()[::-1] for ln in self._download('SHA2-256SUMS').decode().splitlines())
return hash_data[self.release_name]
def _report_error(self, msg, expected=False):
self.ydl.report_error(msg, tb=False if expected else None)
def _report_permission_error(self, file):
self._report_error(f'Unable to write to {file}; Try running as administrator', True)
def _report_network_error(self, action, delim=';'):
self._report_error(f'Unable to {action}{delim} Visit https://github.com/{REPOSITORY}/releases/latest', True)
def check_update(self):
"""Report whether there is an update available"""
try:
self.ydl.to_screen(
f'Latest version: {self.new_version}, Current version: {self.current_version}')
except Exception:
return self._report_network_error('obtain version info', delim='; Please try again later or')
if not self.has_update:
return self.ydl.to_screen(f'yt-dlp is up to date ({__version__})')
if not is_non_updateable():
self.ydl.to_screen(f'Current Build Hash {_sha256_file(self.filename)}')
return True return True
directory = os.path.dirname(filename) def update(self):
if not os.access(filename, os.W_OK): """Update yt-dlp executable to the latest version"""
return report_permission_error(filename) if not self.check_update():
elif not os.access(directory, os.W_OK): return
return report_permission_error(directory) err = is_non_updateable()
if err:
return self._report_error(err, True)
self.ydl.to_screen(f'Updating to version {self.new_version} ...')
new_filename, old_filename = f'{filename}.new', f'{filename}.old' directory = os.path.dirname(self.filename)
if variant == 'zip': # Can be replaced in-place if not os.access(self.filename, os.W_OK):
new_filename, old_filename = filename, None return self._report_permission_error(self.filename)
elif not os.access(directory, os.W_OK):
return self._report_permission_error(directory)
try: new_filename, old_filename = f'{self.filename}.new', f'{self.filename}.old'
if os.path.exists(old_filename or ''): if detect_variant() == 'zip': # Can be replaced in-place
os.remove(old_filename) new_filename, old_filename = self.filename, None
except OSError:
return report_unable('remove the old version')
newcontent = get_file(release_name) try:
if not verify(newcontent): if os.path.exists(old_filename or ''):
return os.remove(old_filename)
try: except OSError:
with open(new_filename, 'wb') as outf: return self._report_error('Unable to remove the old version')
outf.write(newcontent)
except OSError:
return report_permission_error(new_filename)
try: try:
if old_filename: newcontent = self._download()
os.rename(filename, old_filename) except OSError:
except OSError: return self._report_network_error('download latest version')
return report_unable('move current version') except Exception:
try: return self._report_network_error('fetch updates')
if old_filename:
os.rename(new_filename, filename)
except OSError:
report_unable('overwrite current version')
os.rename(old_filename, filename)
return
if variant not in ('win32_exe', 'py2exe'): try:
if old_filename: expected_hash = self.release_hash
os.remove(old_filename) except Exception:
ydl.to_screen(f'Updated yt-dlp to version {version_id}; Restart yt-dlp to use the new version') self.ydl.report_warning('no hash information found for the release')
return else:
if hashlib.sha256(newcontent).hexdigest() != expected_hash:
return self._report_network_error('verify the new executable')
try: try:
# Continues to run in the background with open(new_filename, 'wb') as outf:
Popen(f'ping 127.0.0.1 -n 5 -w 1000 & del /F "{old_filename}"', outf.write(newcontent)
shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) except OSError:
ydl.to_screen(f'Updated yt-dlp to version {version_id}') return self._report_permission_error(new_filename)
return True # Exit app
except OSError: try:
report_unable('delete the old version') if old_filename:
os.rename(self.filename, old_filename)
except OSError:
return self._report_error('Unable to move current version')
try:
if old_filename:
os.rename(new_filename, self.filename)
except OSError:
self._report_error('Unable to overwrite current version')
return os.rename(old_filename, self.filename)
if detect_variant() not in ('win32_exe', 'py2exe'):
if old_filename:
os.remove(old_filename)
self.ydl.to_screen(f'Updated yt-dlp to version {self.new_version}; Restart yt-dlp to use the new version')
return
try:
# Continues to run in the background
Popen(f'ping 127.0.0.1 -n 5 -w 1000 & del /F "{old_filename}"',
shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
self.ydl.to_screen(f'Updated yt-dlp to version {self.new_version}')
return True # Exit app
except OSError:
self._report_unable('delete the old version')
def run_update(ydl):
"""Update the program file with the latest version from the repository
@returns Whether there was a successfull update (No update = False)
"""
return Updater(ydl).update()
# Deprecated # Deprecated
def update_self(to_screen, verbose, opener): def update_self(to_screen, verbose, opener):
import traceback import traceback
from .utils import write_string from .utils import write_string
write_string( write_string(
@ -202,12 +241,10 @@ def update_self(to_screen, verbose, opener):
class FakeYDL(): class FakeYDL():
to_screen = printfn to_screen = printfn
@staticmethod def report_warning(self, msg, *args, **kwargs):
def report_warning(msg, *args, **kwargs):
return printfn(f'WARNING: {msg}', *args, **kwargs) return printfn(f'WARNING: {msg}', *args, **kwargs)
@staticmethod def report_error(self, msg, tb=None):
def report_error(msg, tb=None):
printfn(f'ERROR: {msg}') printfn(f'ERROR: {msg}')
if not verbose: if not verbose:
return return
@ -224,6 +261,9 @@ def update_self(to_screen, verbose, opener):
if tb: if tb:
printfn(tb) printfn(tb)
def write_debug(self, msg, *args, **kwargs):
printfn(f'[debug] {msg}', *args, **kwargs)
def urlopen(self, url): def urlopen(self, url):
return opener.open(url) return opener.open(url)

View File

@ -991,9 +991,10 @@ def make_HTTPS_handler(params, **kwargs):
def bug_reports_message(before=';'): def bug_reports_message(before=';'):
msg = ('please report this issue on https://github.com/yt-dlp/yt-dlp/issues?q= , ' from .update import REPOSITORY
'filling out the appropriate issue template. '
'Confirm you are on the latest version using yt-dlp -U') msg = (f'please report this issue on https://github.com/{REPOSITORY}/issues?q= , '
'filling out the appropriate issue template. Confirm you are on the latest version using yt-dlp -U')
before = before.rstrip() before = before.rstrip()
if not before or before.endswith(('.', '!', '?')): if not before or before.endswith(('.', '!', '?')):