feat(route): add 早报网 (#12981)

This commit is contained in:
Ethan Shen
2023-08-11 03:17:25 +08:00
committed by GitHub
parent 57b8489f5b
commit cb7a9fa5a7
5 changed files with 109 additions and 0 deletions
+12
View File
@@ -4862,6 +4862,18 @@ column 为 third 时可选的 category:
<Route author="x2009again" example="/yunspe/newsflash" path="/yunspe/newsflash" />
## 早报网
### 每日早报
<Route author="nczitzk" example="/qqorw" path="/qqorw/:category?" :paramsDesc="['分类,见下表,默认为首页']" radar="1" rssbud="1">
| 首页 | 每日早报 | 国际早报 | 生活冷知识 |
| ---- | -------- | -------- | ---------- |
| | mrzb | zbapp | zbzzd |
</Route>
## 知园
### Newsletter
+77
View File
@@ -0,0 +1,77 @@
const got = require('@/utils/got');
const cheerio = require('cheerio');
const timezone = require('@/utils/timezone');
const { parseDate } = require('@/utils/parse-date');
module.exports = async (ctx) => {
const { category = '' } = ctx.params;
const limit = ctx.query.limit ? parseInt(ctx.query.limit, 10) : 10;
const rootUrl = 'https://qqorw.cn';
const currentUrl = new URL(category, rootUrl).href;
const { data: response } = await got(currentUrl);
const $ = cheerio.load(response);
let items = $('article.excerpt')
.slice(0, limit)
.toArray()
.map((item) => {
item = $(item);
const a = item.find('h2 a');
return {
title: a.text(),
link: a.prop('href'),
description: item.find('span.note').text(),
category: item
.find('a.label')
.toArray()
.map((c) => $(c).text()),
pubDate: timezone(parseDate(item.find('p.auth-span span.muted').first().text().trim()), +8),
upvotes: item.find('span.count').text() ? parseInt(item.find('span.count').text(), 10) : 0,
};
});
items = await Promise.all(
items.map((item) =>
ctx.cache.tryGet(item.link, async () => {
const { data: detailResponse } = await got(item.link);
const content = cheerio.load(detailResponse);
content('div.contenttxt').prev().nextAll().remove();
item.title = content('h1.article-title').text();
item.description = content('article.article-content').html();
item.author = content('i.fa-user').parent().text().trim();
item.category = content('#mute-category')
.toArray()
.map((c) => content(c).text().trim());
item.pubDate = item.pubDate ?? parseDate(content('i.fa-clock-o').parent().text().trim());
item.upvotes = content('#Addlike span.count').text() ? parseInt(content('#Addlike span.count').text(), 10) : item.upvotes;
return item;
})
)
);
const author = '早报网';
const icon = new URL('favicon.ico', rootUrl).href;
const title = $('header.archive-header h1 a').last().text();
ctx.state.data = {
item: items,
title: `${author}${title ? ` - ${title}` : ''}`,
link: currentUrl,
description: $('meta[name="description"]').prop('content'),
language: 'zh-cn',
image: new URL($('h1.site-title a img').prop('src'), rootUrl).href,
icon,
logo: icon,
subtitle: $('meta[name="keywords"]').prop('content'),
author,
};
};
+4
View File
@@ -0,0 +1,4 @@
module.exports = {
'/:category?': ['nczitzk'],
'': ['nczitzk'],
};
+13
View File
@@ -0,0 +1,13 @@
module.exports = {
'qqorw.cn': {
_name: '早报网',
'.': [
{
title: '分类',
docs: 'https://docs.rsshub.app/new-media.html#zao-bao-wang-fen-lei',
source: ['/:category', '/'],
target: '/qqorw/:category?',
},
],
},
};
+3
View File
@@ -0,0 +1,3 @@
module.exports = function (router) {
router.get('/:category?', require('./'));
};