|
|
|
@ -2,23 +2,22 @@
|
|
|
|
|
|
|
|
|
|
namespace App\Services;
|
|
|
|
|
|
|
|
|
|
use App\Jobs\InternalPipeline\NotificationEpochUpdatePipeline;
|
|
|
|
|
use App\Notification;
|
|
|
|
|
use App\Transformer\Api\NotificationTransformer;
|
|
|
|
|
use Cache;
|
|
|
|
|
use Illuminate\Support\Facades\Redis;
|
|
|
|
|
use App\{
|
|
|
|
|
Notification,
|
|
|
|
|
Profile
|
|
|
|
|
};
|
|
|
|
|
use App\Transformer\Api\NotificationTransformer;
|
|
|
|
|
use League\Fractal;
|
|
|
|
|
use League\Fractal\Serializer\ArraySerializer;
|
|
|
|
|
use League\Fractal\Pagination\IlluminatePaginatorAdapter;
|
|
|
|
|
use App\Jobs\InternalPipeline\NotificationEpochUpdatePipeline;
|
|
|
|
|
|
|
|
|
|
class NotificationService {
|
|
|
|
|
|
|
|
|
|
class NotificationService
|
|
|
|
|
{
|
|
|
|
|
const CACHE_KEY = 'pf:services:notifications:ids:';
|
|
|
|
|
|
|
|
|
|
const EPOCH_CACHE_KEY = 'pf:services:notifications:epoch-id:by-months:';
|
|
|
|
|
|
|
|
|
|
const ITEM_CACHE_TTL = 86400;
|
|
|
|
|
|
|
|
|
|
const MASTODON_TYPES = [
|
|
|
|
|
'follow',
|
|
|
|
|
'follow_request',
|
|
|
|
@ -26,7 +25,7 @@ class NotificationService {
|
|
|
|
|
'reblog',
|
|
|
|
|
'favourite',
|
|
|
|
|
'poll',
|
|
|
|
|
'status'
|
|
|
|
|
'status',
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
public static function get($id, $start = 0, $stop = 400)
|
|
|
|
@ -44,6 +43,7 @@ class NotificationService {
|
|
|
|
|
$res->push($n);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -52,8 +52,10 @@ class NotificationService {
|
|
|
|
|
$epoch = Cache::get(self::EPOCH_CACHE_KEY.$months);
|
|
|
|
|
if (! $epoch) {
|
|
|
|
|
NotificationEpochUpdatePipeline::dispatch();
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $epoch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -69,6 +71,7 @@ class NotificationService {
|
|
|
|
|
foreach ($ids as $key) {
|
|
|
|
|
self::set($id, $key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $ids;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -87,6 +90,7 @@ class NotificationService {
|
|
|
|
|
$res->push($n);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $res->toArray();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -105,10 +109,10 @@ class NotificationService {
|
|
|
|
|
$res->push($n);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $res->toArray();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static function getMaxMastodon($id = false, $start = 0, $limit = 10)
|
|
|
|
|
{
|
|
|
|
|
$ids = self::getRankedMaxId($id, $start, $limit);
|
|
|
|
@ -129,6 +133,11 @@ class NotificationService {
|
|
|
|
|
unset($n['relationship']);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($n['type'] === 'mention' && isset($n['tagged'], $n['tagged']['status_id'])) {
|
|
|
|
|
$n['status'] = StatusService::getMastodon($n['tagged']['status_id'], false);
|
|
|
|
|
unset($n['tagged']);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isset($n['status'])) {
|
|
|
|
|
$n['status'] = StatusService::getMastodon($n['status']['id'], false);
|
|
|
|
|
}
|
|
|
|
@ -136,6 +145,7 @@ class NotificationService {
|
|
|
|
|
$res->push($n);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $res->toArray();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -159,6 +169,11 @@ class NotificationService {
|
|
|
|
|
unset($n['relationship']);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($n['type'] === 'mention' && isset($n['tagged'], $n['tagged']['status_id'])) {
|
|
|
|
|
$n['status'] = StatusService::getMastodon($n['tagged']['status_id'], false);
|
|
|
|
|
unset($n['tagged']);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isset($n['status'])) {
|
|
|
|
|
$n['status'] = StatusService::getMastodon($n['status']['id'], false);
|
|
|
|
|
}
|
|
|
|
@ -166,6 +181,7 @@ class NotificationService {
|
|
|
|
|
$res->push($n);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $res->toArray();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -177,7 +193,7 @@ class NotificationService {
|
|
|
|
|
|
|
|
|
|
return array_keys(Redis::zrevrangebyscore(self::CACHE_KEY.$id, $start, '-inf', [
|
|
|
|
|
'withscores' => true,
|
|
|
|
|
'limit' => [1, $limit]
|
|
|
|
|
'limit' => [1, $limit],
|
|
|
|
|
]));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -189,7 +205,7 @@ class NotificationService {
|
|
|
|
|
|
|
|
|
|
return array_keys(Redis::zrevrangebyscore(self::CACHE_KEY.$id, '+inf', $end, [
|
|
|
|
|
'withscores' => true,
|
|
|
|
|
'limit' => [0, $limit]
|
|
|
|
|
'limit' => [0, $limit],
|
|
|
|
|
]));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -207,6 +223,10 @@ class NotificationService {
|
|
|
|
|
$notification['type'] = 'reblog';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($notification['type'] === 'tagged') {
|
|
|
|
|
$notification['type'] = 'mention';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $notification;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -215,12 +235,14 @@ class NotificationService {
|
|
|
|
|
if (self::count($id) > 400) {
|
|
|
|
|
Redis::zpopmin(self::CACHE_KEY.$id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Redis::zadd(self::CACHE_KEY.$id, $val, $val);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function del($id, $val)
|
|
|
|
|
{
|
|
|
|
|
Cache::forget('service:notification:'.$val);
|
|
|
|
|
|
|
|
|
|
return Redis::zrem(self::CACHE_KEY.$id, $val);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -257,6 +279,7 @@ class NotificationService {
|
|
|
|
|
$fractal = new Fractal\Manager();
|
|
|
|
|
$fractal->setSerializer(new ArraySerializer());
|
|
|
|
|
$resource = new Fractal\Resource\Item($n, new NotificationTransformer());
|
|
|
|
|
|
|
|
|
|
return $fractal->createData($resource)->toArray();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
@ -277,6 +300,7 @@ class NotificationService {
|
|
|
|
|
$fractal = new Fractal\Manager();
|
|
|
|
|
$fractal->setSerializer(new ArraySerializer());
|
|
|
|
|
$resource = new Fractal\Resource\Item($notification, new NotificationTransformer());
|
|
|
|
|
|
|
|
|
|
return $fractal->createData($resource)->toArray();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
@ -292,8 +316,10 @@ class NotificationService {
|
|
|
|
|
foreach ($ids as $key) {
|
|
|
|
|
self::set($id, $key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|