2019-02-05 02:48:08 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import { removePinned } from '@/services/i/pin';
|
|
|
|
import define from '../../define';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { Users } from '@/models/index';
|
2018-09-24 07:26:12 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['account', 'notes'],
|
|
|
|
|
2020-02-15 12:33:32 +00:00
|
|
|
requireCredential: true as const,
|
2018-09-24 07:26:12 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
kind: 'write:account',
|
2018-09-24 07:26:12 +00:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 18:32:24 +00:00
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2019-02-22 02:46:58 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: '454170ce-9d63-4a43-9da1-ea10afe81e21',
|
2019-02-22 02:46:58 +00:00
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2021-12-09 14:58:30 +00:00
|
|
|
ref: 'User',
|
|
|
|
},
|
2018-09-24 07:26:12 +00:00
|
|
|
};
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-22 02:46:58 +00: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 07:26:12 +00:00
|
|
|
|
2021-03-24 02:05:37 +00:00
|
|
|
return await Users.pack(user.id, user, {
|
2021-12-09 14:58:30 +00:00
|
|
|
detail: true,
|
2018-09-24 07:26:12 +00:00
|
|
|
});
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|