47 lines
948 B
TypeScript
47 lines
948 B
TypeScript
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
|
|
import { ILocalUser } from '../../../../models/user';
|
|
import { pack } from '../../../../models/user';
|
|
import { addPinned } from '../../../../services/i/pin';
|
|
import getParams from '../../get-params';
|
|
|
|
export const meta = {
|
|
stability: 'stable',
|
|
|
|
desc: {
|
|
'ja-JP': '指定した投稿をピン留めします。'
|
|
},
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'account-write',
|
|
|
|
params: {
|
|
noteId: $.type(ID).note({
|
|
desc: {
|
|
'ja-JP': '対象の投稿のID',
|
|
'en-US': 'Target note ID'
|
|
}
|
|
})
|
|
}
|
|
};
|
|
|
|
export default async (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
|
const [ps, psErr] = getParams(meta, params);
|
|
if (psErr) return rej(psErr);
|
|
|
|
// Processing
|
|
try {
|
|
await addPinned(user, ps.noteId);
|
|
} catch (e) {
|
|
return rej(e.message);
|
|
}
|
|
|
|
// Serialize
|
|
const iObj = await pack(user, user, {
|
|
detail: true
|
|
});
|
|
|
|
// Send response
|
|
res(iObj);
|
|
});
|