mirror of
https://git.luna-app.eu/50n50/sources
synced 2025-12-21 21:26:19 +01:00
Upload
This commit is contained in:
commit
09c423e95a
276 changed files with 54396 additions and 0 deletions
138
animeq/animeq.js
Normal file
138
animeq/animeq.js
Normal file
|
|
@ -0,0 +1,138 @@
|
|||
async function searchResults(keyword) {
|
||||
const results = [];
|
||||
try {
|
||||
const response = await fetchv2("https://animeq.blog/?s=" + encodeURIComponent(keyword));
|
||||
const html = await response.text();
|
||||
|
||||
const regex = /<div class="result-item">[\s\S]*?<a href="([^"]+)"[^>]*>\s*<img src="([^"]+)"[^>]*alt="([^"]+)"/g;
|
||||
|
||||
let match;
|
||||
while ((match = regex.exec(html)) !== null) {
|
||||
results.push({
|
||||
href: match[1].trim(),
|
||||
image: match[2].trim(),
|
||||
title: cleanHtmlSymbols(match[3].trim())
|
||||
});
|
||||
}
|
||||
|
||||
return JSON.stringify(results);
|
||||
} catch (err) {
|
||||
return JSON.stringify([{
|
||||
title: "Error",
|
||||
image: "Error",
|
||||
href: "Error"
|
||||
}]);
|
||||
}
|
||||
}
|
||||
|
||||
async function extractDetails(url) {
|
||||
try {
|
||||
const response = await fetchv2(url);
|
||||
const html = await response.text();
|
||||
|
||||
const regex = /<p>\s*Sinopse\s*:\s*([\s\S]*?)<\/p>/i;
|
||||
const match = regex.exec(html);
|
||||
|
||||
const description = match ? match[1].trim() : "fuck off you don't need a description";
|
||||
|
||||
return JSON.stringify([{
|
||||
description: description,
|
||||
aliases: "N/A",
|
||||
airdate: "N/A"
|
||||
}]);
|
||||
} catch (err) {
|
||||
return JSON.stringify([{
|
||||
description: "Error",
|
||||
aliases: "Error",
|
||||
airdate: "Error"
|
||||
}]);
|
||||
}
|
||||
}
|
||||
|
||||
async function extractEpisodes(url) {
|
||||
const results = [];
|
||||
|
||||
const regex = /<div class=['"]?numerando['"]?[^>]*>\d+\s*-\s*(\d+)<\/div>[\s\S]*?<a\s+href=['"]([^'"]+)['"][^>]*>/g;
|
||||
|
||||
try {
|
||||
const response = await fetchv2(url);
|
||||
const html = await response.text();
|
||||
|
||||
let match;
|
||||
while ((match = regex.exec(html)) !== null) {
|
||||
const episodeNumber = parseInt(match[1], 10);
|
||||
const href = match[2].trim();
|
||||
|
||||
results.push({
|
||||
href: "episode: " + href,
|
||||
number: episodeNumber
|
||||
});
|
||||
}
|
||||
|
||||
if (results.length === 0) {
|
||||
results.push({
|
||||
href: "movie: " + url,
|
||||
number: 1
|
||||
});
|
||||
}
|
||||
|
||||
return JSON.stringify(results);
|
||||
} catch (err) {
|
||||
return JSON.stringify([{
|
||||
href: "Error",
|
||||
number: "Error"
|
||||
}]);
|
||||
}
|
||||
}
|
||||
|
||||
async function extractStreamUrl(url) {
|
||||
try {
|
||||
let endpointType;
|
||||
|
||||
if (url.startsWith("movie: ")) {
|
||||
url = url.replace("movie: ", "");
|
||||
endpointType = "movie";
|
||||
} else if (url.startsWith("episode: ")) {
|
||||
url = url.replace("episode: ", "");
|
||||
endpointType = "tv";
|
||||
} else {
|
||||
return "ERROR";
|
||||
}
|
||||
|
||||
const response = await fetchv2(url);
|
||||
const html = await response.text();
|
||||
|
||||
const idMatch = html.match(/<link rel=['"]shortlink['"] href=['"][^?]+\?p=(\d+)['"]/);
|
||||
if (!idMatch) return "ID NOT FOUND";
|
||||
const id = idMatch[1];
|
||||
|
||||
const apiUrl = `https://animeq.blog/wp-json/dooplayer/v2/${id}/${endpointType}/1`;
|
||||
const apiResponse = await fetchv2(apiUrl);
|
||||
const apiData = await apiResponse.json();
|
||||
|
||||
if (!apiData.embed_url) return { error: "embed_url not found" };
|
||||
const embedResponse = await fetchv2(apiData.embed_url);
|
||||
const embedHtml = await embedResponse.text();
|
||||
|
||||
const fileMatch = embedHtml.match(/"file":"(https?:\\\/\\\/[^"]+)"/);
|
||||
if (!fileMatch) return { error: "file not found" };
|
||||
|
||||
const fileUrl = fileMatch[1].replace(/\\\//g, "/");
|
||||
|
||||
return fileUrl;
|
||||
} catch (err) {
|
||||
console.error("Error extracting stream URL:"+ err);
|
||||
return "{ error: err.message }";
|
||||
}
|
||||
}
|
||||
|
||||
function cleanHtmlSymbols(string) {
|
||||
if (!string) return "";
|
||||
return string
|
||||
.replace(/’/g, "'")
|
||||
.replace(/–/g, "-")
|
||||
.replace(/&#[0-9]+;/g, "")
|
||||
.replace(/\r?\n|\r/g, " ")
|
||||
.replace(/\s+/g, " ")
|
||||
.trim();
|
||||
}
|
||||
19
animeq/animeq.json
Normal file
19
animeq/animeq.json
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"sourceName": "Animeq",
|
||||
"iconUrl": "https://animeq.blog/wp-content/uploads/2025/06/Favicon-AnimeQ-1.png",
|
||||
"author": {
|
||||
"name": "50/50",
|
||||
"icon": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ3122kQwublLkZ6rf1fEpUP79BxZOFmH9BSA&s"
|
||||
},
|
||||
"version": "1.0.0",
|
||||
"language": "Portuguese",
|
||||
"streamType": "mp4",
|
||||
"quality": "1080p",
|
||||
"baseUrl": "https://animeq.blog/",
|
||||
"searchBaseUrl": "https://animeq.blog/",
|
||||
"scriptUrl": "https://gitlab.com/50n50/sources/-/raw/main/animeq/animeq.js",
|
||||
"type": "anime",
|
||||
"asyncJS": true,
|
||||
"softsub": false,
|
||||
"downloadSupport": true
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue