2022-02-27 03:07:39 +01:00
|
|
|
import define from '../../../define.js';
|
|
|
|
import { ApiError } from '../../../error.js';
|
|
|
|
import { getNote } from '../../../common/getters.js';
|
|
|
|
import { PromoNotes } from '@/models/index.js';
|
2020-02-18 00:41:32 +01:00
|
|
|
|
|
|
|
export const meta = {
|
2020-04-03 15:42:29 +02:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2020-02-18 00:41:32 +01:00
|
|
|
requireModerator: true,
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: 'ee449fbe-af2a-453b-9cae-cf2fe7c895fc',
|
2020-02-18 00:41:32 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
alreadyPromoted: {
|
|
|
|
message: 'The note has already promoted.',
|
|
|
|
code: 'ALREADY_PROMOTED',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: 'ae427aa2-7a41-484f-a18c-2c1104051604',
|
2020-02-18 00:41:32 +01:00
|
|
|
},
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2020-02-18 00:41:32 +01:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
|
|
expiresAt: { type: 'integer' },
|
|
|
|
},
|
|
|
|
required: ['noteId', 'expiresAt'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2020-02-18 00:41:32 +01:00
|
|
|
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 13:27:09 +01:00
|
|
|
await PromoNotes.insert({
|
2020-02-18 00:41:32 +01:00
|
|
|
noteId: note.id,
|
|
|
|
expiresAt: new Date(ps.expiresAt),
|
|
|
|
userId: note.userId,
|
|
|
|
});
|
|
|
|
});
|