fix(extractors): route sxylandcom through _embed_iframe, not webview fallback
Chrome-DevTools investigation of bug-report 827a50a1 (sxyland "long loading, then webview, no autoplay") showed sxyland embeds playmogo.com/e/<id> — a DoodStream clone (doodcdn.io infra, pass_md5 protocol, get_slides) behind an INVISIBLE Cloudflare Turnstile (not an interactive CAPTCHA; auto-passes in a real browser/WebView from a residential IP). The sxyland page itself is NOT Turnstile-gated — VPS curl pulls the playmogo iframe URL straight from the HTML. sxylandcom was wired to _vps_blocked_fallback → phone loaded the entire sxyland page in WebView (ads, click-to-play, no autoplay = the reported symptom), and the playmogo embed never reached the phone's dood resolver. _embed_iframe (which already lists sxyland in its docstring) extracts the playmogo embed and emits it as type='hoster' → PlayerScreen routes playmogo URLs to doodstream.ts (resolveDoodStream), which resolves phone-side (phone IP passes invisible Turnstile) → direct mp4 → autoplay. Mobile unchanged (hoster→dood path already exists for xmoviesforyou/siska). Backend-only. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
parent
a9545a7ab2
commit
65b9df073a
1 changed files with 8 additions and 1 deletions
|
|
@ -96,7 +96,14 @@ _REGISTRY: dict[str, Callable[[str], list[StreamSource] | None]] = {
|
||||||
# `videos3.fpo.xxx/remote_control.php?acctoken=<base64>` — zdekodowany acctoken
|
# `videos3.fpo.xxx/remote_control.php?acctoken=<base64>` — zdekodowany acctoken
|
||||||
# zawiera WBITY IP serwera-resolvera → definitywnie IP-bound. WebView only.
|
# zawiera WBITY IP serwera-resolvera → definitywnie IP-bound. WebView only.
|
||||||
"fpoxxx": _vps_blocked_fallback.extract,
|
"fpoxxx": _vps_blocked_fallback.extract,
|
||||||
"sxylandcom": _vps_blocked_fallback.extract,
|
# sxyland — embeduje playmogo.com/e/<id> (= klon DoodStream: doodcdn.io + pass_md5
|
||||||
|
# + niewidzialny CF Turnstile; Chrome-DevTools verify 2026-06-08, bug-report 827a50a1).
|
||||||
|
# Strona sxyland NIE jest Turnstile-gated (VPS curl wyciąga iframe URL z HTML), więc
|
||||||
|
# _embed_iframe wyłuskuje embed playmogo i oddaje jako type='hoster' → mobile
|
||||||
|
# doodstream.ts resolvuje phone-side (phone IP przechodzi invisible Turnstile) → direct
|
||||||
|
# mp4 → autoplay. Wcześniej _vps_blocked_fallback ładował CAŁĄ stronę sxyland w WebView
|
||||||
|
# (ads + klik-to-play + brak autoplay = dokładnie objaw z reportu 827a50a1).
|
||||||
|
"sxylandcom": _embed_iframe.extract,
|
||||||
# Aggregator tubes — generic embed-iframe → hoster unpacker
|
# Aggregator tubes — generic embed-iframe → hoster unpacker
|
||||||
"latestpornvideocom": latestpornvideo.extract,
|
"latestpornvideocom": latestpornvideo.extract,
|
||||||
"xmoviesforyoucom": _embed_iframe.extract,
|
"xmoviesforyoucom": _embed_iframe.extract,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue