2022-09-17 13:27:08 -05:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2021-11-12 04:47:04 -06:00
|
|
|
import ms from 'ms';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { QueueService } from '@/core/QueueService.js';
|
2019-02-06 05:56:48 -06:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
secure: true,
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2019-02-06 05:56:48 -06:00
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
|
|
|
max: 1,
|
|
|
|
},
|
2022-02-18 23:05:32 -06:00
|
|
|
} as const;
|
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
excludeMuting: { type: 'boolean', default: false },
|
|
|
|
excludeInactive: { type: 'boolean', default: false },
|
2021-12-09 10:22:35 -06:00
|
|
|
},
|
2022-02-18 23:05:32 -06:00
|
|
|
required: [],
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2019-02-06 05:56:48 -06:00
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 13:27:08 -05: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);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|