2018-09-18 04:14:17 +00:00
|
|
|
import * as mongo from 'mongodb';
|
2018-07-07 10:19:00 +00:00
|
|
|
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
|
2018-06-18 00:54:53 +00:00
|
|
|
import User, { ILocalUser } from '../../../../models/user';
|
2018-04-07 17:30:37 +00:00
|
|
|
import Note from '../../../../models/note';
|
2018-03-29 11:32:18 +00:00
|
|
|
import { pack } from '../../../../models/user';
|
2018-09-18 04:08:27 +00:00
|
|
|
import { deliverPinnedChange } from '../../../../services/i/pin';
|
2017-08-30 08:31:39 +00:00
|
|
|
|
|
|
|
/**
|
2018-04-07 17:30:37 +00:00
|
|
|
* Pin note
|
2017-08-30 08:31:39 +00:00
|
|
|
*/
|
2018-07-05 17:58:29 +00:00
|
|
|
export default async (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
2018-04-07 17:30:37 +00:00
|
|
|
// Get 'noteId' parameter
|
2018-05-02 09:06:16 +00:00
|
|
|
const [noteId, noteIdErr] = $.type(ID).get(params.noteId);
|
2018-04-07 17:30:37 +00:00
|
|
|
if (noteIdErr) return rej('invalid noteId param');
|
2017-08-30 08:31:39 +00:00
|
|
|
|
|
|
|
// Fetch pinee
|
2018-04-07 17:30:37 +00:00
|
|
|
const note = await Note.findOne({
|
|
|
|
_id: noteId,
|
2018-03-29 05:48:47 +00:00
|
|
|
userId: user._id
|
2017-08-30 08:31:39 +00:00
|
|
|
});
|
|
|
|
|
2018-04-07 17:30:37 +00:00
|
|
|
if (note === null) {
|
|
|
|
return rej('note not found');
|
2017-08-30 08:31:39 +00:00
|
|
|
}
|
|
|
|
|
2018-09-18 04:14:17 +00:00
|
|
|
let addedId: mongo.ObjectID;
|
|
|
|
let removedId: mongo.ObjectID;
|
2018-09-18 04:08:27 +00:00
|
|
|
|
2018-09-17 21:29:47 +00:00
|
|
|
const pinnedNoteIds = user.pinnedNoteIds || [];
|
|
|
|
|
|
|
|
if (pinnedNoteIds.some(id => id.equals(note._id))) {
|
|
|
|
return rej('already exists');
|
|
|
|
}
|
|
|
|
|
|
|
|
pinnedNoteIds.unshift(note._id);
|
2018-09-18 04:08:27 +00:00
|
|
|
addedId = note._id;
|
2018-09-17 21:29:47 +00:00
|
|
|
|
|
|
|
if (pinnedNoteIds.length > 5) {
|
2018-09-18 04:08:27 +00:00
|
|
|
removedId = pinnedNoteIds.pop();
|
2018-09-17 21:29:47 +00:00
|
|
|
}
|
|
|
|
|
2017-08-30 08:31:39 +00:00
|
|
|
await User.update(user._id, {
|
|
|
|
$set: {
|
2018-09-17 21:29:47 +00:00
|
|
|
pinnedNoteIds: pinnedNoteIds
|
2017-08-30 08:31:39 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Serialize
|
2018-02-01 23:21:30 +00:00
|
|
|
const iObj = await pack(user, user, {
|
2017-08-30 08:31:39 +00:00
|
|
|
detail: true
|
|
|
|
});
|
|
|
|
|
2018-09-18 04:08:27 +00:00
|
|
|
// Send Add/Remove to followers
|
|
|
|
deliverPinnedChange(user._id, removedId, addedId);
|
|
|
|
|
2017-08-30 08:31:39 +00:00
|
|
|
// Send response
|
|
|
|
res(iObj);
|
|
|
|
});
|