From deee22ee8cb43e471f22ea5d8bf67bd70bf43b82 Mon Sep 17 00:00:00 2001 From: Ethan Shen <42264778+nczitzk@users.noreply.github.com> Date: Wed, 23 Jul 2025 01:02:35 +0800 Subject: [PATCH] feat(route): add Yu Gao's Blog (#19666) --- lib/routes/gaoyu/blog.ts | 145 +++++++++++++++++++++ lib/routes/gaoyu/namespace.ts | 9 ++ lib/routes/gaoyu/templates/description.art | 7 + 3 files changed, 161 insertions(+) create mode 100644 lib/routes/gaoyu/blog.ts create mode 100644 lib/routes/gaoyu/namespace.ts create mode 100644 lib/routes/gaoyu/templates/description.art diff --git a/lib/routes/gaoyu/blog.ts b/lib/routes/gaoyu/blog.ts new file mode 100644 index 000000000..59944c8a3 --- /dev/null +++ b/lib/routes/gaoyu/blog.ts @@ -0,0 +1,145 @@ +import { type Data, type DataItem, type Route, ViewType } from '@/types'; + +import { art } from '@/utils/render'; +import cache from '@/utils/cache'; +import ofetch from '@/utils/ofetch'; +import { parseDate } from '@/utils/parse-date'; + +import { type CheerioAPI, type Cheerio, load } from 'cheerio'; +import type { Element } from 'domhandler'; +import { type Context } from 'hono'; +import path from 'node:path'; + +export const handler = async (ctx: Context): Promise => { + const limit: number = Number.parseInt(ctx.req.query('limit') ?? '20', 10); + + const baseUrl: string = 'https://www.gaoyu.me'; + const targetUrl: string = new URL('blog', baseUrl).href; + + const response = await ofetch(targetUrl); + const $: CheerioAPI = load(response); + const language = $('html').attr('lang') ?? 'zh-cn'; + + const authors: DataItem['author'] = [ + { + name: 'Yu Gao', + url: baseUrl, + avatar: undefined, + }, + ]; + + let items: DataItem[] = []; + + items = $('a.flex-col') + .slice(0, limit) + .toArray() + .map((el): Element => { + const $el: Cheerio = $(el); + + const title: string = $el.find('p.text-neutral-900').text(); + const description: string | undefined = art(path.join(__dirname, 'templates/description.art'), { + intro: $el.find('p.text-neutral-600').last().html(), + }); + const pubDateStr: string | undefined = $el.find('p.text-neutral-600').first().text(); + const linkUrl: string | undefined = $el.attr('href'); + const upDatedStr: string | undefined = pubDateStr; + + const processedItem: DataItem = { + title, + description, + pubDate: pubDateStr ? parseDate(pubDateStr) : undefined, + link: linkUrl ? new URL(linkUrl, baseUrl).href : undefined, + author: authors, + content: { + html: description, + text: description, + }, + updated: upDatedStr ? parseDate(upDatedStr) : undefined, + language, + }; + + return processedItem; + }); + + items = await Promise.all( + items.map((item) => { + if (!item.link) { + return item; + } + + return cache.tryGet(item.link, async (): Promise => { + const detailResponse = await ofetch(item.link); + const $$: CheerioAPI = load(detailResponse); + + const title: string = $$('h1.title').text(); + const description: string | undefined = + item.description + + art(path.join(__dirname, 'templates/description.art'), { + description: $$('article.prose').html(), + }); + const pubDateStr: string | undefined = $$('meta[property="article:published_time"]').attr('content'); + const image: string | undefined = $$('meta[property="og:image"]').attr('content'); + const upDatedStr: string | undefined = pubDateStr; + + const processedItem: DataItem = { + title, + description, + pubDate: pubDateStr ? parseDate(pubDateStr) : item.pubDate, + author: authors, + content: { + html: description, + text: description, + }, + image, + banner: image, + updated: upDatedStr ? parseDate(upDatedStr) : item.updated, + language, + }; + + return { + ...item, + ...processedItem, + }; + }); + }) + ); + + return { + title: $('title').text(), + description: $('meta[property="og:description"]').attr('content'), + link: targetUrl, + item: items, + allowEmpty: true, + author: $('meta[property="og:site_name"]').attr('content'), + language, + id: targetUrl, + }; +}; + +export const route: Route = { + path: '/blog', + name: 'Blog', + url: 'www.gaoyu.me', + maintainers: ['nczitzk'], + handler, + example: '/gaoyu/blog', + parameters: undefined, + description: undefined, + categories: ['blog'], + features: { + requireConfig: false, + requirePuppeteer: false, + antiCrawler: false, + supportRadar: true, + supportBT: false, + supportPodcast: false, + supportScihub: false, + }, + radar: [ + { + source: ['www.gaoyu.me/blog'], + target: '/blog', + }, + ], + view: ViewType.Articles, +}; diff --git a/lib/routes/gaoyu/namespace.ts b/lib/routes/gaoyu/namespace.ts new file mode 100644 index 000000000..ff5c8403e --- /dev/null +++ b/lib/routes/gaoyu/namespace.ts @@ -0,0 +1,9 @@ +import type { Namespace } from '@/types'; + +export const namespace: Namespace = { + name: 'Yu Gao', + url: 'gaoyu.me', + categories: ['blog'], + description: '', + lang: 'zh-CN', +}; diff --git a/lib/routes/gaoyu/templates/description.art b/lib/routes/gaoyu/templates/description.art new file mode 100644 index 000000000..57498ab45 --- /dev/null +++ b/lib/routes/gaoyu/templates/description.art @@ -0,0 +1,7 @@ +{{ if intro }} +
{{ intro }}
+{{ /if }} + +{{ if description }} + {{@ description }} +{{ /if }} \ No newline at end of file