mirror of https://github.com/aruppi/aruppi-api.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
537 lines
15 KiB
JavaScript
537 lines
15 KiB
JavaScript
const {
|
|
BASE_ANIMEFLV, BASE_JIKAN, BASE_ARUPPI, BASE_JKANIME
|
|
} = require('../api/urls');
|
|
|
|
const {
|
|
homgot
|
|
} = require('../api/apiCall');
|
|
|
|
function btoa(str) {
|
|
let buffer;
|
|
if (str instanceof Buffer) {
|
|
buffer = str;
|
|
}
|
|
else {
|
|
buffer = Buffer.from(str.toString(), 'binary');
|
|
}
|
|
return buffer.toString('base64');
|
|
}
|
|
|
|
global.btoa = btoa;
|
|
|
|
async function videoServersJK(id) {
|
|
|
|
const $ = await homgot(`${BASE_JKANIME}${id}`, { scrapy: true });
|
|
let servers = {};
|
|
let script;
|
|
const serverNames = $('div#reproductor-box li').map((index, element) => {
|
|
return $(element).find('a').text();
|
|
}).get();
|
|
|
|
$('script').each((index, element) => {
|
|
if ($(element).html().includes('var video = [];')) {
|
|
script = $(element).html();
|
|
}
|
|
});
|
|
|
|
try {
|
|
let videoUrls = script.match(/(?<=src=").*?(?=[\*"])/gi);
|
|
|
|
for (let i = 0; i < serverNames.length; i++) {
|
|
servers[serverNames[i]] = videoUrls[i];
|
|
}
|
|
|
|
} catch (err) {
|
|
console.log(err);
|
|
return null;
|
|
}
|
|
|
|
let serverList = [];
|
|
|
|
for (let server in servers) {
|
|
if (serverNames[serverNames.indexOf(server)].toLowerCase() === 'desu') {
|
|
serverList.push({
|
|
id: serverNames[serverNames.indexOf(server)].toLowerCase(),
|
|
url: await desuServerUrl(servers[server]) !== null ? await desuServerUrl(servers[server]) : servers[server],
|
|
direct: true
|
|
});
|
|
}else {
|
|
serverList.push({
|
|
id: serverNames[serverNames.indexOf(server)].toLowerCase(),
|
|
url: servers[server],
|
|
direct: true
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
serverList = serverList.filter(x => x.id !== 'xtreme s' && x.id !== 'desuka');
|
|
|
|
return serverList;
|
|
}
|
|
|
|
async function desuServerUrl(url) {
|
|
|
|
const $ = await homgot(url, { scrapy: true});
|
|
let script;
|
|
|
|
$('script').each((index, element) => {
|
|
if ($(element).html().includes('var parts = {')) {
|
|
if ($(element).html()) {
|
|
script = $(element).html();
|
|
}else {
|
|
return null;
|
|
}
|
|
}
|
|
});
|
|
|
|
let result = script.match(/swarmId: '(https:\/\/\S+)'/gi)
|
|
.toString()
|
|
.split('\'')[1];
|
|
|
|
return result;
|
|
}
|
|
|
|
|
|
const jkanimeInfo = async (id) => {
|
|
|
|
let $ = await homgot(`${BASE_JKANIME}${id}`, { scrapy: true });
|
|
|
|
let nextEpisodeDate;
|
|
let rawNextEpisode = $('div[id="container"] div.left-container div[id="proxep"] p')[0];
|
|
|
|
if (rawNextEpisode === undefined) {
|
|
nextEpisodeDate = null;
|
|
} else {
|
|
if (rawNextEpisode.children[1].data === ' ') {
|
|
nextEpisodeDate = null;
|
|
} else {
|
|
nextEpisodeDate = rawNextEpisode.children[1].data.trim();
|
|
}
|
|
}
|
|
|
|
const eps_temp_list = [];
|
|
let episodes_aired = '';
|
|
|
|
$('div#container div.left-container div.navigation a').each(async (index, element) => {
|
|
const $element = $(element);
|
|
const total_eps = $element.text();
|
|
eps_temp_list.push(total_eps);
|
|
});
|
|
|
|
try { episodes_aired = eps_temp_list[0].split('-')[1].trim(); } catch (err) { }
|
|
|
|
const animeListEps = [{ nextEpisodeDate: nextEpisodeDate }];
|
|
|
|
for (let i = 1; i <= episodes_aired; i++) {
|
|
let episode = i;
|
|
let animeId = $('div[id="container"] div.content-box div[id="episodes-content"]')[0].children[1].children[3].attribs.src.split('/')[7].split('.jpg')[0];
|
|
let link = `${animeId}/${episode}`
|
|
|
|
animeListEps.push({
|
|
episode: episode,
|
|
id: link
|
|
})
|
|
}
|
|
|
|
return animeListEps;
|
|
|
|
};
|
|
|
|
function getPosterAndType(id) {
|
|
let data = JSON.parse(JSON.stringify(require('../assets/directory.json')));
|
|
|
|
|
|
for (let anime of data) {
|
|
if (anime.id === id) {
|
|
return [
|
|
anime.poster,
|
|
anime.type
|
|
];
|
|
}
|
|
}
|
|
|
|
return "";
|
|
};
|
|
|
|
async function getRelatedAnimes(id) {
|
|
const $ = await homgot(`${BASE_ANIMEFLV}/anime/${id}`, { scrapy: true });
|
|
let listRelated = {};
|
|
let relatedAnimes = [];
|
|
|
|
if ($('ul.ListAnmRel').length) {
|
|
$('ul.ListAnmRel li a').each((index, element) => {
|
|
listRelated[$(element).text()] = $(element).attr('href');
|
|
});
|
|
|
|
for (related in listRelated) {
|
|
let posterUrl = getPosterAndType(listRelated[related].split('/')[2]);
|
|
|
|
relatedAnimes.push(
|
|
{
|
|
id: listRelated[related].split('/')[2],
|
|
title: related,
|
|
type: posterUrl[1],
|
|
poster: posterUrl[0]
|
|
}
|
|
);
|
|
}
|
|
|
|
return relatedAnimes;
|
|
|
|
}else {
|
|
return [];
|
|
}
|
|
};
|
|
|
|
const animeflvGenres = async (id) => {
|
|
let $ = await homgot(`${BASE_ANIMEFLV}/${id}`, { scrapy: true });
|
|
|
|
$('main.Main section.WdgtCn nav.Nvgnrs a').each((index, element) => {
|
|
return $(element).attr('href').split('=')[1] || null;
|
|
});
|
|
}
|
|
|
|
const animeflvInfo = async (id) => {
|
|
let $ = await homgot(`${BASE_ANIMEFLV}/anime/${id}`, { scrapy: true });
|
|
let scripts = $('script').toArray();
|
|
|
|
const anime_info_ids = [];
|
|
const anime_eps_data = [];
|
|
|
|
for (let script of scripts) {
|
|
const contents = $(script).html();
|
|
|
|
if ((contents || '').includes('var anime_info = [')) {
|
|
let anime_info = contents.split('var anime_info = ')[1].split(';\n')[0];
|
|
let dat_anime_info = JSON.parse(anime_info);
|
|
anime_info_ids.push(dat_anime_info);
|
|
}
|
|
|
|
if ((contents || '').includes('var episodes = [')) {
|
|
let episodes = contents.split('var episodes = ')[1].split(';')[0];
|
|
let eps_data = JSON.parse(episodes);
|
|
anime_eps_data.push(eps_data);
|
|
}
|
|
}
|
|
|
|
const animeId = id;
|
|
let nextEpisodeDate;
|
|
|
|
if (anime_info_ids.length > 0) {
|
|
if (anime_info_ids[0].length === 4) {
|
|
nextEpisodeDate = anime_info_ids[0][3];
|
|
} else {
|
|
nextEpisodeDate = null;
|
|
}
|
|
}
|
|
|
|
const amimeTempList = [];
|
|
|
|
for (const [key] of Object.entries(anime_eps_data)) {
|
|
let episode = anime_eps_data[key].map(x => x[0]);
|
|
let episodeId = anime_eps_data[key].map(x => x[1]);
|
|
amimeTempList.push(episode, episodeId);
|
|
}
|
|
|
|
const animeListEps = [{ nextEpisodeDate: nextEpisodeDate }];
|
|
|
|
for (let i = 0; i < amimeTempList[1].length; i++) {
|
|
let data = amimeTempList.map(x => x[i]);
|
|
let episode = data[0];
|
|
let id = data[1];
|
|
let link = `${id}/${animeId}-${episode}`
|
|
|
|
animeListEps.push({
|
|
episode: episode,
|
|
id: link,
|
|
});
|
|
}
|
|
|
|
return animeListEps;
|
|
};
|
|
|
|
|
|
const getAnimeCharacters = async(title) =>{
|
|
|
|
const matchAnime = await getMALid(title);
|
|
|
|
try {
|
|
if(matchAnime !== null) {
|
|
const data = await homgot(`${BASE_JIKAN}anime/${matchAnime.mal_id}/characters_staff`, { parse: true });
|
|
return data.characters.map(doc => ({
|
|
id: doc.mal_id,
|
|
name: doc.name,
|
|
image: doc.image_url,
|
|
role: doc.role
|
|
}));
|
|
}
|
|
} catch (err) {
|
|
console.log(err);
|
|
}
|
|
|
|
};
|
|
|
|
const getAnimeVideoPromo = async(title) =>{
|
|
|
|
const matchAnime = await getMALid(title);
|
|
|
|
try {
|
|
if(matchAnime !== null) {
|
|
|
|
const data = await homgot(`${BASE_JIKAN}anime/${matchAnime.mal_id}/videos`, {parse: true});
|
|
|
|
return data.promo.map(doc => ({
|
|
title: doc.title,
|
|
previewImage: doc.image_url,
|
|
videoURL: doc.video_url
|
|
}));
|
|
}
|
|
} catch (err) {
|
|
console.log(err);
|
|
}
|
|
|
|
};
|
|
|
|
const animeExtraInfo = async (title) => {
|
|
|
|
const matchAnime = await getMALid(title);
|
|
|
|
try {
|
|
|
|
if(matchAnime !== null) {
|
|
|
|
const data = await homgot(`${BASE_JIKAN}anime/${matchAnime.mal_id}`, {parse: true});
|
|
const promises = [];
|
|
let broadcast = '';
|
|
|
|
Array(data).map(doc => {
|
|
|
|
let airDay = {
|
|
'mondays': 'Lunes',
|
|
'monday': 'Lunes',
|
|
'tuesdays': 'Martes',
|
|
'tuesday': 'Martes',
|
|
'wednesdays': 'Miércoles',
|
|
'wednesday': 'Miércoles',
|
|
'thursdays': 'Jueves',
|
|
'thursday': 'Jueves',
|
|
'fridays': 'Viernes',
|
|
'friday': 'Viernes',
|
|
'saturdays': 'Sábados',
|
|
'saturday': 'Sábados',
|
|
'sundays': 'Domingos',
|
|
'sunday': 'Domingos',
|
|
'default': 'Sin emisión'
|
|
};
|
|
|
|
if (doc.broadcast === null) {
|
|
broadcast = null
|
|
} else {
|
|
broadcast = airDay[doc.broadcast.split('at')[0].replace(" ", "").toLowerCase()]
|
|
}
|
|
|
|
promises.push({
|
|
titleJapanese: doc.title_japanese,
|
|
source: doc.source,
|
|
totalEpisodes: doc.episodes,
|
|
aired: {
|
|
from: doc.aired.from,
|
|
to: doc.aired.to
|
|
},
|
|
duration: doc.duration.split('per')[0],
|
|
rank: doc.rank,
|
|
broadcast: broadcast,
|
|
producers: doc.producers.map(x => x.name) || null,
|
|
licensors: doc.licensors.map(x => x.name) || null,
|
|
studios: doc.studios.map(x => x.name) || null,
|
|
openingThemes: doc.opening_themes || null,
|
|
endingThemes: doc.ending_themes || null
|
|
});
|
|
});
|
|
return Promise.all(promises);
|
|
}
|
|
|
|
} catch (err) {
|
|
console.log(err);
|
|
}
|
|
|
|
};
|
|
|
|
const getMALid = async (title) =>{
|
|
|
|
if (title === undefined || title === null) {
|
|
return 1;
|
|
} else {
|
|
|
|
const res = await homgot(`${BASE_JIKAN}search/anime?q=${title}`,{ parse: true });
|
|
|
|
const matchAnime = res.results.find(x => x.title === title);
|
|
|
|
if(typeof matchAnime === 'undefined') {
|
|
return null;
|
|
} else {
|
|
return matchAnime;
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
const imageUrlToBase64 = async (url) => {
|
|
let img = await homgot(url)
|
|
return img.rawBody.toString('base64');
|
|
};
|
|
|
|
const searchAnime = async (query) => {
|
|
|
|
let data = JSON.parse(JSON.stringify(require('../assets/directory.json')));
|
|
let queryLowerCase = query.toLowerCase();
|
|
const res = data.filter(x => x.title.toLowerCase().includes(queryLowerCase));
|
|
|
|
return res.map(doc => ({
|
|
id: doc.id || null,
|
|
title: doc.title || null,
|
|
type: doc.type || null,
|
|
image: doc.poster || null
|
|
}));
|
|
|
|
};
|
|
|
|
const transformUrlServer = async (urlReal) => {
|
|
|
|
for (const data of urlReal) {
|
|
if (data.server === 'amus' || data.server === 'natsuki') {
|
|
let res = await homgot(data.code.replace("embed", "check"), { parse: true });
|
|
data.code = res.file || null;
|
|
data.direct = true;
|
|
}
|
|
}
|
|
|
|
return urlReal.map(doc => ({
|
|
id: doc.title.toLowerCase(),
|
|
url: doc.code,
|
|
direct: doc.direct || false
|
|
}));
|
|
|
|
}
|
|
|
|
const obtainPreviewNews = (encoded) => {
|
|
|
|
let image;
|
|
|
|
if (encoded.includes('src="https://img1.ak.crunchyroll.com/')) {
|
|
if (encoded.split('https://img1.ak.crunchyroll.com/')[1].includes('.jpg')) {
|
|
image = `https://img1.ak.crunchyroll.com/${encoded.split('https://img1.ak.crunchyroll.com/')[1].split('.jpg')[0]}.jpg`
|
|
} else {
|
|
image = `https://img1.ak.crunchyroll.com/${encoded.split('https://img1.ak.crunchyroll.com/')[1].split('.png')[0]}.png`
|
|
}
|
|
} else if (encoded.includes('<img title=')) {
|
|
image = encoded.substring(encoded.indexOf("<img title=\""), encoded.indexOf("\" alt")).split('src=\"')[1]
|
|
} else if (encoded.includes('<img src=')) {
|
|
image = encoded
|
|
.substring(encoded.indexOf("<img src=\""), encoded.indexOf("\" alt"))
|
|
.substring(10).replace("http", "https")
|
|
.replace("httpss", "https")
|
|
} else if (encoded.includes('<img')) {
|
|
image = encoded.split("src=")[1].split(" class=")[0].replace("\"", '').replace('\"', '')
|
|
} else if (encoded.includes('https://www.youtube.com/embed/')) {
|
|
let getSecondThumb = encoded.split('https://www.youtube.com/embed/')[1].split('?feature')[0]
|
|
image = `https://img.youtube.com/vi/${getSecondThumb}/0.jpg`
|
|
} else if (encoded.includes('https://www.dailymotion.com/')) {
|
|
let getDailymotionThumb = encoded
|
|
.substring(encoded.indexOf("\" src=\""), encoded.indexOf("\" a"))
|
|
.substring(47)
|
|
image = `https://www.dailymotion.com/thumbnail/video/${getDailymotionThumb}`
|
|
} else {
|
|
let number = Math.floor(Math.random() * 30);
|
|
image = `${BASE_ARUPPI}news/${number}.png`
|
|
}
|
|
|
|
return image;
|
|
}
|
|
|
|
|
|
|
|
/* - StructureThemes
|
|
This function only parses the theme/themes
|
|
if indv is true, then only return a object, if it's false
|
|
then returns a array with the themes selected.
|
|
*/
|
|
const structureThemes = async (body, indv) => {
|
|
let themes = [];
|
|
|
|
if (indv === true) {
|
|
|
|
return {
|
|
title: body.title,
|
|
year: body.year,
|
|
themes: await getThemesData(body.themes)
|
|
};
|
|
|
|
} else {
|
|
for (let i = 0; i <= body.length - 1; i++) {
|
|
|
|
themes.push({
|
|
title: body[i].title,
|
|
year: body[i].year,
|
|
themes: await getThemesData(body[i].themes),
|
|
});
|
|
}
|
|
|
|
return themes;
|
|
}
|
|
|
|
|
|
};
|
|
/* - GetThemesData
|
|
Get the themes from the object and
|
|
format to a new array of items where
|
|
these items are formatted better.
|
|
*/
|
|
|
|
const getThemesData = async (themes) => {
|
|
|
|
let items = [];
|
|
|
|
for (let i = 0; i <= themes.length - 1; i++) {
|
|
|
|
items.push({
|
|
title: themes[i].name.split('"')[1] || 'Remasterización',
|
|
type: themes[i].type,
|
|
episodes: themes[i].episodes !== "" ? themes[i].episodes : null,
|
|
notes: themes[i].notes !== "" ? themes[i].notes : null,
|
|
video: themes[i].link
|
|
});
|
|
|
|
}
|
|
|
|
return items.filter(x => x.title !== 'Remasterización');
|
|
|
|
};
|
|
|
|
const getThemes = async (themes) => {
|
|
return themes.map(doc => ({
|
|
name: doc.themeName,
|
|
type: doc.themeType,
|
|
video: doc.mirror.mirrorURL
|
|
}));
|
|
};
|
|
|
|
module.exports = {
|
|
jkanimeInfo,
|
|
animeflvGenres,
|
|
animeflvInfo,
|
|
getAnimeCharacters,
|
|
getAnimeVideoPromo,
|
|
getRelatedAnimes,
|
|
animeExtraInfo,
|
|
imageUrlToBase64,
|
|
searchAnime,
|
|
transformUrlServer,
|
|
obtainPreviewNews,
|
|
structureThemes,
|
|
getThemes,
|
|
getMALid,
|
|
videoServersJK
|
|
}
|