2021-08-19 07:55:45 -05:00
|
|
|
import { deliverQueue } from '@/queue/queues';
|
2021-03-23 21:05:37 -05:00
|
|
|
import { URL } from 'url';
|
2021-08-19 07:55:45 -05:00
|
|
|
import define from '../../../define';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2020-01-29 13:37:25 -06:00
|
|
|
requireModerator: true,
|
|
|
|
|
2021-03-06 07:34:11 -06:00
|
|
|
res: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 07:34:11 -06:00
|
|
|
items: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 07:34:11 -06:00
|
|
|
items: {
|
|
|
|
anyOf: [
|
|
|
|
{
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'string',
|
2021-03-06 07:34:11 -06:00
|
|
|
},
|
|
|
|
{
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'number',
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-03-06 07:34:11 -06:00
|
|
|
},
|
|
|
|
example: [[
|
|
|
|
'example.com',
|
2021-12-09 08:58:30 -06:00
|
|
|
12,
|
|
|
|
]],
|
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-18 23:05:32 -06:00
|
|
|
export default define(meta, paramDef, async (ps) => {
|
2020-01-29 13:37:25 -06:00
|
|
|
const jobs = await deliverQueue.getJobs(['delayed']);
|
|
|
|
|
|
|
|
const res = [] as [string, number][];
|
|
|
|
|
|
|
|
for (const job of jobs) {
|
|
|
|
const host = new URL(job.data.to).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;
|
|
|
|
});
|