mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Add AccountService
This commit is contained in:
parent
5740746339
commit
885a1258e8
1 changed files with 29 additions and 0 deletions
29
app/Services/AccountService.php
Normal file
29
app/Services/AccountService.php
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Services;
|
||||||
|
|
||||||
|
use Cache;
|
||||||
|
use App\Profile;
|
||||||
|
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)
|
||||||
|
{
|
||||||
|
$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();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue