This repository has been archived on 2023-08-24. You can view files and clone it, but cannot push or open issues or pull requests.
bifm/extractors/psa.js

40 lines
1.2 KiB
JavaScript

const got = require("got");
const cheerio = require("cheerio");
const lib = require("../lib");
module.exports = {
hostnames: ["psa.pm"],
requiresCaptcha: false,
get: async function(url, opt) {
let u = new URL(url).pathname.split("/")[1];
if (u !== "exit") throw "Invalid psa.pm link.";
if (lib.config.debug == true) console.log("[psa] 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
});
if (lib.config.debug == true) console.log("[psa] Done. Parsing page...");
let $ = cheerio.load(resp.body);
return $("form")?.attr("action");
}
}