2021-08-19 07:55:45 -05:00
|
|
|
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'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
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
|
|
|
|
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: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
ref: 'MeDetailed',
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2017-08-30 03:31:39 -05:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['noteId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-18 23:05:32 -06:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2019-02-21 20:46:58 -06:00
|
|
|
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
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
return await Users.pack<true, true>(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
|
|
|
});
|