mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 15:41:45 +00:00
79 lines
2.4 KiB
JavaScript
79 lines
2.4 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.pwGetInfo = void 0;
|
|
const pwGetInfo = async function ({ link, providerContext, }) {
|
|
try {
|
|
const { axios, cheerio } = providerContext;
|
|
const url = link;
|
|
const baseUrl = link.split('/').slice(0, 3).join('/');
|
|
const res = await axios.get(url);
|
|
const html = await res.data;
|
|
const $ = cheerio.load(html);
|
|
const imdbId = $('.movie_info')
|
|
.find('a[href*="imdb.com/title/tt"]:not([href*="imdb.com/title/tt/"])')
|
|
.attr('href')
|
|
?.split('/')[4] || '';
|
|
const type = $('.show_season').html() ? 'series' : 'movie';
|
|
const linkList = [];
|
|
$('.show_season').each((i, element) => {
|
|
const seasonTitle = 'Season ' + $(element).attr('data-id');
|
|
const episodes = [];
|
|
$(element)
|
|
.children()
|
|
.each((i, element2) => {
|
|
const episodeTitle = $(element2)
|
|
.find('a')
|
|
.children()
|
|
.remove()
|
|
.end()
|
|
.text()
|
|
.trim()
|
|
.replace('E', 'Epiosode ');
|
|
const episodeLink = baseUrl + $(element2).find('a').attr('href');
|
|
if (episodeTitle && episodeLink) {
|
|
episodes.push({
|
|
title: episodeTitle,
|
|
link: episodeLink,
|
|
});
|
|
}
|
|
});
|
|
linkList.push({
|
|
title: seasonTitle,
|
|
directLinks: episodes,
|
|
});
|
|
});
|
|
if (type === 'movie') {
|
|
linkList.push({
|
|
title: 'Movie',
|
|
directLinks: [
|
|
{
|
|
link: link,
|
|
title: 'Movie',
|
|
type: 'movie',
|
|
},
|
|
],
|
|
});
|
|
}
|
|
return {
|
|
title: '',
|
|
image: '',
|
|
imdbId: imdbId,
|
|
synopsis: '',
|
|
type: type,
|
|
linkList: linkList,
|
|
};
|
|
}
|
|
catch (error) {
|
|
console.error(error);
|
|
return {
|
|
title: '',
|
|
image: '',
|
|
imdbId: '',
|
|
synopsis: '',
|
|
linkList: [],
|
|
type: 'uhd',
|
|
};
|
|
}
|
|
};
|
|
exports.pwGetInfo = pwGetInfo;
|