UNPKG

rsshub

Version:
73 lines (66 loc) 2.41 kB
import { namespaces } from '@/registry'; import { parse } from 'tldts'; import { RadarDomain } from '@/types'; import { z, createRoute, RouteHandler } from '@hono/zod-openapi'; const radar: { [domain: string]: RadarDomain; } = {}; for (const namespace in namespaces) { for (const path in namespaces[namespace].routes) { const realPath = `/${namespace}${path}`; const data = namespaces[namespace].routes[path]; if (data.radar?.length) { for (const radarItem of data.radar) { const parsedDomain = parse(new URL('https://' + radarItem.source[0]).hostname); const subdomain = parsedDomain.subdomain || '.'; const domain = parsedDomain.domain; if (domain) { if (!radar[domain]) { radar[domain] = { _name: namespaces[namespace].name, } as RadarDomain; } if (!radar[domain][subdomain]) { radar[domain][subdomain] = []; } radar[domain][subdomain].push({ title: radarItem.title || data.name, docs: `https://docs.rsshub.app/routes/${data.categories?.[0] || 'other'}`, source: radarItem.source.map((source) => { const sourceURL = new URL('https://' + source); return sourceURL.pathname + sourceURL.search + sourceURL.hash; }), target: radarItem.target ? `/${namespace}${radarItem.target}` : realPath, }); } } } } } const ParamsSchema = z.object({ domain: z.string().openapi({ param: { name: 'domain', in: 'path', }, example: 'github.com', }), }); const route = createRoute({ method: 'get', path: '/radar/rules/{domain}', tags: ['Radar'], request: { params: ParamsSchema, }, responses: { 200: { description: 'Radar rules for a domain name (does not support subdomains)', }, }, }); const handler: RouteHandler<typeof route> = (ctx) => { const { domain } = ctx.req.valid('param'); return ctx.json(radar[domain]); }; export { route, handler };