function cleanTitle(title) { return title .replace(/’/g, "'") .replace(/–/g, "-") .replace(/&#[0-9]+;/g, ""); } async function searchResults(keyword) { const results = []; const response = await fetchv2(`https://luciferdonghua.in/?s=${keyword}`); const html = await response.text(); const regex = /
]*>.*?]*>.*?]*>.*?]*>(.*?)<\/h2>/gs; let match; while ((match = regex.exec(html)) !== null) { results.push({ title: cleanTitle(match[3].trim()), image: match[2].trim(), href: match[1].trim() }); } return JSON.stringify(results); } async function extractDetails(url) { const results = []; const response = await fetchv2(url); const html = await response.text(); const match = html.match(/
]*>([\s\S]*?)<\/div>/); let description = "N/A"; if (match) { description = match[1] .replace(/<[^>]+>/g, '') .replace(/&#(\d+);/g, (_, code) => String.fromCharCode(code)) .replace(/"/g, '"') .replace(/'/g, "'") .replace(/&/g, "&") .trim(); } results.push({ description: description, aliases: 'N/A', airdate: 'N/A' }); return JSON.stringify(results); } async function extractEpisodes(url) { const results = []; const response = await fetchv2(url); const html = await response.text(); const regex = /
  • [\s\S]*?/g; let match; let count = 1; while ((match = regex.exec(html)) !== null) { results.push({ href: match[1].trim(), number: count }); count++; } results.reverse(); return JSON.stringify(results.reverse()); } async function extractStreamUrl(url) { try { const response = await fetchv2(url); const html = await response.text(); const iframeMatch = html.match(/ b.height - a.height); return streams[0].url; } catch { return hlsUrl; } } const bestHls = await getBestHls(hlsLink); const subtitles = metaJson.subtitles?.data?.['en-auto']?.urls?.[0] || ""; const result = { streams: ["english", bestHls], subtitles: subtitles }; console.log("Extracted stream result:" + JSON.stringify(result)); return bestHls; } catch { console.log("Extracted stream result:" + JSON.stringify(empty)); return JSON.stringify("empty"); } }