rsshub
Version:
Make RSS Great Again!
190 lines (184 loc) • 8.13 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/accessbriefing/index.ts
init_esm_shims();
const handler = async (ctx) => {
const { category = "latest/news" } = ctx.req.param();
const limit = ctx.req.query("limit") ? Number.parseInt(ctx.req.query("limit"), 10) : 30;
const rootUrl = "https://www.accessbriefing.com";
const currentUrl = new URL(category, rootUrl).href;
const apiUrl = new URL("Ajax/GetPagedArticles", rootUrl).href;
const { data: currentResponse } = await got_default(currentUrl);
const brandId = currentResponse.match(/'BrandID':\s(\d+)/)?.[1] ?? "32";
const { data: response } = await got_default(apiUrl, { searchParams: {
navcontentid: currentResponse.match(/'MoreID':\s(\d+)/)?.[1] ?? "9282",
brandid: brandId,
page: 0,
lastpage: 0,
pagesize: limit
} });
const $ = load(currentResponse);
const language = $("html").prop("lang");
let items = response.slice(0, limit).map((item) => {
const title = item.Article_Headline;
const image$1 = new URL(item.Image, rootUrl).href;
const description = art(path.join(__dirname, "templates/description-c3c936c5.art"), {
images: image$1 ? [{
src: image$1,
alt: title
}] : void 0,
intro: item.Article_Intro_Plaintext
});
const guid = `accessbriefing-${item.Article_ID}`;
return {
title,
description,
pubDate: parseDate(item.Article_PublishedDate),
link: new URL(item.URL, rootUrl).href,
author: item.Authors.join("/"),
guid,
id: guid,
content: {
html: description,
text: item.Article_Intro_Plaintext
},
image: image$1,
banner: image$1,
language
};
});
items = await Promise.all(items.map((item) => cache_default.tryGet(item.link, async () => {
const { data: detailResponse } = await got_default(item.link);
const $$ = load(detailResponse);
const title = $$("h1.khl-article-page-title").text();
const description = item.description + art(path.join(__dirname, "templates/description-c3c936c5.art"), { description: $$("div.khl-article-page-storybody").html() });
item.title = title;
item.description = description;
item.category = $$("a.badge[data-id]").toArray().map((c) => $$(c).text());
item.author = $$("div.authorDetails a span b").text();
item.content = {
html: description,
text: $$("div.khl-article-page-storybody").text()
};
item.language = language;
return item;
})));
const image = new URL($("a.navbar-brand img").prop("src"), rootUrl).href;
return {
title: $("title").text(),
description: $("meta[property=\"og:description\"]").prop("content"),
link: currentUrl,
item: items,
allowEmpty: true,
image,
author: $("meta[property=\"og:site_name\"]").prop("content"),
language
};
};
const route = {
path: "/:category{.+}?",
name: "Articles",
url: "accessbriefing.com",
maintainers: ["nczitzk"],
handler,
example: "/accessbriefing/latest/news",
parameters: { category: "Category, Latest News by default" },
description: `::: tip
If you subscribe to [Latest News](https://www.accessbriefing.com/latest/news),where the URL is \`https://www.accessbriefing.com/latest/news\`, extract the part \`https://www.accessbriefing.com/\` to the end, and use it as the parameter to fill in. Therefore, the route will be [\`/accessbriefing/latest/news\`](https://rsshub.app/accessbriefing/latest/news).
:::
#### Latest
| Category | ID |
| -------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| [News](https://www.accessbriefing.com/latest/news) | [latest/news](https://rsshub.app/target/site/latest/news) |
| [Products & Technology](https://www.accessbriefing.com/latest/products-and-technology) | [latest/products-and-technology](https://rsshub.app/target/site/latest/products-and-technology) |
| [Rental News](https://www.accessbriefing.com/latest/rental-news) | [latest/rental-news](https://rsshub.app/target/site/latest/rental-news) |
| [People](https://www.accessbriefing.com/latest/people) | [latest/people](https://rsshub.app/target/site/latest/people) |
| [Regualtions & Safety](https://www.accessbriefing.com/latest/regualtions-safety) | [latest/regualtions-safety](https://rsshub.app/target/site/latest/regualtions-safety) |
| [Finance](https://www.accessbriefing.com/latest/finance) | [latest/finance](https://rsshub.app/target/site/latest/finance) |
| [Sustainability](https://www.accessbriefing.com/latest/sustainability) | [latest/sustainability](https://rsshub.app/target/site/latest/sustainability) |
#### Insight
| Category | ID |
| --------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
| [Interviews](https://www.accessbriefing.com/insight/interviews) | [insight/interviews](https://rsshub.app/target/site/insight/interviews) |
| [Longer reads](https://www.accessbriefing.com/insight/longer-reads) | [insight/longer-reads](https://rsshub.app/target/site/insight/longer-reads) |
| [Videos and podcasts](https://www.accessbriefing.com/insight/videos-and-podcasts) | [insight/videos-and-podcasts](https://rsshub.app/target/site/insight/videos-and-podcasts) |
`,
categories: ["new-media"],
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportRadar: true,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
radar: [
{
source: ["accessbriefing.com/:category*"],
target: "/:category"
},
{
title: "Latest - News",
source: ["accessbriefing.com/latest/news"],
target: "/latest/news"
},
{
title: "Latest - Products & Technology",
source: ["accessbriefing.com/latest/products-and-technology"],
target: "/latest/products-and-technology"
},
{
title: "Latest - Rental News",
source: ["accessbriefing.com/latest/rental-news"],
target: "/latest/rental-news"
},
{
title: "Latest - People",
source: ["accessbriefing.com/latest/people"],
target: "/latest/people"
},
{
title: "Latest - Regualtions & Safety",
source: ["accessbriefing.com/latest/regualtions-safety"],
target: "/latest/regualtions-safety"
},
{
title: "Latest - Finance",
source: ["accessbriefing.com/latest/finance"],
target: "/latest/finance"
},
{
title: "Latest - Sustainability",
source: ["accessbriefing.com/latest/sustainability"],
target: "/latest/sustainability"
},
{
title: "Insight - Interviews",
source: ["accessbriefing.com/insight/interviews"],
target: "/insight/interviews"
},
{
title: "Insight - Longer reads",
source: ["accessbriefing.com/insight/longer-reads"],
target: "/insight/longer-reads"
},
{
title: "Insight - Videos and podcasts",
source: ["accessbriefing.com/insight/videos-and-podcasts"],
target: "/insight/videos-and-podcasts"
}
]
};
//#endregion
export { handler, route };