2021-03-24 03:05:37 +01:00
|
|
|
import { URL } from 'url';
|
2020-01-29 20:37:25 +01:00
|
|
|
import define from '../../../define';
|
|
|
|
import { inboxQueue } from '../../../../../queue';
|
|
|
|
|
|
|
|
export const meta = {
|
2021-03-06 14:34:11 +01:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'このサーバーへのキューの遅延一覧を返します。',
|
|
|
|
'en-US': 'Returns a list of queue delays to this server.'
|
|
|
|
},
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2020-02-15 13:33:32 +01:00
|
|
|
requireCredential: true as const,
|
2020-01-29 20:37:25 +01:00
|
|
|
requireModerator: true,
|
|
|
|
|
|
|
|
params: {
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
items: {
|
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
items: {
|
|
|
|
anyOf: [
|
|
|
|
{
|
|
|
|
type: 'string' as const,
|
|
|
|
description: 'FQDN to fediverse server'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'number' as const,
|
|
|
|
description: 'Delayed queue counts'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
example: [[
|
|
|
|
'example.com',
|
|
|
|
12
|
|
|
|
]]
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default define(meta, async (ps) => {
|
|
|
|
const jobs = await inboxQueue.getJobs(['delayed']);
|
|
|
|
|
|
|
|
const res = [] as [string, number][];
|
|
|
|
|
|
|
|
for (const job of jobs) {
|
|
|
|
const host = new URL(job.data.signature.keyId).host;
|
|
|
|
if (res.find(x => x[0] === host)) {
|
|
|
|
res.find(x => x[0] === host)![1]++;
|
|
|
|
} else {
|
|
|
|
res.push([host, 1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res.sort((a, b) => b[1] - a[1]);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
});
|