mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
37 lines
752 B
PHP
37 lines
752 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2021 Ad Aures
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Entities\Actor;
|
|
use Modules\Fediverse\Models\ActorModel as FediverseActorModel;
|
|
|
|
class ActorModel extends FediverseActorModel
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $returnType = Actor::class;
|
|
|
|
public function getActorById(int $id): ?Actor
|
|
{
|
|
$cacheName = config('Fediverse')
|
|
->cachePrefix . "actor#{$id}";
|
|
if (! ($found = cache($cacheName))) {
|
|
$found = $this->find($id);
|
|
|
|
cache()
|
|
->save($cacheName, $found, DECADE);
|
|
}
|
|
|
|
return $found;
|
|
}
|
|
}
|