mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-30 21:20:34 +00:00
341 lines
12 KiB
Python
341 lines
12 KiB
Python
import atexit
|
|
import contextlib
|
|
import hashlib
|
|
import json
|
|
import os
|
|
import platform
|
|
import re
|
|
import subprocess
|
|
import sys
|
|
from zipimport import zipimporter
|
|
|
|
from .compat import functools # isort: split
|
|
from .compat import compat_realpath, compat_shlex_quote
|
|
from .utils import (
|
|
Popen,
|
|
cached_method,
|
|
deprecation_warning,
|
|
shell_quote,
|
|
system_identifier,
|
|
traverse_obj,
|
|
version_tuple,
|
|
)
|
|
from .version import UPDATE_HINT, VARIANT, __version__
|
|
|
|
REPOSITORY = 'yt-dlp/yt-dlp'
|
|
API_URL = f'https://api.github.com/repos/{REPOSITORY}/releases'
|
|
|
|
|
|
@functools.cache
|
|
def _get_variant_and_executable_path():
|
|
"""@returns (variant, executable_path)"""
|
|
if hasattr(sys, 'frozen'):
|
|
path = sys.executable
|
|
if not hasattr(sys, '_MEIPASS'):
|
|
return 'py2exe', path
|
|
if sys._MEIPASS == os.path.dirname(path):
|
|
return f'{sys.platform}_dir', path
|
|
if sys.platform == 'darwin' and version_tuple(platform.mac_ver()[0]) < (10, 15):
|
|
return 'darwin_legacy_exe', path
|
|
return f'{sys.platform}_exe', path
|
|
|
|
path = os.path.dirname(__file__)
|
|
if isinstance(__loader__, zipimporter):
|
|
return 'zip', os.path.join(path, '..')
|
|
elif (os.path.basename(sys.argv[0]) in ('__main__.py', '-m')
|
|
and os.path.exists(os.path.join(path, '../.git/HEAD'))):
|
|
return 'source', path
|
|
return 'unknown', path
|
|
|
|
|
|
def detect_variant():
|
|
return VARIANT or _get_variant_and_executable_path()[0]
|
|
|
|
|
|
@functools.cache
|
|
def current_git_head():
|
|
if detect_variant() != 'source':
|
|
return
|
|
with contextlib.suppress(Exception):
|
|
stdout, _, _ = Popen.run(
|
|
['git', 'rev-parse', '--short', 'HEAD'],
|
|
text=True, cwd=os.path.dirname(os.path.abspath(__file__)),
|
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
if re.fullmatch('[0-9a-f]+', stdout.strip()):
|
|
return stdout.strip()
|
|
|
|
|
|
_FILE_SUFFIXES = {
|
|
'zip': '',
|
|
'py2exe': '_min.exe',
|
|
'win32_exe': '.exe',
|
|
'darwin_exe': '_macos',
|
|
'darwin_legacy_exe': '_macos_legacy',
|
|
'linux_exe': '_linux',
|
|
}
|
|
|
|
_NON_UPDATEABLE_REASONS = {
|
|
**{variant: None for variant in _FILE_SUFFIXES}, # Updatable
|
|
**{variant: f'Auto-update is not supported for unpackaged {name} executable; Re-download the latest release'
|
|
for variant, name in {'win32_dir': 'Windows', 'darwin_dir': 'MacOS', 'linux_dir': 'Linux'}.items()},
|
|
'source': 'You cannot update when running from source code; Use git to pull the latest changes',
|
|
'unknown': 'You installed yt-dlp with a package manager or setup.py; Use that to update',
|
|
'other': 'You are using an unofficial build of yt-dlp; Build the executable again',
|
|
}
|
|
|
|
|
|
def is_non_updateable():
|
|
if UPDATE_HINT:
|
|
return UPDATE_HINT
|
|
return _NON_UPDATEABLE_REASONS.get(
|
|
detect_variant(), _NON_UPDATEABLE_REASONS['unknown' if VARIANT else 'other'])
|
|
|
|
|
|
def _sha256_file(path):
|
|
h = hashlib.sha256()
|
|
mv = memoryview(bytearray(128 * 1024))
|
|
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()
|
|
|
|
|
|
class Updater:
|
|
def __init__(self, ydl):
|
|
self.ydl = ydl
|
|
|
|
@functools.cached_property
|
|
def _tag(self):
|
|
if version_tuple(__version__) >= version_tuple(self.latest_version):
|
|
return 'latest'
|
|
|
|
identifier = f'{detect_variant()} {system_identifier()}'
|
|
for line in self._download('_update_spec', 'latest').decode().splitlines():
|
|
if not line.startswith('lock '):
|
|
continue
|
|
_, tag, pattern = line.split(' ', 2)
|
|
if re.match(pattern, identifier):
|
|
return f'tags/{tag}'
|
|
return 'latest'
|
|
|
|
@cached_method
|
|
def _get_version_info(self, tag):
|
|
self.ydl.write_debug(f'Fetching release info: {API_URL}/{tag}')
|
|
return json.loads(self.ydl.urlopen(f'{API_URL}/{tag}').read().decode())
|
|
|
|
@property
|
|
def current_version(self):
|
|
"""Current version"""
|
|
return __version__
|
|
|
|
@property
|
|
def new_version(self):
|
|
"""Version of the latest release we can update to"""
|
|
if self._tag.startswith('tags/'):
|
|
return self._tag[5:]
|
|
return self._get_version_info(self._tag)['tag_name']
|
|
|
|
@property
|
|
def latest_version(self):
|
|
"""Version of the latest release"""
|
|
return self._get_version_info('latest')['tag_name']
|
|
|
|
@property
|
|
def has_update(self):
|
|
"""Whether there is an update available"""
|
|
return version_tuple(__version__) < version_tuple(self.new_version)
|
|
|
|
@functools.cached_property
|
|
def filename(self):
|
|
"""Filename of the executable"""
|
|
return compat_realpath(_get_variant_and_executable_path()[1])
|
|
|
|
def _download(self, name, tag):
|
|
url = traverse_obj(self._get_version_info(tag), (
|
|
'assets', lambda _, v: v['name'] == name, 'browser_download_url'), get_all=False)
|
|
if not url:
|
|
raise Exception('Unable to find download URL')
|
|
self.ydl.write_debug(f'Downloading {name} from {url}')
|
|
return self.ydl.urlopen(url).read()
|
|
|
|
@functools.cached_property
|
|
def release_name(self):
|
|
"""The release filename"""
|
|
label = _FILE_SUFFIXES[detect_variant()]
|
|
if label and platform.architecture()[0][:2] == '32':
|
|
label = f'_x86{label}'
|
|
return f'yt-dlp{label}'
|
|
|
|
@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', self._tag).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.latest_version}, Current version: {self.current_version}')
|
|
if not self.has_update:
|
|
if self._tag == 'latest':
|
|
return self.ydl.to_screen(f'yt-dlp is up to date ({__version__})')
|
|
return self.ydl.report_warning(
|
|
'yt-dlp cannot be updated any further since you are on an older Python version')
|
|
except Exception:
|
|
return self._report_network_error('obtain version info', delim='; Please try again later or')
|
|
|
|
if not is_non_updateable():
|
|
self.ydl.to_screen(f'Current Build Hash {_sha256_file(self.filename)}')
|
|
return True
|
|
|
|
def update(self):
|
|
"""Update yt-dlp executable to the latest version"""
|
|
if not self.check_update():
|
|
return
|
|
err = is_non_updateable()
|
|
if err:
|
|
return self._report_error(err, True)
|
|
self.ydl.to_screen(f'Updating to version {self.new_version} ...')
|
|
|
|
directory = os.path.dirname(self.filename)
|
|
if not os.access(self.filename, os.W_OK):
|
|
return self._report_permission_error(self.filename)
|
|
elif not os.access(directory, os.W_OK):
|
|
return self._report_permission_error(directory)
|
|
|
|
new_filename, old_filename = f'{self.filename}.new', f'{self.filename}.old'
|
|
if detect_variant() == 'zip': # Can be replaced in-place
|
|
new_filename, old_filename = self.filename, None
|
|
|
|
try:
|
|
if os.path.exists(old_filename or ''):
|
|
os.remove(old_filename)
|
|
except OSError:
|
|
return self._report_error('Unable to remove the old version')
|
|
|
|
try:
|
|
newcontent = self._download(self.release_name, self._tag)
|
|
except OSError:
|
|
return self._report_network_error('download latest version')
|
|
except Exception:
|
|
return self._report_network_error('fetch updates')
|
|
|
|
try:
|
|
expected_hash = self.release_hash
|
|
except Exception:
|
|
self.ydl.report_warning('no hash information found for the release')
|
|
else:
|
|
if hashlib.sha256(newcontent).hexdigest() != expected_hash:
|
|
return self._report_network_error('verify the new executable')
|
|
|
|
try:
|
|
with open(new_filename, 'wb') as outf:
|
|
outf.write(newcontent)
|
|
except OSError:
|
|
return self._report_permission_error(new_filename)
|
|
|
|
if old_filename:
|
|
mask = os.stat(self.filename).st_mode
|
|
try:
|
|
os.rename(self.filename, old_filename)
|
|
except OSError:
|
|
return self._report_error('Unable to move current version')
|
|
|
|
try:
|
|
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() in ('win32_exe', 'py2exe'):
|
|
atexit.register(Popen, f'ping 127.0.0.1 -n 5 -w 1000 & del /F "{old_filename}"',
|
|
shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
|
|
elif old_filename:
|
|
try:
|
|
os.remove(old_filename)
|
|
except OSError:
|
|
self._report_error('Unable to remove the old version')
|
|
|
|
try:
|
|
os.chmod(self.filename, mask)
|
|
except OSError:
|
|
return self._report_error(
|
|
f'Unable to set permissions. Run: sudo chmod a+rx {compat_shlex_quote(self.filename)}')
|
|
|
|
self.ydl.to_screen(f'Updated yt-dlp to version {self.new_version}')
|
|
return True
|
|
|
|
@functools.cached_property
|
|
def cmd(self):
|
|
"""The command-line to run the executable, if known"""
|
|
# There is no sys.orig_argv in py < 3.10. Also, it can be [] when frozen
|
|
if getattr(sys, 'orig_argv', None):
|
|
return sys.orig_argv
|
|
elif hasattr(sys, 'frozen'):
|
|
return sys.argv
|
|
|
|
def restart(self):
|
|
"""Restart the executable"""
|
|
assert self.cmd, 'Must be frozen or Py >= 3.10'
|
|
self.ydl.write_debug(f'Restarting: {shell_quote(self.cmd)}')
|
|
_, _, returncode = Popen.run(self.cmd)
|
|
return returncode
|
|
|
|
|
|
def run_update(ydl):
|
|
"""Update the program file with the latest version from the repository
|
|
@returns Whether there was a successful update (No update = False)
|
|
"""
|
|
return Updater(ydl).update()
|
|
|
|
|
|
# Deprecated
|
|
def update_self(to_screen, verbose, opener):
|
|
import traceback
|
|
|
|
deprecation_warning(f'"{__name__}.update_self" is deprecated and may be removed '
|
|
f'in a future version. Use "{__name__}.run_update(ydl)" instead')
|
|
|
|
printfn = to_screen
|
|
|
|
class FakeYDL():
|
|
to_screen = printfn
|
|
|
|
def report_warning(self, msg, *args, **kwargs):
|
|
return printfn(f'WARNING: {msg}', *args, **kwargs)
|
|
|
|
def report_error(self, msg, tb=None):
|
|
printfn(f'ERROR: {msg}')
|
|
if not verbose:
|
|
return
|
|
if tb is None:
|
|
# Copied from YoutubeDL.trouble
|
|
if sys.exc_info()[0]:
|
|
tb = ''
|
|
if hasattr(sys.exc_info()[1], 'exc_info') and sys.exc_info()[1].exc_info[0]:
|
|
tb += ''.join(traceback.format_exception(*sys.exc_info()[1].exc_info))
|
|
tb += traceback.format_exc()
|
|
else:
|
|
tb_data = traceback.format_list(traceback.extract_stack())
|
|
tb = ''.join(tb_data)
|
|
if tb:
|
|
printfn(tb)
|
|
|
|
def write_debug(self, msg, *args, **kwargs):
|
|
printfn(f'[debug] {msg}', *args, **kwargs)
|
|
|
|
def urlopen(self, url):
|
|
return opener.open(url)
|
|
|
|
return run_update(FakeYDL())
|