2020-02-18 01:41:32 +02:00
|
|
|
import $ from 'cafy';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../../define';
|
|
|
|
import { ApiError } from '../../../error';
|
|
|
|
import { getNote } from '../../../common/getters';
|
|
|
|
import { PromoNotes } from '@/models/index';
|
2020-02-18 01:41:32 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2020-04-03 16:42:29 +03:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2020-02-18 01:41:32 +02:00
|
|
|
requireCredential: true as const,
|
|
|
|
requireModerator: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
|
|
|
|
|
|
|
expiresAt: {
|
2021-12-09 16:58:30 +02:00
|
|
|
validator: $.num.int(),
|
2020-02-18 01:41:32 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
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
|
|
|
},
|
2020-02-18 01:41:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
const note = await getNote(ps.noteId).catch(e => {
|
|
|
|
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
|
|
|
throw e;
|
|
|
|
});
|
|
|
|
|
|
|
|
const exist = await PromoNotes.findOne(note.id);
|
|
|
|
|
|
|
|
if (exist != null) {
|
|
|
|
throw new ApiError(meta.errors.alreadyPromoted);
|
|
|
|
}
|
|
|
|
|
2021-03-21 14:27:09 +02:00
|
|
|
await PromoNotes.insert({
|
2020-02-18 01:41:32 +02:00
|
|
|
noteId: note.id,
|
|
|
|
createdAt: new Date(),
|
|
|
|
expiresAt: new Date(ps.expiresAt),
|
|
|
|
userId: note.userId,
|
|
|
|
});
|
|
|
|
});
|