52774bbe64
* wip * wip * wip * Update index.ts * Update gen-openapi-spec.ts * Update api.ja-JP.md * Fix * Improve doc * Update gen-openapi-spec.ts * Update redoc.html * Improve doc * Update gen-openapi-spec.ts * Improve doc * Update CHANGELOG.md
65 lines
1.5 KiB
TypeScript
65 lines
1.5 KiB
TypeScript
import $ from 'cafy';
|
|
import ID, { transform } from '../../../../misc/cafy-id';
|
|
import { pack } from '../../../../models/user';
|
|
import { addPinned } from '../../../../services/i/pin';
|
|
import define from '../../define';
|
|
import { ApiError } from '../../error';
|
|
|
|
export const meta = {
|
|
stability: 'stable',
|
|
|
|
desc: {
|
|
'ja-JP': '指定した投稿をピン留めします。'
|
|
},
|
|
|
|
tags: ['account', 'notes'],
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'account-write',
|
|
|
|
params: {
|
|
noteId: {
|
|
validator: $.type(ID),
|
|
transform: transform,
|
|
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'
|
|
},
|
|
}
|
|
};
|
|
|
|
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 pack(user, user, {
|
|
detail: true
|
|
});
|
|
});
|