feat(route): add csdnblogs route (#11532)

* feat(route): add csdnblogs route

* fix: maintainer
This commit is contained in:
烟草的香味
2023-01-02 03:50:01 +08:00
committed by GitHub
parent a06ac24ab7
commit 2bfc93f61a
5 changed files with 115 additions and 0 deletions

38
lib/v2/cnblogs/common.js Normal file
View File

@@ -0,0 +1,38 @@
const got = require('@/utils/got');
const cheerio = require('cheerio');
const { parseDate } = require('@/utils/parse-date');
const timezone = require('@/utils/timezone');
module.exports = async (ctx) => {
const link = `https://www.cnblogs.com${ctx.path}`;
const response = await got(link);
const data = response.data;
const $ = cheerio.load(data);
const list = $('#post_list article')
.toArray()
.map((item) => {
item = $(item);
return {
title: item.find('.post-item-title').text(),
link: item.find('.post-item-title').attr('href'),
pubDate: timezone(
parseDate(
item.find('.post-item-foot .post-meta-item span').text() ||
item.find('.editorpick-item-meta').text(),
['YYYY-MM-DD HH:mm', 'YYYY-MM-DD']
),
+8
),
description: item.find('.post-item-summary').text(),
author: item.find('.post-item-author span').text(),
};
});
ctx.state.data = {
title: $('title').text(),
link,
item: list,
};
};

View File

@@ -0,0 +1,7 @@
module.exports = {
'/aggsite/topdiggs': ['hujingnb'],
'/aggsite/topviews': ['hujingnb'],
'/aggsite/headline': ['hujingnb'],
'/cate/:type': ['hujingnb'],
'/pick': ['hujingnb'],
};

37
lib/v2/cnblogs/radar.js Normal file
View File

@@ -0,0 +1,37 @@
module.exports = {
'cnblogs.com': {
_name: '博客园',
www: [
{
title: '10天推荐排行榜',
docs: 'https://docs.rsshub.app/blog.html#博客园',
source: ['/aggsite/topdiggs'],
target: '/cnblogs/aggsite/topdiggs',
},
{
title: '48小时阅读排行',
docs: 'https://docs.rsshub.app/blog.html#博客园',
source: ['/aggsite/topviews'],
target: '/cnblogs/aggsite/topviews',
},
{
title: '编辑推荐',
docs: 'https://docs.rsshub.app/blog.html#博客园',
source: ['/aggsite/headline'],
target: '/cnblogs/aggsite/headline',
},
{
title: '分类',
docs: 'https://docs.rsshub.app/blog.html#博客园',
source: ['/cate/:type'],
target: '/cnblogs/cate/:type',
},
{
title: '精华区',
docs: 'https://docs.rsshub.app/blog.html#博客园',
source: ['/pick'],
target: '/cnblogs/pick',
},
],
},
};

7
lib/v2/cnblogs/router.js Normal file
View File

@@ -0,0 +1,7 @@
module.exports = (router) => {
router.get('/aggsite/topdiggs', require('./common'));
router.get('/aggsite/topviews', require('./common'));
router.get('/aggsite/headline', require('./common'));
router.get('/cate/:type', require('./common'));
router.get('/pick', require('./common'));
};