2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
2018-10-02 09:27:36 +02:00
|
|
|
import { addPinned } from '../../../../services/i/pin';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
2019-02-22 03:46:58 +01:00
|
|
|
import { ApiError } from '../../error';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { Users } from '../../../../models';
|
2018-09-24 09:26:12 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2018-10-21 22:16:27 +02:00
|
|
|
stability: 'stable',
|
|
|
|
|
2018-09-24 09:26:12 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定した投稿をピン留めします。'
|
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['account', 'notes'],
|
|
|
|
|
2018-09-24 09:26:12 +02:00
|
|
|
requireCredential: true,
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
kind: 'write:account',
|
2018-09-24 09:26:12 +02:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
2018-09-24 09:26:12 +02:00
|
|
|
desc: {
|
2018-10-21 22:16:27 +02:00
|
|
|
'ja-JP': '対象の投稿のID',
|
|
|
|
'en-US': 'Target note ID'
|
2018-09-24 09:26:12 +02:00
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
}
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
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'
|
|
|
|
},
|
2018-09-24 09:26:12 +02:00
|
|
|
}
|
|
|
|
};
|
2017-08-30 10:31:39 +02:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
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;
|
|
|
|
});
|
2018-09-24 09:26:12 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
return await Users.pack(user, user, {
|
2017-08-30 10:31:39 +02:00
|
|
|
detail: true
|
|
|
|
});
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|