Merge pull request #122 from Ciarands/dev

Disable sources that no longer work
This commit is contained in:
Jorrin
2024-03-28 23:31:22 +01:00
committed by GitHub
6 changed files with 6 additions and 0 deletions

View File

@@ -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');

View File

@@ -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',

View File

@@ -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,
}); });

View File

@@ -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,
}); });

View File

@@ -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,
}); });

View File

@@ -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,
}); });