mirror of
https://github.com/shafat-96/anicrush-api.git
synced 2026-04-17 15:51:44 +00:00
282 lines
8.3 KiB
JavaScript
282 lines
8.3 KiB
JavaScript
const axios = require('axios');
|
|
const stringSimilarity = require('string-similarity');
|
|
|
|
// Common headers for API requests
|
|
const getCommonHeaders = () => ({
|
|
'Accept': 'application/json, text/plain, */*',
|
|
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',
|
|
'x-site': 'anicrush',
|
|
'Referer': 'https://anicrush.to/',
|
|
'Origin': 'https://anicrush.to',
|
|
'sec-fetch-site': 'same-site',
|
|
'sec-fetch-mode': 'cors',
|
|
'sec-fetch-dest': 'empty'
|
|
});
|
|
|
|
// Minimal GraphQL query for AniList (title, format, year only)
|
|
const ANILIST_QUERY = `
|
|
query ($id: Int) {
|
|
Media(id: $id, type: ANIME) {
|
|
id
|
|
title {
|
|
romaji
|
|
english
|
|
native
|
|
}
|
|
synonyms
|
|
format
|
|
seasonYear
|
|
}
|
|
}`;
|
|
|
|
// Function to normalize title for comparison
|
|
function normalizeTitle(title) {
|
|
if (!title) return '';
|
|
return title.toLowerCase()
|
|
.replace(/[^a-z0-9\u3000-\u303f\u3040-\u309f\u30a0-\u30ff\u4e00-\u9faf\uff00-\uff9f]/g, ' ')
|
|
.replace(/\s+/g, ' ')
|
|
.trim();
|
|
}
|
|
|
|
// Function to get anime details from AniList
|
|
async function getAniListDetails(anilistId) {
|
|
try {
|
|
const response = await axios({
|
|
url: 'https://graphql.anilist.co',
|
|
method: 'POST',
|
|
data: {
|
|
query: ANILIST_QUERY,
|
|
variables: {
|
|
id: parseInt(anilistId)
|
|
}
|
|
}
|
|
});
|
|
|
|
if (!response.data?.data?.Media) {
|
|
throw new Error('Anime not found on AniList');
|
|
}
|
|
|
|
return response.data.data.Media;
|
|
} catch (error) {
|
|
console.error('Error fetching from AniList:', error.message);
|
|
throw new Error('Failed to fetch anime details from AniList');
|
|
}
|
|
}
|
|
|
|
// Function to search anime on anicrush
|
|
async function searchAnicrush(title) {
|
|
if (!title) {
|
|
throw new Error('Search title is required');
|
|
}
|
|
|
|
try {
|
|
const headers = getCommonHeaders();
|
|
const response = await axios({
|
|
method: 'GET',
|
|
url: 'https://api.anicrush.to/shared/v2/movie/list',
|
|
params: {
|
|
keyword: title,
|
|
page: 1,
|
|
limit: 24
|
|
},
|
|
headers
|
|
});
|
|
|
|
if (response.data?.status === false) {
|
|
throw new Error(response.data.message || 'Search failed');
|
|
}
|
|
|
|
return response.data;
|
|
} catch (error) {
|
|
if (error.response) {
|
|
console.error('Search API error:', error.response.data);
|
|
throw new Error(error.response.data.message || 'Search request failed');
|
|
} else if (error.request) {
|
|
console.error('No response received:', error.request);
|
|
throw new Error('No response from search API');
|
|
} else {
|
|
console.error('Search error:', error.message);
|
|
throw new Error('Failed to search anime');
|
|
}
|
|
}
|
|
}
|
|
|
|
// Function to get episode list from anicrush
|
|
async function getEpisodeList(movieId) {
|
|
if (!movieId) {
|
|
throw new Error('Movie ID is required');
|
|
}
|
|
|
|
try {
|
|
const headers = getCommonHeaders();
|
|
const response = await axios({
|
|
method: 'GET',
|
|
url: 'https://api.anicrush.to/shared/v2/episode/list',
|
|
params: {
|
|
_movieId: movieId
|
|
},
|
|
headers
|
|
});
|
|
|
|
if (response.data?.status === false) {
|
|
throw new Error(response.data.message || 'Failed to fetch episode list');
|
|
}
|
|
|
|
return response.data;
|
|
} catch (error) {
|
|
if (error.response) {
|
|
console.error('Episode list API error:', error.response.data);
|
|
throw new Error(error.response.data.message || 'Episode list request failed');
|
|
} else if (error.request) {
|
|
console.error('No response received:', error.request);
|
|
throw new Error('No response from episode list API');
|
|
} else {
|
|
console.error('Episode list error:', error.message);
|
|
throw new Error('Failed to fetch episode list');
|
|
}
|
|
}
|
|
}
|
|
|
|
// Function to calculate similarity between titles using string-similarity library
|
|
function calculateTitleSimilarity(title1, title2) {
|
|
if (!title1 || !title2) return 0;
|
|
return stringSimilarity.compareTwoStrings(
|
|
title1.toLowerCase(),
|
|
title2.toLowerCase()
|
|
) * 100; // Convert to percentage
|
|
}
|
|
|
|
// Function to find best match between AniList and anicrush results
|
|
function findBestMatch(anilistData, anicrushResults) {
|
|
if (!anicrushResults?.result?.movies?.length) return null;
|
|
|
|
const anilistTitles = [
|
|
anilistData.title.romaji,
|
|
anilistData.title.english,
|
|
anilistData.title.native,
|
|
...(anilistData.synonyms || [])
|
|
].filter(Boolean).map(normalizeTitle);
|
|
|
|
let bestMatch = null;
|
|
let highestScore = 0;
|
|
|
|
const formatTypeMap = {
|
|
TV: 'TV',
|
|
TV_SHORT: 'TV',
|
|
MOVIE: 'MOVIE',
|
|
SPECIAL: 'SPECIAL',
|
|
OVA: 'OVA',
|
|
ONA: 'ONA',
|
|
MUSIC: 'MUSIC'
|
|
};
|
|
const expectedType = formatTypeMap[anilistData.format] || null;
|
|
|
|
for (const result of anicrushResults.result.movies) {
|
|
let typePenalty = 0;
|
|
if (expectedType && result.type && expectedType !== result.type) {
|
|
typePenalty = 15; // small penalty instead of skip
|
|
}
|
|
|
|
const resultTitles = [result.name, result.name_english].filter(Boolean);
|
|
|
|
for (const aTitle of anilistTitles) {
|
|
for (const rTitle of resultTitles) {
|
|
const similarity = calculateTitleSimilarity(aTitle, rTitle);
|
|
const score = Math.max(0, similarity - typePenalty);
|
|
|
|
if (score > highestScore) {
|
|
highestScore = score;
|
|
bestMatch = result;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return highestScore >= 60 ? bestMatch : null; // Increased threshold to 60% for better accuracy
|
|
}
|
|
|
|
// Alias for compatibility
|
|
const findBestMatchFuzzy = findBestMatch;
|
|
|
|
// Function to parse episode list response
|
|
function parseEpisodeList(episodeList) {
|
|
if (!episodeList?.result) return [];
|
|
|
|
const episodes = [];
|
|
for (const [key, value] of Object.entries(episodeList.result)) {
|
|
if (Array.isArray(value)) {
|
|
value.forEach(ep => {
|
|
episodes.push({
|
|
number: ep.number,
|
|
name: ep.name,
|
|
name_english: ep.name_english,
|
|
is_filler: ep.is_filler
|
|
});
|
|
});
|
|
}
|
|
}
|
|
return episodes.sort((a, b) => a.number - b.number);
|
|
}
|
|
|
|
// Function to fetch ani.zip mappings
|
|
async function getAniZipMappings(anilistId) {
|
|
try {
|
|
const response = await axios({
|
|
method: 'GET',
|
|
url: `https://api.ani.zip/mappings?anilist_id=${anilistId}`,
|
|
headers: {
|
|
'Accept': 'application/json'
|
|
}
|
|
});
|
|
|
|
return response.data;
|
|
} catch (error) {
|
|
console.error('Error fetching ani.zip mappings:', error.message);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Main mapper function
|
|
async function mapAniListToAnicrush(anilistId) {
|
|
try {
|
|
const anilistData = await getAniListDetails(anilistId);
|
|
|
|
const titlesToTry = [
|
|
anilistData.title.romaji,
|
|
anilistData.title.english,
|
|
anilistData.title.native
|
|
].filter(Boolean);
|
|
|
|
let bestMatch = null;
|
|
for (const title of titlesToTry) {
|
|
const searchResults = await searchAnicrush(title);
|
|
bestMatch = findBestMatchFuzzy(anilistData, searchResults);
|
|
if (bestMatch) break;
|
|
}
|
|
|
|
if (!bestMatch) throw new Error('No matching anime found on anicrush');
|
|
|
|
return {
|
|
anilist_id: anilistId,
|
|
anicrush_id: bestMatch.id,
|
|
title: {
|
|
romaji: anilistData.title.romaji,
|
|
english: anilistData.title.english,
|
|
native: anilistData.title.native,
|
|
anicrush: bestMatch.name,
|
|
anicrush_english: bestMatch.name_english
|
|
},
|
|
type: bestMatch.type,
|
|
year: anilistData.seasonYear
|
|
};
|
|
} catch (error) {
|
|
console.error('Mapper error:', error.message);
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
mapAniListToAnicrush,
|
|
getCommonHeaders
|
|
};
|