92 lines
2.8 KiB
TypeScript
92 lines
2.8 KiB
TypeScript
import * as cheerio from 'cheerio';
|
|
import memoize from 'memoizee';
|
|
import { ContentType } from 'stremio-addon-sdk';
|
|
import { Cookie } from 'tough-cookie';
|
|
import { Context, CountryCode } from '../types';
|
|
import { Fetcher, getImdbId, Id, ImdbId } from '../utils';
|
|
import { Source, SourceResult } from './Source';
|
|
|
|
export class MegaKino extends Source {
|
|
public readonly id = 'megakino';
|
|
|
|
public readonly label = 'MegaKino';
|
|
|
|
public readonly contentTypes: ContentType[] = ['movie'];
|
|
|
|
public readonly countryCodes: CountryCode[] = [CountryCode.de];
|
|
|
|
public readonly baseUrl = 'https://megakino.club';
|
|
|
|
private readonly fetcher: Fetcher;
|
|
|
|
public constructor(fetcher: Fetcher) {
|
|
super();
|
|
|
|
this.fetcher = fetcher;
|
|
|
|
this.getBaseUrl = memoize(this.getBaseUrl, {
|
|
maxAge: 3600000, // 1 hour
|
|
normalizer: () => 'baseUrl',
|
|
});
|
|
}
|
|
|
|
public async handleInternal(ctx: Context, _type: string, id: Id): Promise<SourceResult[]> {
|
|
const imdbId = await getImdbId(ctx, this.fetcher, id);
|
|
|
|
const tokenResponse = await this.fetcher.fetch(ctx, new URL('/?yg=token', await this.getBaseUrl(ctx)), { method: 'HEAD' });
|
|
|
|
const cookie = Cookie.parse((tokenResponse.headers['set-cookie'] as string[])[0] as string) as Cookie;
|
|
|
|
const pageUrl = await this.fetchPageUrl(ctx, imdbId, cookie);
|
|
if (!pageUrl) {
|
|
return [];
|
|
}
|
|
|
|
const html = await this.fetcher.text(ctx, pageUrl, { headers: { Cookie: cookie.cookieString() } });
|
|
|
|
const $ = cheerio.load(html);
|
|
|
|
const title = $('meta[property="og:title"]').attr('content')?.trim();
|
|
|
|
return Promise.all(
|
|
$(`.video-inside iframe`)
|
|
.map((_i, el) => new URL(($(el).attr('data-src') ?? $(el).attr('src')) as string))
|
|
.toArray()
|
|
.map(url => ({ url, meta: { countryCodes: [CountryCode.de], referer: pageUrl.href, title } })),
|
|
);
|
|
};
|
|
|
|
private fetchPageUrl = async (ctx: Context, imdbId: ImdbId, cookie: Cookie): Promise<URL | undefined> => {
|
|
const form = new URLSearchParams();
|
|
form.append('do', 'search');
|
|
form.append('subaction', 'search');
|
|
form.append('story', `${imdbId.id}`);
|
|
|
|
const postUrl = await this.getBaseUrl(ctx);
|
|
|
|
const html = await this.fetcher.textPost(
|
|
ctx,
|
|
postUrl,
|
|
form.toString(),
|
|
{
|
|
headers: {
|
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
'Referer': postUrl.origin,
|
|
'Cookie': cookie.cookieString(),
|
|
},
|
|
},
|
|
);
|
|
|
|
const $ = cheerio.load(html);
|
|
|
|
return $('#dle-content a[href].poster:first')
|
|
.map((_i, el) => new URL($(el).attr('href') as string))
|
|
.get(0);
|
|
};
|
|
|
|
private readonly getBaseUrl = async (ctx: Context): Promise<URL> => {
|
|
console.log('get base url');
|
|
|
|
return await this.fetcher.getFinalRedirectUrl(ctx, new URL(this.baseUrl));
|
|
};
|
|
}
|