2018-04-04 17:59:38 +03:00
|
|
|
import User, { isLocalUser, isRemoteUser, pack as packUser, IUser } from '../../models/user';
|
|
|
|
import Following from '../../models/following';
|
2018-10-29 13:32:42 +02:00
|
|
|
import Blocking from '../../models/blocking';
|
2019-02-05 07:14:23 +02:00
|
|
|
import { publishMainStream } from '../stream';
|
|
|
|
import notify from '../../services/create-notification';
|
2019-01-30 19:29:36 +02:00
|
|
|
import { renderActivity } from '../../remote/activitypub/renderer';
|
2018-04-04 17:59:38 +03:00
|
|
|
import renderFollow from '../../remote/activitypub/renderer/follow';
|
|
|
|
import renderAccept from '../../remote/activitypub/renderer/accept';
|
2018-10-29 13:32:42 +02:00
|
|
|
import renderReject from '../../remote/activitypub/renderer/reject';
|
2018-04-05 17:24:51 +03:00
|
|
|
import { deliver } from '../../queue';
|
2018-06-01 18:38:31 +03:00
|
|
|
import createFollowRequest from './requests/create';
|
2018-10-22 23:36:35 +03:00
|
|
|
import perUserFollowingChart from '../../chart/per-user-following';
|
2018-04-04 17:59:38 +03:00
|
|
|
|
2018-10-15 10:51:23 +03:00
|
|
|
export default async function(follower: IUser, followee: IUser, requestId?: string) {
|
2018-10-29 13:32:42 +02:00
|
|
|
// check blocking
|
2018-10-29 14:38:09 +02:00
|
|
|
const [blocking, blocked] = await Promise.all([
|
2018-10-29 13:32:42 +02: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 19:29:36 +02:00
|
|
|
const content = renderActivity(renderReject(renderFollow(follower, followee, requestId), followee));
|
2018-10-29 13:32:42 +02: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 14:11:00 +03:00
|
|
|
// フォロー対象が鍵アカウントである or
|
|
|
|
// フォロワーがBotであり、フォロー対象がBotからのフォローに慎重である or
|
|
|
|
// フォロワーがローカルユーザーであり、フォロー対象がリモートユーザーである
|
|
|
|
// 上記のいずれかに当てはまる場合はすぐフォローせずにフォローリクエストを発行しておく
|
|
|
|
if (followee.isLocked || (followee.carefulBot && follower.isBot) || (isLocalUser(follower) && isRemoteUser(followee))) {
|
2018-12-28 14:36:58 +02: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 14:11:00 +03:00
|
|
|
}
|
2018-04-04 17:59:38 +03:00
|
|
|
|
2018-10-21 08:15:02 +03:00
|
|
|
await Following.insert({
|
2018-10-13 14:11:00 +03:00
|
|
|
createdAt: new Date(),
|
|
|
|
followerId: follower._id,
|
|
|
|
followeeId: followee._id,
|
2018-04-04 17:59:38 +03:00
|
|
|
|
2018-10-13 14:11:00 +03: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 17:59:38 +03:00
|
|
|
|
2018-10-13 14:11:00 +03:00
|
|
|
//#region Increment following count
|
|
|
|
User.update({ _id: follower._id }, {
|
|
|
|
$inc: {
|
|
|
|
followingCount: 1
|
|
|
|
}
|
|
|
|
});
|
|
|
|
//#endregion
|
2018-04-04 17:59:38 +03:00
|
|
|
|
2018-10-13 14:11:00 +03:00
|
|
|
//#region Increment followers count
|
|
|
|
User.update({ _id: followee._id }, {
|
|
|
|
$inc: {
|
|
|
|
followersCount: 1
|
2018-05-31 16:56:02 +03:00
|
|
|
}
|
2018-10-13 14:11:00 +03:00
|
|
|
});
|
|
|
|
//#endregion
|
|
|
|
|
2018-10-22 23:36:35 +03:00
|
|
|
perUserFollowingChart.update(follower, followee, true);
|
2018-10-21 11:51:35 +03:00
|
|
|
|
2018-10-13 14:11:00 +03:00
|
|
|
// Publish follow event
|
|
|
|
if (isLocalUser(follower)) {
|
2018-10-30 07:34:32 +02:00
|
|
|
packUser(followee, follower, {
|
|
|
|
detail: true
|
|
|
|
}).then(packed => publishMainStream(follower._id, 'follow', packed));
|
2018-10-13 14:11:00 +03:00
|
|
|
}
|
2018-04-04 17:59:38 +03:00
|
|
|
|
2018-10-13 14:11:00 +03:00
|
|
|
// Publish followed event
|
|
|
|
if (isLocalUser(followee)) {
|
|
|
|
packUser(follower, followee).then(packed => publishMainStream(followee._id, 'followed', packed)),
|
2018-05-31 16:56:02 +03:00
|
|
|
|
2018-10-13 14:11:00 +03:00
|
|
|
// 通知を作成
|
|
|
|
notify(followee._id, follower._id, 'follow');
|
|
|
|
}
|
2018-04-04 17:59:38 +03:00
|
|
|
|
2018-10-13 14:11:00 +03:00
|
|
|
if (isRemoteUser(follower) && isLocalUser(followee)) {
|
2019-01-30 19:29:36 +02:00
|
|
|
const content = renderActivity(renderAccept(renderFollow(follower, followee, requestId), followee));
|
2018-10-13 14:11:00 +03:00
|
|
|
deliver(followee, content, follower.inbox);
|
2018-04-04 17:59:38 +03:00
|
|
|
}
|
|
|
|
}
|