feat(route): Add RSS feed for MIT HAN Lab Blog (#19795)

* feat: Add RSS feed for MIT HAN Lab Blog

- add a new RSS feed for the MIT HAN Lab blog (https://hanlab.mit.edu/blog), available at the route `/mit/hanlab/blog`.
- include the title, link, date, and a TL;DR snippet for each post.

* Update lib/routes/mit/hanlab.ts

---------

Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
This commit is contained in:
Tsung-Han Yu 2025-08-12 02:10:34 +08:00 committed by GitHub
parent 28d93675a8
commit a89d26e5ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 67 additions and 0 deletions

61
lib/routes/mit/hanlab.ts Normal file
View File

@ -0,0 +1,61 @@
import { Route } from '@/types';
import got from '@/utils/got';
import { parseDate } from '@/utils/parse-date';
import { load } from 'cheerio';
export const route: Route = {
path: '/hanlab/blog',
categories: ['blog'],
example: '/mit/hanlab/blog',
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['hanlab.mit.edu/blog'],
},
],
name: 'HAN Lab Blog',
maintainers: ['johan456789'],
handler,
description: 'MIT HAN Lab pioneers research in efficient AI, advancing algorithms and hardware to make generative models faster, smarter, and more accessible.',
};
async function handler() {
const rootUrl = 'https://hanlab.mit.edu';
const currentUrl = `${rootUrl}/blog`;
const response = await got(currentUrl);
const $ = load(response.data);
const items = $('a.post-card-wrapper')
.toArray()
.map((item) => {
const el = $(item);
const titleEl = el.find('h3.text-title');
const title = titleEl.text().trim();
const link = new URL(el.attr('href') ?? '', rootUrl).href;
const description = el.find('p.text-tldr').html() ?? undefined;
const dateText = el.find('div.text-date').text().trim();
const pubDate = parseDate(dateText);
return {
title,
link,
description,
pubDate,
};
});
return {
title: 'MIT HAN Lab Blog',
link: currentUrl,
item: items,
};
}

View File

@ -0,0 +1,6 @@
import type { Namespace } from '@/types';
export const namespace: Namespace = {
name: 'Massachusetts Institute of Technology',
url: 'mit.edu',
};