2023-02-16 16:09:41 +02:00
|
|
|
import { Injectable } from '@nestjs/common';
|
2021-11-12 12:47:04 +02:00
|
|
|
import ms from 'ms';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { QueueService } from '@/core/QueueService.js';
|
2019-02-06 13:56:48 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
secure: true,
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2019-02-06 13:56:48 +02:00
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
|
|
|
max: 1,
|
|
|
|
},
|
2022-02-19 07:05:32 +02:00
|
|
|
} as const;
|
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
excludeMuting: { type: 'boolean', default: false },
|
|
|
|
excludeInactive: { type: 'boolean', default: false },
|
2021-12-09 18:22:35 +02:00
|
|
|
},
|
2022-02-19 07:05:32 +02:00
|
|
|
required: [],
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2019-02-06 13:56:48 +02:00
|
|
|
|
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(
|
|
|
|
private queueService: QueueService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
this.queueService.createExportFollowingJob(me, ps.excludeMuting, ps.excludeInactive);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|