162 lines
5.6 KiB
TypeScript
162 lines
5.6 KiB
TypeScript
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<Data> => {
|
|
const limit: number = Number.parseInt(ctx.req.query('limit') ?? '50', 10);
|
|
|
|
const baseUrl: string = 'https://augmentcode.com';
|
|
const targetUrl: string = new URL('blog', baseUrl).href;
|
|
|
|
const response = await ofetch(targetUrl);
|
|
const $: CheerioAPI = load(response);
|
|
const language = $('html').attr('lang') ?? 'en';
|
|
|
|
let items: DataItem[] = [];
|
|
|
|
items = $('div[data-slot="card"]')
|
|
.slice(0, limit)
|
|
.toArray()
|
|
.map((el): Element => {
|
|
const $el: Cheerio<Element> = $(el);
|
|
|
|
const title: string = $el.find('div[data-slot="card-content"]').text();
|
|
const pubDateStr: string | undefined = $el.find('div[data-slot="card-footer"] p').last().text();
|
|
const linkUrl: string | undefined = $el.parent().attr('href');
|
|
const authorEls: Element[] = $el.find('div[data-slot="card-footer"] p').first().find('span').toArray();
|
|
const authors: DataItem['author'] = authorEls.map((authorEl) => {
|
|
const $authorEl: Cheerio<Element> = $(authorEl);
|
|
|
|
return {
|
|
name: $authorEl.contents().first().text(),
|
|
url: undefined,
|
|
avatar: undefined,
|
|
};
|
|
});
|
|
const image: string | undefined = $el.find('div[data-slot="card-header"] img').attr('src');
|
|
const upDatedStr: string | undefined = pubDateStr;
|
|
|
|
const processedItem: DataItem = {
|
|
title,
|
|
pubDate: pubDateStr ? parseDate(pubDateStr) : undefined,
|
|
link: linkUrl ? new URL(linkUrl, baseUrl).href : undefined,
|
|
author: authors,
|
|
image,
|
|
banner: image,
|
|
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<DataItem> => {
|
|
const detailResponse = await ofetch(item.link);
|
|
const $$: CheerioAPI = load(detailResponse);
|
|
|
|
const title: string = $$('article h1').text();
|
|
const image: string | undefined = $$('meta[property="og:image"]').attr('content') ?? item.image;
|
|
const description: string | undefined = art(path.join(__dirname, 'templates/description.art'), {
|
|
images: image
|
|
? [
|
|
{
|
|
src: image,
|
|
alt: title,
|
|
},
|
|
]
|
|
: undefined,
|
|
description: $$('div.prose').html(),
|
|
});
|
|
const pubDateStr: string | undefined = $$('meta[property="article:published_time"]').attr('content');
|
|
const authorEls: Element[] = $$('meta[property="article:author"]').toArray();
|
|
const authors: DataItem['author'] = authorEls.map((authorEl) => {
|
|
const $$authorEl: Cheerio<Element> = $$(authorEl);
|
|
|
|
return {
|
|
name: $$authorEl.attr('content'),
|
|
url: undefined,
|
|
avatar: undefined,
|
|
};
|
|
});
|
|
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,
|
|
};
|
|
});
|
|
})
|
|
);
|
|
|
|
const title: string = $('title').text();
|
|
|
|
return {
|
|
title,
|
|
description: $('meta[name="description"]').attr('content'),
|
|
link: targetUrl,
|
|
item: items,
|
|
allowEmpty: true,
|
|
image: $('meta[property="og:image"]').attr('content'),
|
|
author: title.split(/-/).pop()?.trim(),
|
|
language,
|
|
id: targetUrl,
|
|
};
|
|
};
|
|
|
|
export const route: Route = {
|
|
path: '/blog',
|
|
name: 'Blog',
|
|
url: 'augmentcode.com',
|
|
maintainers: ['nczitzk'],
|
|
handler,
|
|
example: '/augmentcode/blog',
|
|
parameters: undefined,
|
|
description: undefined,
|
|
categories: ['programming'],
|
|
features: {
|
|
requireConfig: false,
|
|
requirePuppeteer: false,
|
|
antiCrawler: false,
|
|
supportRadar: true,
|
|
supportBT: false,
|
|
supportPodcast: false,
|
|
supportScihub: false,
|
|
},
|
|
radar: [
|
|
{
|
|
source: ['augmentcode.com/blog'],
|
|
target: '/blog',
|
|
},
|
|
],
|
|
view: ViewType.Articles,
|
|
};
|