1
0
Fork 0
pixelfed/app/Services/FollowerService.php

156 lines
4.2 KiB
PHP
Raw Normal View History

2019-02-14 21:24:34 +00:00
<?php
namespace App\Services;
2019-12-11 06:04:03 +00:00
use Illuminate\Support\Facades\Redis;
2021-07-25 11:56:35 +00:00
use Cache;
2021-12-05 00:37:44 +00:00
use DB;
2019-02-14 21:24:34 +00:00
use App\{
Follower,
2021-07-11 13:43:29 +00:00
Profile,
User
2019-02-14 21:24:34 +00:00
};
2021-07-11 13:43:29 +00:00
class FollowerService
{
2021-12-05 00:37:44 +00:00
const CACHE_KEY = 'pf:services:followers:';
const FOLLOWERS_SYNC_KEY = 'pf:services:followers:sync-followers:';
const FOLLOWING_SYNC_KEY = 'pf:services:followers:sync-following:';
2021-07-11 13:43:29 +00:00
const FOLLOWING_KEY = 'pf:services:follow:following:id:';
const FOLLOWERS_KEY = 'pf:services:follow:followers:id:';
2019-02-14 21:24:34 +00:00
2021-07-11 13:43:29 +00:00
public static function add($actor, $target)
{
RelationshipService::refresh($actor, $target);
2021-07-11 13:43:29 +00:00
Redis::zadd(self::FOLLOWING_KEY . $actor, $target, $target);
Redis::zadd(self::FOLLOWERS_KEY . $target, $actor, $actor);
}
2019-02-14 21:24:34 +00:00
2021-07-11 13:43:29 +00:00
public static function remove($actor, $target)
2019-02-14 21:24:34 +00:00
{
RelationshipService::refresh($actor, $target);
2021-07-11 13:43:29 +00:00
Redis::zrem(self::FOLLOWING_KEY . $actor, $target);
Redis::zrem(self::FOLLOWERS_KEY . $target, $actor);
2021-07-25 11:56:35 +00:00
Cache::forget('pf:services:follow:audience:' . $actor);
Cache::forget('pf:services:follow:audience:' . $target);
2019-02-14 21:24:34 +00:00
}
2021-07-11 13:43:29 +00:00
public static function followers($id, $start = 0, $stop = 10)
2019-02-14 21:24:34 +00:00
{
self::cacheSyncCheck($id, 'followers');
2021-07-11 13:43:29 +00:00
return Redis::zrange(self::FOLLOWERS_KEY . $id, $start, $stop);
2019-02-14 21:24:34 +00:00
}
2021-07-11 13:43:29 +00:00
public static function following($id, $start = 0, $stop = 10)
2019-02-14 21:24:34 +00:00
{
self::cacheSyncCheck($id, 'following');
2021-07-11 13:43:29 +00:00
return Redis::zrange(self::FOLLOWING_KEY . $id, $start, $stop);
2019-02-14 21:24:34 +00:00
}
2021-07-11 13:43:29 +00:00
public static function follows(string $actor, string $target)
{
self::cacheSyncCheck($target, 'followers');
return (bool) Redis::zScore(self::FOLLOWERS_KEY . $target, $actor);
}
public static function cacheSyncCheck($id, $scope = 'followers')
{
if($scope === 'followers') {
if(Cache::get(self::FOLLOWERS_SYNC_KEY . $id) != null) {
return;
}
$followers = Follower::whereFollowingId($id)->pluck('profile_id');
$followers->each(function($fid) use($id) {
self::add($fid, $id);
});
Cache::put(self::FOLLOWERS_SYNC_KEY . $id, 1, 604800);
}
if($scope === 'following') {
if(Cache::get(self::FOLLOWING_SYNC_KEY . $id) != null) {
return;
}
$followers = Follower::whereProfileId($id)->pluck('following_id');
$followers->each(function($fid) use($id) {
self::add($id, $fid);
});
Cache::put(self::FOLLOWING_SYNC_KEY . $id, 1, 604800);
}
return;
2021-07-11 13:43:29 +00:00
}
2019-02-14 21:24:34 +00:00
2021-07-25 11:56:35 +00:00
public static function audience($profile, $scope = null)
2019-02-14 21:24:34 +00:00
{
2021-09-04 02:51:56 +00:00
return (new self)->getAudienceInboxes($profile, $scope);
2019-12-05 02:47:00 +00:00
}
2021-08-31 06:37:02 +00:00
public static function softwareAudience($profile, $software = 'pixelfed')
2019-12-05 02:47:00 +00:00
{
2021-08-31 06:37:02 +00:00
return collect(self::audience($profile))
->filter(function($inbox) use($software) {
$domain = parse_url($inbox, PHP_URL_HOST);
if(!$domain) {
return false;
}
return InstanceService::software($domain) === strtolower($software);
})
->unique()
2021-09-04 02:51:56 +00:00
->values()
->toArray();
2021-08-31 06:37:02 +00:00
}
2021-07-11 13:43:29 +00:00
2021-08-31 06:37:02 +00:00
protected function getAudienceInboxes($pid, $scope = null)
{
$key = 'pf:services:follow:audience:' . $pid;
return Cache::remember($key, 86400, function() use($pid) {
$profile = Profile::find($pid);
if(!$profile) {
return [];
}
2021-07-11 13:43:29 +00:00
return $profile
->followers()
->get()
->map(function($follow) {
return $follow->sharedInbox ?? $follow->inbox_url;
})
2022-06-05 08:35:14 +00:00
->filter()
2021-07-11 13:43:29 +00:00
->unique()
->values()
->toArray();
2021-07-25 11:56:35 +00:00
});
2019-02-14 21:24:34 +00:00
}
2021-12-05 00:37:44 +00:00
public static function mutualCount($pid, $mid)
{
return Cache::remember(self::CACHE_KEY . ':mutualcount:' . $pid . ':' . $mid, 3600, function() use($pid, $mid) {
return DB::table('followers as u')
->join('followers as s', 'u.following_id', '=', 's.following_id')
->where('s.profile_id', $mid)
->where('u.profile_id', $pid)
->count();
});
}
public static function mutualIds($pid, $mid, $limit = 3)
{
$key = self::CACHE_KEY . ':mutualids:' . $pid . ':' . $mid . ':limit_' . $limit;
return Cache::remember($key, 3600, function() use($pid, $mid, $limit) {
return DB::table('followers as u')
->join('followers as s', 'u.following_id', '=', 's.following_id')
->where('s.profile_id', $mid)
->where('u.profile_id', $pid)
->limit($limit)
->pluck('s.following_id')
->toArray();
});
}
public static function delCache($id)
{
Redis::del(self::CACHE_KEY . $id);
Redis::del(self::FOLLOWING_KEY . $id);
Redis::del(self::FOLLOWERS_KEY . $id);
Redis::del(self::FOLLOWERS_SYNC_KEY . $id);
Redis::del(self::FOLLOWING_SYNC_KEY . $id);
}
2020-02-22 11:11:46 +00:00
}