%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.26 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/var/www/html/water/vendor/amnah/yii2-user/components/ |
Upload File : |
<?php
namespace amnah\yii2\user\components;
use Yii;
/**
* User component
*/
class User extends \yii\web\User
{
/**
* @inheritdoc
*/
public $identityClass = 'amnah\yii2\user\models\User';
/**
* @inheritdoc
*/
public $enableAutoLogin = true;
/**
* @inheritdoc
*/
public $loginUrl = ["/user/login"];
/**
* @inheritdoc
*/
public function getIsGuest()
{
/** @var \amnah\yii2\user\models\User $user */
// check if user is banned. if so, log user out and redirect home
// https://github.com/amnah/yii2-user/issues/99
$user = $this->getIdentity();
if ($user && $user->banned_at) {
$this->logout();
Yii::$app->getResponse()->redirect(['/'])->send();
}
return $user === null;
}
/**
* Check if user is logged in
* @return bool
*/
public function getIsLoggedIn()
{
return !$this->getIsGuest();
}
/**
* @inheritdoc
*/
public function afterLogin($identity, $cookieBased, $duration)
{
/** @var \amnah\yii2\user\models\User $identity */
$identity->updateLoginMeta();
parent::afterLogin($identity, $cookieBased, $duration);
}
/**
* Get user's display name
* @return string
*/
public function getDisplayName()
{
/** @var \amnah\yii2\user\models\User $user */
$user = $this->getIdentity();
return $user ? $user->getDisplayName() : "";
}
/**
* Check if user can do $permissionName.
* If "authManager" component is set, this will simply use the default functionality.
* Otherwise, it will use our custom permission system
* @param string $permissionName
* @param array $params
* @param bool $allowCaching
* @return bool
*/
public function can($permissionName, $params = [], $allowCaching = true)
{
// check for auth manager to call parent
$auth = Yii::$app->getAuthManager();
if ($auth) {
return parent::can($permissionName, $params, $allowCaching);
}
// otherwise use our own custom permission (via the role table)
/** @var \amnah\yii2\user\models\User $user */
$user = $this->getIdentity();
return $user ? $user->can($permissionName) : false;
}
}