2019-02-04 20:48:08 -06:00
|
|
|
import $ from 'cafy';
|
2021-08-19 07:55:45 -05:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import { addPinned } from '@/services/i/pin';
|
|
|
|
import define from '../../define';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { Users } from '@/models/index';
|
2018-09-24 02:26:12 -05:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['account', 'notes'],
|
|
|
|
|
2020-02-15 06:33:32 -06:00
|
|
|
requireCredential: true as const,
|
2018-09-24 02:26:12 -05:00
|
|
|
|
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),
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2019-02-21 20:46:58 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: '56734f8b-3928-431e-bf80-6ff87df40cb3',
|
2019-02-21 20:46:58 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
pinLimitExceeded: {
|
|
|
|
message: 'You can not pin notes any more.',
|
|
|
|
code: 'PIN_LIMIT_EXCEEDED',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: '72dab508-c64d-498f-8740-a8eec1ba385a',
|
2019-02-21 20:46:58 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
alreadyPinned: {
|
|
|
|
message: 'That note has already been pinned.',
|
|
|
|
code: 'ALREADY_PINNED',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: '8b18c2b7-68fe-4edb-9892-c0cbaeb6c913',
|
2019-02-21 20:46:58 -06:00
|
|
|
},
|
2021-03-06 07:34:11 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2021-12-09 08:58:30 -06:00
|
|
|
ref: 'User',
|
|
|
|
},
|
2018-09-24 02:26:12 -05:00
|
|
|
};
|
2017-08-30 03:31:39 -05:00
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-21 20:46:58 -06: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 02:26:12 -05:00
|
|
|
|
2021-03-23 21:05:37 -05:00
|
|
|
return await Users.pack(user.id, user, {
|
2021-12-09 08:58:30 -06:00
|
|
|
detail: true,
|
2017-08-30 03:31:39 -05:00
|
|
|
});
|
2019-02-21 20:46:58 -06:00
|
|
|
});
|