servermgrv2/app/Libraries/Adapter/Auth/Adapter.php
2023-08-02 19:48:31 +09:00

69 lines
1.6 KiB
PHP

<?php
namespace App\Libraries\Adapter\Auth;
use App\Entities\UserEntity;
use App\Models\UserModel;
use App\Models\UserSNSModel;
// 참고:https://github.com/SyntaxPhoenix/iloclient
abstract class Adapter
{
private $_site = null;
private $_userModel = null;
private $_userSNSModel = null;
protected $_debug = false;
protected $_session = null;
protected function __construct(string $site, $debug = false)
{
$this->_site = $site;
$this->_debug = $debug;
$this->_session = \Config\Services::session();
}
final public function getSiteName(): string
{
if (is_null($this->_site)) {
throw new \Exception("Auth Adpater Site명이 정의 되지 않았습니다.");
}
return ucfirst($this->_site);
}
abstract public function getAuthButton();
abstract public function signup(array $formDatas): UserEntity;
final protected function getUserModel(): UserModel
{
if (is_null($this->_userModel)) {
$this->_userModel = new UserModel();
}
return $this->_userModel;
}
final protected function getUserSNSModel(): UserSNSModel
{
if (is_null($this->_userSNSModel)) {
$this->_userSNSModel = new UserSNSModel();
}
return $this->_userSNSModel;
}
protected function signup_process(UserEntity $entity): void
{
$this->_session->set(SESSION_NAMES['ISLOGIN'], true);
$auths = [];
foreach (array_values(AUTH_FIELDS) as $field) {
switch ($field) {
case 'id':
$auths[$field] = $entity->getPrimaryKey();
break;
case 'title':
$auths[$field] = $entity->getTitle();
break;
case 'role':
$auths[$field] = $entity->getRole();
break;
}
}
$this->_session->set(SESSION_NAMES['AUTH'], $auths);
}
}