63 lines
1.7 KiB
TypeScript
63 lines
1.7 KiB
TypeScript
import { load } from 'cheerio';
|
|
|
|
import type { Data, Route } from '@/types';
|
|
import ofetch from '@/utils/ofetch';
|
|
import { parseDate } from '@/utils/parse-date';
|
|
|
|
export const route: Route = {
|
|
path: '/blog',
|
|
categories: ['blog'],
|
|
example: '/flashcat/blog',
|
|
parameters: {},
|
|
features: {
|
|
requireConfig: false,
|
|
requirePuppeteer: false,
|
|
antiCrawler: false,
|
|
supportBT: false,
|
|
supportPodcast: false,
|
|
supportScihub: false,
|
|
},
|
|
radar: [
|
|
{
|
|
source: ['flashcat.cloud/blog'],
|
|
target: '/blog',
|
|
},
|
|
],
|
|
name: '快猫星云博客',
|
|
maintainers: ['chesha1'],
|
|
handler: handlerRoute,
|
|
};
|
|
|
|
async function handlerRoute(): Promise<Data> {
|
|
const response = await ofetch('https://flashcat.cloud/blog/');
|
|
const $ = load(response);
|
|
|
|
const items = $('.post-preview')
|
|
.toArray()
|
|
.map((elem) => {
|
|
const $elem = $(elem);
|
|
return {
|
|
title: $elem.find('.post-title').text(),
|
|
description: $elem.find('.post-content-preview').text(),
|
|
link: $elem.find('a').attr('href'),
|
|
pubDate: parseDate(
|
|
$elem
|
|
.find('.post-meta')
|
|
.text()
|
|
.match(/on\s+(\w+,\s+\w+\s+\d{1,2},\s+\d{4})/)?.[1] || ''
|
|
),
|
|
author:
|
|
$elem
|
|
.find('.post-meta')
|
|
.text()
|
|
.match(/by\s+(.+?)\s+on/)?.[1] || '',
|
|
};
|
|
});
|
|
|
|
return {
|
|
title: 'Flashcat 快猫星云博客',
|
|
link: 'https://flashcat.cloud/blog/',
|
|
item: items,
|
|
};
|
|
}
|