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 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
<?php //-*-php-*-
rcs_id('$Id: PdoDb.php,v 1.2 2005/06/10 06:12:36 rurban Exp $');
/* Copyright (C) 2004, 2005 ReiniUrban
* This file is part of PhpWiki. Terms and Conditions see LICENSE. (GPL2)
*/
class _PdoDbPassUser
extends _DbPassUser
/**
* PDO DB methods (PHP5)
* prepare, bind, execute.
* We use numrical FETCH_MODE_ROW, so we don't need aliases in the auth_* SQL statements.
*
* @tables: user
* @tables: pref
*/
{
var $_authmethod = 'PDODb';
function _PdoDbPassUser($UserName='', $prefs=false) {
if (!$this->_prefs and isa($this,"_PdoDbPassUser")) {
if ($prefs) $this->_prefs = $prefs;
}
if (!isset($this->_prefs->_method))
_PassUser::_PassUser($UserName);
elseif (!$this->isValidName($UserName)) {
trigger_error(_("Invalid username."), E_USER_WARNING);
return false;
}
$this->_userid = $UserName;
// make use of session data. generally we only initialize this every time,
// but do auth checks only once
$this->_auth_crypt_method = $GLOBALS['request']->_dbi->getAuthParam('auth_crypt_method');
return $this;
}
function getPreferences() {
// override the generic slow method here for efficiency and not to
// clutter the homepage metadata with prefs.
_AnonUser::getPreferences();
$this->getAuthDbh();
if (isset($this->_prefs->_select)) {
$dbh =& $this->_auth_dbi;
$db_result = $dbh->query(sprintf($this->_prefs->_select, $dbh->quote($this->_userid)));
// patched by frederik@pandora.be
$prefs = $db_result->fetch(PDO_FETCH_BOTH);
$prefs_blob = @$prefs["prefs"];
if ($restored_from_db = $this->_prefs->retrieve($prefs_blob)) {
$updated = $this->_prefs->updatePrefs($restored_from_db);
//$this->_prefs = new UserPreferences($restored_from_db);
return $this->_prefs;
}
}
if ($this->_HomePagehandle) {
if ($restored_from_page = $this->_prefs->retrieve
($this->_HomePagehandle->get('pref'))) {
$updated = $this->_prefs->updatePrefs($restored_from_page);
//$this->_prefs = new UserPreferences($restored_from_page);
return $this->_prefs;
}
}
return $this->_prefs;
}
function setPreferences($prefs, $id_only=false) {
// if the prefs are changed
if ($count = _AnonUser::setPreferences($prefs, 1)) {
$this->getAuthDbh();
$packed = $this->_prefs->store();
if (!$id_only and isset($this->_prefs->_update)) {
$dbh =& $this->_auth_dbi;
try {
$sth = $dbh->prepare($this->_prefs->_update);
$sth->bindParam("prefs", $packed);
$sth->bindParam("user", $this->_userid);
$sth->execute();
}
catch (PDOException $e) {
trigger_error("SQL Error: ".$e->getMessage(), E_USER_WARNING);
return false;
}
//delete pageprefs:
if ($this->_HomePagehandle and $this->_HomePagehandle->get('pref'))
$this->_HomePagehandle->set('pref', '');
} else {
//store prefs in homepage, not in cookie
if ($this->_HomePagehandle and !$id_only)
$this->_HomePagehandle->set('pref', $packed);
}
return $count;
}
return 0;
}
function userExists() {
$this->getAuthDbh();
$dbh = &$this->_auth_dbi;
if (!$dbh) { // needed?
return $this->_tryNextUser();
}
if (!$this->isValidName()) {
trigger_error(_("Invalid username."),E_USER_WARNING);
return $this->_tryNextUser();
}
$dbi =& $GLOBALS['request']->_dbi;
if ($dbi->getAuthParam('auth_check') and empty($this->_authselect)) {
try {
$this->_authselect = $dbh->prepare($dbi->getAuthParam('auth_check'));
}
catch (PDOException $e) {
trigger_error("SQL Error: ".$e->getMessage(), E_USER_WARNING);
return false;
}
}
//NOTE: for auth_crypt_method='crypt' no special auth_user_exists is needed
if ( !$dbi->getAuthParam('auth_user_exists')
and $this->_auth_crypt_method == 'crypt'
and $this->_authselect)
{
try {
$this->_authselect->bindParam("userid", $this->_userid, PDO_PARAM_STR, 48);
$this->_authselect->execute();
}
catch (PDOException $e) {
trigger_error("SQL Error: ".$e->getMessage(), E_USER_WARNING);
return false;
}
if ($this->_authselect->fetchSingle())
return true;
}
else {
if (! $dbi->getAuthParam('auth_user_exists'))
trigger_error(fmt("%s is missing", 'DBAUTH_AUTH_USER_EXISTS'),
E_USER_WARNING);
$this->_authcheck = $dbh->prepare($dbi->getAuthParam('auth_check'));
$this->_authcheck->bindParam("userid", $this->_userid, PDO_PARAM_STR, 48);
$this->_authcheck->execute();
if ($this->_authcheck->fetchSingle())
return true;
}
// User does not exist yet.
// Maybe the user is allowed to create himself. Generally not wanted in
// external databases, but maybe wanted for the wiki database, for performance
// reasons
if (empty($this->_authcreate) and $dbi->getAuthParam('auth_create')) {
try {
$this->_authcreate = $dbh->prepare($dbi->getAuthParam('auth_create'));
}
catch (PDOException $e) {
trigger_error("SQL Error: ".$e->getMessage(), E_USER_WARNING);
return false;
}
}
if (!empty($this->_authcreate) and
isset($GLOBALS['HTTP_POST_VARS']['auth']) and
isset($GLOBALS['HTTP_POST_VARS']['auth']['passwd']))
{
$passwd = $GLOBALS['HTTP_POST_VARS']['auth']['passwd'];
try {
$this->_authcreate->bindParam("userid", $this->_userid, PDO_PARAM_STR, 48);
$this->_authcreate->bindParam("password", $passwd, PDO_PARAM_STR, 48);
$rs = $this->_authselect->execute();
}
catch (PDOException $e) {
trigger_error("SQL Error: ".$e->getMessage(), E_USER_WARNING);
return false;
}
if ($rs)
return true;
}
return $this->_tryNextUser();
}
function checkPass($submitted_password) {
//global $DBAuthParams;
$this->getAuthDbh();
if (!$this->_auth_dbi) { // needed?
return $this->_tryNextPass($submitted_password);
}
if (!$this->isValidName()) {
return $this->_tryNextPass($submitted_password);
}
if (!$this->_checkPassLength($submitted_password)) {
return WIKIAUTH_FORBIDDEN;
}
if (!isset($this->_authselect))
$this->userExists();
if (!isset($this->_authselect))
trigger_error(fmt("Either %s is missing or DATABASE_TYPE != '%s'",
'DBAUTH_AUTH_CHECK', 'SQL'),
E_USER_WARNING);
//NOTE: for auth_crypt_method='crypt' defined('ENCRYPTED_PASSWD',true) must be set
$dbh = &$this->_auth_dbi;
if ($this->_auth_crypt_method == 'crypt') {
try {
$this->_authselect->bindParam("userid", $this->_userid, PDO_PARAM_STR, 48);
$this->_authselect->execute();
$rs = $this->_authselect->fetch(PDO_FETCH_BOTH);
}
catch (PDOException $e) {
trigger_error("SQL Error: ".$e->getMessage(), E_USER_WARNING);
return false;
}
$stored_password = @$rs[0];
$result = $this->_checkPass($submitted_password, $stored_password);
} else {
try {
$this->_authselect->bindParam("password", $submitted_password, PDO_PARAM_STR, 48);
$this->_authselect->bindParam("userid", $this->_userid, PDO_PARAM_STR, 48);
$this->_authselect->execute();
$rs = $this->_authselect->fetch(PDO_FETCH_BOTH);
}
catch (PDOException $e) {
trigger_error("SQL Error: ".$e->getMessage(), E_USER_WARNING);
return false;
}
$okay = @$rs[0];
$result = !empty($okay);
}
if ($result) {
$this->_level = WIKIAUTH_USER;
return $this->_level;
} elseif (USER_AUTH_POLICY === 'strict') {
$this->_level = WIKIAUTH_FORBIDDEN;
return $this->_level;
} else {
return $this->_tryNextPass($submitted_password);
}
}
function mayChangePass() {
return $GLOBALS['request']->_dbi->getAuthParam('auth_update');
}
function storePass($submitted_password) {
if (!$this->isValidName()) {
return false;
}
$this->getAuthDbh();
$dbh = &$this->_auth_dbi;
$dbi =& $GLOBALS['request']->_dbi;
if ($dbi->getAuthParam('auth_update') and empty($this->_authupdate)) {
try {
$this->_authupdate = $dbh->prepare($dbi->getAuthParam('auth_update'));
}
catch (PDOException $e) {
trigger_error("SQL Error: ".$e->getMessage(), E_USER_WARNING);
return false;
}
}
if (empty($this->_authupdate)) {
trigger_error(fmt("Either %s is missing or DATABASE_TYPE != '%s'",
'DBAUTH_AUTH_UPDATE','SQL'),
E_USER_WARNING);
return false;
}
if ($this->_auth_crypt_method == 'crypt') {
if (function_exists('crypt'))
$submitted_password = crypt($submitted_password);
}
try {
$this->_authupdate->bindParam("password", $submitted_password, PDO_PARAM_STR, 48);
$this->_authupdate->bindParam("userid", $this->_userid, PDO_PARAM_STR, 48);
$this->_authupdate->execute();
}
catch (PDOException $e) {
trigger_error("SQL Error: ".$e->getMessage(), E_USER_WARNING);
return false;
}
return true;
}
}
// $Log: PdoDb.php,v $
// Revision 1.2 2005/06/10 06:12:36 rurban
// finish missing db calls
//
// Revision 1.1 2005/05/06 16:56:48 rurban
// add PdoDbPassUser
//
// Local Variables:
// mode: php
// tab-width: 8
// c-basic-offset: 4
// c-hanging-comment-ender-p: nil
// indent-tabs-mode: nil
// End:
?>
|