95 lines
1.8 KiB
PHP
95 lines
1.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of jwt-auth.
|
|
*
|
|
* (c) Sean Tymon <tymon148@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Tymon\JWTAuth\Providers\Storage;
|
|
|
|
use Illuminate\Cache\CacheManager;
|
|
|
|
class IlluminateCacheAdapter implements StorageInterface
|
|
{
|
|
/**
|
|
* @var \Illuminate\Cache\CacheManager
|
|
*/
|
|
protected $cache;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $tag = 'tymon.jwt';
|
|
|
|
/**
|
|
* @param \Illuminate\Cache\CacheManager $cache
|
|
*/
|
|
public function __construct(CacheManager $cache)
|
|
{
|
|
$this->cache = $cache;
|
|
}
|
|
|
|
/**
|
|
* Add a new item into storage.
|
|
*
|
|
* @param string $key
|
|
* @param mixed $value
|
|
* @param int $minutes
|
|
* @return void
|
|
*/
|
|
public function add($key, $value, $minutes)
|
|
{
|
|
$this->cache()->put($key, $value, $minutes);
|
|
}
|
|
|
|
/**
|
|
* Check whether a key exists in storage.
|
|
*
|
|
* @param string $key
|
|
* @return bool
|
|
*/
|
|
public function has($key)
|
|
{
|
|
return $this->cache()->has($key);
|
|
}
|
|
|
|
/**
|
|
* Remove an item from storage.
|
|
*
|
|
* @param string $key
|
|
* @return bool
|
|
*/
|
|
public function destroy($key)
|
|
{
|
|
return $this->cache()->forget($key);
|
|
}
|
|
|
|
/**
|
|
* Remove all items associated with the tag.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function flush()
|
|
{
|
|
$this->cache()->flush();
|
|
}
|
|
|
|
/**
|
|
* Return the cache instance with tags attached.
|
|
*
|
|
* @return \Illuminate\Cache\CacheManager
|
|
*/
|
|
protected function cache()
|
|
{
|
|
if (! method_exists($this->cache, 'tags')) {
|
|
return $this->cache;
|
|
}
|
|
|
|
return $this->cache->tags($this->tag);
|
|
}
|
|
}
|