mirror of
https://github.com/movie-web/providers.git
synced 2025-09-13 13:33:25 +00:00
Merge branch 'dev' into primewire
This commit is contained in:
@@ -11,6 +11,7 @@ export const flixhqScraper = makeSourcerer({
|
|||||||
name: 'FlixHQ',
|
name: 'FlixHQ',
|
||||||
rank: 100,
|
rank: 100,
|
||||||
flags: [flags.CORS_ALLOWED],
|
flags: [flags.CORS_ALLOWED],
|
||||||
|
disabled: true,
|
||||||
async scrapeMovie(ctx) {
|
async scrapeMovie(ctx) {
|
||||||
const id = await getFlixhqId(ctx, ctx.media);
|
const id = await getFlixhqId(ctx, ctx.media);
|
||||||
if (!id) throw new NotFoundError('no search results match');
|
if (!id) throw new NotFoundError('no search results match');
|
||||||
|
@@ -14,6 +14,7 @@ export const goMoviesScraper = makeSourcerer({
|
|||||||
name: 'GOmovies',
|
name: 'GOmovies',
|
||||||
rank: 110,
|
rank: 110,
|
||||||
flags: [flags.CORS_ALLOWED],
|
flags: [flags.CORS_ALLOWED],
|
||||||
|
disabled: true,
|
||||||
async scrapeShow(ctx) {
|
async scrapeShow(ctx) {
|
||||||
const search = await ctx.proxiedFetcher<string>(`/ajax/search`, {
|
const search = await ctx.proxiedFetcher<string>(`/ajax/search`, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
|
@@ -24,6 +24,7 @@ export const goojaraScraper = makeSourcerer({
|
|||||||
name: 'Goojara',
|
name: 'Goojara',
|
||||||
rank: 225,
|
rank: 225,
|
||||||
flags: [],
|
flags: [],
|
||||||
|
disabled: true,
|
||||||
scrapeShow: universalScraper,
|
scrapeShow: universalScraper,
|
||||||
scrapeMovie: universalScraper,
|
scrapeMovie: universalScraper,
|
||||||
});
|
});
|
||||||
|
@@ -78,6 +78,7 @@ export const nepuScraper = makeSourcerer({
|
|||||||
name: 'Nepu',
|
name: 'Nepu',
|
||||||
rank: 111,
|
rank: 111,
|
||||||
flags: [],
|
flags: [],
|
||||||
|
disabled: true,
|
||||||
scrapeMovie: universalScraper,
|
scrapeMovie: universalScraper,
|
||||||
scrapeShow: universalScraper,
|
scrapeShow: universalScraper,
|
||||||
});
|
});
|
||||||
|
@@ -59,6 +59,7 @@ export const smashyStreamScraper = makeSourcerer({
|
|||||||
name: 'SmashyStream',
|
name: 'SmashyStream',
|
||||||
rank: 70,
|
rank: 70,
|
||||||
flags: [flags.CORS_ALLOWED],
|
flags: [flags.CORS_ALLOWED],
|
||||||
|
disabled: true,
|
||||||
scrapeMovie: universalScraper,
|
scrapeMovie: universalScraper,
|
||||||
scrapeShow: universalScraper,
|
scrapeShow: universalScraper,
|
||||||
});
|
});
|
||||||
|
@@ -8,6 +8,7 @@ export const zoechipScraper = makeSourcerer({
|
|||||||
name: 'ZoeChip',
|
name: 'ZoeChip',
|
||||||
rank: 200,
|
rank: 200,
|
||||||
flags: [flags.CORS_ALLOWED],
|
flags: [flags.CORS_ALLOWED],
|
||||||
|
disabled: true,
|
||||||
scrapeMovie,
|
scrapeMovie,
|
||||||
scrapeShow,
|
scrapeShow,
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user