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