mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-29 05:53:09 +02:00
67 lines
1.3 KiB
TypeScript
67 lines
1.3 KiB
TypeScript
import { URL } from 'node:url';
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { DeliverQueue } from '@/core/queue/QueueModule.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
|
|
res: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
anyOf: [
|
|
{
|
|
type: 'string',
|
|
},
|
|
{
|
|
type: 'number',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
example: [[
|
|
'example.com',
|
|
12,
|
|
]],
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {},
|
|
required: [],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
constructor(
|
|
@Inject('queue:deliver') public deliverQueue: DeliverQueue,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
const jobs = await this.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;
|
|
});
|
|
}
|
|
}
|