89 lines
2.0 KiB
PHP
89 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace Zoomyboy\LaravelNami\Authentication;
|
|
|
|
use Illuminate\Contracts\Auth\Guard;
|
|
use Illuminate\Contracts\Auth\Authenticatable;
|
|
use Zoomyboy\LaravelNami\Nami;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Zoomyboy\LaravelNami\NamiUser;
|
|
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
|
|
use Illuminate\Auth\SessionGuard;
|
|
use Illuminate\Auth\GuardHelpers;
|
|
use Illuminate\Support\Str;
|
|
|
|
class NamiGuard {
|
|
|
|
use GuardHelpers;
|
|
|
|
protected $cache;
|
|
protected $user;
|
|
protected $session;
|
|
|
|
public function __construct($config, $session, $cache) {
|
|
$this->config = $config;
|
|
$this->session = $session;
|
|
$this->cache = $cache;
|
|
}
|
|
|
|
/**
|
|
* Set the current user.
|
|
*
|
|
* @param \Illuminate\Contracts\Auth\Authenticatable $user
|
|
* @return void
|
|
*/
|
|
public function setUser(NamiUser $user) {
|
|
$this->user = $user;
|
|
}
|
|
|
|
public function user()
|
|
{
|
|
if (! is_null($this->user)) {
|
|
return $this->user;
|
|
}
|
|
|
|
$cache = $this->resolveCache();
|
|
|
|
if (!$cache) {
|
|
return;
|
|
}
|
|
|
|
return NamiUser::fromCredentials($cache['credentials']);
|
|
}
|
|
|
|
public function attempt(array $credentials = [], $remember = false) {
|
|
$api = Nami::login($credentials['mglnr'], $credentials['password']);
|
|
|
|
$payload = [
|
|
'cookie' => $api->cookie->toArray(),
|
|
'credentials' => $credentials
|
|
];
|
|
|
|
$this->setUser(new NamiUser($payload));
|
|
$key = $this->newCacheKey();
|
|
Cache::forever("namiauth-{$key}", $payload);
|
|
$this->updateSession($key);
|
|
|
|
return true;
|
|
}
|
|
|
|
protected function updateSession($data)
|
|
{
|
|
$this->session->put($this->getName(), $data);
|
|
$this->session->migrate(true);
|
|
}
|
|
|
|
public function getName() {
|
|
return 'auth_key';
|
|
}
|
|
|
|
private function resolveCache() {
|
|
return $this->cache->get($this->session->get($this->getName()));
|
|
}
|
|
|
|
private function newCacheKey() {
|
|
return Str::random(16);
|
|
}
|
|
|
|
}
|