mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-03 02:28:23 +08:00
feat(route): add csdnblogs route (#11532)
* feat(route): add csdnblogs route * fix: maintainer
This commit is contained in:
38
lib/v2/cnblogs/common.js
Normal file
38
lib/v2/cnblogs/common.js
Normal 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,
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user