2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { PromoNotesRepository } from '@/models/index.js';
|
2022-09-24 01:15:16 +03:00
|
|
|
import { GetterService } from '@/server/api/GetterService.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { ApiError } from '../../../error.js';
|
2020-02-18 01:41:32 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2020-04-03 16:42:29 +03:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2020-02-18 01:41:32 +02:00
|
|
|
requireModerator: true,
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'ee449fbe-af2a-453b-9cae-cf2fe7c895fc',
|
2020-02-18 01:41:32 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
alreadyPromoted: {
|
|
|
|
message: 'The note has already promoted.',
|
|
|
|
code: 'ALREADY_PROMOTED',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'ae427aa2-7a41-484f-a18c-2c1104051604',
|
2020-02-18 01:41:32 +02:00
|
|
|
},
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2020-02-18 01:41:32 +02:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
|
|
expiresAt: { type: 'integer' },
|
|
|
|
},
|
|
|
|
required: ['noteId', 'expiresAt'],
|
|
|
|
} as const;
|
|
|
|
|
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(
|
|
|
|
@Inject(DI.promoNotesRepository)
|
|
|
|
private promoNotesRepository: PromoNotesRepository,
|
2020-02-18 01:41:32 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
private getterService: GetterService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const note = await this.getterService.getNote(ps.noteId).catch(e => {
|
|
|
|
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
|
|
|
throw e;
|
|
|
|
});
|
2020-02-18 01:41:32 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
const exist = await this.promoNotesRepository.findOneBy({ noteId: note.id });
|
|
|
|
|
|
|
|
if (exist != null) {
|
|
|
|
throw new ApiError(meta.errors.alreadyPromoted);
|
|
|
|
}
|
2020-02-18 01:41:32 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
await this.promoNotesRepository.insert({
|
|
|
|
noteId: note.id,
|
|
|
|
expiresAt: new Date(ps.expiresAt),
|
|
|
|
userId: note.userId,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|