mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
60 lines
1.5 KiB
PHP
60 lines
1.5 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Zend Framework (http://framework.zend.com/)
|
||
|
*
|
||
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
||
|
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
||
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||
|
*/
|
||
|
|
||
|
namespace Zend\Mvc\Controller\Plugin;
|
||
|
|
||
|
use Zend\Authentication\AuthenticationService;
|
||
|
use Zend\Mvc\Exception;
|
||
|
|
||
|
/**
|
||
|
* Controller plugin to fetch the authenticated identity.
|
||
|
*/
|
||
|
class Identity extends AbstractPlugin
|
||
|
{
|
||
|
/**
|
||
|
* @var AuthenticationService
|
||
|
*/
|
||
|
protected $authenticationService;
|
||
|
|
||
|
/**
|
||
|
* @return AuthenticationService
|
||
|
*/
|
||
|
public function getAuthenticationService()
|
||
|
{
|
||
|
return $this->authenticationService;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param AuthenticationService $authenticationService
|
||
|
*/
|
||
|
public function setAuthenticationService(AuthenticationService $authenticationService)
|
||
|
{
|
||
|
$this->authenticationService = $authenticationService;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Retrieve the current identity, if any.
|
||
|
*
|
||
|
* If none is present, returns null.
|
||
|
*
|
||
|
* @return mixed|null
|
||
|
* @throws Exception\RuntimeException
|
||
|
*/
|
||
|
public function __invoke()
|
||
|
{
|
||
|
if (!$this->authenticationService instanceof AuthenticationService) {
|
||
|
throw new Exception\RuntimeException('No AuthenticationService instance provided');
|
||
|
}
|
||
|
if (!$this->authenticationService->hasIdentity()) {
|
||
|
return null;
|
||
|
}
|
||
|
return $this->authenticationService->getIdentity();
|
||
|
}
|
||
|
}
|