forked from mirror/pixelfed
66 lines
1.3 KiB
PHP
66 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use Cache;
|
|
use App\Profile;
|
|
use App\Status;
|
|
use App\Transformer\Api\AccountTransformer;
|
|
use League\Fractal;
|
|
use League\Fractal\Serializer\ArraySerializer;
|
|
|
|
class AccountService
|
|
{
|
|
const CACHE_KEY = 'pf:services:account:';
|
|
|
|
public static function get($id)
|
|
{
|
|
if($id > PHP_INT_MAX || $id < 1) {
|
|
return [];
|
|
}
|
|
|
|
$key = self::CACHE_KEY . $id;
|
|
$ttl = now()->addHours(12);
|
|
|
|
return Cache::remember($key, $ttl, function() use($id) {
|
|
$fractal = new Fractal\Manager();
|
|
$fractal->setSerializer(new ArraySerializer());
|
|
$profile = Profile::whereNull('status')->findOrFail($id);
|
|
$resource = new Fractal\Resource\Item($profile, new AccountTransformer());
|
|
return $fractal->createData($resource)->toArray();
|
|
});
|
|
}
|
|
|
|
public static function del($id)
|
|
{
|
|
return Cache::forget(self::CACHE_KEY . $id);
|
|
}
|
|
|
|
public static function syncPostCount($id)
|
|
{
|
|
$profile = Profile::find($id);
|
|
|
|
if(!$profile) {
|
|
return false;
|
|
}
|
|
|
|
$key = self::CACHE_KEY . 'pcs:' . $id;
|
|
|
|
if(Cache::has($key)) {
|
|
return;
|
|
}
|
|
|
|
$count = Status::whereProfileId($id)
|
|
->whereNull('in_reply_to_id')
|
|
->whereNull('reblog_of_id')
|
|
->whereIn('scope', ['public', 'unlisted', 'private'])
|
|
->count();
|
|
|
|
$profile->status_count = $count;
|
|
$profile->save();
|
|
|
|
Cache::put($key, 1, 900);
|
|
return true;
|
|
}
|
|
}
|