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

98 lines
2.0 KiB
PHP
Raw Normal View History

2021-05-01 21:51:02 +00:00
<?php
namespace App\Services;
use App\Util\ActivityPub\Helpers;
use Illuminate\Support\Facades\Redis;
use App\Like;
class LikeService {
const CACHE_KEY = 'pf:services:likes:ids:';
public static function getUser($profile_id)
{
return self::get($profile_id);
}
protected static function get($profile_id)
{
$key = self::CACHE_KEY . $profile_id;
if(Redis::zcard($key) == 0) {
self::warmCache($profile_id);
} else {
return Redis::zrevrange($key, 0, 40);
}
}
protected static function set($profile_id, $status_id)
{
$key = self::CACHE_KEY . $profile_id;
Redis::zadd($key, $status_id, $status_id);
}
public static function warmCache($profile_id)
{
Like::select('id', 'profile_id', 'status_id')
->whereProfileId($profile_id)
->latest()
->get()
->each(function($like) use ($profile_id) {
self::set($profile_id, $like->status_id);
});
}
public static function liked($profileId, $statusId)
{
$key = self::CACHE_KEY . $profileId;
return (bool) Redis::zrank($key, $statusId);
}
public static function likedBy($status)
{
2021-05-03 23:55:06 +00:00
$empty = [
'username' => null,
'others' => false
];
if(!$status) {
return $empty;
}
2021-05-01 21:51:02 +00:00
if(!$status->likes_count) {
2021-05-03 23:55:06 +00:00
return $empty;
2021-05-01 21:51:02 +00:00
}
2021-06-24 03:26:45 +00:00
$user = request()->user();
2021-05-03 23:55:06 +00:00
2021-06-24 03:26:45 +00:00
if($user) {
$like = Like::whereStatusId($status->id)
->where('profile_id', '!=', $user->profile_id)
->first();
} else {
$like = Like::whereStatusId($status->id)
->first();
}
2021-05-03 23:55:06 +00:00
if(!$like) {
return $empty;
}
$id = $like->profile_id;
$profile = ProfileService::get($id);
$profileUrl = $profile['local'] ? $profile['url'] : '/i/web/profile/_/' . $profile['id'];
$res = [
'username' => $profile['username'],
'url' => $profileUrl,
'others' => $status->likes_count >= 3,
2021-05-01 21:51:02 +00:00
];
if(request()->user() && request()->user()->profile_id == $status->profile_id) {
$res['total_count'] = ($status->likes_count - 1);
$res['total_count_pretty'] = number_format($res['total_count']);
}
return $res;
2021-05-01 21:51:02 +00:00
}
}