UNPKG

rsshub

Version:
73 lines (59 loc) 1.73 kB
import { Route } from '@/types'; import cache from '@/utils/cache'; import got from '@/utils/got'; import { load } from 'cheerio'; import { parseDate } from '@/utils/parse-date'; export const route: Route = { path: '/category/:category', radar: [ { source: ['literotica.com/c/:category', 'literotica.com/'], }, ], name: 'Unknown', maintainers: ['nczitzk'], handler, features: { nsfw: true, }, }; async function handler(ctx) { const category = ctx.req.param('category'); const rootUrl = 'https://www.literotica.com'; const currentUrl = `${rootUrl}/c/${category}`; const response = await got({ method: 'get', url: currentUrl, }); const $ = load(response.data); const list = $('.b-slb-item') .toArray() .map((item) => { item = $(item); const a = item.find('h3 a'); return { title: a.text(), link: a.attr('href'), author: item.find('.b-user-info-name').text(), pubDate: parseDate(item.find('.b-slib-date').text(), 'MM/DD/YY'), }; }); const items = await Promise.all( list.map((item) => cache.tryGet(item.link, async () => { const detailResponse = await got({ method: 'get', url: item.link, }); const content = load(detailResponse.data); item.description = content('.aa_ht').html(); return item; }) ) ); return { title: $('title').text(), link: currentUrl, item: items, }; }