Update anime/hianime/source.js
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
class HiAnime {
|
class HiAnime {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.type = "anime-streaming";
|
this.type = "anime-streaming";
|
||||||
this.version = "1.0.2";
|
this.version = "1.0.3";
|
||||||
this.baseUrl = "https://hianime.to";
|
this.baseUrl = "https://hianime.to";
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -14,29 +14,37 @@ class HiAnime {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
async _fetch(url, opts) {
|
_nativeFetch(url, method, headers, body) {
|
||||||
if (typeof fetch === "function") return fetch(String(url), opts || {});
|
|
||||||
const raw = Native.fetch(
|
const raw = Native.fetch(
|
||||||
String(url),
|
String(url),
|
||||||
(opts && opts.method) ? String(opts.method) : "GET",
|
method || "GET",
|
||||||
JSON.stringify((opts && opts.headers) || {}),
|
JSON.stringify(headers || {}),
|
||||||
(opts && opts.body != null) ? String(opts.body) : ""
|
body == null ? "" : String(body)
|
||||||
);
|
);
|
||||||
try { return JSON.parse(raw || "{}"); } catch (e) { return { ok: false, status: 0, headers: {}, body: "" }; }
|
try {
|
||||||
|
return JSON.parse(raw || "{}");
|
||||||
|
} catch (e) {
|
||||||
|
return { ok: false, status: 0, headers: {}, body: "" };
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async _getText(url, headers) {
|
_getText(url, headers) {
|
||||||
const res = await this._fetch(String(url), { method: "GET", headers: headers || {} });
|
const res = this._nativeFetch(url, "GET", headers, "");
|
||||||
if (res && typeof res.text === "function") return String(await res.text());
|
|
||||||
return String(res.body || "");
|
return String(res.body || "");
|
||||||
}
|
}
|
||||||
|
|
||||||
async _getJson(url, headers) {
|
_getJson(url, headers) {
|
||||||
const res = await this._fetch(String(url), { method: "GET", headers: headers || {} });
|
const res = this._nativeFetch(url, "GET", headers, "");
|
||||||
if (res && typeof res.json === "function") {
|
const body = String(res.body || "");
|
||||||
try { return await res.json(); } catch (e) { return {}; }
|
try {
|
||||||
|
return JSON.parse(body || "{}");
|
||||||
|
} catch (e) {
|
||||||
|
return { _raw: body };
|
||||||
}
|
}
|
||||||
try { return JSON.parse(String(res.body || "{}")); } catch (e) { return {}; }
|
}
|
||||||
|
|
||||||
|
_safeStr(v) {
|
||||||
|
return typeof v === "string" ? v : (v == null ? "" : String(v));
|
||||||
}
|
}
|
||||||
|
|
||||||
_decodeHtml(str) {
|
_decodeHtml(str) {
|
||||||
@@ -51,7 +59,29 @@ class HiAnime {
|
|||||||
.replace(/'/g, "'")
|
.replace(/'/g, "'")
|
||||||
.replace(/&/g, "&")
|
.replace(/&/g, "&")
|
||||||
.replace(/</g, "<")
|
.replace(/</g, "<")
|
||||||
.replace(/>/g, ">");
|
.replace(/>/g, ">")
|
||||||
|
.replace(///g, "/");
|
||||||
|
}
|
||||||
|
|
||||||
|
_headers() {
|
||||||
|
return {
|
||||||
|
"User-Agent": "Mozilla/5.0",
|
||||||
|
"Accept": "*/*",
|
||||||
|
"Referer": this.baseUrl + "/",
|
||||||
|
"Origin": this.baseUrl,
|
||||||
|
"X-Requested-With": "XMLHttpRequest"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
_parseQuery(q) {
|
||||||
|
if (typeof q === "string") {
|
||||||
|
const s = q.trim();
|
||||||
|
if (s.startsWith("{") || s.startsWith("[")) {
|
||||||
|
try { return JSON.parse(s); } catch (e) { return { query: s }; }
|
||||||
|
}
|
||||||
|
return { query: s };
|
||||||
|
}
|
||||||
|
return q || {};
|
||||||
}
|
}
|
||||||
|
|
||||||
_norm(s) {
|
_norm(s) {
|
||||||
@@ -76,272 +106,190 @@ class HiAnime {
|
|||||||
|
|
||||||
for (let i = 1; i <= la; i++) {
|
for (let i = 1; i <= la; i++) {
|
||||||
for (let j = 1; j <= lb; j++) {
|
for (let j = 1; j <= lb; j++) {
|
||||||
if (a[i - 1] === b[j - 1]) dp[i][j] = dp[i - 1][j - 1];
|
const cost = a[i - 1] === b[j - 1] ? 0 : 1;
|
||||||
else dp[i][j] = 1 + Math.min(dp[i - 1][j], dp[i][j - 1], dp[i - 1][j - 1]);
|
dp[i][j] = Math.min(
|
||||||
|
dp[i - 1][j] + 1,
|
||||||
|
dp[i][j - 1] + 1,
|
||||||
|
dp[i - 1][j - 1] + cost
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const dist = dp[la][lb];
|
const dist = dp[la][lb];
|
||||||
const maxLen = Math.max(la, lb) || 1;
|
const maxLen = Math.max(la, lb) || 1;
|
||||||
return 1 - dist / maxLen;
|
return 1 - (dist / maxLen);
|
||||||
}
|
}
|
||||||
|
|
||||||
_parseDate(dateStr) {
|
_bestTitle(obj) {
|
||||||
const s = String(dateStr || "").trim();
|
if (!obj) return "";
|
||||||
const m = s.match(/([A-Za-z]+)\s+(\d{1,2}),\s*(\d{4})/);
|
const t = obj.title;
|
||||||
if (!m) return { year: 0, month: 0, day: 0 };
|
if (typeof t === "string") return t;
|
||||||
const monthMap = {
|
if (t && typeof t === "object") {
|
||||||
Jan: 1, Feb: 2, Mar: 3, Apr: 4, May: 5, Jun: 6,
|
return String(t.english || t.romaji || t.native || t.userPreferred || "");
|
||||||
Jul: 7, Aug: 8, Sep: 9, Oct: 10, Nov: 11, Dec: 12
|
}
|
||||||
};
|
return String(obj.name || obj.english || obj.romaji || "");
|
||||||
const month = monthMap[m[1]] || 0;
|
|
||||||
const day = parseInt(m[2], 10) || 0;
|
|
||||||
const year = parseInt(m[3], 10) || 0;
|
|
||||||
return { year, month, day };
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async _fetchSuggestMatches(queryStr) {
|
_extractWatchIdFromUrl(url) {
|
||||||
const url = `${this.baseUrl}/ajax/search/suggest?keyword=${encodeURIComponent(queryStr)}`;
|
const s = String(url || "");
|
||||||
const reply = await this._getJson(url, { "X-Requested-With": "XMLHttpRequest" });
|
const m = s.match(/\/watch\/[^\/]+-(\d+)/i);
|
||||||
const html = String((reply && reply.html) || "");
|
return m ? m[1] : "";
|
||||||
|
|
||||||
const regex =
|
|
||||||
/<a href="\/([^"]+)" class="nav-item">[\s\S]*?<h3 class="film-name"[^>]*data-jname="([^"]+)"[^>]*>([^<]+)<\/h3>[\s\S]*?<div class="film-infor">\s*<span>([^<]+)<\/span>/g;
|
|
||||||
|
|
||||||
const matches = [];
|
|
||||||
const all = [...html.matchAll(regex)];
|
|
||||||
for (let i = 0; i < all.length; i++) {
|
|
||||||
const pageUrl = String(all[i][1] || "").trim();
|
|
||||||
if (!pageUrl || pageUrl.startsWith("search?")) continue;
|
|
||||||
|
|
||||||
const jname = this._decodeHtml(String(all[i][2] || "").trim());
|
|
||||||
const title = this._decodeHtml(String(all[i][3] || "").trim());
|
|
||||||
const dateStr = String(all[i][4] || "").trim();
|
|
||||||
|
|
||||||
const startDate = this._parseDate(dateStr);
|
|
||||||
|
|
||||||
const idMatch = pageUrl.match(/-(\d+)$/);
|
|
||||||
const id = idMatch ? idMatch[1] : pageUrl;
|
|
||||||
|
|
||||||
matches.push({
|
|
||||||
id,
|
|
||||||
pageUrl,
|
|
||||||
title,
|
|
||||||
jname,
|
|
||||||
normTitle: this._norm(title),
|
|
||||||
normTitleJP: this._norm(jname),
|
|
||||||
startDate
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return matches;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async _fallbackSearchPageMatches(queryStr) {
|
_parseSearchHtmlToResults(html) {
|
||||||
const url = `${this.baseUrl}/search?keyword=${encodeURIComponent(queryStr)}`;
|
const out = [];
|
||||||
const html = await this._getText(url, {});
|
const h = this._decodeHtml(html || "");
|
||||||
const regex = /<a href="\/watch\/([^"]+)"[^>]+title="([^"]+)"[^>]+data-id="(\d+)"/g;
|
|
||||||
|
|
||||||
const matches = [];
|
|
||||||
const all = [...html.matchAll(regex)];
|
|
||||||
for (let i = 0; i < all.length; i++) {
|
|
||||||
const pageUrl = all[i][1];
|
|
||||||
const title = this._decodeHtml(all[i][2]);
|
|
||||||
const id = all[i][3];
|
|
||||||
|
|
||||||
matches.push({
|
|
||||||
id,
|
|
||||||
pageUrl: "watch/" + pageUrl,
|
|
||||||
title,
|
|
||||||
jname: "",
|
|
||||||
normTitle: this._norm(title),
|
|
||||||
normTitleJP: "",
|
|
||||||
startDate: { year: 0, month: 0, day: 0 }
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return matches;
|
|
||||||
}
|
|
||||||
|
|
||||||
_titleOk(m, targetNorm, targetNormJP) {
|
|
||||||
if (!m) return false;
|
|
||||||
const a = m.normTitle || "";
|
|
||||||
const b = m.normTitleJP || "";
|
|
||||||
if (!a && !b) return false;
|
|
||||||
|
|
||||||
if (a === targetNorm || b === targetNormJP) return true;
|
|
||||||
|
|
||||||
const inc =
|
|
||||||
a.includes(targetNorm) ||
|
|
||||||
b.includes(targetNormJP) ||
|
|
||||||
targetNorm.includes(a) ||
|
|
||||||
targetNormJP.includes(b);
|
|
||||||
|
|
||||||
if (inc) return true;
|
|
||||||
|
|
||||||
const simA = this._levSim(a, targetNorm);
|
|
||||||
const simB = this._levSim(b, targetNormJP);
|
|
||||||
return (simA >= 0.72) || (simB >= 0.72);
|
|
||||||
}
|
|
||||||
|
|
||||||
_dateOk(m, start, strictMonth) {
|
|
||||||
if (!start || !start.year) return true;
|
|
||||||
const y = (m.startDate && m.startDate.year) || 0;
|
|
||||||
const mo = (m.startDate && m.startDate.month) || 0;
|
|
||||||
|
|
||||||
if (!y) return false;
|
|
||||||
if (y !== start.year) return false;
|
|
||||||
|
|
||||||
if (strictMonth) {
|
|
||||||
if (!start.month) return true;
|
|
||||||
return mo === start.month;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
async search(query) {
|
|
||||||
if (typeof query === "string") {
|
|
||||||
query = { query, media: { startDate: { year: 0, month: 0, day: 0 } } };
|
|
||||||
}
|
|
||||||
|
|
||||||
const q = String((query && query.query) || "").trim();
|
|
||||||
if (!q) return [];
|
|
||||||
|
|
||||||
const media = (query && query.media) || {};
|
|
||||||
const start = (media && media.startDate) || { year: 0, month: 0, day: 0 };
|
|
||||||
|
|
||||||
const targetEn = media.englishTitle || media.english || media.titleEnglish || "";
|
|
||||||
const targetRo = media.romajiTitle || media.romaji || media.titleRomaji || "";
|
|
||||||
|
|
||||||
const targetNormJP = this._norm(this._decodeHtml(targetRo));
|
|
||||||
const targetNorm = this._norm(this._decodeHtml(targetEn || targetRo || q));
|
|
||||||
|
|
||||||
const subOrDub = query && query.dub ? "dub" : "sub";
|
|
||||||
|
|
||||||
let matches = await this._fetchSuggestMatches(q);
|
|
||||||
if (!matches.length) return [];
|
|
||||||
|
|
||||||
if (start && start.year) {
|
|
||||||
let filtered = matches.filter(m => this._titleOk(m, targetNorm, targetNormJP) && this._dateOk(m, start, true));
|
|
||||||
if (!filtered.length) filtered = matches.filter(m => this._titleOk(m, targetNorm, targetNormJP) && this._dateOk(m, start, false));
|
|
||||||
|
|
||||||
if (!filtered.length) return [];
|
|
||||||
|
|
||||||
filtered.sort((a, b) => {
|
|
||||||
const sa = Math.max(this._levSim(a.normTitle, targetNorm), this._levSim(a.normTitleJP, targetNormJP));
|
|
||||||
const sb = Math.max(this._levSim(b.normTitle, targetNorm), this._levSim(b.normTitleJP, targetNormJP));
|
|
||||||
if (sb !== sa) return sb - sa;
|
|
||||||
|
|
||||||
const am = (a.startDate && a.startDate.month) || 0;
|
|
||||||
const bm = (b.startDate && b.startDate.month) || 0;
|
|
||||||
const tm = start.month || 0;
|
|
||||||
const da = tm ? Math.abs(am - tm) : 0;
|
|
||||||
const db = tm ? Math.abs(bm - tm) : 0;
|
|
||||||
return da - db;
|
|
||||||
});
|
|
||||||
|
|
||||||
return filtered.map(m => ({
|
|
||||||
id: `${m.id}/${subOrDub}`,
|
|
||||||
title: m.title,
|
|
||||||
url: `${this.baseUrl}/${m.pageUrl}`,
|
|
||||||
subOrDub
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
|
|
||||||
const queryNorm = this._norm(q);
|
|
||||||
|
|
||||||
let filtered = matches.filter(m => this._titleOk(m, queryNorm, queryNorm));
|
|
||||||
if (!filtered.length) {
|
|
||||||
const pageMatches = await this._fallbackSearchPageMatches(q);
|
|
||||||
if (!pageMatches.length) return [];
|
|
||||||
|
|
||||||
filtered = pageMatches.filter(m => {
|
|
||||||
const a = m.normTitle || "";
|
|
||||||
if (!a) return false;
|
|
||||||
if (a === queryNorm) return true;
|
|
||||||
if (a.includes(queryNorm) || queryNorm.includes(a)) return true;
|
|
||||||
return this._levSim(a, queryNorm) >= 0.72;
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!filtered.length) return [];
|
|
||||||
|
|
||||||
filtered.sort((a, b) => {
|
|
||||||
const la = (a.normTitle || "").length;
|
|
||||||
const lb = (b.normTitle || "").length;
|
|
||||||
if (la !== lb) return la - lb;
|
|
||||||
return String(a.title || "").localeCompare(String(b.title || ""));
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
filtered.sort((a, b) => {
|
|
||||||
const sa = Math.max(this._levSim(a.normTitle, queryNorm), this._levSim(a.normTitleJP, queryNorm));
|
|
||||||
const sb = Math.max(this._levSim(b.normTitle, queryNorm), this._levSim(b.normTitleJP, queryNorm));
|
|
||||||
return sb - sa;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return filtered.map(m => ({
|
|
||||||
id: `${m.id}/${subOrDub}`,
|
|
||||||
title: m.title,
|
|
||||||
url: `${this.baseUrl}/${m.pageUrl}`,
|
|
||||||
subOrDub
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
|
|
||||||
async findEpisodes(animeId) {
|
|
||||||
const parts = String(animeId || "").split("/");
|
|
||||||
const id = parts[0];
|
|
||||||
const subOrDub = parts[1] || "sub";
|
|
||||||
|
|
||||||
const json = await this._getJson(
|
|
||||||
`${this.baseUrl}/ajax/v2/episode/list/${encodeURIComponent(id)}`,
|
|
||||||
{ "X-Requested-With": "XMLHttpRequest" }
|
|
||||||
);
|
|
||||||
|
|
||||||
const html = String((json && json.html) || "");
|
|
||||||
const episodes = [];
|
|
||||||
|
|
||||||
const regex =
|
|
||||||
/<a[^>]*class="[^"]*\bep-item\b[^"]*"[^>]*data-number="(\d+)"[^>]*data-id="(\d+)"[^>]*href="([^"]+)"[\s\S]*?<div class="ep-name[^"]*"[^>]*title="([^"]+)"/g;
|
|
||||||
|
|
||||||
|
const re = /<a[^>]+href="([^"]+\/watch\/[^"]+)"[^>]*>([\s\S]*?)<\/a>/gi;
|
||||||
let m;
|
let m;
|
||||||
while ((m = regex.exec(html)) !== null) {
|
const seen = {};
|
||||||
|
while ((m = re.exec(h)) !== null) {
|
||||||
|
const href = String(m[1] || "");
|
||||||
|
const full = href.startsWith("http") ? href : (this.baseUrl + href);
|
||||||
|
const id = this._extractWatchIdFromUrl(full);
|
||||||
|
if (!id) continue;
|
||||||
|
if (seen[id]) continue;
|
||||||
|
seen[id] = true;
|
||||||
|
|
||||||
|
const inner = String(m[2] || "").replace(/<[^>]+>/g, " ").replace(/\s+/g, " ").trim();
|
||||||
|
const title = inner || "";
|
||||||
|
|
||||||
|
out.push({
|
||||||
|
id: id,
|
||||||
|
title: title,
|
||||||
|
url: full
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
search(a1) {
|
||||||
|
const arg = this._parseQuery(a1);
|
||||||
|
const q = this._safeStr(arg.query || arg.q || "").trim();
|
||||||
|
if (!q) return "[]";
|
||||||
|
|
||||||
|
const url = `${this.baseUrl}/ajax/search/suggest?keyword=${encodeURIComponent(q)}`;
|
||||||
|
const j = this._getJson(url, this._headers());
|
||||||
|
|
||||||
|
let results = [];
|
||||||
|
|
||||||
|
if (j && Array.isArray(j.results)) {
|
||||||
|
results = j.results.map((x) => {
|
||||||
|
const title = this._bestTitle(x) || String(x.name || "");
|
||||||
|
const u = x.url ? String(x.url) : "";
|
||||||
|
const full = u.startsWith("http") ? u : (u ? (this.baseUrl + u) : "");
|
||||||
|
const id = x.id ? String(x.id) : this._extractWatchIdFromUrl(full);
|
||||||
|
return { id, title, url: full };
|
||||||
|
}).filter((x) => x.id && x.url);
|
||||||
|
} else {
|
||||||
|
const html = String(j.html || j.result || "");
|
||||||
|
if (html) results = this._parseSearchHtmlToResults(html);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!results || results.length === 0) {
|
||||||
|
const page = this._getText(`${this.baseUrl}/search?keyword=${encodeURIComponent(q)}`, {
|
||||||
|
"User-Agent": "Mozilla/5.0",
|
||||||
|
"Accept": "text/html",
|
||||||
|
"Referer": this.baseUrl + "/",
|
||||||
|
"Origin": this.baseUrl
|
||||||
|
});
|
||||||
|
|
||||||
|
const re = /href="(\/watch\/[^"]+-\d+)"/gi;
|
||||||
|
let mm;
|
||||||
|
const seen = {};
|
||||||
|
while ((mm = re.exec(page)) !== null) {
|
||||||
|
const href = mm[1];
|
||||||
|
const full = this.baseUrl + href;
|
||||||
|
const id = this._extractWatchIdFromUrl(full);
|
||||||
|
if (!id || seen[id]) continue;
|
||||||
|
seen[id] = true;
|
||||||
|
|
||||||
|
results.push({ id, title: q, url: full });
|
||||||
|
if (results.length >= 20) break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const nq = this._norm(q);
|
||||||
|
results.forEach((r) => {
|
||||||
|
const nt = this._norm(r.title || "");
|
||||||
|
r._score = this._levSim(nq, nt);
|
||||||
|
});
|
||||||
|
results.sort((a, b) => (b._score || 0) - (a._score || 0));
|
||||||
|
|
||||||
|
return JSON.stringify(results.map((r) => ({
|
||||||
|
id: String(r.id),
|
||||||
|
title: String(r.title || ""),
|
||||||
|
url: String(r.url || "")
|
||||||
|
})));
|
||||||
|
}
|
||||||
|
|
||||||
|
findEpisodes(animeId) {
|
||||||
|
const id = this._safeStr(animeId).trim();
|
||||||
|
if (!id) return "[]";
|
||||||
|
|
||||||
|
const j = this._getJson(`${this.baseUrl}/ajax/v2/episode/list/${encodeURIComponent(id)}`, this._headers());
|
||||||
|
const html = this._decodeHtml(String(j.html || j.result || ""));
|
||||||
|
|
||||||
|
const episodes = [];
|
||||||
|
const re = /data-number="([^"]+)"[^>]*data-id="([^"]+)"/gi;
|
||||||
|
let m;
|
||||||
|
while ((m = re.exec(html)) !== null) {
|
||||||
|
const numRaw = String(m[1] || "").trim();
|
||||||
|
const epId = String(m[2] || "").trim();
|
||||||
|
const num = parseFloat(numRaw);
|
||||||
|
if (!epId || !isFinite(num)) continue;
|
||||||
episodes.push({
|
episodes.push({
|
||||||
id: `${m[2]}/${subOrDub}`,
|
id: epId,
|
||||||
number: parseInt(m[1], 10),
|
number: num,
|
||||||
url: this.baseUrl + m[3],
|
title: "",
|
||||||
title: this._decodeHtml(m[4] || "")
|
url: ""
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return episodes;
|
if (episodes.length === 0) {
|
||||||
|
const re2 = /data-episode-id="([^"]+)"[^>]*data-num="([^"]+)"/gi;
|
||||||
|
while ((m = re2.exec(html)) !== null) {
|
||||||
|
const epId = String(m[1] || "").trim();
|
||||||
|
const numRaw = String(m[2] || "").trim();
|
||||||
|
const num = parseFloat(numRaw);
|
||||||
|
if (!epId || !isFinite(num)) continue;
|
||||||
|
episodes.push({ id: epId, number: num, title: "", url: "" });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async findEpisodeServer(episode, _server) {
|
episodes.sort((a, b) => (a.number || 0) - (b.number || 0));
|
||||||
if (typeof episode === "string") {
|
return JSON.stringify(episodes);
|
||||||
try { episode = JSON.parse(episode); } catch (e) {}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const parts = String((episode && episode.id) || "").split("/");
|
findEpisodeServer(episodeObj, serverName) {
|
||||||
const id = parts[0];
|
let ep = episodeObj;
|
||||||
const subOrDub = parts[1] || "sub";
|
if (typeof ep === "string") {
|
||||||
|
try { ep = JSON.parse(ep); } catch (e) { ep = {}; }
|
||||||
|
}
|
||||||
|
|
||||||
const serverName = _server && _server !== "default" ? String(_server) : "HD-1";
|
const epId = this._safeStr(ep && ep.id ? ep.id : "").trim();
|
||||||
if (serverName === "HD-4") return null;
|
if (!epId) throw new Error("Missing episode id");
|
||||||
|
|
||||||
const serverJson = await this._getJson(
|
const server = String(serverName || "").trim() || "HD-1";
|
||||||
`${this.baseUrl}/ajax/v2/episode/servers?episodeId=${encodeURIComponent(id)}`,
|
|
||||||
{ "X-Requested-With": "XMLHttpRequest" }
|
|
||||||
);
|
|
||||||
const serverHtml = String((serverJson && serverJson.html) || "");
|
|
||||||
|
|
||||||
const regex = new RegExp(
|
const j = this._getJson(`${this.baseUrl}/ajax/v2/episode/servers?episodeId=${encodeURIComponent(epId)}`, this._headers());
|
||||||
`<div[^>]*class="item server-item"[^>]*data-type="${subOrDub}"[^>]*data-id="(\\\\d+)"[^>]*>\\\\s*<a[^>]*>\\\\s*${serverName}\\\\s*</a>`,
|
const html = this._decodeHtml(String(j.html || j.result || ""));
|
||||||
"i"
|
|
||||||
);
|
|
||||||
|
|
||||||
const mm = regex.exec(serverHtml);
|
let serverId = "";
|
||||||
if (!mm) throw new Error(`Server "${serverName}" (${subOrDub}) not found`);
|
|
||||||
const serverId = mm[1];
|
|
||||||
|
|
||||||
const sourcesJson = await this._getJson(
|
const re = new RegExp(`data-id="([^"]+)"[^>]*>\\s*${server.replace(/[.*+?^${}()|[\]\\]/g, "\\$&")}\\s*<`, "i");
|
||||||
|
const mm = re.exec(html);
|
||||||
|
if (mm) serverId = String(mm[1] || "").trim();
|
||||||
|
|
||||||
|
if (!serverId) {
|
||||||
|
const re2 = /data-id="([^"]+)"/i;
|
||||||
|
const mm2 = re2.exec(html);
|
||||||
|
if (mm2) serverId = String(mm2[1] || "").trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!serverId) throw new Error("No server id found");
|
||||||
|
|
||||||
|
const sourcesJson = this._getJson(
|
||||||
`${this.baseUrl}/ajax/v2/episode/sources?id=${encodeURIComponent(serverId)}`,
|
`${this.baseUrl}/ajax/v2/episode/sources?id=${encodeURIComponent(serverId)}`,
|
||||||
{ "X-Requested-With": "XMLHttpRequest" }
|
{ "X-Requested-With": "XMLHttpRequest" }
|
||||||
);
|
);
|
||||||
@@ -353,14 +301,14 @@ class HiAnime {
|
|||||||
let requiredHeaders = {};
|
let requiredHeaders = {};
|
||||||
|
|
||||||
try {
|
try {
|
||||||
decryptData = await this.extractMegaCloud(embed);
|
decryptData = this.extractMegaCloudSync(embed);
|
||||||
requiredHeaders = (decryptData && decryptData.headersProvided) ? decryptData.headersProvided : {};
|
requiredHeaders = (decryptData && decryptData.headersProvided) ? decryptData.headersProvided : {};
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
decryptData = null;
|
decryptData = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!decryptData) {
|
if (!decryptData) {
|
||||||
decryptData = await this._getJson(
|
decryptData = this._getJson(
|
||||||
`https://ac-api.ofchaos.com/api/anime/embed/convert/v2?embedUrl=${encodeURIComponent(embed)}`,
|
`https://ac-api.ofchaos.com/api/anime/embed/convert/v2?embedUrl=${encodeURIComponent(embed)}`,
|
||||||
{}
|
{}
|
||||||
);
|
);
|
||||||
@@ -373,7 +321,9 @@ class HiAnime {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const sources = (decryptData && decryptData.sources) ? decryptData.sources : [];
|
if (!decryptData || !decryptData.sources) throw new Error("No video sources from any decrypter");
|
||||||
|
|
||||||
|
const sources = decryptData.sources || [];
|
||||||
const streamSource =
|
const streamSource =
|
||||||
sources.find((s) => s && s.type === "hls" && s.file) ||
|
sources.find((s) => s && s.type === "hls" && s.file) ||
|
||||||
sources.find((s) => s && s.type === "mp4" && s.file) ||
|
sources.find((s) => s && s.type === "mp4" && s.file) ||
|
||||||
@@ -381,7 +331,7 @@ class HiAnime {
|
|||||||
|
|
||||||
if (!streamSource || !streamSource.file) throw new Error("No valid stream file found");
|
if (!streamSource || !streamSource.file) throw new Error("No valid stream file found");
|
||||||
|
|
||||||
const tracks = (decryptData && decryptData.tracks) ? decryptData.tracks : [];
|
const tracks = decryptData.tracks || [];
|
||||||
const subtitles = (tracks || [])
|
const subtitles = (tracks || [])
|
||||||
.filter((t) => t && String(t.kind || "").toLowerCase() === "captions" && t.file)
|
.filter((t) => t && String(t.kind || "").toLowerCase() === "captions" && t.file)
|
||||||
.map((track, index) => ({
|
.map((track, index) => ({
|
||||||
@@ -391,24 +341,29 @@ class HiAnime {
|
|||||||
isDefault: !!track.default
|
isDefault: !!track.default
|
||||||
}));
|
}));
|
||||||
|
|
||||||
return {
|
const outType = (String(streamSource.type || "").toLowerCase() === "hls") ? "m3u8" : "mp4";
|
||||||
server: serverName,
|
|
||||||
|
return JSON.stringify({
|
||||||
|
server: server,
|
||||||
headers: requiredHeaders || {},
|
headers: requiredHeaders || {},
|
||||||
videoSources: [
|
videoSources: [
|
||||||
{
|
{
|
||||||
url: String(streamSource.file),
|
url: String(streamSource.file),
|
||||||
type: String(streamSource.type || "").toLowerCase() === "hls" ? "m3u8" : "mp4",
|
type: outType,
|
||||||
quality: "auto",
|
quality: "auto",
|
||||||
subtitles
|
subtitles: subtitles
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async extractMegaCloud(embedUrl) {
|
extractMegaCloudSync(embedUrl) {
|
||||||
const u = new URL(String(embedUrl));
|
const s = String(embedUrl || "");
|
||||||
const protocol = String(u.protocol || "https:").replace(":", "");
|
const mm = s.match(/^(https?):\/\/([^\/]+)(\/.*)?$/i);
|
||||||
const host = String(u.host || "");
|
if (!mm) throw new Error("Invalid embedUrl");
|
||||||
|
|
||||||
|
const protocol = mm[1].toLowerCase();
|
||||||
|
const host = mm[2];
|
||||||
const baseDomain = `${protocol}://${host}/`;
|
const baseDomain = `${protocol}://${host}/`;
|
||||||
|
|
||||||
const headers = {
|
const headers = {
|
||||||
@@ -420,25 +375,25 @@ class HiAnime {
|
|||||||
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36"
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36"
|
||||||
};
|
};
|
||||||
|
|
||||||
const html = await this._getText(embedUrl, headers);
|
const html = this._getText(embedUrl, headers);
|
||||||
|
|
||||||
const fileIdMatch = html.match(/<title>\s*File\s+#([a-zA-Z0-9]+)\s*-/i);
|
const fileIdMatch = html.match(/<title>\s*File\s+#([a-zA-Z0-9]+)\s*-/i);
|
||||||
if (!fileIdMatch) throw new Error("file_id not found in embed page");
|
if (!fileIdMatch) throw new Error("file_id not found in embed page");
|
||||||
const fileId = fileIdMatch[1];
|
const fileId = fileIdMatch[1];
|
||||||
|
|
||||||
let nonce = null;
|
let nonce = null;
|
||||||
|
|
||||||
const match48 = html.match(/\b[a-zA-Z0-9]{48}\b/);
|
const match48 = html.match(/\b[a-zA-Z0-9]{48}\b/);
|
||||||
if (match48) nonce = match48[0];
|
if (match48) nonce = match48[0];
|
||||||
|
else {
|
||||||
if (!nonce) {
|
const match3x16 = [];
|
||||||
const match3x16 = [...html.matchAll(/["']([A-Za-z0-9]{16})["']/g)];
|
const re = /["']([A-Za-z0-9]{16})["']/g;
|
||||||
if (match3x16.length >= 3) nonce = match3x16[0][1] + match3x16[1][1] + match3x16[2][1];
|
let m;
|
||||||
|
while ((m = re.exec(html)) !== null) match3x16.push(m[1]);
|
||||||
|
if (match3x16.length >= 3) nonce = match3x16[0] + match3x16[1] + match3x16[2];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!nonce) throw new Error("nonce not found");
|
if (!nonce) throw new Error("nonce not found");
|
||||||
|
|
||||||
const sourcesJson = await this._getJson(
|
const sourcesJson = this._getJson(
|
||||||
`${baseDomain}embed-2/v3/e-1/getSources?id=${encodeURIComponent(fileId)}&_k=${encodeURIComponent(nonce)}`,
|
`${baseDomain}embed-2/v3/e-1/getSources?id=${encodeURIComponent(fileId)}&_k=${encodeURIComponent(nonce)}`,
|
||||||
headers
|
headers
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user