rsshub
Version:
Make RSS Great Again!
78 lines (68 loc) • 2.28 kB
text/typescript
import ofetch from '@/utils/ofetch';
import { load } from 'cheerio';
import cache from '@/utils/cache';
import { Route } from '@/types';
import pMap from 'p-map';
export const route: Route = {
path: '/news',
categories: ['programming'],
example: '/anthropic/news',
parameters: {},
radar: [
{
source: ['www.anthropic.com/news', 'www.anthropic.com'],
},
],
name: 'News',
maintainers: ['etShaw-zh'],
handler,
url: 'www.anthropic.com/news',
};
async function handler() {
const link = 'https://www.anthropic.com/news';
const response = await ofetch(link);
const $ = load(response);
const list = $('.contentFadeUp a')
.toArray()
.map((e) => {
e = $(e);
const title = e.find('h3[class^="PostCard_post-heading__"]').text().trim();
const href = e.attr('href');
const pubDate = e.find('div[class^="PostList_post-date__"]').text().trim();
const fullLink = href.startsWith('http') ? href : `https://www.anthropic.com${href}`;
return {
title,
link: fullLink,
pubDate,
};
});
const out = await pMap(
list,
(item) =>
cache.tryGet(item.link, async () => {
const response = await ofetch(item.link);
const $ = load(response);
$('div[class^="PostDetail_b-social-share"]').remove();
const content = $('div[class*="PostDetail_post-detail__"]');
content.find('img').each((_, e) => {
const $e = $(e);
$e.removeAttr('style srcset');
const src = $e.attr('src');
const params = new URLSearchParams(src);
const newSrc = params.get('/_next/image?url');
if (newSrc) {
$e.attr('src', newSrc);
}
});
item.description = content.html();
return item;
}),
{ concurrency: 5 }
);
return {
title: 'Anthropic News',
link,
description: 'Latest news from Anthropic',
item: out,
};
}