src/providers/shows/kat.js
// Import the neccesary modules.
import asyncq from "async-q";
import KatAPI from "kat-api-pt";
import Extractor from "../extractors/showextractor";
import Util from "../../util";
/** Class for scraping shows from https://kat.cr/. */
export default class KAT {
/**
* Create a kat object for show content.
* @param {String} name - The name of the torrent provider.
* @param {?Boolean} debug - Debug mode for extra output.
*/
constructor(name, debug) {
/**
* The name of the torrent provider.
* @type {String}
*/
this.name = name;
/**
* The extractor object for getting show data on torrents.
* @type {Extractor}
*/
this._extractor = new Extractor(this.name, new KatAPI({ debug }), debug);
/**
* The util object with general functions.
* @type {Util}
*/
this._util = new Util();
}
/**
* Returns a list of all the inserted torrents.
* @param {Object} provider - The provider to query https://kat.cr/.
* @returns {Show[]} - A list of scraped shows.
*/
async search(provider) {
try {
logger.info(`${this.name}: Starting scraping...`);
provider.query.page = 1;
provider.query.verified = 1;
provider.query.adult_filter = 1;
provider.query.category = "tv";
provider.query.language = "en";
return await this._extractor.search(provider);
} catch (err) {
return this._util.onError(err);
}
}
}