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