44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import type { Route } from '@/types';
|
|
import got from '@/utils/got';
|
|
|
|
import loadArticle from './article';
|
|
import { SUB_NAME_PREFIX, SUB_URL } from './const';
|
|
import type { WPPost } from './types';
|
|
|
|
export const route: Route = {
|
|
path: '/',
|
|
categories: ['picture'],
|
|
example: '/4khd',
|
|
parameters: {},
|
|
features: {
|
|
requireConfig: false,
|
|
requirePuppeteer: false,
|
|
antiCrawler: false,
|
|
supportBT: false,
|
|
supportPodcast: false,
|
|
supportScihub: false,
|
|
nsfw: true,
|
|
},
|
|
radar: [
|
|
{
|
|
source: ['www.4khd.com/'],
|
|
target: '',
|
|
},
|
|
],
|
|
name: 'Latest',
|
|
maintainers: ['AiraNadih'],
|
|
handler,
|
|
url: 'www.4khd.com/',
|
|
};
|
|
|
|
async function handler(ctx) {
|
|
const limit = Number.parseInt(ctx.req.query('limit')) || 20;
|
|
const { data: posts } = await got(`${SUB_URL}wp-json/wp/v2/posts?per_page=${limit}`);
|
|
|
|
return {
|
|
title: `${SUB_NAME_PREFIX} - Latest`,
|
|
link: SUB_URL,
|
|
item: posts.map((post) => loadArticle(post as WPPost)),
|
|
};
|
|
}
|