mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
c0aa78d156
Completely removed usage of the RabbitMQ. Queue now based on Redis channels. Worker process now extracted as separate docker container. Base image upgraded to the 1.8.0 version (PHP 7.2.7 and pcntl extension).
55 lines
1.4 KiB
PHP
55 lines
1.4 KiB
PHP
<?php
|
|
namespace api\modules\session\models;
|
|
|
|
use common\models\Account;
|
|
use Yii;
|
|
|
|
class SessionModel {
|
|
|
|
private const KEY_TIME = 120; // 2 min
|
|
|
|
public $username;
|
|
|
|
public $serverId;
|
|
|
|
public function __construct(string $username, string $serverId) {
|
|
$this->username = $username;
|
|
$this->serverId = $serverId;
|
|
}
|
|
|
|
public static function find(string $username, string $serverId): ?self {
|
|
$key = static::buildKey($username, $serverId);
|
|
$result = Yii::$app->redis->get($key);
|
|
if (!$result) {
|
|
return null;
|
|
}
|
|
|
|
$data = json_decode($result, true);
|
|
|
|
return new static($data['username'], $data['serverId']);
|
|
}
|
|
|
|
public function save() {
|
|
$key = static::buildKey($this->username, $this->serverId);
|
|
$data = json_encode([
|
|
'username' => $this->username,
|
|
'serverId' => $this->serverId,
|
|
]);
|
|
|
|
return Yii::$app->redis->setex($key, self::KEY_TIME, $data);
|
|
}
|
|
|
|
public function delete() {
|
|
return Yii::$app->redis->del(static::buildKey($this->username, $this->serverId));
|
|
}
|
|
|
|
public function getAccount(): ?Account {
|
|
return Account::findOne(['username' => $this->username]);
|
|
}
|
|
|
|
protected static function buildKey($username, $serverId): string {
|
|
return md5('minecraft:join-server:' . mb_strtolower($username) . ':' . $serverId);
|
|
}
|
|
|
|
}
|