Skip to content

Commit

Permalink
feat(route): support europechinese (DIYgod#15019)
Browse files Browse the repository at this point in the history
* support europechinese

* fix time
  • Loading branch information
emdoe authored Apr 4, 2024
1 parent 5da0ec1 commit 3ba4a63
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 0 deletions.
66 changes: 66 additions & 0 deletions lib/routes/europechinese/latest.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
import { Route } from '@/types';
import { load } from 'cheerio';
import cache from '@/utils/cache';
import got from '@/utils/got';

export const route: Route = {
path: '/latest',
categories: ['new-media'],
example: '/europechinese/latest',
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['europechinese.blogspot.com'],
},
],
name: '最新',
maintainers: ['emdoe'],
handler,
url: 'europechinese.blogspot.com/',
};

async function handler() {
const url = `https://europechinese.blogspot.com/`;
const { data: response } = await got(url);
const $ = load(response);
const list = $('h3.post-title');

const out = await Promise.all(
list.map((_, item) => {
const title = $(item).find('a').text();
const link = $(item).find('a').attr('href');

return cache.tryGet(link, async () => {
const { data: response } = await got(link);
const $ = load(response);
$('div.widget-content').remove();
$('div.byline').remove();
$('div.post-sidebar').remove();
const time = $('time.published').attr('datetime');
const text = $('div.post-body-container').html();

return {
title,
link,
guid: link,
description: text,
pubDate: time,
};
});
})
);

return {
title: `歐洲動態(國際)| 最新`,
link: url,
item: out,
};
}
6 changes: 6 additions & 0 deletions lib/routes/europechinese/namespace.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import type { Namespace } from '@/types';

export const namespace: Namespace = {
name: '歐洲動態(國際)',
url: 'europechinese.blogspot.com',
};

0 comments on commit 3ba4a63

Please sign in to comment.