2019-11-23 05:34:56 +00:00
|
|
|
<?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)
|
|
|
|
{
|
2021-02-01 07:47:54 +00:00
|
|
|
if($id > PHP_INT_MAX || $id < 1) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$key = self::CACHE_KEY . $id;
|
|
|
|
$ttl = now()->addMinutes(15);
|
|
|
|
|
|
|
|
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);
|
2019-11-23 05:34:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|