feat(route): add Focus Taiwan (#8338)

This commit is contained in:
Ethan Shen 2021-10-05 17:23:19 +08:00 committed by GitHub
parent 14d778a3ea
commit e78b215039
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 108 additions and 0 deletions

View File

@ -306,6 +306,22 @@ pageClass: routes
</Route>
## Focus Taiwan
### Category
<Route author="nczitzk" example="/focustaiwan" path="/focustaiwan/:category?" :paramsDesc="['分类,见下表,默认为 news']">
| Latest | Editor's Picks | Photos of the Day |
| ------ | -------------- | ----------------- |
| news | editorspicks | photos |
| Politics | Cross-strait | Business | Society | Science & Tech | Culture | Sports |
| -------- | ------------ | -------- | ------- | -------------- | ------- | ------ |
| politics | cross-strait | business | society | science & tech | culture | sports |
</Route>
## GQ
### GQ 台湾

View File

@ -0,0 +1,72 @@
const got = require('@/utils/got');
const cheerio = require('cheerio');
const path = require('path');
const { art } = require('@/utils/render');
const timezone = require('@/utils/timezone');
const { parseDate } = require('@/utils/parse-date');
module.exports = async (ctx) => {
const category = ctx.params.category ?? 'news';
const rootUrl = 'https://focustaiwan.tw';
const currentUrl = `${rootUrl}/cna2019api/cna/FTNewsList`;
const response = await got({
method: 'post',
url: currentUrl,
form: {
action: 4,
category,
pageidx: 2,
pagesize: 50,
},
});
const list = response.data.ResultData.Items.map((item) => ({
title: item.HeadLine,
link: item.PageUrl,
category: item.ClassName,
pubDate: timezone(parseDate(item.CreateTime), +8),
}));
const items = await Promise.all(
list.map((item) =>
ctx.cache.tryGet(item.link, async () => {
const detailResponse = await got({
method: 'get',
url: item.link,
});
const content = cheerio.load(detailResponse.data);
content('img').each(function () {
content(this).html(`<img src="${content(this).attr('data-src')}">`);
});
const image = content('meta[property="og:image"]').attr('content');
const matches = detailResponse.data.match(/var pAudio_url = "(.*)\.mp3";/);
if (matches) {
item.enclosure_url = matches[1];
item.enclosure_type = 'audio/mpeg';
item.itunes_item_image = image;
}
item.description = art(path.join(__dirname, 'templates/article.art'), {
image,
description: content('.paragraph').html(),
});
return item;
})
)
);
ctx.state.data = {
title: response.data.ResultData.MetaData.Title,
link: response.data.ResultData.MetaData.CanonicalUrl,
item: items,
itunes_author: 'Focus Taiwan',
image: 'https://imgcdn.cna.com.tw/Eng/website/img/default.png',
};
};

View File

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

View File

@ -0,0 +1,13 @@
module.exports = {
'focustaiwan.tw': {
_name: 'Focus Taiwan',
'.': [
{
title: 'Category',
docs: 'https://docs.rsshub.app/new-media.html#focus-taiwan-category',
source: ['/:category', '/'],
target: '/focustaiwan/category?',
},
],
},
};

View File

@ -0,0 +1,3 @@
module.exports = function (router) {
router.get('/:category?', require('./index'));
};

View File

@ -0,0 +1 @@
<img src="{{ image }}"><div>{{@ description }}</div>