2018-04-04 14:59:38 +00:00
|
|
|
import User, { isLocalUser, isRemoteUser, pack as packUser, IUser } from '../../models/user';
|
|
|
|
import Following from '../../models/following';
|
2018-10-29 11:32:42 +00:00
|
|
|
import Blocking from '../../models/blocking';
|
2018-10-07 02:06:17 +00:00
|
|
|
import { publishMainStream } from '../../stream';
|
2018-07-07 18:15:54 +00:00
|
|
|
import notify from '../../notify';
|
2019-01-30 17:29:36 +00:00
|
|
|
import { renderActivity } 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-10-29 11:32:42 +00:00
|
|
|
import renderReject from '../../remote/activitypub/renderer/reject';
|
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-10-22 20:36:35 +00:00
|
|
|
import perUserFollowingChart from '../../chart/per-user-following';
|
2018-04-04 14:59:38 +00:00
|
|
|
|
2018-10-15 07:51:23 +00:00
|
|
|
export default async function(follower: IUser, followee: IUser, requestId?: string) {
|
2018-10-29 11:32:42 +00:00
|
|
|
// check blocking
|
2018-10-29 12:38:09 +00:00
|
|
|
const [blocking, blocked] = await Promise.all([
|
2018-10-29 11:32:42 +00:00
|
|
|
Blocking.findOne({
|
|
|
|
blockerId: follower._id,
|
|
|
|
blockeeId: followee._id,
|
|
|
|
}),
|
|
|
|
Blocking.findOne({
|
|
|
|
blockerId: followee._id,
|
|
|
|
blockeeId: follower._id,
|
|
|
|
})
|
|
|
|
]);
|
|
|
|
|
|
|
|
if (isRemoteUser(follower) && isLocalUser(followee) && blocked) {
|
|
|
|
// リモートフォローを受けてブロックしていた場合は、エラーにするのではなくRejectを送り返しておしまい。
|
2019-01-30 17:29:36 +00:00
|
|
|
const content = renderActivity(renderReject(renderFollow(follower, followee, requestId), followee));
|
2018-10-29 11:32:42 +00:00
|
|
|
deliver(followee , content, follower.inbox);
|
|
|
|
return;
|
|
|
|
} else if (isRemoteUser(follower) && isLocalUser(followee) && blocking) {
|
|
|
|
// リモートフォローを受けてブロックされているはずの場合だったら、ブロック解除しておく。
|
|
|
|
await Blocking.remove({
|
|
|
|
_id: blocking._id
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// それ以外は単純に例外
|
|
|
|
if (blocking != null) throw new Error('blocking');
|
|
|
|
if (blocked != null) throw new Error('blocked');
|
|
|
|
}
|
|
|
|
|
2018-10-13 11:11:00 +00:00
|
|
|
// フォロー対象が鍵アカウントである or
|
|
|
|
// フォロワーがBotであり、フォロー対象がBotからのフォローに慎重である or
|
|
|
|
// フォロワーがローカルユーザーであり、フォロー対象がリモートユーザーである
|
|
|
|
// 上記のいずれかに当てはまる場合はすぐフォローせずにフォローリクエストを発行しておく
|
|
|
|
if (followee.isLocked || (followee.carefulBot && follower.isBot) || (isLocalUser(follower) && isRemoteUser(followee))) {
|
2018-12-28 12:36:58 +00:00
|
|
|
let autoAccept = false;
|
|
|
|
|
|
|
|
// フォローしているユーザーは自動承認オプション
|
|
|
|
if (isLocalUser(followee) && followee.autoAcceptFollowed) {
|
|
|
|
const followed = await Following.findOne({
|
|
|
|
followerId: followee._id,
|
|
|
|
followeeId: follower._id
|
|
|
|
});
|
|
|
|
|
|
|
|
if (followed) autoAccept = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!autoAccept) {
|
|
|
|
await createFollowRequest(follower, followee, requestId);
|
|
|
|
return;
|
|
|
|
}
|
2018-10-13 11:11:00 +00:00
|
|
|
}
|
2018-04-04 14:59:38 +00:00
|
|
|
|
2018-10-21 05:15:02 +00:00
|
|
|
await Following.insert({
|
2018-10-13 11:11:00 +00:00
|
|
|
createdAt: new Date(),
|
|
|
|
followerId: follower._id,
|
|
|
|
followeeId: followee._id,
|
2018-04-04 14:59:38 +00:00
|
|
|
|
2018-10-13 11:11:00 +00:00
|
|
|
// 非正規化
|
|
|
|
_follower: {
|
|
|
|
host: follower.host,
|
|
|
|
inbox: isRemoteUser(follower) ? follower.inbox : undefined,
|
|
|
|
sharedInbox: isRemoteUser(follower) ? follower.sharedInbox : undefined
|
|
|
|
},
|
|
|
|
_followee: {
|
|
|
|
host: followee.host,
|
|
|
|
inbox: isRemoteUser(followee) ? followee.inbox : undefined,
|
|
|
|
sharedInbox: isRemoteUser(followee) ? followee.sharedInbox : undefined
|
|
|
|
}
|
|
|
|
});
|
2018-04-04 14:59:38 +00:00
|
|
|
|
2018-10-13 11:11:00 +00:00
|
|
|
//#region Increment following count
|
|
|
|
User.update({ _id: follower._id }, {
|
|
|
|
$inc: {
|
|
|
|
followingCount: 1
|
|
|
|
}
|
|
|
|
});
|
|
|
|
//#endregion
|
2018-04-04 14:59:38 +00:00
|
|
|
|
2018-10-13 11:11:00 +00:00
|
|
|
//#region Increment followers count
|
|
|
|
User.update({ _id: followee._id }, {
|
|
|
|
$inc: {
|
|
|
|
followersCount: 1
|
2018-05-31 13:56:02 +00:00
|
|
|
}
|
2018-10-13 11:11:00 +00:00
|
|
|
});
|
|
|
|
//#endregion
|
|
|
|
|
2018-10-22 20:36:35 +00:00
|
|
|
perUserFollowingChart.update(follower, followee, true);
|
2018-10-21 08:51:35 +00:00
|
|
|
|
2018-10-13 11:11:00 +00:00
|
|
|
// Publish follow event
|
|
|
|
if (isLocalUser(follower)) {
|
2018-10-30 05:34:32 +00:00
|
|
|
packUser(followee, follower, {
|
|
|
|
detail: true
|
|
|
|
}).then(packed => publishMainStream(follower._id, 'follow', packed));
|
2018-10-13 11:11:00 +00:00
|
|
|
}
|
2018-04-04 14:59:38 +00:00
|
|
|
|
2018-10-13 11:11:00 +00:00
|
|
|
// Publish followed event
|
|
|
|
if (isLocalUser(followee)) {
|
|
|
|
packUser(follower, followee).then(packed => publishMainStream(followee._id, 'followed', packed)),
|
2018-05-31 13:56:02 +00:00
|
|
|
|
2018-10-13 11:11:00 +00:00
|
|
|
// 通知を作成
|
|
|
|
notify(followee._id, follower._id, 'follow');
|
|
|
|
}
|
2018-04-04 14:59:38 +00:00
|
|
|
|
2018-10-13 11:11:00 +00:00
|
|
|
if (isRemoteUser(follower) && isLocalUser(followee)) {
|
2019-01-30 17:29:36 +00:00
|
|
|
const content = renderActivity(renderAccept(renderFollow(follower, followee, requestId), followee));
|
2018-10-13 11:11:00 +00:00
|
|
|
deliver(followee, content, follower.inbox);
|
2018-04-04 14:59:38 +00:00
|
|
|
}
|
|
|
|
}
|