123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 |
- <?php
- /*
- * This file is part of the symfony package.
- * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
- * (c) 2004-2006 Sean Kerr <sean@code-box.org>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- /**
- * sfBasicSecurityUser will handle any type of data as a credential.
- *
- * @package symfony
- * @subpackage user
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @author Sean Kerr <sean@code-box.org>
- * @version SVN: $Id: sfBasicSecurityUser.class.php 11694 2008-09-21 08:26:37Z fabien $
- */
- class sfBasicSecurityUser extends sfUser implements sfSecurityUser
- {
- const LAST_REQUEST_NAMESPACE = 'symfony/user/sfUser/lastRequest';
- const AUTH_NAMESPACE = 'symfony/user/sfUser/authenticated';
- const CREDENTIAL_NAMESPACE = 'symfony/user/sfUser/credentials';
- protected $lastRequest = null;
- protected $credentials = null;
- protected $authenticated = null;
- protected $timedout = false;
- /**
- * Clears all credentials.
- *
- */
- public function clearCredentials()
- {
- $this->credentials = null;
- $this->credentials = array();
- }
- /**
- * returns an array containing the credentials
- */
- public function listCredentials()
- {
- return $this->credentials;
- }
- /**
- * Removes a credential.
- *
- * @param mixed credential
- */
- public function removeCredential($credential)
- {
- if ($this->hasCredential($credential))
- {
- foreach ($this->credentials as $key => $value)
- {
- if ($credential == $value)
- {
- if ($this->options['logging'])
- {
- $this->dispatcher->notify(new sfEvent($this, 'application.log', array(sprintf('Remove credential "%s"', $credential))));
- }
- unset($this->credentials[$key]);
- $this->storage->regenerate(false);
- return;
- }
- }
- }
- }
- /**
- * Adds a credential.
- *
- * @param mixed $credential
- */
- public function addCredential($credential)
- {
- $this->addCredentials(func_get_args());
- }
- /**
- * Adds several credential at once.
- *
- * @param mixed array or list of credentials
- */
- public function addCredentials()
- {
- if (func_num_args() == 0) return;
- // Add all credentials
- $credentials = (is_array(func_get_arg(0))) ? func_get_arg(0) : func_get_args();
- if ($this->options['logging'])
- {
- $this->dispatcher->notify(new sfEvent($this, 'application.log', array(sprintf('Add credential(s) "%s"', implode(', ', $credentials)))));
- }
- $added = false;
- foreach ($credentials as $aCredential)
- {
- if (!in_array($aCredential, $this->credentials))
- {
- $added = true;
- $this->credentials[] = $aCredential;
- }
- }
- if ($added)
- {
- $this->storage->regenerate(false);
- }
- }
- /**
- * Returns true if user has credential.
- *
- * @param mixed $credentials
- * @param bool $useAnd specify the mode, either AND or OR
- * @return bool
- *
- * @author Olivier Verdier <Olivier.Verdier@free.fr>
- */
- public function hasCredential($credentials, $useAnd = true)
- {
- if (!is_array($credentials))
- {
- return in_array($credentials, $this->credentials);
- }
- // now we assume that $credentials is an array
- $test = false;
- foreach ($credentials as $credential)
- {
- // recursively check the credential with a switched AND/OR mode
- $test = $this->hasCredential($credential, $useAnd ? false : true);
- if ($useAnd)
- {
- $test = $test ? false : true;
- }
- if ($test) // either passed one in OR mode or failed one in AND mode
- {
- break; // the matter is settled
- }
- }
- if ($useAnd) // in AND mode we succeed if $test is false
- {
- $test = $test ? false : true;
- }
- return $test;
- }
- /**
- * Returns true if user is authenticated.
- *
- * @return boolean
- */
- public function isAuthenticated()
- {
- return $this->authenticated;
- }
- /**
- * Sets authentication for user.
- *
- * @param bool $authenticated
- */
- public function setAuthenticated($authenticated)
- {
- if ($this->options['logging'])
- {
- $this->dispatcher->notify(new sfEvent($this, 'application.log', array(sprintf('User is %sauthenticated', $authenticated === true ? '' : 'not '))));
- }
- if ((bool) $authenticated !== $this->authenticated)
- {
- if ($authenticated === true)
- {
- $this->authenticated = true;
- }
- else
- {
- $this->authenticated = false;
- $this->clearCredentials();
- }
- $this->dispatcher->notify(new sfEvent($this, 'user.change_authentication', array('authenticated' => $this->authenticated)));
- $this->storage->regenerate(false);
- }
- }
- public function setTimedOut()
- {
- $this->timedout = true;
- }
- public function isTimedOut()
- {
- return $this->timedout;
- }
- /**
- * Returns the timestamp of the last user request.
- *
- * @param int
- */
- public function getLastRequestTime()
- {
- return $this->lastRequest;
- }
- /**
- * Available options:
- *
- * * timeout: Timeout to automatically log out the user in seconds (1800 by default)
- * Set to false to disable
- *
- * @param sfEventDispatcher $dispatcher An sfEventDispatcher instance.
- * @param sfStorage $storage An sfStorage instance.
- * @param array $options An associative array of options.
- *
- * @see sfUser
- */
- public function initialize(sfEventDispatcher $dispatcher, sfStorage $storage, $options = array())
- {
- // initialize parent
- parent::initialize($dispatcher, $storage, $options);
- if (!array_key_exists('timeout', $this->options))
- {
- $this->options['timeout'] = 1800;
- }
- // force the max lifetime for session garbage collector to be greater than timeout
- if (ini_get('session.gc_maxlifetime') < $this->options['timeout'])
- {
- ini_set('session.gc_maxlifetime', $this->options['timeout']);
- }
- // read data from storage
- $this->authenticated = $storage->read(self::AUTH_NAMESPACE);
- $this->credentials = $storage->read(self::CREDENTIAL_NAMESPACE);
- $this->lastRequest = $storage->read(self::LAST_REQUEST_NAMESPACE);
- if (is_null($this->authenticated))
- {
- $this->authenticated = false;
- $this->credentials = array();
- }
- else
- {
- // Automatic logout logged in user if no request within timeout parameter seconds
- $timeout = $this->options['timeout'];
- if (false !== $timeout && !is_null($this->lastRequest) && time() - $this->lastRequest >= $timeout)
- {
- if ($this->options['logging'])
- {
- $this->dispatcher->notify(new sfEvent($this, 'application.log', array('Automatic user logout due to timeout')));
- }
- $this->setTimedOut();
- $this->setAuthenticated(false);
- }
- }
- $this->lastRequest = time();
- }
- public function shutdown()
- {
- // write the last request time to the storage
- $this->storage->write(self::LAST_REQUEST_NAMESPACE, $this->lastRequest);
- $this->storage->write(self::AUTH_NAMESPACE, $this->authenticated);
- $this->storage->write(self::CREDENTIAL_NAMESPACE, $this->credentials);
- // call the parent shutdown method
- parent::shutdown();
- }
- }
|