Sharkey/src/server/api/endpoints/i/pin.ts

47 lines
948 B
TypeScript
Raw Normal View History

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