/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Auth
NameSizeModeActions
Storage/-0755rm
AbstractPasswordHasher.php23620644editdlrm
BaseAuthenticate.php91230644editdlrm
BaseAuthorize.php18840644editdlrm
BasicAuthenticate.php42090644editdlrm
ControllerAuthorize.php30260644editdlrm
DefaultPasswordHasher.php27400644editdlrm
DigestAuthenticate.php100570644editdlrm
FallbackPasswordHasher.php31690644editdlrm
FormAuthenticate.php31930644editdlrm
PasswordHasherFactory.php20350644editdlrm
WeakPasswordHasher.php19670644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Auth/ControllerAuthorize.php (3026B)
request->getParam('admin')) { * return $user['role'] === 'admin'; * } * return !empty($user); * } * ``` * * The above is simple implementation that would only authorize users of the * 'admin' role to access admin routing. * * @see \Cake\Controller\Component\AuthComponent::$authenticate */ class ControllerAuthorize extends BaseAuthorize { /** * Controller for the request. * * @var \Cake\Controller\Controller */ protected $_Controller; /** * @inheritDoc */ public function __construct(ComponentRegistry $registry, array $config = []) { parent::__construct($registry, $config); $this->controller($registry->getController()); } /** * Get/set the controller this authorize object will be working with. Also * checks that isAuthorized is implemented. * * @param \Cake\Controller\Controller|null $controller null to get, a controller to set. * @return \Cake\Controller\Controller */ public function controller(?Controller $controller = null): Controller { if ($controller) { $this->_Controller = $controller; } return $this->_Controller; } /** * Checks user authorization using a controller callback. * * @param array|\ArrayAccess $user Active user data * @param \Cake\Http\ServerRequest $request Request instance. * @throws \Cake\Core\Exception\Exception If controller does not have method `isAuthorized()`. * @return bool */ public function authorize($user, ServerRequest $request): bool { if (!method_exists($this->_Controller, 'isAuthorized')) { throw new Exception(sprintf( '%s does not implement an isAuthorized() method.', get_class($this->_Controller) )); } return (bool)$this->_Controller->isAuthorized($user); } }