1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
|
<?php
/*
* This file is part of the symfony package.
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
*
* @package symfony
* @subpackage plugin
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: sfGuardSecurityUser.class.php 7745 2008-03-05 11:05:33Z fabien $
*/
class sfGuardSecurityUser extends sfBasicSecurityUser
{
private $user = null;
public function getReferer($default)
{
$referer = $this->getAttribute('referer', $default);
$this->getAttributeHolder()->remove('referer');
return $referer;
}
public function setReferer($referer)
{
if (!$this->hasAttribute('referer'))
{
$this->setAttribute('referer', $referer);
}
}
public function hasCredential($credential, $useAnd = true)
{
if (!$this->getGuardUser())
{
return false;
}
if ($this->getGuardUser()->getIsSuperAdmin())
{
return true;
}
return parent::hasCredential($credential, $useAnd);
}
public function isSuperAdmin()
{
return $this->getGuardUser() ? $this->getGuardUser()->getIsSuperAdmin() : false;
}
public function isAnonymous()
{
return !$this->isAuthenticated();
}
public function signIn($user, $remember = false, $con = null)
{
// signin
$this->setAttribute('user_id', $user->getId(), 'sfGuardSecurityUser');
$this->setAuthenticated(true);
$this->clearCredentials();
$this->addCredentials($user->getAllPermissionNames());
// save last login
$user->setLastLogin(date('Y-m-d h:i:s'));
$user->save($con);
// remember?
if ($remember)
{
$expiration_age = sfConfig::get('app_sf_guard_plugin_remember_key_expiration_age', 15 * 24 * 3600);
// remove old keys
Doctrine_Query::create()
->delete()
->from('sfGuardRememberKey k')
->where('created_at < ?', date('Y-m-d H:i:s', time() - $expiration_age))
->execute();
// remove other keys from this user
Doctrine_Query::create()
->delete()
->from('sfGuardRememberKey k')
->where('k.user_id = ?', $user->getId())
->execute();
// generate new keys
$key = $this->generateRandomKey();
// save key
$rk = new sfGuardRememberKey();
$rk->setRememberKey($key);
$rk->setsfGuardUser($user);
$rk->setIpAddress($_SERVER['REMOTE_ADDR']);
$rk->save($con);
// make key as a cookie
$remember_cookie = sfConfig::get('app_sf_guard_plugin_remember_cookie_name', 'sfRemember');
sfContext::getInstance()->getResponse()->setCookie($remember_cookie, $key, time() + $expiration_age);
}
}
protected function generateRandomKey($len = 20)
{
$string = '';
$pool = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
for ($i = 1; $i <= $len; $i++)
{
$string .= substr($pool, rand(0, 61), 1);
}
return md5($string);
}
public function signOut()
{
$this->getAttributeHolder()->removeNamespace('sfGuardSecurityUser');
$this->user = null;
$this->clearCredentials();
$this->setAuthenticated(false);
$expiration_age = sfConfig::get('app_sf_guard_plugin_remember_key_expiration_age', 15 * 24 * 3600);
$remember_cookie = sfConfig::get('app_sf_guard_plugin_remember_cookie_name', 'sfRemember');
sfContext::getInstance()->getResponse()->setCookie($remember_cookie, '', time() - $expiration_age);
}
public function getGuardUser()
{
if (!$this->user && $id = $this->getAttribute('user_id', null, 'sfGuardSecurityUser'))
{
$this->user = Doctrine::getTable('sfGuardUser')->find($id);
if (!$this->user)
{
// the user does not exist anymore in the database
$this->signOut();
throw new sfException('The user does not exist anymore in the database.');
}
}
return $this->user;
}
// add some proxy method to the sfGuardUser instance
public function __toString()
{
return $this->getGuardUser()->__toString();
}
public function getUsername()
{
return $this->getGuardUser()->getUsername();
}
public function getEmail()
{
return $this->getGuardUser()->getEmail();
}
public function setPassword($password, $con = null)
{
$this->getGuardUser()->setPassword($password);
$this->getGuardUser()->save($con);
}
public function checkPassword($password)
{
return $this->getGuardUser()->checkPassword($password);
}
public function hasGroup($name)
{
return $this->getGuardUser() ? $this->getGuardUser()->hasGroup($name) : false;
}
public function getGroups()
{
return $this->getGuardUser() ? $this->getGuardUser()->getGroups() : array();
}
public function getGroupNames()
{
return $this->getGuardUser() ? $this->getGuardUser()->getGroupNames() : array();
}
public function hasPermission($name)
{
return $this->getGuardUser() ? $this->getGuardUser()->hasPermission($name) : false;
}
public function getPermissions()
{
return $this->getGuardUser()->getPermissions();
}
public function getPermissionNames()
{
return $this->getGuardUser() ? $this->getGuardUser()->getPermissionNames() : array();
}
public function getAllPermissions()
{
return $this->getGuardUser() ? $this->getGuardUser()->getAllPermissions() : array();
}
public function getAllPermissionNames()
{
return $this->getGuardUser() ? $this->getGuardUser()->getAllPermissionNames() : array();
}
public function getProfile()
{
return $this->getGuardUser() ? $this->getGuardUser()->getProfile() : null;
}
public function addGroupByName($name, $con = null)
{
return $this->getGuardUser()->addGroupByName($name, $con);
}
public function addPermissionByName($name, $con = null)
{
return $this->getGuardUser()->addPermissionByName($name, $con);
}
}
|