1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-04 10:39:08 +00:00
pixelfed/app/Http/Controllers/FollowerController.php

165 lines
5.9 KiB
PHP
Raw Normal View History

<?php
namespace App\Http\Controllers;
2018-11-02 20:58:26 -06:00
use App\{
Follower,
FollowRequest,
Profile,
UserFilter
};
2019-02-24 22:57:22 -07:00
use Auth, Cache;
use Illuminate\Http\Request;
2018-11-02 20:58:26 -06:00
use App\Jobs\FollowPipeline\FollowPipeline;
use App\Util\ActivityPub\Helpers;
class FollowerController extends Controller
{
2018-05-29 20:59:10 -06:00
public function __construct()
{
2018-08-28 03:07:36 +00:00
$this->middleware('auth');
2018-05-29 20:59:10 -06:00
}
public function store(Request $request)
{
2018-08-28 03:07:36 +00:00
$this->validate($request, [
2019-12-04 20:24:08 -07:00
'item' => 'required|string',
'force' => 'nullable|boolean',
]);
2019-12-04 20:24:08 -07:00
$force = (bool) $request->input('force', true);
2019-08-22 21:22:00 -06:00
$item = (int) $request->input('item');
2019-12-04 20:24:08 -07:00
$url = $this->handleFollowRequest($item, $force);
if($request->wantsJson() == true) {
return response()->json(200);
} else {
2019-12-04 20:24:08 -07:00
return redirect($url);
}
}
2018-05-29 20:59:10 -06:00
2019-12-04 20:24:08 -07:00
protected function handleFollowRequest($item, $force)
{
2018-08-28 03:07:36 +00:00
$user = Auth::user()->profile;
2019-06-01 20:18:21 -06:00
2018-12-23 21:51:44 -07:00
$target = Profile::where('id', '!=', $user->id)->whereNull('status')->findOrFail($item);
$private = (bool) $target->is_private;
2019-01-12 13:46:14 -07:00
$remote = (bool) $target->domain;
2018-11-02 20:58:26 -06:00
$blocked = UserFilter::whereUserId($target->id)
->whereFilterType('block')
->whereFilterableId($user->id)
->whereFilterableType('App\Profile')
->exists();
if($blocked == true) {
2019-06-01 20:18:21 -06:00
abort(400, 'You cannot follow this user.');
2018-11-02 20:58:26 -06:00
}
2019-08-12 01:25:53 -06:00
$isFollowing = Follower::whereProfileId($user->id)->whereFollowingId($target->id)->exists();
2018-05-29 20:59:10 -06:00
2019-11-10 20:42:30 -07:00
if($private == true && $isFollowing == 0) {
if($user->following()->count() >= Follower::MAX_FOLLOWING) {
abort(400, 'You cannot follow more than ' . Follower::MAX_FOLLOWING . ' accounts');
}
if($user->following()->where('followers.created_at', '>', now()->subHour())->count() >= Follower::FOLLOW_PER_HOUR) {
abort(400, 'You can only follow ' . Follower::FOLLOW_PER_HOUR . ' users per hour');
}
2018-09-02 22:00:31 -06:00
$follow = FollowRequest::firstOrCreate([
'follower_id' => $user->id,
'following_id' => $target->id
]);
if($remote == true && config('federation.activitypub.remoteFollow') == true) {
$this->sendFollow($user, $target);
}
2019-11-10 20:42:30 -07:00
} elseif ($private == false && $isFollowing == 0) {
2019-06-01 20:18:21 -06:00
if($user->following()->count() >= Follower::MAX_FOLLOWING) {
abort(400, 'You cannot follow more than ' . Follower::MAX_FOLLOWING . ' accounts');
}
if($user->following()->where('followers.created_at', '>', now()->subHour())->count() >= Follower::FOLLOW_PER_HOUR) {
abort(400, 'You can only follow ' . Follower::FOLLOW_PER_HOUR . ' users per hour');
}
2018-08-28 03:07:36 +00:00
$follower = new Follower();
$follower->profile_id = $user->id;
$follower->following_id = $target->id;
$follower->save();
2019-08-12 02:47:20 -06:00
2019-08-12 01:25:53 -06:00
if($remote == true && config('federation.activitypub.remoteFollow') == true) {
$this->sendFollow($user, $target);
}
2018-08-28 03:07:36 +00:00
FollowPipeline::dispatch($follower);
} else {
2019-12-04 20:24:08 -07:00
if($force == true) {
$request = FollowRequest::whereFollowerId($user->id)->whereFollowingId($target->id)->exists();
$follower = Follower::whereProfileId($user->id)->whereFollowingId($target->id)->exists();
if($remote == true && $request && !$follower) {
$this->sendFollow($user, $target);
}
if($remote == true && $follower) {
$this->sendUndoFollow($user, $target);
}
Follower::whereProfileId($user->id)
->whereFollowingId($target->id)
->delete();
}
2018-08-28 03:07:36 +00:00
}
2019-02-24 22:57:22 -07:00
2019-03-03 22:05:58 -07:00
Cache::forget('profile:following:'.$target->id);
2019-02-24 22:57:22 -07:00
Cache::forget('profile:followers:'.$target->id);
Cache::forget('profile:following:'.$user->id);
2019-03-03 22:05:58 -07:00
Cache::forget('profile:followers:'.$user->id);
2019-04-28 17:49:24 -06:00
Cache::forget('api:local:exp:rec:'.$user->id);
Cache::forget('user:account:id:'.$target->user_id);
Cache::forget('user:account:id:'.$user->user_id);
2020-01-06 23:32:32 -07:00
Cache::forget('px:profile:followers-v1.3:'.$user->id);
Cache::forget('px:profile:followers-v1.3:'.$target->id);
Cache::forget('px:profile:following-v1.3:'.$user->id);
Cache::forget('px:profile:following-v1.3:'.$target->id);
2019-12-04 20:24:08 -07:00
return $target->url();
2018-05-29 20:59:10 -06:00
}
public function sendFollow($user, $target)
{
if($target->domain == null || $user->domain != null) {
return;
}
$payload = [
'@context' => 'https://www.w3.org/ns/activitystreams',
'id' => $user->permalink('#follow/'.$target->id),
'type' => 'Follow',
'actor' => $user->permalink(),
'object' => $target->permalink()
];
$inbox = $target->sharedInbox ?? $target->inbox_url;
Helpers::sendSignedObject($user, $inbox, $payload);
}
public function sendUndoFollow($user, $target)
{
if($target->domain == null || $user->domain != null) {
return;
}
$payload = [
'@context' => 'https://www.w3.org/ns/activitystreams',
'id' => $user->permalink('#follow/'.$target->id.'/undo'),
'type' => 'Undo',
'actor' => $user->permalink(),
'object' => [
'id' => $user->permalink('#follows/'.$target->id),
'actor' => $user->permalink(),
'object' => $target->permalink(),
'type' => 'Follow'
]
];
$inbox = $target->sharedInbox ?? $target->inbox_url;
Helpers::sendSignedObject($user, $inbox, $payload);
}
}