2018-07-07 13:19:00 +03:00
|
|
|
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
|
2018-06-18 03:54:53 +03:00
|
|
|
import User, { ILocalUser } from '../../../../models/user';
|
2018-04-07 20:30:37 +03:00
|
|
|
import Note from '../../../../models/note';
|
2018-03-29 14:32:18 +03:00
|
|
|
import { pack } from '../../../../models/user';
|
2018-09-18 07:08:27 +03:00
|
|
|
import { deliverPinnedChange } from '../../../../services/i/pin';
|
2018-09-24 10:26:12 +03: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 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) => {
|
2018-09-24 10:26:12 +03:00
|
|
|
const [ps, psErr] = getParams(meta, params);
|
|
|
|
if (psErr) return rej(psErr);
|
2017-08-30 11:31:39 +03:00
|
|
|
|
|
|
|
// Fetch pinee
|
2018-04-07 20:30:37 +03:00
|
|
|
const note = await Note.findOne({
|
2018-09-24 10:26:12 +03:00
|
|
|
_id: ps.noteId,
|
2018-03-29 08:48:47 +03:00
|
|
|
userId: user._id
|
2017-08-30 11:31:39 +03:00
|
|
|
});
|
|
|
|
|
2018-04-07 20:30:37 +03:00
|
|
|
if (note === null) {
|
|
|
|
return rej('note not found');
|
2017-08-30 11:31:39 +03:00
|
|
|
}
|
|
|
|
|
2018-09-18 00:29:47 +03:00
|
|
|
const pinnedNoteIds = user.pinnedNoteIds || [];
|
|
|
|
|
2018-09-24 10:26:12 +03:00
|
|
|
if (pinnedNoteIds.length > 5) {
|
|
|
|
return rej('cannot pin more notes');
|
|
|
|
}
|
|
|
|
|
2018-09-18 00:29:47 +03:00
|
|
|
if (pinnedNoteIds.some(id => id.equals(note._id))) {
|
|
|
|
return rej('already exists');
|
|
|
|
}
|
|
|
|
|
|
|
|
pinnedNoteIds.unshift(note._id);
|
|
|
|
|
2017-08-30 11:31:39 +03:00
|
|
|
await User.update(user._id, {
|
|
|
|
$set: {
|
2018-09-18 00:29:47 +03:00
|
|
|
pinnedNoteIds: pinnedNoteIds
|
2017-08-30 11:31:39 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
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);
|
2018-09-24 10:26:12 +03:00
|
|
|
|
|
|
|
// Send Add to followers
|
|
|
|
deliverPinnedChange(user._id, note._id, true);
|
2017-08-30 11:31:39 +03:00
|
|
|
});
|