2018-07-07 12:19:00 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
|
2018-10-02 09:27:36 +02:00
|
|
|
import { ILocalUser } from '../../../../models/user';
|
2018-03-29 13:32:18 +02:00
|
|
|
import { pack } from '../../../../models/user';
|
2018-10-02 09:27:36 +02:00
|
|
|
import { addPinned } from '../../../../services/i/pin';
|
2018-09-24 09:26:12 +02:00
|
|
|
import getParams from '../../get-params';
|
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定した投稿をピン留めします。'
|
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
|
|
|
kind: 'account-write',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
noteId: $.type(ID).note({
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象の投稿のID'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
};
|
2017-08-30 10:31:39 +02:00
|
|
|
|
2018-07-05 19:58:29 +02:00
|
|
|
export default async (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
2018-09-24 09:26:12 +02:00
|
|
|
const [ps, psErr] = getParams(meta, params);
|
|
|
|
if (psErr) return rej(psErr);
|
2017-08-30 10:31:39 +02:00
|
|
|
|
2018-10-02 09:27:36 +02:00
|
|
|
// Processing
|
|
|
|
try {
|
|
|
|
await addPinned(user, ps.noteId);
|
|
|
|
} catch (e) {
|
|
|
|
return rej(e.message);
|
2018-09-24 09:26:12 +02:00
|
|
|
}
|
|
|
|
|
2018-10-02 09:27:36 +02:00
|
|
|
// Serialize
|
2018-02-02 00:21:30 +01:00
|
|
|
const iObj = await pack(user, user, {
|
2017-08-30 10:31:39 +02:00
|
|
|
detail: true
|
|
|
|
});
|
|
|
|
|
|
|
|
// Send response
|
|
|
|
res(iObj);
|
|
|
|
});
|