Skip to content

Commit

Permalink
feat(route): 新增博客道宣的窝 (DIYgod#17890)
Browse files Browse the repository at this point in the history
* 尝试

* /daoxuan

* 修改example

* Update lib/routes/daoxuan/rss.ts

---------
  • Loading branch information
dx2331lxz authored Dec 13, 2024
1 parent a5deeb3 commit 7fda7a2
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/routes/daoxuan/namespace.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import type { Namespace } from '@/types';

export const namespace: Namespace = {
name: '道宣的窝',
url: 'daoxuan.cc',
lang: 'zh-CN',
};
43 changes: 43 additions & 0 deletions lib/routes/daoxuan/rss.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
import { Route } from '@/types';
import got from '@/utils/got';
import { load } from 'cheerio';
import { parseDate } from '@/utils/parse-date';

export const route: Route = {
path: '/',
categories: ['blog'],
example: '/daoxuan',
radar: [
{
source: ['daoxuan.cc/'],
},
],
name: '推荐阅读文章',
maintainers: ['dx2331lxz'],
url: 'daoxuan.cc/',
handler,
};

async function handler() {
const url = 'https://daoxuan.cc/';
const response = await got({ method: 'get', url });
const $ = load(response.data);
const items = $('div.recent-post-item')
.toArray()
.map((item) => {
item = $(item);
const a = item.find('a.article-title').first();
const timeElement = item.find('time').first();
return {
title: a.attr('title'),
link: `https://daoxuan.cc${a.attr('href')}`,
pubDate: parseDate(timeElement.attr('datetime')),
description: a.attr('title'),
};
});
return {
title: '道宣的窝',
link: url,
item: items,
};
}

0 comments on commit 7fda7a2

Please sign in to comment.