2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../misc/cafy-id';
|
2018-09-24 09:26:12 +02:00
|
|
|
import { pack } from '../../../../models/user';
|
2018-10-02 09:27:36 +02:00
|
|
|
import { removePinned } 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';
|
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,
|
|
|
|
|
|
|
|
kind: 'account-write',
|
|
|
|
|
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
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: '454170ce-9d63-4a43-9da1-ea10afe81e21'
|
|
|
|
},
|
2018-09-24 09:26:12 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01: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 09:26:12 +02:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
return await pack(user, user, {
|
2018-09-24 09:26:12 +02:00
|
|
|
detail: true
|
|
|
|
});
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|