2019-02-04 20:48:08 -06:00
|
|
|
import $ from 'cafy';
|
2019-04-07 07:50:36 -05:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
2018-10-02 02:27:36 -05:00
|
|
|
import { removePinned } from '../../../../services/i/pin';
|
2018-11-01 23:47:44 -05:00
|
|
|
import define from '../../define';
|
2019-02-21 20:46:58 -06:00
|
|
|
import { ApiError } from '../../error';
|
2019-04-07 07:50:36 -05:00
|
|
|
import { Users } from '../../../../models';
|
2018-09-24 02:26:12 -05:00
|
|
|
|
|
|
|
export const meta = {
|
2018-10-21 15:16:27 -05:00
|
|
|
stability: 'stable',
|
|
|
|
|
2018-09-24 02:26:12 -05:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定した投稿のピン留めを解除します。'
|
|
|
|
},
|
|
|
|
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['account', 'notes'],
|
|
|
|
|
2018-09-24 02:26:12 -05:00
|
|
|
requireCredential: true,
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
kind: 'write:account',
|
2018-09-24 02:26:12 -05:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 13:32:24 -05:00
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
2018-09-24 02:26:12 -05:00
|
|
|
desc: {
|
2018-10-21 15:16:27 -05:00
|
|
|
'ja-JP': '対象の投稿のID',
|
|
|
|
'en-US': 'Target note ID'
|
2018-09-24 02:26:12 -05:00
|
|
|
}
|
2018-11-01 13:32:24 -05:00
|
|
|
}
|
2019-02-21 20:46:58 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
|
|
|
id: '454170ce-9d63-4a43-9da1-ea10afe81e21'
|
|
|
|
},
|
2018-09-24 02:26:12 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-21 20:46:58 -06:00
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
await removePinned(user, ps.noteId).catch(e => {
|
|
|
|
if (e.id === 'b302d4cf-c050-400a-bbb3-be208681f40c') throw new ApiError(meta.errors.noSuchNote);
|
|
|
|
throw e;
|
|
|
|
});
|
2018-09-24 02:26:12 -05:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
return await Users.pack(user, user, {
|
2018-09-24 02:26:12 -05:00
|
|
|
detail: true
|
|
|
|
});
|
2019-02-21 20:46:58 -06:00
|
|
|
});
|