diff --git a/lib/routes/yilinzazhi/index.ts b/lib/routes/yilinzazhi/index.ts new file mode 100644 index 0000000000000..08b90b0011d20 --- /dev/null +++ b/lib/routes/yilinzazhi/index.ts @@ -0,0 +1,58 @@ +import { Data, DataItem, Route } from '@/types'; +import cache from '@/utils/cache'; +import got from '@/utils/got'; +import { load } from 'cheerio'; + +export const route: Route = { + path: '/', + categories: ['reading'], + example: '/yilinzazhi', + radar: [ + { + source: ['www.yilinzazhi.com'], + target: '/', + }, + ], + name: '文章列表', + maintainers: ['g0ngjie'], + handler, + url: 'www.yilinzazhi.com', +}; + +async function handler(): Promise { + const baseUrl = 'https://www.yilinzazhi.com/'; + const response = await got(baseUrl); + const $ = load(response.data); + const contents: DataItem[] = $('section.content') + .find('li') + .map((_, target) => { + const li = $(target); + + const aTag = li.find('a'); + const title = aTag.text(); + const link = baseUrl + aTag.attr('href'); + + return { + title, + link, + description: '', + }; + }) + .toArray(); + + const items = (await Promise.all( + contents.map((content) => + cache.tryGet(content.link!, async () => { + const childRes = await got(content.link); + const $$ = load(childRes.data); + content.description = $$('.maglistbox').html()!; + return content; + }) + ) + )) as DataItem[]; + return { + title: '意林杂志网', + link: baseUrl, + item: items, + }; +} diff --git a/lib/routes/yilinzazhi/latest.ts b/lib/routes/yilinzazhi/latest.ts new file mode 100644 index 0000000000000..c01d3283d7777 --- /dev/null +++ b/lib/routes/yilinzazhi/latest.ts @@ -0,0 +1,103 @@ +import { Data, DataItem, Route } from '@/types'; +import cache from '@/utils/cache'; +import got from '@/utils/got'; +import { load } from 'cheerio'; +import dayjs from 'dayjs'; + +export const route: Route = { + path: '/latest', + categories: ['reading'], + example: '/yilinzazhi/latest', + radar: [ + { + source: ['www.yilinzazhi.com'], + target: '/', + }, + ], + name: '近期文章汇总', + maintainers: ['g0ngjie'], + handler, + url: 'www.yilinzazhi.com', + description: '最近一期的文章汇总', +}; + +type Stage = { + link: string; + title: string; +}; + +type Catalog = { + title: string; + tables: Data[]; +}; + +async function handler(): Promise { + const baseUrl = 'https://www.yilinzazhi.com/'; + const response = await got(baseUrl); + const $ = load(response.data); + + const currentYear = dayjs().year(); + const yearSection = $('.year-section') + .toArray() + .find((el) => + $(el) + .find('.year-title') + .text() + .includes(currentYear + '') + ); + + const stage = $(yearSection!) + .find('a') + .map(function () { + const aTag = $(this); + const link = baseUrl + aTag.attr('href'); + const title = aTag.text(); + return { link, title }; + }) + .toArray()[0]; + + const catalogs = (await cache.tryGet(stage.link, async () => { + const stageRes = await got(stage.link); + const $$ = load(stageRes.data); + const catalogsEl = $$('.maglistbox dl').toArray(); + const children = catalogsEl.map((catalog) => { + const title = $$(catalog).find('dt span').text(); + const tables = $$(catalog) + .find('a') + .toArray() + .map((aTag) => { + const href = $$(aTag).attr('href')!; + const yearType = currentYear + href.substring(4, 5); + return { + title: $$(aTag).text(), + link: `${baseUrl}${currentYear}/yl${yearType}/${href}`, + }; + }); + return { title, tables }; + }); + return children; + })) as Catalog[]; + + const contents: Data[] = catalogs.flatMap((catalog) => catalog.tables); + + const items = (await Promise.all( + contents.map( + async (target) => + await cache.tryGet(target.link!, async () => { + const detailRes = await got(target.link); + const $$ = load(detailRes.data); + const detailContainer = $$('.blkContainerSblk.collectionContainer'); + + target.description = detailContainer.html()!; + + return target; + }) + ) + )) as DataItem[]; + + return { + title: '意林 - 近期文章汇总', + link: stage.link, + item: items, + }; +} diff --git a/lib/routes/yilinzazhi/namespace.ts b/lib/routes/yilinzazhi/namespace.ts new file mode 100644 index 0000000000000..0aa77f133eb5a --- /dev/null +++ b/lib/routes/yilinzazhi/namespace.ts @@ -0,0 +1,8 @@ +import type { Namespace } from '@/types'; + +export const namespace: Namespace = { + name: '意林杂志', + url: 'www.yilinzazhi.com', + categories: ['reading'], + description: '', +};