6cf466e5d1
* update deps * fix * wip * wip * wip * Update docker-compose.yml.example * Delete reviewer-lottery.yml * Update RepositoryModule.ts * wip * wip * clean up * update deps * wip * wip
80 lines
2.1 KiB
TypeScript
80 lines
2.1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { IdService } from '@/core/IdService.js';
|
|
import type { ClipsRepository } from '@/models/_.js';
|
|
import { ClipEntityService } from '@/core/entities/ClipEntityService.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { RoleService } from '@/core/RoleService.js';
|
|
import { ApiError } from '@/server/api/error.js';
|
|
|
|
export const meta = {
|
|
tags: ['clips'],
|
|
|
|
requireCredential: true,
|
|
|
|
prohibitMoved: true,
|
|
|
|
kind: 'write:account',
|
|
|
|
res: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'Clip',
|
|
},
|
|
|
|
errors: {
|
|
tooManyClips: {
|
|
message: 'You cannot create clip any more.',
|
|
code: 'TOO_MANY_CLIPS',
|
|
id: '920f7c2d-6208-4b76-8082-e632020f5883',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
name: { type: 'string', minLength: 1, maxLength: 100 },
|
|
isPublic: { type: 'boolean', default: false },
|
|
description: { type: 'string', nullable: true, minLength: 1, maxLength: 2048 },
|
|
},
|
|
required: ['name'],
|
|
} as const;
|
|
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
|
constructor(
|
|
@Inject(DI.clipsRepository)
|
|
private clipsRepository: ClipsRepository,
|
|
|
|
private clipEntityService: ClipEntityService,
|
|
private roleService: RoleService,
|
|
private idService: IdService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
const currentCount = await this.clipsRepository.countBy({
|
|
userId: me.id,
|
|
});
|
|
if (currentCount > (await this.roleService.getUserPolicies(me.id)).clipLimit) {
|
|
throw new ApiError(meta.errors.tooManyClips);
|
|
}
|
|
|
|
const clip = await this.clipsRepository.insert({
|
|
id: this.idService.genId(),
|
|
createdAt: new Date(),
|
|
userId: me.id,
|
|
name: ps.name,
|
|
isPublic: ps.isPublic,
|
|
description: ps.description,
|
|
}).then(x => this.clipsRepository.findOneByOrFail(x.identifiers[0]));
|
|
|
|
return await this.clipEntityService.pack(clip, me);
|
|
});
|
|
}
|
|
}
|