2021-05-25 19:43:08 +00:00
|
|
|
import hashlib
|
2012-12-30 18:49:14 +00:00
|
|
|
import json
|
2013-11-17 15:47:52 +00:00
|
|
|
import os
|
2021-02-14 17:10:54 +00:00
|
|
|
import platform
|
2013-09-29 09:26:01 +00:00
|
|
|
import subprocess
|
2013-09-29 09:17:38 +00:00
|
|
|
import sys
|
2012-12-30 18:49:14 +00:00
|
|
|
from zipimport import zipimporter
|
|
|
|
|
2022-05-22 11:37:18 +00:00
|
|
|
from .compat import functools # isort: split
|
|
|
|
from .compat import compat_realpath
|
|
|
|
from .utils import Popen, traverse_obj, version_tuple
|
2012-12-30 18:49:14 +00:00
|
|
|
from .version import __version__
|
|
|
|
|
2014-11-23 19:41:03 +00:00
|
|
|
|
2022-05-22 11:37:18 +00:00
|
|
|
RELEASE_JSON_URL = 'https://api.github.com/repos/yt-dlp/yt-dlp/releases/latest'
|
|
|
|
|
|
|
|
|
2022-05-19 14:06:31 +00:00
|
|
|
@functools.cache
|
2022-05-22 11:37:18 +00:00
|
|
|
def _get_variant_and_executable_path():
|
2022-04-17 17:18:50 +00:00
|
|
|
"""@returns (variant, executable_path)"""
|
2021-10-03 20:55:13 +00:00
|
|
|
if hasattr(sys, 'frozen'):
|
2022-04-17 17:18:50 +00:00
|
|
|
path = sys.executable
|
2022-05-22 11:37:18 +00:00
|
|
|
if not hasattr(sys, '_MEIPASS'):
|
|
|
|
return 'py2exe', path
|
|
|
|
if sys._MEIPASS == os.path.dirname(path):
|
|
|
|
return f'{sys.platform}_dir', path
|
|
|
|
return f'{sys.platform}_exe', path
|
|
|
|
|
|
|
|
path = os.path.dirname(__file__)
|
2022-04-17 17:18:50 +00:00
|
|
|
if isinstance(__loader__, zipimporter):
|
|
|
|
return 'zip', os.path.join(path, '..')
|
2021-09-24 01:01:43 +00:00
|
|
|
elif os.path.basename(sys.argv[0]) == '__main__.py':
|
2022-04-17 17:18:50 +00:00
|
|
|
return 'source', path
|
|
|
|
return 'unknown', path
|
|
|
|
|
|
|
|
|
|
|
|
def detect_variant():
|
2022-05-22 11:37:18 +00:00
|
|
|
return _get_variant_and_executable_path()[0]
|
2021-09-24 01:01:43 +00:00
|
|
|
|
|
|
|
|
2022-05-22 11:37:18 +00:00
|
|
|
_FILE_SUFFIXES = {
|
|
|
|
'zip': '',
|
|
|
|
'py2exe': '_min.exe',
|
|
|
|
'win32_exe': '.exe',
|
|
|
|
'darwin_exe': '_macos',
|
|
|
|
}
|
|
|
|
|
2021-10-03 20:55:13 +00:00
|
|
|
_NON_UPDATEABLE_REASONS = {
|
2022-05-22 11:37:18 +00:00
|
|
|
**{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'}.items()},
|
2021-10-11 04:25:30 +00:00
|
|
|
'source': 'You cannot update when running from source code; Use git to pull the latest changes',
|
2022-02-03 15:02:10 +00:00
|
|
|
'unknown': 'It looks like you installed yt-dlp with a package manager, pip or setup.py; Use that to update',
|
2022-05-22 11:37:18 +00:00
|
|
|
'other': 'It looks like you are using an unofficial build of yt-dlp; Build the executable again',
|
2021-10-03 20:55:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def is_non_updateable():
|
2022-05-22 11:37:18 +00:00
|
|
|
return _NON_UPDATEABLE_REASONS.get(detect_variant(), _NON_UPDATEABLE_REASONS['other'])
|
2021-10-03 20:55:13 +00:00
|
|
|
|
|
|
|
|
2021-05-25 19:43:08 +00:00
|
|
|
def run_update(ydl):
|
2021-02-14 17:10:54 +00:00
|
|
|
"""
|
|
|
|
Update the program file with the latest version from the repository
|
|
|
|
Returns whether the program should terminate
|
|
|
|
"""
|
2012-12-30 18:49:14 +00:00
|
|
|
|
2021-10-11 04:25:30 +00:00
|
|
|
def report_error(msg, expected=False):
|
2022-04-17 17:18:50 +00:00
|
|
|
ydl.report_error(msg, tb=False if expected else None)
|
2021-10-11 04:25:30 +00:00
|
|
|
|
|
|
|
def report_unable(action, expected=False):
|
|
|
|
report_error(f'Unable to {action}', expected)
|
|
|
|
|
|
|
|
def report_permission_error(file):
|
|
|
|
report_unable(f'write to {file}; Try running as administrator', True)
|
|
|
|
|
|
|
|
def report_network_error(action, delim=';'):
|
|
|
|
report_unable(f'{action}{delim} Visit https://github.com/yt-dlp/yt-dlp/releases/latest', True)
|
2021-05-25 19:43:08 +00:00
|
|
|
|
2021-02-15 21:06:42 +00:00
|
|
|
def calc_sha256sum(path):
|
2020-10-31 07:57:55 +00:00
|
|
|
h = hashlib.sha256()
|
2022-05-22 11:37:18 +00:00
|
|
|
mv = memoryview(bytearray(128 * 1024))
|
2021-02-15 21:06:42 +00:00
|
|
|
with open(os.path.realpath(path), 'rb', buffering=0) as f:
|
2020-10-31 07:57:55 +00:00
|
|
|
for n in iter(lambda: f.readinto(mv), 0):
|
|
|
|
h.update(mv[:n])
|
|
|
|
return h.hexdigest()
|
|
|
|
|
2021-09-27 03:51:28 +00:00
|
|
|
try:
|
2022-05-22 11:37:18 +00:00
|
|
|
version_info = json.loads(ydl.urlopen(RELEASE_JSON_URL).read().decode())
|
2021-09-27 03:51:28 +00:00
|
|
|
except Exception:
|
2021-10-11 04:25:30 +00:00
|
|
|
return report_network_error('obtain version info', delim='; Please try again later or')
|
2021-09-27 03:51:28 +00:00
|
|
|
|
|
|
|
version_id = version_info['tag_name']
|
2021-11-29 17:05:23 +00:00
|
|
|
ydl.to_screen(f'Latest version: {version_id}, Current version: {__version__}')
|
2021-09-27 03:51:28 +00:00
|
|
|
if version_tuple(__version__) >= version_tuple(version_id):
|
|
|
|
ydl.to_screen(f'yt-dlp is up to date ({__version__})')
|
|
|
|
return
|
|
|
|
|
2021-10-03 20:55:13 +00:00
|
|
|
err = is_non_updateable()
|
2021-05-31 22:02:09 +00:00
|
|
|
if err:
|
2021-10-11 04:25:30 +00:00
|
|
|
return report_error(err, True)
|
2012-12-30 18:49:14 +00:00
|
|
|
|
2022-05-22 11:37:18 +00:00
|
|
|
variant, filename = _get_variant_and_executable_path()
|
2022-04-17 17:18:50 +00:00
|
|
|
filename = compat_realpath(filename) # Absolute path, following symlinks
|
|
|
|
|
2022-05-22 11:37:18 +00:00
|
|
|
label = _FILE_SUFFIXES[variant]
|
|
|
|
if label and platform.architecture()[0][:2] == '32':
|
|
|
|
label = f'_x86{label}'
|
|
|
|
release_name = f'yt-dlp{label}'
|
|
|
|
|
2021-12-01 00:16:15 +00:00
|
|
|
ydl.to_screen(f'Current Build Hash {calc_sha256sum(filename)}')
|
2021-09-27 03:51:28 +00:00
|
|
|
ydl.to_screen(f'Updating to version {version_id} ...')
|
2013-02-21 23:36:23 +00:00
|
|
|
|
2022-05-22 11:37:18 +00:00
|
|
|
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:
|
|
|
|
return error('fetch updates')
|
2021-05-25 19:43:34 +00:00
|
|
|
try:
|
2022-05-22 11:37:18 +00:00
|
|
|
return ydl.urlopen(url).read()
|
2022-04-11 15:10:28 +00:00
|
|
|
except OSError:
|
2022-05-22 11:37:18 +00:00
|
|
|
return error('download latest version')
|
|
|
|
|
|
|
|
def verify(content):
|
|
|
|
if not content:
|
|
|
|
return False
|
|
|
|
hash_data = get_file('SHA2-256SUMS', fatal=False) or b''
|
|
|
|
expected = dict(ln.split()[::-1] for ln in hash_data.decode().splitlines()).get(release_name)
|
|
|
|
if not expected:
|
2021-05-25 19:43:08 +00:00
|
|
|
ydl.report_warning('no hash information found for the release')
|
2022-05-22 11:37:18 +00:00
|
|
|
elif hashlib.sha256(content).hexdigest() != expected:
|
|
|
|
return report_network_error('verify the new executable')
|
|
|
|
return True
|
2021-02-15 21:06:42 +00:00
|
|
|
|
2022-05-22 11:37:18 +00:00
|
|
|
directory = os.path.dirname(filename)
|
|
|
|
if not os.access(filename, os.W_OK):
|
|
|
|
return report_permission_error(filename)
|
|
|
|
elif not os.access(directory, os.W_OK):
|
|
|
|
return report_permission_error(directory)
|
2012-12-30 18:49:14 +00:00
|
|
|
|
2022-05-22 11:37:18 +00:00
|
|
|
new_filename, old_filename = f'{filename}.new', f'{filename}.old'
|
|
|
|
if variant == 'zip': # Can be replaced in-place
|
|
|
|
new_filename, old_filename = filename, None
|
2012-12-30 18:49:14 +00:00
|
|
|
|
2022-05-22 11:37:18 +00:00
|
|
|
try:
|
|
|
|
if os.path.exists(old_filename or ''):
|
|
|
|
os.remove(old_filename)
|
|
|
|
except OSError:
|
|
|
|
return report_unable('remove the old version')
|
2021-02-15 21:06:42 +00:00
|
|
|
|
2022-05-22 11:37:18 +00:00
|
|
|
newcontent = get_file(release_name)
|
|
|
|
if not verify(newcontent):
|
|
|
|
return
|
|
|
|
try:
|
|
|
|
with open(new_filename, 'wb') as outf:
|
|
|
|
outf.write(newcontent)
|
|
|
|
except OSError:
|
|
|
|
return report_permission_error(new_filename)
|
|
|
|
|
|
|
|
try:
|
|
|
|
if old_filename:
|
|
|
|
os.rename(filename, old_filename)
|
|
|
|
except OSError:
|
|
|
|
return report_unable('move current version')
|
|
|
|
try:
|
|
|
|
if old_filename:
|
|
|
|
os.rename(new_filename, filename)
|
|
|
|
except OSError:
|
|
|
|
report_unable('overwrite current version')
|
|
|
|
os.rename(old_filename, filename)
|
|
|
|
return
|
2012-12-30 18:49:14 +00:00
|
|
|
|
2022-05-22 11:37:18 +00:00
|
|
|
if variant not in ('win32_exe', 'py2exe'):
|
|
|
|
if old_filename:
|
|
|
|
os.remove(old_filename)
|
|
|
|
ydl.to_screen(f'Updated yt-dlp to version {version_id}; Restart yt-dlp to use the new version')
|
2021-10-21 10:48:46 +00:00
|
|
|
return
|
|
|
|
|
2022-05-22 11:37:18 +00:00
|
|
|
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)
|
|
|
|
ydl.to_screen(f'Updated yt-dlp to version {version_id}')
|
|
|
|
return True # Exit app
|
|
|
|
except OSError:
|
|
|
|
report_unable('delete the old version')
|
2013-02-21 23:36:23 +00:00
|
|
|
|
2014-11-23 19:41:03 +00:00
|
|
|
|
2021-11-29 17:46:06 +00:00
|
|
|
# Deprecated
|
2021-10-11 04:25:30 +00:00
|
|
|
def update_self(to_screen, verbose, opener):
|
2022-05-22 11:37:18 +00:00
|
|
|
import traceback
|
|
|
|
from .utils import write_string
|
2021-10-11 04:25:30 +00:00
|
|
|
|
2021-11-29 17:46:06 +00:00
|
|
|
write_string(
|
|
|
|
'DeprecationWarning: "yt_dlp.update.update_self" is deprecated and may be removed in a future version. '
|
2021-12-23 01:42:26 +00:00
|
|
|
'Use "yt_dlp.update.run_update(ydl)" instead\n')
|
2021-10-11 04:25:30 +00:00
|
|
|
|
2022-05-22 11:37:18 +00:00
|
|
|
printfn = to_screen
|
|
|
|
|
2021-10-11 04:25:30 +00:00
|
|
|
class FakeYDL():
|
|
|
|
to_screen = printfn
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def report_warning(msg, *args, **kwargs):
|
2022-05-22 11:37:18 +00:00
|
|
|
return printfn(f'WARNING: {msg}', *args, **kwargs)
|
2021-10-11 04:25:30 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def report_error(msg, tb=None):
|
2022-05-22 11:37:18 +00:00
|
|
|
printfn(f'ERROR: {msg}')
|
2021-10-11 04:25:30 +00:00
|
|
|
if not verbose:
|
|
|
|
return
|
|
|
|
if tb is None:
|
2022-05-22 11:37:18 +00:00
|
|
|
# Copied from YoutubeDL.trouble
|
2021-10-11 04:25:30 +00:00
|
|
|
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))
|
2022-05-22 11:37:18 +00:00
|
|
|
tb += traceback.format_exc()
|
2021-10-11 04:25:30 +00:00
|
|
|
else:
|
|
|
|
tb_data = traceback.format_list(traceback.extract_stack())
|
|
|
|
tb = ''.join(tb_data)
|
|
|
|
if tb:
|
|
|
|
printfn(tb)
|
|
|
|
|
2022-05-22 11:37:18 +00:00
|
|
|
def urlopen(self, url):
|
|
|
|
return opener.open(url)
|
|
|
|
|
2021-10-11 04:25:30 +00:00
|
|
|
return run_update(FakeYDL())
|