83 lines
2.5 KiB
TypeScript
83 lines
2.5 KiB
TypeScript
import * as cheerio from 'cheerio';
|
|
import { Handler } from './types';
|
|
import { ImdbId, parseImdbId, Fetcher } from '../utils';
|
|
import { ExtractorRegistry } from '../extractor';
|
|
import { Context, CountryCode } from '../types';
|
|
|
|
export class Eurostreaming implements Handler {
|
|
readonly id = 'eurostreaming';
|
|
|
|
readonly label = 'Eurostreaming';
|
|
|
|
readonly contentTypes = ['series'];
|
|
|
|
readonly countryCodes: CountryCode[] = ['it'];
|
|
|
|
private readonly fetcher: Fetcher;
|
|
private readonly extractorRegistry: ExtractorRegistry;
|
|
|
|
constructor(fetcher: Fetcher, extractorRegistry: ExtractorRegistry) {
|
|
this.fetcher = fetcher;
|
|
this.extractorRegistry = extractorRegistry;
|
|
}
|
|
|
|
readonly handle = async (ctx: Context, _type: string, id: string) => {
|
|
if (!id.startsWith('tt')) {
|
|
return [];
|
|
}
|
|
|
|
const imdbId = parseImdbId(id);
|
|
|
|
const seriesPageUrl = await this.fetchSeriesPageUrl(ctx, imdbId);
|
|
if (!seriesPageUrl) {
|
|
return [];
|
|
}
|
|
|
|
const html = await this.fetcher.text(ctx, seriesPageUrl);
|
|
|
|
const $ = cheerio.load(html);
|
|
|
|
const mainDataLinkElements = $(`[data-num="${imdbId.series}x${imdbId.episode}"][data-link!="#"]`);
|
|
const mirrorDataLinkElements = $(`[data-num="${imdbId.series}x${imdbId.episode}"]`)
|
|
.siblings('.mirrors')
|
|
.children('[data-link!="#"]');
|
|
|
|
const title = $('meta[property="og:title"]').attr('content') as string;
|
|
|
|
return Promise.all(mainDataLinkElements
|
|
.add(mirrorDataLinkElements)
|
|
.map((_i, el) => new URL(($(el).attr('data-link') as string).replace(/^(https:)?\/\//, 'https://')))
|
|
.toArray()
|
|
.filter(url => !url.host.match(/eurostreaming/))
|
|
.map(url => this.extractorRegistry.handle({ ...ctx, referer: seriesPageUrl }, url, { countryCode: 'it', title: `${title.trim()} ${imdbId.series}x${imdbId.episode}` })),
|
|
);
|
|
};
|
|
|
|
private fetchSeriesPageUrl = async (ctx: Context, imdbId: ImdbId): Promise<URL | undefined> => {
|
|
const html = await this.fetcher.textPost(
|
|
ctx,
|
|
new URL('https://eurostreaming.my/index.php'),
|
|
{
|
|
do: 'search',
|
|
subaction: 'search',
|
|
search_start: 0,
|
|
full_search: 0,
|
|
result_from: 1,
|
|
story: imdbId.id,
|
|
},
|
|
{
|
|
headers: {
|
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
},
|
|
},
|
|
);
|
|
|
|
const $ = cheerio.load(html);
|
|
|
|
const url = $('.post-content a[href]:first')
|
|
.map((_i, el) => $(el).attr('href'))
|
|
.get(0);
|
|
|
|
return url !== undefined ? new URL(url) : url;
|
|
};
|
|
}
|