rsshub
Version:
Make RSS Great Again!
49 lines (43 loc) • 1.26 kB
text/typescript
import { Route } from '@/types';
import { parseDate } from '@/utils/parse-date';
import got from '@/utils/got';
import { load } from 'cheerio';
export const route: Route = {
path: '/',
categories: ['blog'],
example: '/zrblog',
radar: [
{
source: ['zrblog.net/'],
},
],
name: '最新文章',
maintainers: ['cnkmmk'],
handler,
url: 'zrblog.net/',
};
async function handler() {
const url = 'https://www.zrblog.net/';
const response = await got({ method: 'get', url });
const $ = load(response.data);
const list = $('div.art_img_box')
.toArray()
.map((e) => {
const element = $(e);
const title = element.find('h2 > a').attr('title');
const link = element.find('h2 > a').attr('href');
const description = element.find('p.intro').text();
const dateraw = element.find('div.info').find('span').eq(0).text();
return {
title,
description,
link,
pubDate: parseDate(dateraw, '发布日期:YYYY年MM月DD日'),
};
});
return {
title: '赵容部落',
link: url,
item: list,
};
}