Merge branch 'dev' into primewire

This commit is contained in:
Jorrin 2024-03-28 23:32:50 +01:00 committed by GitHub
commit f7592cb837
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 6 additions and 0 deletions

View file

@ -11,6 +11,7 @@ export const flixhqScraper = makeSourcerer({
name: 'FlixHQ',
rank: 100,
flags: [flags.CORS_ALLOWED],
disabled: true,
async scrapeMovie(ctx) {
const id = await getFlixhqId(ctx, ctx.media);
if (!id) throw new NotFoundError('no search results match');

View file

@ -14,6 +14,7 @@ export const goMoviesScraper = makeSourcerer({
name: 'GOmovies',
rank: 110,
flags: [flags.CORS_ALLOWED],
disabled: true,
async scrapeShow(ctx) {
const search = await ctx.proxiedFetcher<string>(`/ajax/search`, {
method: 'POST',

View file

@ -24,6 +24,7 @@ export const goojaraScraper = makeSourcerer({
name: 'Goojara',
rank: 225,
flags: [],
disabled: true,
scrapeShow: universalScraper,
scrapeMovie: universalScraper,
});

View file

@ -78,6 +78,7 @@ export const nepuScraper = makeSourcerer({
name: 'Nepu',
rank: 111,
flags: [],
disabled: true,
scrapeMovie: universalScraper,
scrapeShow: universalScraper,
});

View file

@ -59,6 +59,7 @@ export const smashyStreamScraper = makeSourcerer({
name: 'SmashyStream',
rank: 70,
flags: [flags.CORS_ALLOWED],
disabled: true,
scrapeMovie: universalScraper,
scrapeShow: universalScraper,
});

View file

@ -8,6 +8,7 @@ export const zoechipScraper = makeSourcerer({
name: 'ZoeChip',
rank: 200,
flags: [flags.CORS_ALLOWED],
disabled: true,
scrapeMovie,
scrapeShow,
});