2018-09-18 07:08:27 +03:00
|
|
|
import config from '../../config';
|
|
|
|
import * as mongo from 'mongodb';
|
2018-10-02 10:27:36 +03:00
|
|
|
import User, { isLocalUser, isRemoteUser, ILocalUser, IUser } from '../../models/user';
|
2018-10-13 17:12:48 +03:00
|
|
|
import Note, { packMany } from '../../models/note';
|
2018-09-18 07:08:27 +03:00
|
|
|
import Following from '../../models/following';
|
|
|
|
import renderAdd from '../../remote/activitypub/renderer/add';
|
|
|
|
import renderRemove from '../../remote/activitypub/renderer/remove';
|
|
|
|
import packAp from '../../remote/activitypub/renderer';
|
|
|
|
import { deliver } from '../../queue';
|
|
|
|
|
2018-10-02 10:27:36 +03:00
|
|
|
/**
|
|
|
|
* 指定した投稿をピン留めします
|
|
|
|
* @param user
|
|
|
|
* @param noteId
|
|
|
|
*/
|
|
|
|
export async function addPinned(user: IUser, noteId: mongo.ObjectID) {
|
|
|
|
// Fetch pinee
|
|
|
|
const note = await Note.findOne({
|
|
|
|
_id: noteId,
|
|
|
|
userId: user._id
|
|
|
|
});
|
|
|
|
|
|
|
|
if (note === null) {
|
|
|
|
throw new Error('note not found');
|
|
|
|
}
|
|
|
|
|
2018-10-07 13:58:00 +03:00
|
|
|
let pinnedNoteIds = user.pinnedNoteIds || [];
|
|
|
|
|
|
|
|
//#region 現在ピン留め投稿している投稿が実際にデータベースに存在しているのかチェック
|
2018-10-13 17:12:48 +03:00
|
|
|
// データベースの欠損などで存在していない(または破損している)場合があるので。
|
2018-10-07 13:58:00 +03:00
|
|
|
// 存在していなかったらピン留め投稿から外す
|
2018-10-13 17:12:48 +03:00
|
|
|
const pinnedNotes = await packMany(pinnedNoteIds, null, { detail: true });
|
2018-10-07 13:58:00 +03:00
|
|
|
|
2018-10-13 17:12:48 +03:00
|
|
|
pinnedNoteIds = pinnedNoteIds.filter(id => pinnedNotes.some(n => n.id.toString() === id.toHexString()));
|
2018-10-07 13:58:00 +03:00
|
|
|
//#endregion
|
2018-10-02 10:27:36 +03:00
|
|
|
|
2018-10-03 06:37:23 +03:00
|
|
|
if (pinnedNoteIds.length >= 5) {
|
2018-10-02 10:27:36 +03:00
|
|
|
throw new Error('cannot pin more notes');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pinnedNoteIds.some(id => id.equals(note._id))) {
|
|
|
|
throw new Error('already exists');
|
|
|
|
}
|
|
|
|
|
|
|
|
pinnedNoteIds.unshift(note._id);
|
|
|
|
|
|
|
|
await User.update(user._id, {
|
|
|
|
$set: {
|
|
|
|
pinnedNoteIds: pinnedNoteIds
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Deliver to remote followers
|
|
|
|
if (isLocalUser(user)) {
|
|
|
|
deliverPinnedChange(user._id, note._id, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 指定した投稿のピン留めを解除します
|
|
|
|
* @param user
|
|
|
|
* @param noteId
|
|
|
|
*/
|
|
|
|
export async function removePinned(user: IUser, noteId: mongo.ObjectID) {
|
|
|
|
// Fetch unpinee
|
|
|
|
const note = await Note.findOne({
|
|
|
|
_id: noteId,
|
|
|
|
userId: user._id
|
|
|
|
});
|
|
|
|
|
|
|
|
if (note === null) {
|
|
|
|
throw new Error('note not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
const pinnedNoteIds = (user.pinnedNoteIds || []).filter(id => !id.equals(note._id));
|
|
|
|
|
|
|
|
await User.update(user._id, {
|
|
|
|
$set: {
|
|
|
|
pinnedNoteIds: pinnedNoteIds
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Deliver to remote followers
|
|
|
|
if (isLocalUser(user)) {
|
|
|
|
deliverPinnedChange(user._id, noteId, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-24 10:26:12 +03:00
|
|
|
export async function deliverPinnedChange(userId: mongo.ObjectID, noteId: mongo.ObjectID, isAddition: boolean) {
|
2018-09-18 07:08:27 +03:00
|
|
|
const user = await User.findOne({
|
|
|
|
_id: userId
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!isLocalUser(user)) return;
|
|
|
|
|
|
|
|
const queue = await CreateRemoteInboxes(user);
|
|
|
|
|
|
|
|
if (queue.length < 1) return;
|
|
|
|
|
|
|
|
const target = `${config.url}/users/${user._id}/collections/featured`;
|
|
|
|
|
2018-09-24 10:26:12 +03:00
|
|
|
const item = `${config.url}/notes/${noteId}`;
|
|
|
|
const content = packAp(isAddition ? renderAdd(user, target, item) : renderRemove(user, target, item));
|
|
|
|
queue.forEach(inbox => {
|
|
|
|
deliver(user, content, inbox);
|
|
|
|
});
|
2018-09-18 07:08:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ローカルユーザーのリモートフォロワーのinboxリストを作成する
|
|
|
|
* @param user ローカルユーザー
|
|
|
|
*/
|
|
|
|
async function CreateRemoteInboxes(user: ILocalUser): Promise<string[]> {
|
|
|
|
const followers = await Following.find({
|
|
|
|
followeeId: user._id
|
|
|
|
});
|
|
|
|
|
|
|
|
const queue: string[] = [];
|
|
|
|
|
2018-11-30 16:30:28 +02:00
|
|
|
for (const following of followers) {
|
2018-09-18 07:08:27 +03:00
|
|
|
const follower = following._follower;
|
|
|
|
|
|
|
|
if (isRemoteUser(follower)) {
|
|
|
|
const inbox = follower.sharedInbox || follower.inbox;
|
|
|
|
if (!queue.includes(inbox)) queue.push(inbox);
|
|
|
|
}
|
2018-11-30 16:30:28 +02:00
|
|
|
}
|
2018-09-18 07:08:27 +03:00
|
|
|
|
|
|
|
return queue;
|
|
|
|
}
|