93 lines
2.9 KiB
TypeScript
93 lines
2.9 KiB
TypeScript
import { load } from 'cheerio';
|
||
import { raw } from 'hono/html';
|
||
import { renderToString } from 'hono/jsx/dom/server';
|
||
|
||
import type { Route } from '@/types';
|
||
import cache from '@/utils/cache';
|
||
import got from '@/utils/got';
|
||
import { parseDate } from '@/utils/parse-date';
|
||
import timezone from '@/utils/timezone';
|
||
|
||
export const route: Route = {
|
||
path: '/community',
|
||
categories: ['programming'],
|
||
example: '/modelscope/community',
|
||
parameters: {},
|
||
features: {
|
||
requireConfig: false,
|
||
requirePuppeteer: false,
|
||
antiCrawler: false,
|
||
supportBT: false,
|
||
supportPodcast: false,
|
||
supportScihub: false,
|
||
},
|
||
radar: [
|
||
{
|
||
source: ['community.modelscope.cn/'],
|
||
},
|
||
],
|
||
name: 'DevPress 官方社区',
|
||
maintainers: ['TonyRL'],
|
||
handler,
|
||
url: 'community.modelscope.cn/',
|
||
};
|
||
|
||
const renderDescription = (thumb, quote, content) =>
|
||
renderToString(
|
||
<>
|
||
{thumb ? (
|
||
<>
|
||
<img src={thumb} />
|
||
<br />
|
||
</>
|
||
) : null}
|
||
{quote ? <blockquote>{quote}</blockquote> : null}
|
||
{content ? <>{raw(content)}</> : null}
|
||
</>
|
||
);
|
||
|
||
async function handler(ctx) {
|
||
const baseUrl = 'https://community.modelscope.cn';
|
||
|
||
const { data } = await got.post(`${baseUrl}/v1/namespace_page/article`, {
|
||
json: { id: 142373, notInMediaAidList: [], pageNum: 1, pageSize: ctx.req.query('limit') ? Number.parseInt(ctx.req.query('limit')) : 30 },
|
||
});
|
||
|
||
const articles = data.data.content.map((c) => ({
|
||
title: c.content.name,
|
||
description: c.content.desc,
|
||
author: c.nickname,
|
||
link: `${baseUrl}/${c.content.id}.html`,
|
||
pubDate: timezone(parseDate(c.content.createdTime), 8),
|
||
category: c.content.externalData.tags.map((t) => t.name),
|
||
thumb: c.content.thumb,
|
||
}));
|
||
|
||
const items = await Promise.all(
|
||
articles.map((item) =>
|
||
cache.tryGet(item.link, async () => {
|
||
const { data } = await got(item.link);
|
||
|
||
const $ = load(data);
|
||
const initialData = JSON.parse(
|
||
$('script')
|
||
.text()
|
||
.match(/window\.__INITIAL_STATE__\s*=\s*({.*?});/)[1]
|
||
);
|
||
|
||
item.description = renderDescription(item.thumb, item.description, initialData.pageData.detail.ext.content);
|
||
|
||
return item;
|
||
})
|
||
)
|
||
);
|
||
|
||
return {
|
||
title: 'ModelScope魔搭社区-DevPress官方社区',
|
||
description: 'ModelScope魔搭社区 DevPress官方社区-ModelScope旨在打造下一代开源的模型即服务共享平台,为泛AI开发者提供灵活、易用、低成本的一站式模型服务产品,让模型应用更简单。',
|
||
image: 'https://g.alicdn.com/sail-web/maas/0.8.10/favicon/128.ico',
|
||
link: baseUrl,
|
||
item: items,
|
||
};
|
||
}
|