31 lines
693 B
TypeScript
31 lines
693 B
TypeScript
import { load } from 'cheerio';
|
|
|
|
import type { Route } from '@/types';
|
|
import got from '@/utils/got';
|
|
|
|
import { extractNotes, notesUrl } from '../utils';
|
|
|
|
export const route: Route = {
|
|
path: '/notes/:lang?/topic/:topic',
|
|
name: 'Unknown',
|
|
maintainers: ['TonyRL'],
|
|
handler,
|
|
};
|
|
|
|
async function handler(ctx) {
|
|
const { topic, lang } = ctx.req.param();
|
|
const link = `${notesUrl}${lang ? `/${lang}` : ''}/topic/${topic}`;
|
|
|
|
const { data: response } = await got(link);
|
|
const $ = load(response);
|
|
|
|
const items = extractNotes($);
|
|
|
|
return {
|
|
title: $('head title').text(),
|
|
link,
|
|
language: $('html').attr('lang'),
|
|
item: items,
|
|
};
|
|
}
|