Home Manual Reference Source Test Repository

src/providers/movies/kat.js

  1. // Import the neccesary modules.
  2. import asyncq from "async-q";
  3. import KatAPI from "kat-api-pt";
  4.  
  5. import Extractor from "../extractors/movieextractor";
  6. import Util from "../../util";
  7.  
  8. /** Class for scraping movies from https://kat.cr/. */
  9. export default class KAT {
  10.  
  11. /**
  12. * Create a kat object for movie content.
  13. * @param {String} name - The name of the content provider.
  14. * @param {?Boolean} debug - Debug mode for extra output.
  15. */
  16. constructor(name, debug) {
  17. /**
  18. * The name of the torrent provider.
  19. * @type {String}
  20. */
  21. this.name = name;
  22.  
  23. /**
  24. * The extractor object for getting show data on torrents.
  25. * @type {Extractor}
  26. */
  27. this._extractor = new Extractor(this.name, new KatAPI({ debug }), debug);
  28.  
  29. /**
  30. * The util object with general functions.
  31. * @type {Util}
  32. */
  33. this._util = new Util();
  34. };
  35.  
  36. /**
  37. * Returns a list of all the inserted torrents.
  38. * @param {Object} provider - The provider to query https://kat.cr/.
  39. * @returns {Movie[]} - A list of scraped movies.
  40. */
  41. async search(provider) {
  42. try {
  43. logger.info(`${this.name}: Starting scraping...`);
  44. provider.query.page = 1;
  45. provider.query.verified = 1;
  46. provider.query.adult_filter = 1;
  47. provider.query.language = provider.query.language ? provider.query.language : "en";
  48. provider.query.category = "movies";
  49.  
  50. return await this._extractor.search(provider);
  51. } catch (err) {
  52. this._util.onError(err);
  53. }
  54. }
  55.  
  56. }