2018-04-04 14:59:38 +00:00
|
|
|
import User, { isLocalUser, isRemoteUser, pack as packUser, IUser } from '../../models/user';
|
|
|
|
import Following from '../../models/following';
|
|
|
|
import FollowingLog from '../../models/following-log';
|
|
|
|
import FollowedLog from '../../models/followed-log';
|
2018-07-29 22:20:27 +00:00
|
|
|
import { publishUserStream } from '../../stream';
|
2018-07-07 18:15:54 +00:00
|
|
|
import notify from '../../notify';
|
2018-04-13 05:39:08 +00:00
|
|
|
import pack from '../../remote/activitypub/renderer';
|
2018-04-04 14:59:38 +00:00
|
|
|
import renderFollow from '../../remote/activitypub/renderer/follow';
|
|
|
|
import renderAccept from '../../remote/activitypub/renderer/accept';
|
2018-04-05 14:24:51 +00:00
|
|
|
import { deliver } from '../../queue';
|
2018-06-01 15:38:31 +00:00
|
|
|
import createFollowRequest from './requests/create';
|
2018-04-04 14:59:38 +00:00
|
|
|
|
2018-05-31 13:56:02 +00:00
|
|
|
export default async function(follower: IUser, followee: IUser) {
|
|
|
|
if (followee.isLocked) {
|
2018-06-01 15:38:31 +00:00
|
|
|
await createFollowRequest(follower, followee);
|
2018-05-31 13:56:02 +00:00
|
|
|
} else {
|
|
|
|
const following = await Following.insert({
|
|
|
|
createdAt: new Date(),
|
|
|
|
followerId: follower._id,
|
|
|
|
followeeId: followee._id,
|
2018-04-04 14:59:38 +00:00
|
|
|
|
2018-05-31 13:56:02 +00:00
|
|
|
// 非正規化
|
|
|
|
_follower: {
|
|
|
|
host: follower.host,
|
2018-07-21 10:33:56 +00:00
|
|
|
inbox: isRemoteUser(follower) ? follower.inbox : undefined,
|
|
|
|
sharedInbox: isRemoteUser(follower) ? follower.sharedInbox : undefined
|
2018-05-31 13:56:02 +00:00
|
|
|
},
|
|
|
|
_followee: {
|
|
|
|
host: followee.host,
|
2018-07-21 10:33:56 +00:00
|
|
|
inbox: isRemoteUser(followee) ? followee.inbox : undefined,
|
|
|
|
sharedInbox: isRemoteUser(followee) ? followee.sharedInbox : undefined
|
2018-05-31 13:56:02 +00:00
|
|
|
}
|
|
|
|
});
|
2018-04-04 14:59:38 +00:00
|
|
|
|
2018-05-31 13:56:02 +00:00
|
|
|
//#region Increment following count
|
|
|
|
User.update({ _id: follower._id }, {
|
|
|
|
$inc: {
|
|
|
|
followingCount: 1
|
|
|
|
}
|
|
|
|
});
|
2018-04-04 14:59:38 +00:00
|
|
|
|
2018-05-31 13:56:02 +00:00
|
|
|
FollowingLog.insert({
|
|
|
|
createdAt: following.createdAt,
|
|
|
|
userId: follower._id,
|
|
|
|
count: follower.followingCount + 1
|
|
|
|
});
|
|
|
|
//#endregion
|
2018-04-04 14:59:38 +00:00
|
|
|
|
2018-05-31 13:56:02 +00:00
|
|
|
//#region Increment followers count
|
|
|
|
User.update({ _id: followee._id }, {
|
|
|
|
$inc: {
|
|
|
|
followersCount: 1
|
|
|
|
}
|
|
|
|
});
|
|
|
|
FollowedLog.insert({
|
|
|
|
createdAt: following.createdAt,
|
|
|
|
userId: followee._id,
|
|
|
|
count: followee.followersCount + 1
|
|
|
|
});
|
|
|
|
//#endregion
|
2018-04-04 14:59:38 +00:00
|
|
|
|
2018-05-31 13:56:02 +00:00
|
|
|
// Publish follow event
|
|
|
|
if (isLocalUser(follower)) {
|
2018-07-29 22:20:27 +00:00
|
|
|
packUser(followee, follower).then(packed => publishUserStream(follower._id, 'follow', packed));
|
2018-05-31 13:56:02 +00:00
|
|
|
}
|
2018-04-04 14:59:38 +00:00
|
|
|
|
2018-05-31 13:56:02 +00:00
|
|
|
// Publish followed event
|
|
|
|
if (isLocalUser(followee)) {
|
2018-07-29 22:20:27 +00:00
|
|
|
packUser(follower, followee).then(packed => publishUserStream(followee._id, 'followed', packed)),
|
2018-05-31 13:56:02 +00:00
|
|
|
|
|
|
|
// 通知を作成
|
|
|
|
notify(followee._id, follower._id, 'follow');
|
|
|
|
}
|
2018-04-04 14:59:38 +00:00
|
|
|
|
2018-05-31 13:56:02 +00:00
|
|
|
if (isLocalUser(follower) && isRemoteUser(followee)) {
|
|
|
|
const content = pack(renderFollow(follower, followee));
|
|
|
|
deliver(follower, content, followee.inbox);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isRemoteUser(follower) && isLocalUser(followee)) {
|
|
|
|
const content = pack(renderAccept(renderFollow(follower, followee)));
|
|
|
|
deliver(followee, content, follower.inbox);
|
|
|
|
}
|
2018-04-04 14:59:38 +00:00
|
|
|
}
|
|
|
|
}
|