/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
cakephp
/
authentication
/
src
/
View
/
Helper
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/authentication/src/View/Helper
mkdir
upload
Name
Size
Mode
Actions
IdentityHelper.php
3693
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/authentication/src/View/Helper/IdentityHelper.php
(3693B)
<?php declare(strict_types=1); /** * CakePHP(tm) : Rapid Development Framework (https://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the above copyright notice. * * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) * @link https://cakephp.org CakePHP(tm) Project * @since 1.0.0 * @license https://opensource.org/licenses/mit-license.php MIT License */ namespace Authentication\View\Helper; use Authentication\IdentityInterface; use Cake\Utility\Hash; use Cake\View\Helper; use RuntimeException; /** * Identity Helper * * A convenience helper to access the identity data */ class IdentityHelper extends Helper { /** * Configuration options * * - `identityAttribute` - The request attribute which holds the identity. * * @var array<string, mixed> */ protected $_defaultConfig = [ 'identityAttribute' => 'identity', ]; /** * Identity Object * * @var null|\Authentication\IdentityInterface */ protected $_identity; /** * Constructor hook method. * * Implement this method to avoid having to overwrite the constructor and call parent. * * @param array $config The configuration settings provided to this helper. * @return void */ public function initialize(array $config): void { $this->_identity = $this->_View->getRequest()->getAttribute($this->getConfig('identityAttribute')); if (empty($this->_identity)) { return; } if (!$this->_identity instanceof IdentityInterface) { throw new RuntimeException( sprintf('Identity found in request does not implement %s', IdentityInterface::class) ); } } /** * Gets the id of the current logged in identity * * @return int|null|string */ public function getId() { if ($this->_identity === null) { return null; } return $this->_identity->getIdentifier(); } /** * Checks if a user is logged in * * @return bool */ public function isLoggedIn(): bool { return $this->_identity !== null; } /** * This check can be used to tell if a record that belongs to some user is * the current logged in user and compare other fields as well * * If you have more complex requirements on visibility checks based on some * kind of permission you should use the Authorization plugin instead: * * https://github.com/cakephp/authorization * * This method is mostly a convenience method for simple cases and not * intended to replace any kind of proper authorization implementation. * * @param int|string $id Identity id to check against * @param string $field Name of the field in the identity data to check against, id by default * @return bool */ public function is($id, $field = 'id'): bool { return $id === $this->get($field); } /** * Gets user data * * @param string|null $key Key of something you want to get from the identity data * @return mixed */ public function get(?string $key = null) { if (empty($this->_identity)) { return null; } if ($key === null) { return $this->_identity->getOriginalData(); } return Hash::get($this->_identity, $key); } }
Save
cmd:
run