2022-06-14 09:01:23 +00:00
|
|
|
import ms from 'ms';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { UsersRepository } from '@/models/index.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { NoteDeleteService } from '@/core/NoteDeleteService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-23 22:15:16 +00:00
|
|
|
import { GetterService } from '@/server/api/GetterService.js';
|
2023-01-12 12:02:26 +00:00
|
|
|
import { RoleService } from '@/core/RoleService.js';
|
|
|
|
import { ApiError } from '../../error.js';
|
2018-05-28 05:39:46 +00:00
|
|
|
|
2018-07-16 19:36:44 +00:00
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2018-07-16 19:36:44 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
kind: 'write:notes',
|
2018-10-21 20:16:27 +00:00
|
|
|
|
2018-12-16 16:43:34 +00:00
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
|
|
|
max: 300,
|
2021-12-09 14:58:30 +00:00
|
|
|
minInterval: ms('1sec'),
|
2018-12-16 16:43:34 +00:00
|
|
|
},
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: '490be23f-8c1f-4796-819f-94cb4f9d1630',
|
2019-02-22 02:46:58 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
accessDenied: {
|
|
|
|
message: 'Access denied.',
|
|
|
|
code: 'ACCESS_DENIED',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: 'fe8d7103-0ea8-4ec3-814d-f8b401dc69e9',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2018-07-16 19:36:44 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['noteId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
private getterService: GetterService,
|
2023-01-12 12:02:26 +00:00
|
|
|
private roleService: RoleService,
|
2022-09-17 18:27:08 +00:00
|
|
|
private noteDeleteService: NoteDeleteService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const note = await this.getterService.getNote(ps.noteId).catch(err => {
|
|
|
|
if (err.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
|
|
|
throw err;
|
|
|
|
});
|
2018-09-19 08:29:03 +00:00
|
|
|
|
2023-01-12 12:02:26 +00:00
|
|
|
if (!await this.roleService.isModerator(me) && (note.userId !== me.id)) {
|
2022-09-17 18:27:08 +00:00
|
|
|
throw new ApiError(meta.errors.accessDenied);
|
|
|
|
}
|
|
|
|
|
|
|
|
// この操作を行うのが投稿者とは限らない(例えばモデレーター)ため
|
|
|
|
await this.noteDeleteService.delete(await this.usersRepository.findOneByOrFail({ id: note.userId }), note);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|