mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 07:22:00 +05:30
422d5c4fd4
Переписана логика связи моделей для oAuth процесса
68 lines
1.4 KiB
PHP
68 lines
1.4 KiB
PHP
<?php
|
|
namespace common\components\Redis;
|
|
|
|
use InvalidArgumentException;
|
|
use Yii;
|
|
|
|
class Key {
|
|
|
|
protected $key;
|
|
|
|
/**
|
|
* @return Connection
|
|
*/
|
|
public function getRedis() {
|
|
return Yii::$app->redis;
|
|
}
|
|
|
|
public function getKey() : string {
|
|
return $this->key;
|
|
}
|
|
|
|
public function getValue() {
|
|
return $this->getRedis()->get($this->key);
|
|
}
|
|
|
|
public function setValue($value) {
|
|
$this->getRedis()->set($this->key, $value);
|
|
return $this;
|
|
}
|
|
|
|
public function delete() {
|
|
$this->getRedis()->del($this->key);
|
|
return $this;
|
|
}
|
|
|
|
public function exists() : bool {
|
|
return (bool)$this->getRedis()->exists($this->key);
|
|
}
|
|
|
|
public function expire(int $ttl) {
|
|
$this->getRedis()->expire($this->key, $ttl);
|
|
return $this;
|
|
}
|
|
|
|
public function expireAt(int $unixTimestamp) {
|
|
$this->getRedis()->expireat($this->key, $unixTimestamp);
|
|
return $this;
|
|
}
|
|
|
|
public function __construct(...$key) {
|
|
if (empty($key)) {
|
|
throw new InvalidArgumentException('You must specify at least one key.');
|
|
}
|
|
|
|
$this->key = $this->buildKey($key);
|
|
}
|
|
|
|
private function buildKey(array $parts) {
|
|
$keyParts = [];
|
|
foreach($parts as $part) {
|
|
$keyParts[] = str_replace('_', ':', $part);
|
|
}
|
|
|
|
return implode(':', $keyParts);
|
|
}
|
|
|
|
}
|