60 lines
2.1 KiB
TypeScript
60 lines
2.1 KiB
TypeScript
import type { RouteHandler } from '@hono/zod-openapi';
|
|
import { createRoute } from '@hono/zod-openapi';
|
|
import { parse } from 'tldts';
|
|
|
|
import { namespaces } from '@/registry';
|
|
import type { RadarDomain } from '@/types';
|
|
|
|
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 route = createRoute({
|
|
method: 'get',
|
|
path: '/radar/rules',
|
|
description: 'All Radar rules grouped by domain',
|
|
tags: ['Radar'],
|
|
responses: {
|
|
200: {
|
|
description: 'Radar rules grouped by domain',
|
|
},
|
|
},
|
|
});
|
|
|
|
const handler: RouteHandler<typeof route> = (ctx) => ctx.json(radar);
|
|
|
|
export { handler, route };
|