2023-01-05 06:59:48 +02:00
|
|
|
import ms from 'ms';
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2023-02-16 16:09:41 +02:00
|
|
|
import type { FlashsRepository } from '@/models/index.js';
|
2023-01-05 06:59:48 +02:00
|
|
|
import { IdService } from '@/core/IdService.js';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
|
|
|
import { FlashEntityService } from '@/core/entities/FlashEntityService.js';
|
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['flash'],
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
|
|
|
kind: 'write:flash',
|
|
|
|
|
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
|
|
|
max: 10,
|
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
},
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
export const paramDef = {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
title: { type: 'string' },
|
|
|
|
summary: { type: 'string' },
|
|
|
|
script: { type: 'string' },
|
|
|
|
permissions: { type: 'array', items: {
|
|
|
|
type: 'string',
|
|
|
|
} },
|
|
|
|
},
|
|
|
|
required: ['title', 'summary', 'script', 'permissions'],
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.flashsRepository)
|
|
|
|
private flashsRepository: FlashsRepository,
|
|
|
|
|
|
|
|
private flashEntityService: FlashEntityService,
|
|
|
|
private idService: IdService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const flash = await this.flashsRepository.insert({
|
|
|
|
id: this.idService.genId(),
|
|
|
|
userId: me.id,
|
|
|
|
createdAt: new Date(),
|
|
|
|
updatedAt: new Date(),
|
|
|
|
title: ps.title,
|
|
|
|
summary: ps.summary,
|
|
|
|
script: ps.script,
|
|
|
|
permissions: ps.permissions,
|
|
|
|
}).then(x => this.flashsRepository.findOneByOrFail(x.identifiers[0]));
|
|
|
|
|
|
|
|
return await this.flashEntityService.pack(flash);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|