rsshub
Version:
Make RSS Great Again!
29 lines (27 loc) • 924 B
text/typescript
import type { Data, Route } from '@/types';
import { getPostItems, CategoryParam, CommonRouteProperties, CommonDataProperties } from './common';
export const route: Route = {
...CommonRouteProperties,
name: 'Latest Posts',
path: '/latest/:category?',
radar: [
{
source: ['www.voronoiapp.com/posts/latest'],
target: '/latest',
},
],
example: '/voronoiapp/latest',
parameters: {
category: CategoryParam,
},
handler: async (ctx) => {
const { category = '' } = ctx.req.param();
const items = await getPostItems({ swimlane: 'LATEST', category: category === '' ? undefined : category });
return {
...CommonDataProperties,
title: `Voronoi Latest Posts${category ? ` - ${category}` : ''}`,
link: 'https://www.voronoiapp.com/latest',
item: items,
} as Data;
},
};