mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-09-21 12:49:53 +08:00
* feat(types): add upvotes, downvotes, and comments to DataItem * refactor: fix TS2339 * refactor: fix TS2322 * refactor: fix TS2322 * refactor: fix TS2345 * refactor: fix TS2339 * refactor: fix TS2322 * refactor: fix TS2345 * refactor: fix TS2531/2532/18048/18047 * refactor: fix TS18046/TS2571 * refactor: fix TS2538 * refactor: fix TS2554/2769/2558 * refactor: fix TS2362/2363 * refactor: fix TS2353/TS2561 * refactor: fix TS2741/2739/2740 * refactor: fix TS2304 TS2307 TS2305 TS2614 TS2552 TS2551 * refactor: fix TS2352 * refactor: fix TS2604 TS17001 * refactor: fix TS2367 TS2366 * refactor: fix TS2493 * refactor: fix TS2454 * refactor: fix TS2790 * refactor: fix TS2488 * refactor: fix TS2677 * refactor: fix TS18048/18049/2532 * refactor: fix TS2322 * refactor: fix TS2344 * refactor: fix TS2339 * refactor: fix TS2339 * refactor: fix TS2365 * refactor: fix TS1117 * refactor: fix TS2561 * refactor: fix TS2555 * refactor: fix TS2503 * refactor: fix TS2339 mobile api no longer work * fix: clean slop * fix: use Context instead of any * fix: fix more typing after merge * fix: add void return for ctx.redirect in handler * chore: add type check to lint and husky * fix: remove ts ignore * chore: add oxlint rule * fix: suppress build artifact * fix: update getArticles to use cache * fix: codeql * fix(route/typeless): use async gunzip * fix: address review * fix: address review * fix: double quotes escape
134 lines
4.3 KiB
TypeScript
134 lines
4.3 KiB
TypeScript
import { load } from 'cheerio';
|
|
|
|
import type { DataItem, Language, Route } from '@/types';
|
|
import cache from '@/utils/cache';
|
|
import got from '@/utils/got';
|
|
import { parseDate } from '@/utils/parse-date';
|
|
|
|
import { renderDescription } from './templates/description';
|
|
|
|
export const route: Route = {
|
|
path: '/v/:category{.+}?',
|
|
categories: ['traditional-media'],
|
|
example: '/iqilu/v/sdws/sdxwlb',
|
|
parameters: {
|
|
category: '节目 id,可在对应节目页 URL 中找到,见下表,默认为 `sdws/sdxwlb`,即山东新闻联播',
|
|
},
|
|
features: {
|
|
supportPodcast: true,
|
|
},
|
|
name: '电视节目',
|
|
maintainers: ['nczitzk'],
|
|
description: `| 节目名称 | 节目 id |
|
|
| ---------------- | -------------- |
|
|
| 山东新闻联播 | sdws/sdxwlb |
|
|
| 闪电大视野 | ggpd/sddsy |
|
|
| 山东三农新闻联播 | nkpd/snxw |
|
|
| 每日新闻 | qlpd/mrxw |
|
|
| 新闻午班车 | ggpd/xwwbc |
|
|
| 戏宇宙 | sdws/xyz/ |
|
|
| 中国礼 中国乐 | qlpd/zglzgy |
|
|
| 超级语文课 | sdws/cjywk |
|
|
| 文物里的山东 | yspd/wwldsd |
|
|
| 拉呱 | qlpd/l0 |
|
|
| 生活帮 | shpd/shb |
|
|
| 快乐大赢家 | zypd/kldyj |
|
|
| 乡村季风 | nkpd/xcjf |
|
|
| 健康是 1 | ggpd/jks1 |
|
|
| 此时此刻 | sdws/cishicike |`,
|
|
handler,
|
|
};
|
|
|
|
async function handler(ctx) {
|
|
const { category = 'sdws/sdxwlb' } = ctx.req.param();
|
|
const limit = ctx.req.query('limit') ? Number(ctx.req.query('limit')) : 30;
|
|
|
|
const rootUrl = 'http://v.iqilu.com';
|
|
const currentUrl = new URL(category, rootUrl).href;
|
|
|
|
const { data: response } = await got(currentUrl);
|
|
|
|
const $ = load(response);
|
|
|
|
let items = $('#jmzhanshi1 dl')
|
|
.slice(0, limit)
|
|
.toArray()
|
|
.map((item): DataItem => {
|
|
const $item = $(item);
|
|
|
|
const a = $item.find('a').first();
|
|
const image = $item.find('img').first();
|
|
|
|
$item.find('dd').last().remove();
|
|
|
|
return {
|
|
title: a.prop('title') ?? '',
|
|
link: a.prop('href'),
|
|
description: renderDescription({
|
|
image: {
|
|
src: image.prop('src'),
|
|
alt: image.prop('alt'),
|
|
},
|
|
}),
|
|
pubDate: parseDate(
|
|
$item
|
|
.find('dd')
|
|
.last()
|
|
.text()
|
|
.match(/(\d{4}-\d{2}-\d{2})/)![1]
|
|
),
|
|
itunes_item_image: image.prop('src'),
|
|
};
|
|
});
|
|
|
|
items = await Promise.all(
|
|
items.map((item) =>
|
|
cache.tryGet(item.link!, async () => {
|
|
const { data: detailResponse } = await got(item.link);
|
|
|
|
const content = load(detailResponse);
|
|
|
|
item.title = content('div.vtitle').text();
|
|
item.enclosure_url = content('#copy_mp4text').prop('value');
|
|
item.enclosure_type = item.enclosure_url ? `video/${item.enclosure_url.split(/\./).pop()}` : undefined;
|
|
|
|
item.description = renderDescription({
|
|
image: {
|
|
src: item.itunes_item_image,
|
|
alt: item.title,
|
|
},
|
|
video: {
|
|
src: item.enclosure_url,
|
|
type: item.enclosure_type,
|
|
},
|
|
description: content('div.vinfo').text().trim(),
|
|
});
|
|
|
|
return item;
|
|
})
|
|
)
|
|
);
|
|
|
|
const icon = new URL($('link[rel="icon"]').prop('href')!, rootUrl).href;
|
|
const author = $('div.host_pic dl dd a')
|
|
.toArray()
|
|
.map((a) => $(a).text())
|
|
.join('/');
|
|
|
|
return {
|
|
item: items,
|
|
title: $('title').text(),
|
|
link: currentUrl,
|
|
description: $('meta[name="description"]').prop('content'),
|
|
language: $('html').prop('lang') as Language,
|
|
image: $('div.s_logo img').prop('src'),
|
|
icon,
|
|
logo: icon,
|
|
subtitle: $('meta[name="keywords"]').prop('content'),
|
|
author,
|
|
itunes_author: author,
|
|
itunes_category: 'News',
|
|
allowEmpty: true,
|
|
};
|
|
}
|