2019-02-14 21:23:33 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Services;
|
|
|
|
|
2019-12-11 06:04:03 +00:00
|
|
|
use Cache;
|
|
|
|
use Illuminate\Support\Facades\Redis;
|
2019-02-14 21:23:33 +00:00
|
|
|
|
|
|
|
use App\{
|
|
|
|
Follower,
|
|
|
|
Profile
|
|
|
|
};
|
|
|
|
|
|
|
|
class ProfileService {
|
|
|
|
|
|
|
|
protected $profile;
|
|
|
|
protected $profile_prefix;
|
|
|
|
|
|
|
|
public static function build()
|
|
|
|
{
|
|
|
|
return new self();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function profile(Profile $profile)
|
|
|
|
{
|
|
|
|
$this->profile = $profile;
|
|
|
|
$this->profile_prefix = 'profile:model:'.$profile->id;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function profileId($id)
|
|
|
|
{
|
|
|
|
return Cache::rememberForever('profile:model:'.$id, function() use($id) {
|
|
|
|
return Profile::findOrFail($id);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get()
|
|
|
|
{
|
|
|
|
return Cache::rememberForever($this->profile_prefix, function() {
|
|
|
|
return $this->profile;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|