%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 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 : /var/www/html/egp/vendor/yiisoft/yii2/filters/auth/ |
Upload File : |
<?php /** * @link http://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ */ namespace yii\filters\auth; use Yii; use yii\base\Action; use yii\base\ActionFilter; use yii\helpers\StringHelper; use yii\web\Request; use yii\web\Response; use yii\web\UnauthorizedHttpException; use yii\web\User; /** * AuthMethod is a base class implementing the [[AuthInterface]] interface. * * @author Qiang Xue <qiang.xue@gmail.com> * @since 2.0 */ abstract class AuthMethod extends ActionFilter implements AuthInterface { /** * @var User the user object representing the user authentication status. If not set, the `user` application component will be used. */ public $user; /** * @var Request the current request. If not set, the `request` application component will be used. */ public $request; /** * @var Response the response to be sent. If not set, the `response` application component will be used. */ public $response; /** * @var array list of action IDs that this filter will be applied to, but auth failure will not lead to error. * It may be used for actions, that are allowed for public, but return some additional data for authenticated users. * Defaults to empty, meaning authentication is not optional for any action. * Since version 2.0.10 action IDs can be specified as wildcards, e.g. `site/*`. * @see isOptional() * @since 2.0.7 */ public $optional = []; /** * {@inheritdoc} */ public function beforeAction($action) { $response = $this->response ?: Yii::$app->getResponse(); try { $identity = $this->authenticate( $this->user ?: Yii::$app->getUser(), $this->request ?: Yii::$app->getRequest(), $response ); } catch (UnauthorizedHttpException $e) { if ($this->isOptional($action)) { return true; } throw $e; } if ($identity !== null || $this->isOptional($action)) { return true; } $this->challenge($response); $this->handleFailure($response); return false; } /** * {@inheritdoc} */ public function challenge($response) { } /** * {@inheritdoc} */ public function handleFailure($response) { throw new UnauthorizedHttpException('Your request was made with invalid credentials.'); } /** * Checks, whether authentication is optional for the given action. * * @param Action $action action to be checked. * @return bool whether authentication is optional or not. * @see optional * @since 2.0.7 */ protected function isOptional($action) { $id = $this->getActionId($action); foreach ($this->optional as $pattern) { if (StringHelper::matchWildcard($pattern, $id)) { return true; } } return false; } }