mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-03-09 12:50:23 -05:00
split
This commit is contained in:
parent
8c6d01f757
commit
2a4ab042b8
4 changed files with 245 additions and 222 deletions
|
@ -1,5 +1,6 @@
|
|||
from .native import JSInterpreter
|
||||
from .external import PhantomJSwrapper, DenoJSI, PuppeteerJSI
|
||||
from ._phantomjs import PhantomJSwrapper
|
||||
from ._deno import DenoJSI
|
||||
from .common import _JSI_PREFERENCES, _JSI_HANDLERS, JSInterp
|
||||
|
||||
|
||||
|
@ -7,7 +8,6 @@
|
|||
JSInterpreter,
|
||||
PhantomJSwrapper,
|
||||
DenoJSI,
|
||||
PuppeteerJSI,
|
||||
_JSI_HANDLERS,
|
||||
_JSI_PREFERENCES,
|
||||
JSInterp,
|
||||
|
|
238
yt_dlp/jsinterp/_deno.py
Normal file
238
yt_dlp/jsinterp/_deno.py
Normal file
|
@ -0,0 +1,238 @@
|
|||
from __future__ import annotations
|
||||
|
||||
import http.cookiejar
|
||||
import json
|
||||
import subprocess
|
||||
import typing
|
||||
import urllib.parse
|
||||
|
||||
|
||||
from ..utils import (
|
||||
ExtractorError,
|
||||
Popen,
|
||||
classproperty,
|
||||
int_or_none,
|
||||
shell_quote,
|
||||
unified_timestamp,
|
||||
)
|
||||
from ._helper import TempFileWrapper, random_string
|
||||
from .common import ExternalJSI, register_jsi
|
||||
|
||||
|
||||
@register_jsi
|
||||
class DenoJSI(ExternalJSI):
|
||||
"""JS interpreter class using Deno binary"""
|
||||
_SUPPORTED_FEATURES = {'js', 'wasm', 'location'}
|
||||
_BASE_PREFERENCE = 5
|
||||
_EXE_NAME = 'deno'
|
||||
_DENO_FLAGS = ['--cached-only', '--no-prompt', '--no-check']
|
||||
_INIT_SCRIPT = 'localStorage.clear(); delete window.Deno; global = window;\n'
|
||||
|
||||
def __init__(self, downloader: YoutubeDL, timeout=None, features: set[str] = {}, flags=[], replace_flags=False, init_script=None):
|
||||
super().__init__(downloader, timeout, features)
|
||||
self._flags = flags if replace_flags else [*self._DENO_FLAGS, *flags]
|
||||
self._init_script = self._INIT_SCRIPT if init_script is None else init_script
|
||||
|
||||
def _run_deno(self, cmd):
|
||||
self.write_debug(f'Deno command line: {shell_quote(cmd)}')
|
||||
try:
|
||||
stdout, stderr, returncode = Popen.run(
|
||||
cmd, timeout=self.timeout, text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
except Exception as e:
|
||||
raise ExtractorError('Unable to run Deno binary', cause=e)
|
||||
if returncode:
|
||||
raise ExtractorError(f'Failed with returncode {returncode}:\n{stderr}')
|
||||
elif stderr:
|
||||
self.report_warning(f'JS console error msg:\n{stderr.strip()}')
|
||||
return stdout.strip()
|
||||
|
||||
def execute(self, jscode, video_id=None, note='Executing JS in Deno', location=None):
|
||||
self.report_note(video_id, note)
|
||||
location_args = ['--location', location] if location else []
|
||||
with TempFileWrapper(f'{self._init_script};\n{jscode}', suffix='.js') as js_file:
|
||||
cmd = [self.exe, 'run', *self._flags, *location_args, js_file.name]
|
||||
return self._run_deno(cmd)
|
||||
|
||||
|
||||
@register_jsi
|
||||
class DenoJITlessJSI(DenoJSI):
|
||||
_SUPPORTED_FEATURES = {'js', 'location'}
|
||||
_BASE_PREFERENCE = 6
|
||||
_EXE_NAME = DenoJSI._EXE_NAME
|
||||
_DENO_FLAGS = ['--cached-only', '--no-prompt', '--no-check', '--v8-flags=--jitless,--noexpose-wasm']
|
||||
|
||||
@classproperty
|
||||
def exe_version(cls):
|
||||
return DenoJSI.exe_version
|
||||
|
||||
|
||||
class DenoJSDomJSI(DenoJSI):
|
||||
_SUPPORTED_FEATURES = {'js', 'wasm', 'location', 'dom', 'cookies'}
|
||||
_BASE_PREFERENCE = 4
|
||||
_DENO_FLAGS = ['--cached-only', '--no-prompt', '--no-check']
|
||||
_JSDOM_IMPORT_CHECKED = False
|
||||
|
||||
@staticmethod
|
||||
def serialize_cookie(cookiejar: YoutubeDLCookieJar | None, url: str):
|
||||
"""serialize netscape-compatible fields from cookiejar for tough-cookie loading"""
|
||||
# JSDOM use tough-cookie as its CookieJar https://github.com/jsdom/jsdom/blob/main/lib/api.js
|
||||
# tough-cookie use Cookie.fromJSON and Cookie.toJSON for cookie serialization
|
||||
# https://github.com/salesforce/tough-cookie/blob/master/lib/cookie/cookie.ts
|
||||
if not cookiejar:
|
||||
return json.dumps({'cookies': []})
|
||||
cookies: list[http.cookiejar.Cookie] = [cookie for cookie in cookiejar.get_cookies_for_url(url)]
|
||||
return json.dumps({'cookies': [{
|
||||
'key': cookie.name,
|
||||
'value': cookie.value,
|
||||
# leading dot must be removed, otherwise will fail to match
|
||||
'domain': cookie.domain.lstrip('.') or urllib.parse.urlparse(url).hostname,
|
||||
'expires': int_or_none(cookie.expires, invscale=1000),
|
||||
'hostOnly': not cookie.domain_initial_dot,
|
||||
'secure': bool(cookie.secure),
|
||||
'path': cookie.path,
|
||||
} for cookie in cookies if cookie.value]})
|
||||
|
||||
@staticmethod
|
||||
def apply_cookies(cookiejar: YoutubeDLCookieJar | None, cookies: list[dict]):
|
||||
"""apply cookies from serialized tough-cookie"""
|
||||
# see serialize_cookie
|
||||
if not cookiejar:
|
||||
return
|
||||
for cookie_dict in cookies:
|
||||
if not all(cookie_dict.get(k) for k in ('key', 'value', 'domain')):
|
||||
continue
|
||||
if cookie_dict.get('hostOnly'):
|
||||
cookie_dict['domain'] = cookie_dict['domain'].lstrip('.')
|
||||
else:
|
||||
cookie_dict['domain'] = '.' + cookie_dict['domain'].lstrip('.')
|
||||
|
||||
cookiejar.set_cookie(http.cookiejar.Cookie(
|
||||
0, cookie_dict['key'], cookie_dict['value'],
|
||||
None, False,
|
||||
cookie_dict['domain'], True, not cookie_dict.get('hostOnly'),
|
||||
cookie_dict.get('path', '/'), True,
|
||||
bool(cookie_dict.get('secure')),
|
||||
unified_timestamp(cookie_dict.get('expires')),
|
||||
False, None, None, {}))
|
||||
|
||||
def _ensure_jsdom(self):
|
||||
if self._JSDOM_IMPORT_CHECKED:
|
||||
return
|
||||
with TempFileWrapper('import jsdom from "https://cdn.esm.sh/jsdom"', suffix='.js') as js_file:
|
||||
cmd = [self.exe, 'run', js_file.name]
|
||||
self._run_deno(cmd)
|
||||
self._JSDOM_IMPORT_CHECKED = True
|
||||
|
||||
def execute(self, jscode, video_id=None, note='Executing JS in Deno', location='', html='', cookiejar=None):
|
||||
self.report_note(video_id, note)
|
||||
self._ensure_jsdom()
|
||||
callback_varname = f'__callback_{random_string()}'
|
||||
script = f'''{self._init_script};
|
||||
import jsdom from "https://cdn.esm.sh/jsdom";
|
||||
const {callback_varname} = (() => {{
|
||||
const jar = jsdom.CookieJar.deserializeSync({json.dumps(self.serialize_cookie(cookiejar, location))});
|
||||
const dom = new jsdom.JSDOM({json.dumps(str(html))}, {{
|
||||
{'url: %s,' % json.dumps(str(location)) if location else ''}
|
||||
cookieJar: jar,
|
||||
}});
|
||||
Object.keys(dom.window).forEach((key) => {{try {{window[key] = dom.window[key]}} catch (e) {{}}}});
|
||||
delete window.jsdom;
|
||||
const stdout = [];
|
||||
const origLog = console.log;
|
||||
console.log = (...msg) => stdout.push(msg.map(m => m.toString()).join(' '));
|
||||
return () => {{ origLog(JSON.stringify({{
|
||||
stdout: stdout.join('\\n'), cookies: jar.serializeSync().cookies}})); }}
|
||||
}})();
|
||||
await (async () => {{
|
||||
{jscode}
|
||||
}})().finally({callback_varname});
|
||||
'''
|
||||
|
||||
location_args = ['--location', location] if location else []
|
||||
with TempFileWrapper(script, suffix='.js') as js_file:
|
||||
cmd = [self.exe, 'run', *self._flags, *location_args, js_file.name]
|
||||
data = json.loads(self._run_deno(cmd))
|
||||
self.apply_cookies(cookiejar, data['cookies'])
|
||||
return data['stdout']
|
||||
|
||||
|
||||
class PuppeteerJSI(ExternalJSI):
|
||||
_PACKAGE_VERSION = '16.2.0'
|
||||
_HEADLESS = False
|
||||
_EXE_NAME = DenoJSI._EXE_NAME
|
||||
|
||||
@classproperty
|
||||
def INSTALL_HINT(cls):
|
||||
msg = f'Run "deno run -A https://deno.land/x/puppeteer@{cls._PACKAGE_VERSION}/install.ts" to install puppeteer'
|
||||
if not DenoJSI.is_available:
|
||||
msg = f'{DenoJSI.INSTALL_HINT}. Then {msg}'
|
||||
return msg
|
||||
|
||||
@classproperty(cache=True)
|
||||
def full_version(cls):
|
||||
if not DenoJSI.is_available:
|
||||
return
|
||||
try:
|
||||
browser_version = DenoJSI._execute(f'''
|
||||
import puppeteer from "https://deno.land/x/puppeteer@{cls._PACKAGE_VERSION}/mod.ts";
|
||||
const browser = await puppeteer.launch({{headless: {json.dumps(bool(cls._HEADLESS))}}});
|
||||
try {{
|
||||
console.log(await browser.version())
|
||||
}} finally {{
|
||||
await browser.close();
|
||||
}}''', flags=['--allow-all'])
|
||||
return f'puppeteer={cls._PACKAGE_VERSION} browser={browser_version}'
|
||||
except ExtractorError:
|
||||
return None
|
||||
|
||||
@classproperty
|
||||
def exe_version(cls):
|
||||
return DenoJSI.exe_version if cls.full_version else None
|
||||
|
||||
def __init__(self, downloader: YoutubeDL, timeout: float | int | None = None):
|
||||
super().__init__(downloader, timeout)
|
||||
self.deno = DenoJSI(downloader, timeout=(self.timeout + 30000))
|
||||
|
||||
def _deno_execute(self, jscode, note=None):
|
||||
return self.deno.execute(f'''
|
||||
import puppeteer from "https://deno.land/x/puppeteer@{self._PACKAGE_VERSION}/mod.ts";
|
||||
const browser = await puppeteer.launch({{
|
||||
headless: {json.dumps(bool(self._HEADLESS))}, args: ["--disable-web-security"]}});
|
||||
try {{
|
||||
{jscode}
|
||||
}} finally {{
|
||||
await browser.close();
|
||||
}}''', note=note, flags=['--allow-all'], base_js='')
|
||||
|
||||
def execute(self, jscode, video_id=None, note='Executing JS in Puppeteer', url='about:blank'):
|
||||
self.report_note(video_id, note)
|
||||
return self._deno_execute(f'''
|
||||
const page = await browser.newPage();
|
||||
window.setTimeout(async () => {{
|
||||
console.error('Puppeteer execution timed out');
|
||||
await browser.close();
|
||||
Deno.exit(1);
|
||||
}}, {int(self.timeout)});
|
||||
page.resourceTimeout = {int(self.timeout)};
|
||||
|
||||
// drop network requests
|
||||
await page.setRequestInterception(true);
|
||||
page.on("request", request => request.abort());
|
||||
// capture console output
|
||||
page.on("console", msg => {{
|
||||
msg.type() === 'log' && console.log(msg.text());
|
||||
msg.type() === 'error' && console.error(msg.text());
|
||||
}});
|
||||
|
||||
const url = {json.dumps(str(url))};
|
||||
await page.evaluate(`window.history.replaceState('', '', ${{JSON.stringify(url)}})`);
|
||||
|
||||
await page.evaluate({json.dumps(str(jscode))});
|
||||
await browser.close();
|
||||
Deno.exit(0);
|
||||
''')
|
||||
|
||||
|
||||
if typing.TYPE_CHECKING:
|
||||
from ..YoutubeDL import YoutubeDL
|
||||
from ..cookies import YoutubeDLCookieJar
|
|
@ -11,230 +11,14 @@
|
|||
from ..utils import (
|
||||
ExtractorError,
|
||||
Popen,
|
||||
classproperty,
|
||||
format_field,
|
||||
int_or_none,
|
||||
is_outdated_version,
|
||||
shell_quote,
|
||||
unified_timestamp,
|
||||
)
|
||||
from ._helper import TempFileWrapper, random_string
|
||||
from .common import ExternalJSI, register_jsi
|
||||
|
||||
|
||||
@register_jsi
|
||||
class DenoJSI(ExternalJSI):
|
||||
"""JS interpreter class using Deno binary"""
|
||||
_SUPPORTED_FEATURES = {'js', 'wasm', 'location'}
|
||||
_BASE_PREFERENCE = 5
|
||||
_EXE_NAME = 'deno'
|
||||
_DENO_FLAGS = ['--cached-only', '--no-prompt', '--no-check']
|
||||
_INIT_SCRIPT = 'localStorage.clear(); delete window.Deno; global = window;\n'
|
||||
|
||||
def __init__(self, downloader: YoutubeDL, timeout=None, flags=[], replace_flags=False, init_script=None):
|
||||
super().__init__(downloader, timeout)
|
||||
self._flags = flags if replace_flags else [*self._DENO_FLAGS, *flags]
|
||||
self._init_script = self._INIT_SCRIPT if init_script is None else init_script
|
||||
|
||||
def _run_deno(self, cmd):
|
||||
self.write_debug(f'Deno command line: {shell_quote(cmd)}')
|
||||
try:
|
||||
stdout, stderr, returncode = Popen.run(
|
||||
cmd, timeout=self.timeout, text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
except Exception as e:
|
||||
raise ExtractorError('Unable to run Deno binary', cause=e)
|
||||
if returncode:
|
||||
raise ExtractorError(f'Failed with returncode {returncode}:\n{stderr}')
|
||||
elif stderr:
|
||||
self.report_warning(f'JS console error msg:\n{stderr.strip()}')
|
||||
return stdout.strip()
|
||||
|
||||
def execute(self, jscode, video_id=None, note='Executing JS in Deno', location=None):
|
||||
self.report_note(video_id, note)
|
||||
location_args = ['--location', location] if location else []
|
||||
with TempFileWrapper(f'{self._init_script};\n{jscode}', suffix='.js') as js_file:
|
||||
cmd = [self.exe, 'run', *self._flags, *location_args, js_file.name]
|
||||
return self._run_deno(cmd)
|
||||
|
||||
|
||||
@register_jsi
|
||||
class DenoJITlessJSI(DenoJSI):
|
||||
_SUPPORTED_FEATURES = {'js', 'location'}
|
||||
_BASE_PREFERENCE = 6
|
||||
_EXE_NAME = DenoJSI._EXE_NAME
|
||||
_DENO_FLAGS = ['--cached-only', '--no-prompt', '--no-check', '--v8-flags=--jitless,--noexpose-wasm']
|
||||
|
||||
@classproperty
|
||||
def exe_version(cls):
|
||||
return DenoJSI.exe_version
|
||||
|
||||
|
||||
class DenoJSDomJSI(DenoJSI):
|
||||
_SUPPORTED_FEATURES = {'js', 'wasm', 'location', 'dom', 'cookies'}
|
||||
_BASE_PREFERENCE = 4
|
||||
_DENO_FLAGS = ['--cached-only', '--no-prompt', '--no-check']
|
||||
_JSDOM_IMPORT_CHECKED = False
|
||||
|
||||
@staticmethod
|
||||
def serialize_cookie(cookiejar: YoutubeDLCookieJar | None, url: str):
|
||||
"""serialize netscape-compatible fields from cookiejar for tough-cookie loading"""
|
||||
# JSDOM use tough-cookie as its CookieJar https://github.com/jsdom/jsdom/blob/main/lib/api.js
|
||||
# tough-cookie use Cookie.fromJSON and Cookie.toJSON for cookie serialization
|
||||
# https://github.com/salesforce/tough-cookie/blob/master/lib/cookie/cookie.ts
|
||||
if not cookiejar:
|
||||
return json.dumps({'cookies': []})
|
||||
cookies: list[http.cookiejar.Cookie] = [cookie for cookie in cookiejar.get_cookies_for_url(url)]
|
||||
return json.dumps({'cookies': [{
|
||||
'key': cookie.name,
|
||||
'value': cookie.value,
|
||||
# leading dot must be removed, otherwise will fail to match
|
||||
'domain': cookie.domain.lstrip('.') or urllib.parse.urlparse(url).hostname,
|
||||
'expires': int_or_none(cookie.expires, invscale=1000),
|
||||
'hostOnly': not cookie.domain_initial_dot,
|
||||
'secure': bool(cookie.secure),
|
||||
'path': cookie.path,
|
||||
} for cookie in cookies if cookie.value]})
|
||||
|
||||
@staticmethod
|
||||
def apply_cookies(cookiejar: YoutubeDLCookieJar | None, cookies: list[dict]):
|
||||
"""apply cookies from serialized tough-cookie"""
|
||||
# see serialize_cookie
|
||||
if not cookiejar:
|
||||
return
|
||||
for cookie_dict in cookies:
|
||||
if not all(cookie_dict.get(k) for k in ('key', 'value', 'domain')):
|
||||
continue
|
||||
if cookie_dict.get('hostOnly'):
|
||||
cookie_dict['domain'] = cookie_dict['domain'].lstrip('.')
|
||||
else:
|
||||
cookie_dict['domain'] = '.' + cookie_dict['domain'].lstrip('.')
|
||||
|
||||
cookiejar.set_cookie(http.cookiejar.Cookie(
|
||||
0, cookie_dict['key'], cookie_dict['value'],
|
||||
None, False,
|
||||
cookie_dict['domain'], True, not cookie_dict.get('hostOnly'),
|
||||
cookie_dict.get('path', '/'), True,
|
||||
bool(cookie_dict.get('secure')),
|
||||
unified_timestamp(cookie_dict.get('expires')),
|
||||
False, None, None, {}))
|
||||
|
||||
def _ensure_jsdom(self):
|
||||
if self._JSDOM_IMPORT_CHECKED:
|
||||
return
|
||||
with TempFileWrapper('import jsdom from "https://cdn.esm.sh/jsdom"', suffix='.js') as js_file:
|
||||
cmd = [self.exe, 'run', js_file.name]
|
||||
self._run_deno(cmd)
|
||||
self._JSDOM_IMPORT_CHECKED = True
|
||||
|
||||
def execute(self, jscode, video_id=None, note='Executing JS in Deno', location='', html='', cookiejar=None):
|
||||
self.report_note(video_id, note)
|
||||
self._ensure_jsdom()
|
||||
script = f'''{self._init_script};
|
||||
import jsdom from "https://cdn.esm.sh/jsdom";
|
||||
const callback = (() => {{
|
||||
const jar = jsdom.CookieJar.deserializeSync({json.dumps(self.serialize_cookie(cookiejar, location))});
|
||||
const dom = new jsdom.JSDOM({json.dumps(str(html))}, {{
|
||||
{'url: %s,' % json.dumps(str(location)) if location else ''}
|
||||
cookieJar: jar,
|
||||
}});
|
||||
Object.keys(dom.window).forEach((key) => {{try {{window[key] = dom.window[key]}} catch (e) {{}}}});
|
||||
delete window.jsdom;
|
||||
const stdout = [];
|
||||
const origLog = console.log;
|
||||
console.log = (...msg) => stdout.push(msg.map(m => m.toString()).join(' '));
|
||||
return () => {{ origLog(JSON.stringify({{
|
||||
stdout: stdout.join('\\n'), cookies: jar.serializeSync().cookies}})); }}
|
||||
}})();
|
||||
await (async () => {{
|
||||
{jscode}
|
||||
}})().finally(callback);
|
||||
'''
|
||||
|
||||
location_args = ['--location', location] if location else []
|
||||
with TempFileWrapper(script, suffix='.js') as js_file:
|
||||
cmd = [self.exe, 'run', *self._flags, *location_args, js_file.name]
|
||||
data = json.loads(self._run_deno(cmd))
|
||||
self.apply_cookies(cookiejar, data['cookies'])
|
||||
return data['stdout']
|
||||
|
||||
|
||||
class PuppeteerJSI(ExternalJSI):
|
||||
_PACKAGE_VERSION = '16.2.0'
|
||||
_HEADLESS = False
|
||||
_EXE_NAME = DenoJSI._EXE_NAME
|
||||
|
||||
@classproperty
|
||||
def INSTALL_HINT(cls):
|
||||
msg = f'Run "deno run -A https://deno.land/x/puppeteer@{cls._PACKAGE_VERSION}/install.ts" to install puppeteer'
|
||||
if not DenoJSI.is_available:
|
||||
msg = f'{DenoJSI.INSTALL_HINT}. Then {msg}'
|
||||
return msg
|
||||
|
||||
@classproperty(cache=True)
|
||||
def full_version(cls):
|
||||
if not DenoJSI.is_available:
|
||||
return
|
||||
try:
|
||||
browser_version = DenoJSI._execute(f'''
|
||||
import puppeteer from "https://deno.land/x/puppeteer@{cls._PACKAGE_VERSION}/mod.ts";
|
||||
const browser = await puppeteer.launch({{headless: {json.dumps(bool(cls._HEADLESS))}}});
|
||||
try {{
|
||||
console.log(await browser.version())
|
||||
}} finally {{
|
||||
await browser.close();
|
||||
}}''', flags=['--allow-all'])
|
||||
return f'puppeteer={cls._PACKAGE_VERSION} browser={browser_version}'
|
||||
except ExtractorError:
|
||||
return None
|
||||
|
||||
@classproperty
|
||||
def exe_version(cls):
|
||||
return DenoJSI.exe_version if cls.full_version else None
|
||||
|
||||
def __init__(self, downloader: YoutubeDL, timeout: float | int | None = None):
|
||||
super().__init__(downloader, timeout)
|
||||
self.deno = DenoJSI(downloader, timeout=(self.timeout + 30000))
|
||||
|
||||
def _deno_execute(self, jscode, note=None):
|
||||
return self.deno.execute(f'''
|
||||
import puppeteer from "https://deno.land/x/puppeteer@{self._PACKAGE_VERSION}/mod.ts";
|
||||
const browser = await puppeteer.launch({{
|
||||
headless: {json.dumps(bool(self._HEADLESS))}, args: ["--disable-web-security"]}});
|
||||
try {{
|
||||
{jscode}
|
||||
}} finally {{
|
||||
await browser.close();
|
||||
}}''', note=note, flags=['--allow-all'], base_js='')
|
||||
|
||||
def execute(self, jscode, video_id=None, note='Executing JS in Puppeteer', url='about:blank'):
|
||||
self._downloader.to_screen(f'{format_field(video_id, None, "%s: ")}{note}')
|
||||
return self._deno_execute(f'''
|
||||
const page = await browser.newPage();
|
||||
window.setTimeout(async () => {{
|
||||
console.error('Puppeteer execution timed out');
|
||||
await browser.close();
|
||||
Deno.exit(1);
|
||||
}}, {int(self.timeout)});
|
||||
page.resourceTimeout = {int(self.timeout)};
|
||||
|
||||
// drop network requests
|
||||
await page.setRequestInterception(true);
|
||||
page.on("request", request => request.abort());
|
||||
// capture console output
|
||||
page.on("console", msg => {{
|
||||
msg.type() === 'log' && console.log(msg.text());
|
||||
msg.type() === 'error' && console.error(msg.text());
|
||||
}});
|
||||
|
||||
const url = {json.dumps(str(url))};
|
||||
await page.evaluate(`window.history.replaceState('', '', ${{JSON.stringify(url)}})`);
|
||||
|
||||
await page.evaluate({json.dumps(str(jscode))});
|
||||
await browser.close();
|
||||
Deno.exit(0);
|
||||
''')
|
||||
|
||||
|
||||
@register_jsi
|
||||
class PhantomJSJSI(ExternalJSI):
|
||||
_EXE_NAME = 'phantomjs'
|
||||
|
@ -474,6 +258,5 @@ def execute(self, jscode, video_id=None, *, note='Executing JS in PhantomJS'):
|
|||
|
||||
|
||||
if typing.TYPE_CHECKING:
|
||||
from ..YoutubeDL import YoutubeDL
|
||||
from ..extractor.common import InfoExtractor
|
||||
from ..cookies import YoutubeDLCookieJar
|
|
@ -96,7 +96,8 @@ def __init__(
|
|||
self.write_debug(f'Selected JSI classes for given features: {get_jsi_keys(handler_classes)}, '
|
||||
f'included: {get_jsi_keys(only_include) or "all"}, excluded: {get_jsi_keys(exclude)}')
|
||||
|
||||
self._handler_dict = {cls.JSI_KEY: cls(self._downloader, timeout=timeout, user_agent=user_agent,
|
||||
self._handler_dict = {
|
||||
cls.JSI_KEY: cls(self._downloader, timeout=timeout, features=self._features, user_agent=user_agent,
|
||||
**jsi_params.get(cls.JSI_KEY, {})) for cls in handler_classes}
|
||||
self.preferences: set[JSIPreference] = {order_to_pref(preferred_order, 100)} | _JSI_PREFERENCES
|
||||
self._fallback_jsi = get_jsi_keys(handler_classes) if fallback_jsi == 'all' else get_jsi_keys(fallback_jsi)
|
||||
|
@ -195,9 +196,10 @@ class JSI(abc.ABC):
|
|||
_SUPPORT_FEATURES: set[str] = set()
|
||||
_BASE_PREFERENCE: int = 0
|
||||
|
||||
def __init__(self, downloader: YoutubeDL, timeout: float | int, user_agent=None):
|
||||
def __init__(self, downloader: YoutubeDL, timeout: float | int, features: set[str], user_agent=None):
|
||||
self._downloader = downloader
|
||||
self.timeout = timeout
|
||||
self.features = features
|
||||
self.user_agent: str = user_agent or self._downloader.params['http_headers']['User-Agent']
|
||||
|
||||
@abc.abstractmethod
|
||||
|
|
Loading…
Reference in a new issue