2017-01-13 16:53:56 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
2017-02-15 16:13:32 -05:00
|
|
|
* Hummingbird Anime List Client
|
2017-01-13 16:53:56 -05:00
|
|
|
*
|
2018-08-22 13:48:27 -04:00
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
2017-01-13 16:53:56 -05:00
|
|
|
*
|
2019-12-03 15:17:25 -05:00
|
|
|
* PHP version 7.2
|
2017-01-13 16:53:56 -05:00
|
|
|
*
|
2017-02-15 16:13:32 -05:00
|
|
|
* @package HummingbirdAnimeClient
|
2017-01-13 16:53:56 -05:00
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2020-01-08 15:39:49 -05:00
|
|
|
* @copyright 2015 - 2020 Timothy J. Warren
|
2017-01-13 16:53:56 -05:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2019-12-06 09:16:35 -05:00
|
|
|
* @version 4.2
|
2017-03-07 20:53:58 -05:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2017-01-13 16:53:56 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\API;
|
|
|
|
|
|
|
|
use Aviat\Banker\Pool;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper methods for dealing with the Cache
|
|
|
|
*/
|
|
|
|
trait CacheTrait {
|
2018-01-18 16:21:45 -05:00
|
|
|
|
2017-01-13 16:53:56 -05:00
|
|
|
/**
|
2018-01-18 16:21:45 -05:00
|
|
|
* @var Pool
|
2017-01-13 16:53:56 -05:00
|
|
|
*/
|
|
|
|
protected $cache;
|
2018-01-18 16:21:45 -05:00
|
|
|
|
2017-01-13 16:53:56 -05:00
|
|
|
/**
|
|
|
|
* Inject the cache object
|
|
|
|
*
|
|
|
|
* @param Pool $cache
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function setCache(Pool $cache): self
|
|
|
|
{
|
|
|
|
$this->cache = $cache;
|
|
|
|
return $this;
|
|
|
|
}
|
2018-01-18 16:21:45 -05:00
|
|
|
|
2017-01-16 11:26:19 -05:00
|
|
|
/**
|
|
|
|
* Get the cache object if it exists
|
|
|
|
*
|
|
|
|
* @return Pool
|
|
|
|
*/
|
2018-01-18 16:21:45 -05:00
|
|
|
public function getCache(): Pool
|
2017-01-16 11:26:19 -05:00
|
|
|
{
|
|
|
|
return $this->cache;
|
|
|
|
}
|
2018-01-18 16:21:45 -05:00
|
|
|
|
2017-01-13 16:53:56 -05:00
|
|
|
/**
|
|
|
|
* Generate a hash as a cache key from the current method call
|
|
|
|
*
|
2018-01-18 16:21:45 -05:00
|
|
|
* @param mixed $object
|
2017-01-13 16:53:56 -05:00
|
|
|
* @param string $method
|
|
|
|
* @param array $args
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getHashForMethodCall($object, string $method, array $args = []): string
|
|
|
|
{
|
|
|
|
$keyObj = [
|
2018-01-18 16:21:45 -05:00
|
|
|
'class' => \get_class($object),
|
2017-01-13 16:53:56 -05:00
|
|
|
'method' => $method,
|
|
|
|
'args' => $args,
|
|
|
|
];
|
2018-01-18 16:21:45 -05:00
|
|
|
return sha1(json_encode($keyObj));
|
2017-01-13 16:53:56 -05:00
|
|
|
}
|
|
|
|
}
|