feat(route): add 纪妖 (#12824)

* feat(route): add 纪妖

* fix: use wordpress restapi

* update lib/v2/cbaigui/index.js
---------
This commit is contained in:
Ethan Shen 2023-07-19 23:35:48 +08:00 committed by GitHub
parent 993ae583f6
commit d9332c2bae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 163 additions and 0 deletions

View File

@ -2754,6 +2754,24 @@ others = 热点新闻 + 滚动新闻
<Route author="eternasuno" example="/gcores/radios/45" path="/gcores/radios/:category?" :paramsDesc="['分类名,默认为全部,可在分类页面的 URL 中找到,如 Gadio News -- 45']" radar="1" supportPodcast="1" />
## 纪妖
### 通用
<Route author="nczitzk" example="/cbaigui" path="/cbaigui/:path+" :paramsDesc="['路径,默认为首页']">
::: tip 提示
若订阅 [标签:妖](https://www.cbaigui.com/post-tag/妖),网址为 <https://www.cbaigui.com/post-tag/>。截取 `https://www.cbaigui.com` 到末尾的部分 `/post-tag/妖` 作为参数,此时路由为 [`/cbaigui/post-tag/妖`](https://rsshub.app/cbaigui/post-tag/妖)。
若订阅 [分类:埃及](https://www.cbaigui.com/post-category/世界/非洲/埃及),网址为 <https://www.cbaigui.com/post-category/世界/非洲/埃及>。截取 `https://www.cbaigui.com` 到末尾的部分 `/post-category/世界/非洲/埃及` 作为参数,此时路由为 [`/cbaigui/post-category/世界/非洲/埃及`](https://rsshub.app/cbaigui/post-category/世界/非洲/埃及)。
若订阅 [词条:白泽图](https://www.cbaigui.com/post-category/词条/白泽图),网址为 <https://www.cbaigui.com/post-category/词条/白泽图>。截取 `https://www.cbaigui.com` 到末尾的部分 `/post-category/词条/白泽图` 作为参数,此时路由为 [`/cbaigui/post-category/词条/白泽图`](https://rsshub.app/cbaigui/post-category/词条/白泽图)。
:::
</Route>
## 加美财经
<Route author="nczitzk" example="/caus" path="/caus/:category?" :paramsDesc="['分类,见下表,默认为全部']">

100
lib/v2/cbaigui/index.js Normal file
View File

@ -0,0 +1,100 @@
const got = require('@/utils/got');
const cheerio = require('cheerio');
const { parseDate } = require('@/utils/parse-date');
const { art } = require('@/utils/render');
const path = require('path');
const { rootUrl, apiSlug, GetFilterId } = require('./utils');
module.exports = async (ctx) => {
const limit = ctx.query.limit ? parseInt(ctx.query.limit, 10) : 50;
let filterName;
const currentUrl = new URL(ctx.path.replace(/^\/cbaigui/, ''), rootUrl).href;
let apiUrl = new URL(`${apiSlug}/posts?_embed=true&per_page=${limit}`, rootUrl).href;
const filterMatches = ctx.path.match(/^\/post-(tag|category)\/(.*)$/);
if (filterMatches) {
filterName = decodeURI(filterMatches[2].split('/').pop());
const filterType = filterMatches[1] === 'tag' ? 'tags' : 'categories';
const filterId = await GetFilterId(filterType, filterName);
if (filterId) {
apiUrl = new URL(`${apiSlug}/posts?_embed=true&per_page=${limit}&${filterType}=${filterId}`, rootUrl).href;
}
}
const { data: response } = await got(apiUrl);
const items = response.slice(0, limit).map((item) => {
const terminologies = item._embedded['wp:term'];
const content = cheerio.load(item.content?.rendered ?? item.content);
// To handle lazy-loaded images from external sites.
content('figure').each(function () {
const image = content(this).find('img');
const src = image.prop('data-actualsrc') ?? image.prop('data-original');
const width = image.prop('data-rawwidth');
const height = image.prop('data-rawheight');
content(this).replaceWith(
art(path.join(__dirname, 'templates/figure.art'), {
src,
width,
height,
})
);
});
// To remove watermarks on images.
content('p img').each(function () {
const image = content(this);
const src = image.prop('src').split('!')[0];
const width = image.prop('width');
const height = image.prop('height');
content(this).replaceWith(
art(path.join(__dirname, 'templates/figure.art'), {
src,
width,
height,
})
);
});
return {
title: item.title?.rendered ?? item.title,
link: item.link,
description: content.html(),
author: item._embedded.author.map((a) => a.name).join('/'),
category: [].concat(...terminologies[0], ...terminologies[1]).map((c) => c.name),
guid: item.guid?.rendered ?? item.guid,
pubDate: parseDate(item.date_gmt),
updated: parseDate(item.modified_gmt),
};
});
const { data: currentResponse } = await got(currentUrl);
const $ = cheerio.load(currentResponse);
const icon = $('link[rel="apple-touch-icon"]').first().prop('href');
ctx.state.data = {
item: items,
title: `纪妖${filterName ? ` - ${filterName}` : ''}`,
link: currentUrl,
description: $('meta[name="description"]').prop('content'),
language: 'zh-cn',
image: $('meta[name="msapplication-TileImage"]').prop('content'),
icon,
logo: icon,
subtitle: $('p.site-description').text(),
author: $('p.site-title').text(),
};
};

View File

@ -0,0 +1,3 @@
module.exports = {
'/:path+': ['nczitzk'],
};

18
lib/v2/cbaigui/radar.js Normal file
View File

@ -0,0 +1,18 @@
module.exports = {
'cbaigui.com': {
_name: '纪妖',
'.': [
{
title: '通用',
docs: 'https://docs.rsshub.app/new-media.html#ji-yao-tong-yong',
source: ['/'],
target: (params, url) => {
url = new URL(url);
const path = url.href.match(/\.com(.*?)/)[1];
return `/cbaigui${path}`;
},
},
],
},
};

3
lib/v2/cbaigui/router.js Normal file
View File

@ -0,0 +1,3 @@
module.exports = function (router) {
router.get(/([\w-/]+)?/, require('./'));
};

View File

@ -0,0 +1,3 @@
<figure>
<img src="{{ src }}" width="{{ width }}" height="{{ height }}">
</figure>

18
lib/v2/cbaigui/utils.js Normal file
View File

@ -0,0 +1,18 @@
const got = require('@/utils/got');
const rootUrl = 'https://cbaigui.com';
const apiSlug = 'wp-json/wp/v2';
const GetFilterId = async (type, name) => {
const filterApiUrl = new URL(`${apiSlug}/${type}?search=${name}`, rootUrl).href;
const { data: filterResponse } = await got(filterApiUrl);
return filterResponse.filter((f) => f.name === name).pop()?.id ?? undefined;
};
module.exports = {
rootUrl,
apiSlug,
GetFilterId,
};