@aidarkezio/main-func
Version:
📦 It has my funcs
46 lines • 2.08 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const got_1 = __importDefault(require("got"));
const cheerio_1 = __importDefault(require("cheerio"));
const types_js_1 = require("./types.js");
const utils_js_1 = require("../utils.js");
async function zippyshare(url) {
var _a, _b, _c;
types_js_1.ZippyShareArgsSchema.parse(arguments);
if (!/zippyshare\.com/.test(url))
throw new Error('Invalid URL: ' + url);
const res = await (0, got_1.default)(url);
// eslint-disable-next-line no-unused-vars
const [_, __, host, ___, id] = res.url.split('/');
const $ = cheerio_1.default.load(res.body);
const $lrbox = $('#lrbox > div.left');
const filename = $lrbox.find('font').eq(2).text().trim();
const $div = $lrbox.find('div').eq(0).find('div').eq(0);
const filesizeH = $div.find('font').eq(1).text().trim();
const filesize = (0, utils_js_1.parseFileSize)(filesizeH);
const aploud = $div.find('font').eq(3).text().trim();
const lastDownload = $div.find('font').eq(5).text().trim();
const urlId = (_c = (_b = /\((.*?)\)/i.exec((_a = $.html().split('document.getElementById(\'dlbutton\').href =')[1]) === null || _a === void 0 ? void 0 : _a.split(';')[0])) === null || _b === void 0 ? void 0 : _b[0]) === null || _c === void 0 ? void 0 : _c.trim();
if (!urlId) {
throw new utils_js_1.ScraperError(`Can't get urlId for download url from ${url}`);
}
// eslint-disable-next-line no-eval
const urlIdRes = eval(urlId);
const _url = `https://${host}/d/${id}/${urlIdRes}/${filename}`;
// const url2 = `https://${host}/i/${id}/${urlIdRes}/${filename}`
const result = {
url: _url,
// url2,
filename,
filesizeH,
filesize,
aploud,
lastDownload
};
return types_js_1.ZippyShareSchema.parse(result);
}
exports.default = zippyshare;
//# sourceMappingURL=zippyshare.js.map