132 lines
5.4 KiB
TypeScript
132 lines
5.4 KiB
TypeScript
import type { MiddlewareHandler } from 'hono';
|
|
|
|
import { config } from '@/config';
|
|
import type { Data } from '@/types';
|
|
import cacheModule from '@/utils/cache/index';
|
|
import { collapseWhitespace, convertDateToISO8601 } from '@/utils/common-utils';
|
|
import { Atom, json, RSS, rss3 } from '@/utils/render';
|
|
|
|
const middleware: MiddlewareHandler = async (ctx, next) => {
|
|
// Set RSS <ttl> (minute) according to the availability of cache
|
|
// * available: max(config.cache.routeExpire / 60, 1)
|
|
// * unavailable: 1
|
|
// The minimum <ttl> is limited to 1 minute to prevent potential misuse
|
|
const ttl = (cacheModule.status.available && Math.trunc(config.cache.routeExpire / 60)) || 1;
|
|
await next();
|
|
|
|
const apiData = ctx.get('apiData');
|
|
if (apiData) {
|
|
return ctx.json(apiData);
|
|
}
|
|
|
|
const data: Data = ctx.get('data');
|
|
const outputType = ctx.req.query('format') || 'rss';
|
|
|
|
// only enable when debugInfo=true
|
|
if (config.debugInfo) {
|
|
if (outputType === 'debug.json') {
|
|
return ctx.json(ctx.get('json') || { message: 'plugin does not set debug json' });
|
|
}
|
|
|
|
if (/(\d+)\.debug\.html$/.test(outputType)) {
|
|
const index = Number.parseInt(outputType.match(/(\d+)\.debug\.html$/)?.[1] || '0');
|
|
return ctx.html(data?.item?.[index]?.description || `data.item[${index}].description not found`);
|
|
}
|
|
}
|
|
|
|
if (data) {
|
|
data.title = collapseWhitespace(data.title) || '';
|
|
data.description && (data.description = collapseWhitespace(data.description) || '');
|
|
data.author && (data.author = collapseWhitespace(data.author) || '');
|
|
|
|
if (data.item) {
|
|
for (const item of data.item) {
|
|
if (item.title) {
|
|
item.title = collapseWhitespace(item.title) || '';
|
|
// trim title length
|
|
for (let length = 0, i = 0; i < item.title.length; i++) {
|
|
length += Buffer.from(item.title[i]).length === 1 ? 1 : 2;
|
|
if (length > config.titleLengthLimit) {
|
|
item.title = `${item.title.slice(0, i)}...`;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (item.description) {
|
|
// https://stackoverflow.com/questions/2507608/error-input-is-not-proper-utf-8-indicate-encoding-using-phps-simplexml-lo/40552083#40552083
|
|
// https://stackoverflow.com/questions/1497885/remove-control-characters-from-php-string/1497928#1497928
|
|
// remove unicode control characters
|
|
// see #14940 #14943 #15262
|
|
item.description = item.description.replaceAll(/[\u0000-\u0009\u000B\u000C\u000E-\u001F\u007F\u200B\uFFFF]/g, '');
|
|
}
|
|
|
|
if (typeof item.author === 'string') {
|
|
item.author = collapseWhitespace(item.author) || '';
|
|
} else if (typeof item.author === 'object' && item.author !== null) {
|
|
for (const a of item.author) {
|
|
a.name = collapseWhitespace(a.name) || '';
|
|
}
|
|
if (outputType !== 'json') {
|
|
item.author = item.author.map((a: { name: string }) => a.name).join(', ');
|
|
}
|
|
}
|
|
|
|
if (item.itunes_duration && ((typeof item.itunes_duration === 'string' && !item.itunes_duration.includes(':')) || (typeof item.itunes_duration === 'number' && !Number.isNaN(item.itunes_duration)))) {
|
|
item.itunes_duration = +item.itunes_duration;
|
|
item.itunes_duration =
|
|
Math.floor(item.itunes_duration / 3600) + ':' + (Math.floor((item.itunes_duration % 3600) / 60) / 100).toFixed(2).slice(-2) + ':' + (((item.itunes_duration % 3600) % 60) / 100).toFixed(2).slice(-2);
|
|
}
|
|
|
|
if (outputType !== 'rss') {
|
|
try {
|
|
item.pubDate && (item.pubDate = convertDateToISO8601(item.pubDate) || '');
|
|
} catch {
|
|
item.pubDate = '';
|
|
}
|
|
try {
|
|
item.updated && (item.updated = convertDateToISO8601(item.updated) || '');
|
|
} catch {
|
|
item.updated = '';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
const currentDate = new Date();
|
|
const result = {
|
|
lastBuildDate: currentDate.toUTCString(),
|
|
updated: currentDate.toISOString(),
|
|
ttl,
|
|
atomlink: ctx.req.url,
|
|
...data,
|
|
};
|
|
|
|
if (config.isPackage) {
|
|
return ctx.json(result);
|
|
}
|
|
|
|
if (ctx.get('redirect')) {
|
|
return ctx.redirect(ctx.get('redirect'), 301);
|
|
} else if (ctx.get('no-content')) {
|
|
return ctx.body(null);
|
|
} else {
|
|
// retain .ums for backward compatibility
|
|
switch (outputType) {
|
|
case 'ums':
|
|
case 'rss3':
|
|
return ctx.json(rss3(result));
|
|
case 'json':
|
|
ctx.header('Content-Type', 'application/feed+json; charset=UTF-8');
|
|
return ctx.body(json(result));
|
|
case 'atom':
|
|
return ctx.render(<Atom data={result} />);
|
|
default:
|
|
return ctx.render(<RSS data={result} />);
|
|
}
|
|
}
|
|
};
|
|
|
|
export default middleware;
|