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
115
kimcartoon/kimcartoon.js
Normal file
115
kimcartoon/kimcartoon.js
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
async function searchResults(keyword) {
|
||||
const searchUrl = `https://kimcartoon.com.co/?s=${encodeURIComponent(keyword)}`;
|
||||
try {
|
||||
const response = await fetch(searchUrl);
|
||||
const html = await response;
|
||||
const results = [];
|
||||
const articleRegex = /<article[^>]*class="bs styletwo"[\s\S]*?<\/article>/g;
|
||||
const items = html.match(articleRegex) || [];
|
||||
|
||||
function cleanTitle(title) {
|
||||
return title
|
||||
.replace(/’/g, "'")
|
||||
.replace(/–/g, "-")
|
||||
.replace(/&#[0-9]+;/g, "");
|
||||
}
|
||||
|
||||
items.forEach((itemHtml) => {
|
||||
const titleMatch = itemHtml.match(/<a[^>]*href="([^"]+)"[^>]*title="([^"]+)"/);
|
||||
const imgMatch = itemHtml.match(/<img[^>]*src="([^"]+)"/);
|
||||
if (!titleMatch || !imgMatch) return;
|
||||
const href = `${titleMatch[1].trim()}?video_index=2`;
|
||||
const title = cleanTitle(titleMatch[2].trim());
|
||||
const imageUrl = imgMatch[1].trim();
|
||||
results.push({ title, image: imageUrl, href });
|
||||
});
|
||||
|
||||
console.log(JSON.stringify(results));
|
||||
return JSON.stringify(results);
|
||||
} catch (error) {
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
async function extractDetails(url) {
|
||||
const response = await fetch(url);
|
||||
const html = await response;
|
||||
const details = [];
|
||||
const descriptionMatch = html.match(/<div class="entry-content" itemprop="description">\s*<p>(.*?)<\/p>/);
|
||||
const description = descriptionMatch ? descriptionMatch[1].trim() : `N/A`;
|
||||
|
||||
details.push({
|
||||
description,
|
||||
alias: 'N/A',
|
||||
airdate: 'N/A'
|
||||
});
|
||||
|
||||
console.log(JSON.stringify(details));
|
||||
return JSON.stringify(details);
|
||||
}
|
||||
async function extractEpisodes(url) {
|
||||
const response = await fetch(url);
|
||||
const html = await response;
|
||||
const episodes = [];
|
||||
|
||||
const allMatches = [...html.matchAll(/<li[^>]*>\s*<a href="([^"]+)">\s*<div class="epl-title">([^<]*) <\/div>/g)];
|
||||
|
||||
for (const match of allMatches) {
|
||||
const href = match[1].trim();
|
||||
const title = match[2].trim();
|
||||
|
||||
if (title.startsWith("Episode")) {
|
||||
const numberMatch = title.match(/Episode (\d+)/);
|
||||
if (numberMatch && numberMatch[1]) {
|
||||
episodes.push({
|
||||
href: href,
|
||||
number: parseInt(numberMatch[1], 10)
|
||||
});
|
||||
}
|
||||
} else {
|
||||
episodes.push({
|
||||
href: href,
|
||||
number: 1
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
episodes.reverse();
|
||||
console.log(JSON.stringify(episodes));
|
||||
return JSON.stringify(episodes);
|
||||
}
|
||||
|
||||
async function extractStreamUrl(url) {
|
||||
const embedResponse = await fetch(url);
|
||||
const data = await embedResponse;
|
||||
|
||||
const embedMatch = data.match(/<div class="pembed" data-embed="(.*?)"/);
|
||||
if (embedMatch && embedMatch[1]) {
|
||||
let embedUrl = embedMatch[1].trim();
|
||||
|
||||
let fullEmbedUrl;
|
||||
if (embedUrl.startsWith('//')) {
|
||||
fullEmbedUrl = 'https:' + embedUrl;
|
||||
} else if (embedUrl.startsWith('http://') || embedUrl.startsWith('https://')) {
|
||||
fullEmbedUrl = embedUrl;
|
||||
} else {
|
||||
fullEmbedUrl = 'https://' + embedUrl;
|
||||
}
|
||||
|
||||
console.log(fullEmbedUrl);
|
||||
const embedPageResponse = await fetch(fullEmbedUrl);
|
||||
const embedPageData = await embedPageResponse;
|
||||
|
||||
console.log(embedPageData);
|
||||
const m3u8Match = embedPageData.match(/sources:\s*\[\{file:"(https:\/\/[^"]*\.m3u8)"/);
|
||||
if (m3u8Match && m3u8Match[1]) {
|
||||
const m3u8Url = m3u8Match[1];
|
||||
console.log(m3u8Url);
|
||||
return m3u8Url;
|
||||
} else {
|
||||
throw new Error("M3U8 URL not found.");
|
||||
}
|
||||
} else {
|
||||
throw new Error("Embed URL not found.");
|
||||
}
|
||||
}
|
||||
17
kimcartoon/kimcartoon.json
Normal file
17
kimcartoon/kimcartoon.json
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"sourceName": "KimCartoon",
|
||||
"iconUrl": "https://i2.wp.com/kimcartoon.com.co/wp-content/uploads/2023/03/favicon.png",
|
||||
"author": {
|
||||
"name": "50/50",
|
||||
"icon": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ3122kQwublLkZ6rf1fEpUP79BxZOFmH9BSA&s"
|
||||
},
|
||||
"version": "1.0.0",
|
||||
"language": "English (DUB)",
|
||||
"streamType": "HLS",
|
||||
"quality": "1080p",
|
||||
"baseUrl": "https://vidmoly.to/",
|
||||
"searchBaseUrl": "https://kimcartoon.com.co/?s=%s",
|
||||
"scriptUrl": "https://gitlab.com/50n50/sources/-/raw/main/kimcartoon/kimcartoon.js",
|
||||
"asyncJS": true,
|
||||
"type": "anime/shows/movies"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue