bifm1/extractors/carrd.js

49 lines
1.4 KiB
JavaScript

const got = require("got");
const cheerio = require("cheerio");
const lib = require("../lib");
module.exports = {
hostnames: [],
requiresCaptcha: false,
get: async function(url, opt) {
if (lib.config.debug == true) console.log("[carrd] Requesting page...");
let h = (lib.config.defaults?.got?.headers || lib.config.defaults?.axios?.headers || {});
if (opt.referer) {
h.Referer = opt.referer;
}
let proxy;
if (lib.config.defaults?.got?.proxy) {
if (lib.config.defaults?.got?.proxy?.type == "socks5") {
const agent = require("socks-proxy-agent");
let prox = `socks5://${config.defaults?.got?.proxy?.host}:${config.defaults?.got?.proxy?.port}`;
proxy = {httpsAgent: (new agent.SocksProxyAgent(prox))};
} else {
proxy = {};
}
}
let resp = await got({
method: "GET",
url: url,
headers: h,
...proxy,
throwHttpErrors: false
});
if (lib.config.debug == true) console.log("[carrd] Got page, parsing...");
let $ = cheerio.load(resp.body);
let links = [];
if (lib.config.debug == true) console.log("[carrd] Parsed. Filtering out unviewable links...");
await ($("a").each(function(a) {
let h = $("a")[a].attribs?.href;
if (h !== null) {
if (!h.startsWith("#") && !h.startsWith("/") && h !== "https://carrd.co/build?ref=auto") links.push(h);
}
}));
return {destinations: links};
}
}