2022-02-27 11:07:39 +09:00
|
|
|
import { URL } from 'node:url';
|
2022-09-18 03:27:08 +09:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { InboxQueue } from '@/core/queue/QueueModule.js';
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
2020-01-30 04:37:25 +09:00
|
|
|
requireModerator: true,
|
|
|
|
|
2021-03-06 22:34:11 +09:00
|
|
|
res: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 22:34:11 +09:00
|
|
|
items: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 22:34:11 +09:00
|
|
|
items: {
|
|
|
|
anyOf: [
|
|
|
|
{
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'string',
|
2021-03-06 22:34:11 +09:00
|
|
|
},
|
|
|
|
{
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'number',
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-03-06 22:34:11 +09:00
|
|
|
},
|
|
|
|
example: [[
|
|
|
|
'example.com',
|
2021-12-09 23:58:30 +09:00
|
|
|
12,
|
|
|
|
]],
|
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2020-01-30 04:37:25 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-18 03:27:08 +09:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject('queue:inbox') public inboxQueue: InboxQueue,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const jobs = await this.inboxQueue.getJobs(['delayed']);
|
|
|
|
|
|
|
|
const res = [] as [string, number][];
|
2020-01-30 04:37:25 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
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]);
|
|
|
|
}
|
|
|
|
}
|
2020-01-30 04:37:25 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
res.sort((a, b) => b[1] - a[1]);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|