rsshub
Version:
Make RSS Great Again!
95 lines (93 loc) • 3.88 kB
JavaScript
import { n as init_esm_shims, t as __dirname } from "./esm-shims-CzJ_djXG.mjs";
import "./config-C37vj7VH.mjs";
import "./dist-BInvbO1W.mjs";
import "./logger-Czu8UMNd.mjs";
import "./ofetch-BIyrKU3Y.mjs";
import { t as parseDate } from "./parse-date-BrP7mxXf.mjs";
import { t as cache_default } from "./cache-Bo__VnGm.mjs";
import "./helpers-DxBp0Pty.mjs";
import { t as art } from "./render-BQo6B4tL.mjs";
import { t as got_default } from "./got-KxxWdaxq.mjs";
import path from "node:path";
import { load } from "cheerio";
//#region lib/routes/asiantolick/index.ts
init_esm_shims();
const route = {
path: "/:category{.+}?",
radar: [{
source: ["asiantolick.com/"],
target: ""
}],
name: "Unknown",
maintainers: [],
handler,
url: "asiantolick.com/",
features: { nsfw: true }
};
async function handler(ctx) {
const category = ctx.req.param("category");
const limit = ctx.req.query("limit") ? Number.parseInt(ctx.req.query("limit"), 10) : 24;
const rootUrl = "https://asiantolick.com";
const apiUrl = new URL("ajax/buscar_posts.php", rootUrl).href;
const currentUrl = new URL(category?.replace(/^(tag|category)?\/(\d+)/, "$1-$2") ?? "", rootUrl).href;
const searchParams = {};
const matches = category?.match(/^(tag|category|search|page)?[/-]?(\w+)/) ?? void 0;
if (matches) {
const key = matches[1] === "category" ? "cat" : matches[1];
searchParams[key] = matches[2];
} else if (category) searchParams.page = "news";
const { data: response } = await got_default(apiUrl, { searchParams });
let $ = load(response);
let items = $("a.miniatura").slice(0, limit).toArray().map((item) => {
item = $(item);
const image = item.find("div.background_miniatura img");
return {
title: item.find("div.base_tt").text(),
link: item.prop("href"),
description: art(path.join(__dirname, "templates/description-659ed52a.art"), { images: image ? [{
src: image.prop("data-src").split(/\?/)[0],
alt: image.prop("alt")
}] : void 0 }),
author: item.find(".author").text(),
category: item.find(".category").toArray().map((c) => $(c).text()),
guid: image ? image.prop("post-id") : item.link.match(/\/(\d+)/)[1]
};
});
items = await Promise.all(items.map((item) => cache_default.tryGet(item.link, async () => {
const { data: detailResponse } = await got_default(item.link);
const content = load(detailResponse);
item.title = content("h1").first().text();
item.description = art(path.join(__dirname, "templates/description-659ed52a.art"), {
description: content("#metadata_qrcode").html(),
images: content("div.miniatura").toArray().map((i) => ({
src: content(i).prop("data-src"),
alt: content(i).find("img").prop("alt")
}))
});
item.author = content(".author").text();
item.category = content("#categoria_tags_post a").toArray().map((c) => content(c).text().trim().replace(/^#/, ""));
item.pubDate = parseDate(detailResponse.match(/"pubDate":\s"((?!http)[^"]*)"/)[1]);
item.updated = parseDate(detailResponse.match(/"upDate":\s"((?!http)[^"]*)"/)[1]);
item.enclosure_url = new URL(`ajax/download_post.php?ver=3&dir=/down/new_${item.guid}&post_id=${item.guid}&post_name=${detailResponse.match(/"title":\s"((?!http)[^"]*)"/)[1]}`, rootUrl).href;
item.guid = `asiantolick-${item.guid}`;
return item;
})));
const { data: currentResponse } = await got_default(currentUrl);
$ = load(currentResponse);
const title = $("title").text().split(/-/)[0].trim();
const icon = $("link[rel=\"icon\"]").first().prop("href");
return {
item: items,
title: title === "Asian To Lick" ? title : `Asian To Lick - ${title}`,
link: currentUrl,
description: $("meta[property=\"og:description\"]").prop("content"),
language: $("html").prop("lang"),
image: $("meta[name=\"msapplication-TileImage\"]").prop("content"),
icon,
logo: icon,
subtitle: title,
allowEmpty: true
};
}
//#endregion
export { route };