mirror of
https://github.com/UrloMythus/UnHided.git
synced 2026-04-09 02:40:47 +00:00
53 lines
1.6 KiB
Python
53 lines
1.6 KiB
Python
import re
|
|
from typing import Dict, Any
|
|
from urllib.parse import urlparse, urljoin
|
|
|
|
from mediaflow_proxy.extractors.base import BaseExtractor, ExtractorError
|
|
from mediaflow_proxy.utils.packed import eval_solver
|
|
|
|
|
|
class FileMoonExtractor(BaseExtractor):
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.mediaflow_endpoint = "hls_manifest_proxy"
|
|
|
|
async def extract(self, url: str, **kwargs) -> Dict[str, Any]:
|
|
response = await self._make_request(url)
|
|
|
|
pattern = r'iframe.*?src=["\'](.*?)["\']'
|
|
match = re.search(pattern, response.text, re.DOTALL)
|
|
if not match:
|
|
raise ExtractorError("Failed to extract iframe URL")
|
|
|
|
iframe_url = match.group(1)
|
|
|
|
parsed = urlparse(str(response.url))
|
|
base_url = f"{parsed.scheme}://{parsed.netloc}"
|
|
|
|
if iframe_url.startswith("//"):
|
|
iframe_url = f"{parsed.scheme}:{iframe_url}"
|
|
elif not urlparse(iframe_url).scheme:
|
|
iframe_url = urljoin(base_url, iframe_url)
|
|
|
|
headers = {"Referer": url}
|
|
patterns = [r'file:"(.*?)"']
|
|
|
|
final_url = await eval_solver(
|
|
self,
|
|
iframe_url,
|
|
headers,
|
|
patterns,
|
|
)
|
|
|
|
test_resp = await self._make_request(final_url, headers=headers)
|
|
if test_resp.status == 404:
|
|
raise ExtractorError("Stream not found (404)")
|
|
|
|
self.base_headers["referer"] = url
|
|
|
|
return {
|
|
"destination_url": final_url,
|
|
"request_headers": self.base_headers,
|
|
"mediaflow_endpoint": self.mediaflow_endpoint,
|
|
}
|