a07d753da8
* Update api document in admin/announcements * Update api document in announcements * Update api document in i/read-announcements * Update api document in username/available * Update api document & Fix typo in API 403 error * Update api document * Update api document * Update api document * Fix API permission definition * Update api document * Update api document * Update api document * Update api document * Update api document * Update api document * Update api document * Update api document * Fix bug in users (api) * Apply reviews #6757 * Apply reviews #6757 Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
68 lines
1.6 KiB
TypeScript
68 lines
1.6 KiB
TypeScript
import $ from 'cafy';
|
|
import { ID } from '../../../../misc/cafy-id';
|
|
import { addPinned } from '../../../../services/i/pin';
|
|
import define from '../../define';
|
|
import { ApiError } from '../../error';
|
|
import { Users } from '../../../../models';
|
|
|
|
export const meta = {
|
|
desc: {
|
|
'ja-JP': '指定した投稿をピン留めします。'
|
|
},
|
|
|
|
tags: ['account', 'notes'],
|
|
|
|
requireCredential: true as const,
|
|
|
|
kind: 'write:account',
|
|
|
|
params: {
|
|
noteId: {
|
|
validator: $.type(ID),
|
|
desc: {
|
|
'ja-JP': '対象の投稿のID',
|
|
'en-US': 'Target note ID'
|
|
}
|
|
}
|
|
},
|
|
|
|
errors: {
|
|
noSuchNote: {
|
|
message: 'No such note.',
|
|
code: 'NO_SUCH_NOTE',
|
|
id: '56734f8b-3928-431e-bf80-6ff87df40cb3'
|
|
},
|
|
|
|
pinLimitExceeded: {
|
|
message: 'You can not pin notes any more.',
|
|
code: 'PIN_LIMIT_EXCEEDED',
|
|
id: '72dab508-c64d-498f-8740-a8eec1ba385a'
|
|
},
|
|
|
|
alreadyPinned: {
|
|
message: 'That note has already been pinned.',
|
|
code: 'ALREADY_PINNED',
|
|
id: '8b18c2b7-68fe-4edb-9892-c0cbaeb6c913'
|
|
},
|
|
},
|
|
|
|
res: {
|
|
type: 'object' as const,
|
|
optional: false as const, nullable: false as const,
|
|
ref: 'User'
|
|
}
|
|
};
|
|
|
|
export default define(meta, async (ps, user) => {
|
|
await addPinned(user, ps.noteId).catch(e => {
|
|
if (e.id === '70c4e51f-5bea-449c-a030-53bee3cce202') throw new ApiError(meta.errors.noSuchNote);
|
|
if (e.id === '15a018eb-58e5-4da1-93be-330fcc5e4e1a') throw new ApiError(meta.errors.pinLimitExceeded);
|
|
if (e.id === '23f0cf4e-59a3-4276-a91d-61a5891c1514') throw new ApiError(meta.errors.alreadyPinned);
|
|
throw e;
|
|
});
|
|
|
|
return await Users.pack(user, user, {
|
|
detail: true
|
|
});
|
|
});
|