MDL-24383 adding missing context setup - credit goes to Paul Ortman
[moodle.git] / auth / db / auth.php
CommitLineData
b9ddb2d5 1<?php
2
3/**
4 * @author Martin Dougiamas
5 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
6 * @package moodle multiauth
7 *
8 * Authentication Plugin: External Database Authentication
9 *
10 * Checks against an external database.
11 *
12 * 2006-08-28 File created.
13 */
14
8ae42b8d 15if (!defined('MOODLE_INTERNAL')) {
16 die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
17}
b9ddb2d5 18
6bc1e5d5 19require_once($CFG->libdir.'/authlib.php');
e7721485 20require_once($CFG->libdir.'/adodb/adodb.inc.php');
6bc1e5d5 21
b9ddb2d5 22/**
23 * External database authentication plugin.
24 */
6bc1e5d5 25class auth_plugin_db extends auth_plugin_base {
b9ddb2d5 26
27 /**
28 * Constructor.
29 */
30 function auth_plugin_db() {
6bc1e5d5 31 $this->authtype = 'db';
b9ddb2d5 32 $this->config = get_config('auth/db');
8ae42b8d 33 if (empty($this->config->extencoding)) {
34 $this->config->extencoding = 'utf-8';
35 }
b9ddb2d5 36 }
37
38 /**
39 * Returns true if the username and password work and false if they are
40 * wrong or don't exist.
41 *
576c063b 42 * @param string $username The username
43 * @param string $password The password
8ae42b8d 44 *
45 * @return bool Authentication success or failure.
b9ddb2d5 46 */
139ebfdb 47 function user_login($username, $password) {
576c063b 48 global $CFG, $DB;
b9ddb2d5 49
8ae42b8d 50 $textlib = textlib_get_instance();
576c063b 51 $extusername = $textlib->convert($username, 'utf-8', $this->config->extencoding);
52 $extpassword = $textlib->convert($password, 'utf-8', $this->config->extencoding);
8ae42b8d 53
139ebfdb 54 $authdb = $this->db_init();
b9ddb2d5 55
8ae42b8d 56 if ($this->config->passtype === 'internal') {
b9ddb2d5 57 // lookup username externally, but resolve
58 // password locally -- to support backend that
59 // don't track passwords
8ae42b8d 60 $rs = $authdb->Execute("SELECT * FROM {$this->config->table}
61 WHERE {$this->config->fielduser} = '".$this->ext_addslashes($extusername)."' ");
b9ddb2d5 62 if (!$rs) {
03cedd62 63 $authdb->Close();
2b06294b 64 print_error('auth_dbcantconnect','auth_db');
b9ddb2d5 65 return false;
66 }
8ae42b8d 67
03cedd62 68 if ( !$rs->EOF ) {
69 $rs->Close();
70 $authdb->Close();
b9ddb2d5 71 // user exists exterally
72 // check username/password internally
576c063b 73 if ($user = $DB->get_record('user', array('username'=>$username, 'mnethostid'=>$CFG->mnet_localhost_id))) {
b9ddb2d5 74 return validate_internal_user_password($user, $password);
75 }
76 } else {
03cedd62 77 $rs->Close();
78 $authdb->Close();
b9ddb2d5 79 // user does not exist externally
80 return false;
8ae42b8d 81 }
b9ddb2d5 82
8ae42b8d 83 } else {
b9ddb2d5 84 // normal case: use external db for passwords
85
86 if ($this->config->passtype === 'md5') { // Re-format password accordingly
8ae42b8d 87 $extpassword = md5($extpassword);
88 } else if ($this->config->passtype === 'sha1') {
89 $extpassword = sha1($extpassword);
b9ddb2d5 90 }
91
8ae42b8d 92 $rs = $authdb->Execute("SELECT * FROM {$this->config->table}
93 WHERE {$this->config->fielduser} = '".$this->ext_addslashes($extusername)."'
94 AND {$this->config->fieldpass} = '".$this->ext_addslashes($extpassword)."' ");
b9ddb2d5 95 if (!$rs) {
03cedd62 96 $authdb->Close();
2b06294b 97 print_error('auth_dbcantconnect','auth_db');
b9ddb2d5 98 return false;
99 }
8ae42b8d 100
03cedd62 101 if (!$rs->EOF) {
102 $rs->Close();
103 $authdb->Close();
b9ddb2d5 104 return true;
105 } else {
03cedd62 106 $rs->Close();
107 $authdb->Close();
b9ddb2d5 108 return false;
8ae42b8d 109 }
110
b9ddb2d5 111 }
112 }
113
139ebfdb 114 function db_init() {
93901eb4 115 // Connect to the external database (forcing new connection)
116 $authdb = &ADONewConnection($this->config->type);
8ae42b8d 117 if (!empty($this->config->debugauthdb)) {
118 $authdb->debug = true;
119 ob_start();//start output buffer to allow later use of the page headers
120 }
121 $authdb->Connect($this->config->host, $this->config->user, $this->config->pass, $this->config->name, true);
b9ddb2d5 122 $authdb->SetFetchMode(ADODB_FETCH_ASSOC);
8ae42b8d 123 if (!empty($this->config->setupsql)) {
124 $authdb->Execute($this->config->setupsql);
125 }
b9ddb2d5 126
139ebfdb 127 return $authdb;
128 }
129 /**
130 * retuns user attribute mappings between moodle and ldap
131 *
132 * @return array
133 */
134 function db_attributes() {
139ebfdb 135 $moodleattributes = array();
4105caff 136 foreach ($this->userfields as $field) {
139ebfdb 137 if (!empty($this->config->{"field_map_$field"})) {
138 $moodleattributes[$field] = $this->config->{"field_map_$field"};
0f02788f 139 }
140 }
5261baf1 141 $moodleattributes['username'] = $this->config->fielduser;
139ebfdb 142 return $moodleattributes;
143 }
144
145 /**
146 * Reads any other information for a user from external database,
147 * then returns it in an array
148 *
be544ec3 149 * @param string $username
139ebfdb 150 *
151 * @return array without magic quotes
152 */
153 function get_userinfo($username) {
154
155 global $CFG;
156
157 $textlib = textlib_get_instance();
be544ec3 158 $extusername = $textlib->convert($username, 'utf-8', $this->config->extencoding);
139ebfdb 159
160 $authdb = $this->db_init();
161
162 //Array to map local fieldnames we want, to external fieldnames
163 $selectfields = $this->db_attributes();
164
0f02788f 165 $result = array();
166 //If at least one field is mapped from external db, get that mapped data:
167 if ($selectfields) {
168 $select = '';
169 foreach ($selectfields as $localname=>$externalname) {
170 $select .= ", $externalname AS $localname";
171 }
172 $select = 'SELECT ' . substr($select,1);
173 $sql = $select .
174 " FROM {$this->config->table}" .
8ae42b8d 175 " WHERE {$this->config->fielduser} = '".$this->ext_addslashes($extusername)."'";
0f02788f 176 if ($rs = $authdb->Execute($sql)) {
03cedd62 177 if ( !$rs->EOF ) {
245ac557 178 $fields_obj = $rs->FetchObj();
1ed6ae07 179 $fields_obj = (object)array_change_key_case((array)$fields_obj , CASE_LOWER);
0f02788f 180 foreach ($selectfields as $localname=>$externalname) {
8ae42b8d 181 $result[$localname] = $textlib->convert($fields_obj->{$localname}, $this->config->extencoding, 'utf-8');
0f02788f 182 }
183 }
245ac557 184 $rs->Close();
b9ddb2d5 185 }
186 }
187 $authdb->Close();
b9ddb2d5 188 return $result;
a7e32367 189
b9ddb2d5 190 }
191
192
fb5c7739 193 /**
194 * Change a user's password
195 *
ae040d4b 196 * @param object $user User table object
197 * @param string $newpassword Plaintext password
8ae42b8d 198 *
fb5c7739 199 * @return bool True on success
200 */
da249a30 201 function user_update_password($user, $newpassword) {
b9ddb2d5 202
b7b50143 203 global $CFG;
b9ddb2d5 204 if ($this->config->passtype === 'internal') {
d972bfd0 205 return update_internal_user_password($user, $newpassword);
b9ddb2d5 206 } else {
207 // we should have never been called!
208 return false;
209 }
210 }
211
212 /**
213 * syncronizes user fron external db to moodle user table
214 *
215 * Sync shouid be done by using idnumber attribute, not username.
216 * You need to pass firstsync parameter to function to fill in
217 * idnumbers if they dont exists in moodle user table.
8ae42b8d 218 *
b9ddb2d5 219 * Syncing users removes (disables) users that dont exists anymore in external db.
8ae42b8d 220 * Creates new users and updates coursecreator status of users.
221 *
b9ddb2d5 222 * @param bool $do_updates Optional: set to true to force an update of existing accounts
223 *
224 * This implementation is simpler but less scalable than the one found in the LDAP module.
225 *
226 */
139ebfdb 227 function sync_users($do_updates=false) {
8ae42b8d 228
70ca450a 229 global $CFG, $DB;
b9ddb2d5 230 $pcfg = get_config('auth/db');
231
139ebfdb 232/// list external users
b9ddb2d5 233 $userlist = $this->get_userlist();
294ce987 234 $quoteduserlist = implode("', '", $userlist);
b9ddb2d5 235 $quoteduserlist = "'$quoteduserlist'";
236
139ebfdb 237/// delete obsolete internal users
238 if (!empty($this->config->removeuser)) {
b9ddb2d5 239
139ebfdb 240 // find obsolete users
241 if (count($userlist)) {
59669b63 242 $sql = "SELECT u.id, u.username, u.email, u.auth
70ca450a 243 FROM {user} u
5211c7ec 244 WHERE u.auth='{$this->authtype}' AND u.deleted=0 AND u.username NOT IN ($quoteduserlist)";
139ebfdb 245 } else {
59669b63 246 $sql = "SELECT u.id, u.username, u.email, u.auth
70ca450a 247 FROM {user} u
5211c7ec 248 WHERE u.auth='{$this->authtype}' AND u.deleted=0";
139ebfdb 249 }
70ca450a 250 $remove_users = $DB->get_records_sql($sql);
139ebfdb 251
252 if (!empty($remove_users)) {
2b06294b 253 print_string('auth_dbuserstoremove','auth_db', count($remove_users)); echo "\n";
139ebfdb 254
139ebfdb 255 foreach ($remove_users as $user) {
6f87ef52 256 if ($this->config->removeuser == AUTH_REMOVEUSER_FULLDELETE) {
90afcf32 257 if (delete_user($user)) {
2c10db3b 258 echo "\t"; print_string('auth_dbdeleteuser', 'auth_db', array('name'=>$user->username, 'id'=>$user->id)); echo "\n";
139ebfdb 259 } else {
2b06294b 260 echo "\t"; print_string('auth_dbdeleteusererror', 'auth_db', $user->username); echo "\n";
139ebfdb 261 }
6f87ef52 262 } else if ($this->config->removeuser == AUTH_REMOVEUSER_SUSPEND) {
1dffbae2 263 $updateuser = new stdClass();
139ebfdb 264 $updateuser->id = $user->id;
265 $updateuser->auth = 'nologin';
dd88de0e
PS
266 $DB->update_record('user', $updateuser);
267 echo "\t"; print_string('auth_dbsuspenduser', 'auth_db', array('name'=>$user->username, 'id'=>$user->id)); echo "\n";
139ebfdb 268 }
b9ddb2d5 269 }
8ae42b8d 270 }
139ebfdb 271 unset($remove_users); // free mem!
8ae42b8d 272 }
b9ddb2d5 273
274 if (!count($userlist)) {
275 // exit right here
276 // nothing else to do
277 return true;
278 }
279
280 ///
281 /// update existing accounts
282 ///
283 if ($do_updates) {
284 // narrow down what fields we need to update
285 $all_keys = array_keys(get_object_vars($this->config));
286 $updatekeys = array();
287 foreach ($all_keys as $key) {
288 if (preg_match('/^field_updatelocal_(.+)$/',$key, $match)) {
289 if ($this->config->{$key} === 'onlogin') {
290 array_push($updatekeys, $match[1]); // the actual key name
291 }
292 }
293 }
294 // print_r($all_keys); print_r($updatekeys);
295 unset($all_keys); unset($key);
296
297 // only go ahead if we actually
298 // have fields to update locally
299 if (!empty($updatekeys)) {
8ae42b8d 300 $sql = 'SELECT u.id, u.username
70ca450a 301 FROM {user} u
5211c7ec 302 WHERE u.auth=\'' . $this->authtype . '\' AND u.deleted=\'0\' AND u.username IN (' . $quoteduserlist . ')';
70ca450a 303 if ($update_users = $DB->get_records_sql($sql)) {
139ebfdb 304 print "User entries to update: ". count($update_users). "\n";
8ae42b8d 305
306 foreach ($update_users as $user) {
2c10db3b 307 echo "\t"; print_string('auth_dbupdatinguser', 'auth_db', array('name'=>$user->username, 'id'=>$user->id));
185721a4 308 if (!$this->update_user_record($user->username, $updatekeys)) {
139ebfdb 309 echo " - ".get_string('skipped');
310 }
311 echo "\n";
8ae42b8d 312 }
313 unset($update_users); // free memory
b9ddb2d5 314 }
b9ddb2d5 315 }
316 }
317
318
319 ///
320 /// create missing accounts
321 ///
322 // NOTE: this is very memory intensive
323 // and generally inefficient
8ae42b8d 324 $sql = 'SELECT u.id, u.username
70ca450a 325 FROM {user} u
5211c7ec 326 WHERE u.auth=\'' . $this->authtype . '\' AND u.deleted=\'0\'';
b9ddb2d5 327
70ca450a 328 $users = $DB->get_records_sql($sql);
8ae42b8d 329
b9ddb2d5 330 // simplify down to usernames
331 $usernames = array();
2b214bc1 332 if (!empty($users)) {
333 foreach ($users as $user) {
334 array_push($usernames, $user->username);
335 }
336 unset($users);
b9ddb2d5 337 }
b9ddb2d5 338
339 $add_users = array_diff($userlist, $usernames);
340 unset($usernames);
341
342 if (!empty($add_users)) {
2b06294b 343 print_string('auth_dbuserstoadd','auth_db',count($add_users)); echo "\n";
d5a8d9aa 344 $transaction = $DB->start_delegated_transaction();
b9ddb2d5 345 foreach($add_users as $user) {
346 $username = $user;
347 $user = $this->get_userinfo_asobj($user);
8ae42b8d 348
b9ddb2d5 349 // prep a few params
b7b50143 350 $user->username = $username;
351 $user->modified = time();
352 $user->confirmed = 1;
5211c7ec 353 $user->auth = $this->authtype;
b7b50143 354 $user->mnethostid = $CFG->mnet_localhost_id;
8ae42b8d 355 if (empty($user->lang)) {
356 $user->lang = $CFG->lang;
357 }
358
b9ddb2d5 359 // maybe the user has been deleted before
70ca450a 360 if ($old_user = $DB->get_record('user', array('username'=>$user->username, 'deleted'=>1, 'mnethostid'=>$user->mnethostid))) {
b9ddb2d5 361 $user->id = $old_user->id;
70ca450a 362 $DB->set_field('user', 'deleted', 0, array('username'=>$user->username));
2c10db3b 363 echo "\t"; print_string('auth_dbreviveduser', 'auth_db', array('name'=>$user->username, 'id'=>$user->id)); echo "\n";
6b8ad965 364
a9637e7d
PS
365 } else {
366 $id = $DB->insert_record ('user',$user); // it is truly a new user
2c10db3b 367 echo "\t"; print_string('auth_dbinsertuser','auth_db',array('name'=>$user->username, 'id'=>$id)); echo "\n";
b9ddb2d5 368 // if relevant, tag for password generation
369 if ($this->config->passtype === 'internal') {
370 set_user_preference('auth_forcepasswordchange', 1, $id);
371 set_user_preference('create_password', 1, $id);
372 }
b9ddb2d5 373 }
b9ddb2d5 374 }
d5a8d9aa 375 $transaction->allow_commit();
b9ddb2d5 376 unset($add_users); // free mem
377 }
378 return true;
379 }
380
139ebfdb 381 function user_exists($username) {
93901eb4 382
a7e32367 383 /// Init result value
384 $result = false;
385
8ae42b8d 386 $textlib = textlib_get_instance();
70ca450a 387 $extusername = $textlib->convert($username, 'utf-8', $this->config->extencoding);
8ae42b8d 388
139ebfdb 389 $authdb = $this->db_init();
b9ddb2d5 390
8ae42b8d 391 $rs = $authdb->Execute("SELECT * FROM {$this->config->table}
392 WHERE {$this->config->fielduser} = '".$this->ext_addslashes($extusername)."' ");
b9ddb2d5 393
394 if (!$rs) {
2b06294b 395 print_error('auth_dbcantconnect','auth_db');
03cedd62 396 } else if ( !$rs->EOF ) {
b9ddb2d5 397 // user exists exterally
03cedd62 398 $result = true;
8ae42b8d 399 }
a7e32367 400
401 $authdb->Close();
402 return $result;
b9ddb2d5 403 }
404
405
406 function get_userlist() {
93901eb4 407
a7e32367 408 /// Init result value
409 $result = array();
410
139ebfdb 411 $authdb = $this->db_init();
b9ddb2d5 412
413 // fetch userlist
414 $rs = $authdb->Execute("SELECT {$this->config->fielduser} AS username
415 FROM {$this->config->table} ");
b9ddb2d5 416
417 if (!$rs) {
2b06294b 418 print_error('auth_dbcantconnect','auth_db');
03cedd62 419 } else if ( !$rs->EOF ) {
245ac557 420 while ($rec = $rs->FetchRow()) {
e9366bf8 421 $rec = (object)array_change_key_case((array)$rec , CASE_LOWER);
422 array_push($result, $rec->username);
b9ddb2d5 423 }
8ae42b8d 424 }
a7e32367 425
426 $authdb->Close();
427 return $result;
b9ddb2d5 428 }
429
430 /**
431 * reads userinformation from DB and return it in an object
432 *
8ae42b8d 433 * @param string $username username (with system magic quotes)
b9ddb2d5 434 * @return array
435 */
436 function get_userinfo_asobj($username) {
437 $user_array = truncate_userinfo($this->get_userinfo($username));
1dffbae2 438 $user = new stdClass();
b9ddb2d5 439 foreach($user_array as $key=>$value) {
440 $user->{$key} = $value;
441 }
442 return $user;
443 }
444
8ae42b8d 445 /**
446 * will update a local user record from an external source.
447 * is a lighter version of the one in moodlelib -- won't do
b9ddb2d5 448 * expensive ops such as enrolment
449 *
8ae42b8d 450 * If you don't pass $updatekeys, there is a performance hit and
b9ddb2d5 451 * values removed from DB won't be removed from moodle.
8ae42b8d 452 *
185721a4 453 * @param string $username username
b9ddb2d5 454 */
139ebfdb 455 function update_user_record($username, $updatekeys=false) {
185721a4 456 global $CFG, $DB;
b9ddb2d5 457
b9ddb2d5 458 //just in case check text case
459 $username = trim(moodle_strtolower($username));
8ae42b8d 460
b9ddb2d5 461 // get the current user record
185721a4 462 $user = $DB->get_record('user', array('username'=>$username, 'mnethostid'=>$CFG->mnet_localhost_id));
b9ddb2d5 463 if (empty($user)) { // trouble
464 error_log("Cannot update non-existent user: $username");
2b06294b 465 print_error('auth_dbusernotexist','auth_db',$username);
b9ddb2d5 466 die;
467 }
468
b7b50143 469 // Ensure userid is not overwritten
470 $userid = $user->id;
471
b9ddb2d5 472 if ($newinfo = $this->get_userinfo($username)) {
473 $newinfo = truncate_userinfo($newinfo);
8ae42b8d 474
b9ddb2d5 475 if (empty($updatekeys)) { // all keys? this does not support removing values
476 $updatekeys = array_keys($newinfo);
477 }
8ae42b8d 478
b9ddb2d5 479 foreach ($updatekeys as $key) {
b9ddb2d5 480 if (isset($newinfo[$key])) {
481 $value = $newinfo[$key];
b9ddb2d5 482 } else {
483 $value = '';
484 }
8ae42b8d 485
486 if (!empty($this->config->{'field_updatelocal_' . $key})) {
139ebfdb 487 if ($user->{$key} != $value) { // only update if it's changed
185721a4 488 $DB->set_field('user', $key, $value, array('id'=>$userid));
139ebfdb 489 }
b9ddb2d5 490 }
491 }
492 }
185721a4 493 return $DB->get_record('user', array('id'=>$userid, 'deleted'=>0));
139ebfdb 494 }
495
496 /**
497 * Called when the user record is updated.
498 * Modifies user in external database. It takes olduser (before changes) and newuser (after changes)
499 * conpares information saved modified information to external db.
500 *
70ca450a 501 * @param mixed $olduser Userobject before modifications
502 * @param mixed $newuser Userobject new modified userobject
139ebfdb 503 * @return boolean result
504 *
505 */
506 function user_update($olduser, $newuser) {
507 if (isset($olduser->username) and isset($newuser->username) and $olduser->username != $newuser->username) {
508 error_log("ERROR:User renaming not allowed in ext db");
509 return false;
510 }
511
5211c7ec 512 if (isset($olduser->auth) and $olduser->auth != $this->authtype) {
139ebfdb 513 return true; // just change auth and skip update
514 }
515
516 $curruser = $this->get_userinfo($olduser->username);
517 if (empty($curruser)) {
518 error_log("ERROR:User $olduser->username found in ext db");
519 return false;
520 }
521
522 $textlib = textlib_get_instance();
523 $extusername = $textlib->convert($olduser->username, 'utf-8', $this->config->extencoding);
524
525 $authdb = $this->db_init();
526
527 $update = array();
528 foreach($curruser as $key=>$value) {
529 if ($key == 'username') {
530 continue; // skip this
531 }
532 if (empty($this->config->{"field_updateremote_$key"})) {
533 continue; // remote update not requested
534 }
535 if (!isset($newuser->$key)) {
536 continue;
537 }
70ca450a 538 $nuvalue = $newuser->$key;
139ebfdb 539 if ($nuvalue != $value) {
540 $update[] = $this->config->{"field_map_$key"}."='".$this->ext_addslashes($textlib->convert($nuvalue, 'utf-8', $this->config->extencoding))."'";
541 }
542 }
543 if (!empty($update)) {
544 $authdb->Execute("UPDATE {$this->config->table}
545 SET ".implode(',', $update)."
546 WHERE {$this->config->fielduser}='".$this->ext_addslashes($extusername)."'");
547 }
548 $authdb->Close();
549 return true;
b9ddb2d5 550 }
551
8ae42b8d 552 /**
553 * A chance to validate form data, and last chance to
554 * do stuff before it is inserted in config_plugin
555 */
556 function validate_form(&$form, &$err) {
150b5fb0 557 if ($form->passtype === 'internal') {
b9ddb2d5 558 $this->config->changepasswordurl = '';
559 set_config('changepasswordurl', '', 'auth/db');
560 }
b9ddb2d5 561 }
562
edb5da83
PS
563 function prevent_local_passwords() {
564 if (!isset($this->config->passtype)) {
565 return false;
566 }
567 return ($this->config->passtype != 'internal');
568 }
569
b9ddb2d5 570 /**
571 * Returns true if this authentication plugin is 'internal'.
572 *
139ebfdb 573 * @return bool
b9ddb2d5 574 */
575 function is_internal() {
e79781f7
PS
576 if (!isset($this->config->passtype)) {
577 return true;
578 }
ab6ff8a4 579 return ($this->config->passtype == 'internal');
b9ddb2d5 580 }
581
582 /**
583 * Returns true if this authentication plugin can change the user's
584 * password.
585 *
139ebfdb 586 * @return bool
b9ddb2d5 587 */
588 function can_change_password() {
430759a5 589 return ($this->config->passtype == 'internal' or !empty($this->config->changepasswordurl));
b9ddb2d5 590 }
591
592 /**
430759a5 593 * Returns the URL for changing the user's pw, or empty if the default can
b9ddb2d5 594 * be used.
595 *
99f9f85f 596 * @return moodle_url
b9ddb2d5 597 */
598 function change_password_url() {
430759a5 599 if ($this->config->passtype == 'internal') {
600 // standard form
99f9f85f 601 return null;
430759a5 602 } else {
603 // use custom url
99f9f85f 604 return new moodle_url($this->config->changepasswordurl);
430759a5 605 }
b9ddb2d5 606 }
607
ab6ff8a4 608 /**
609 * Returns true if plugin allows resetting of internal password.
610 *
611 * @return bool
612 */
613 function can_reset_password() {
614 return ($this->config->passtype == 'internal');
615 }
616
b9ddb2d5 617 /**
618 * Prints a form for configuring this authentication plugin.
619 *
620 * This function is called from admin/auth.php, and outputs a full page with
621 * a form for configuring this plugin.
622 *
623 * @param array $page An object containing all the data for this page.
624 */
139ebfdb 625 function config_form($config, $err, $user_fields) {
8ae42b8d 626 include 'config.html';
b9ddb2d5 627 }
628
629 /**
630 * Processes and stores configuration data for this authentication plugin.
631 */
632 function process_config($config) {
633 // set to defaults if undefined
634 if (!isset($config->host)) {
8ae42b8d 635 $config->host = 'localhost';
b9ddb2d5 636 }
637 if (!isset($config->type)) {
8ae42b8d 638 $config->type = 'mysql';
639 }
640 if (!isset($config->sybasequoting)) {
641 $config->sybasequoting = 0;
b9ddb2d5 642 }
643 if (!isset($config->name)) {
8ae42b8d 644 $config->name = '';
b9ddb2d5 645 }
646 if (!isset($config->user)) {
8ae42b8d 647 $config->user = '';
b9ddb2d5 648 }
649 if (!isset($config->pass)) {
8ae42b8d 650 $config->pass = '';
b9ddb2d5 651 }
652 if (!isset($config->table)) {
8ae42b8d 653 $config->table = '';
b9ddb2d5 654 }
655 if (!isset($config->fielduser)) {
8ae42b8d 656 $config->fielduser = '';
b9ddb2d5 657 }
658 if (!isset($config->fieldpass)) {
8ae42b8d 659 $config->fieldpass = '';
b9ddb2d5 660 }
661 if (!isset($config->passtype)) {
8ae42b8d 662 $config->passtype = 'plaintext';
663 }
664 if (!isset($config->extencoding)) {
665 $config->extencoding = 'utf-8';
666 }
667 if (!isset($config->setupsql)) {
668 $config->setupsql = '';
669 }
670 if (!isset($config->debugauthdb)) {
671 $config->debugauthdb = 0;
b9ddb2d5 672 }
139ebfdb 673 if (!isset($config->removeuser)) {
6f87ef52 674 $config->removeuser = AUTH_REMOVEUSER_KEEP;
139ebfdb 675 }
b9ddb2d5 676 if (!isset($config->changepasswordurl)) {
677 $config->changepasswordurl = '';
678 }
679
680 // save settings
8ae42b8d 681 set_config('host', $config->host, 'auth/db');
682 set_config('type', $config->type, 'auth/db');
683 set_config('sybasequoting', $config->sybasequoting, 'auth/db');
684 set_config('name', $config->name, 'auth/db');
685 set_config('user', $config->user, 'auth/db');
686 set_config('pass', $config->pass, 'auth/db');
687 set_config('table', $config->table, 'auth/db');
688 set_config('fielduser', $config->fielduser, 'auth/db');
689 set_config('fieldpass', $config->fieldpass, 'auth/db');
690 set_config('passtype', $config->passtype, 'auth/db');
691 set_config('extencoding', trim($config->extencoding), 'auth/db');
139ebfdb 692 set_config('setupsql', trim($config->setupsql),'auth/db');
8ae42b8d 693 set_config('debugauthdb', $config->debugauthdb, 'auth/db');
139ebfdb 694 set_config('removeuser', $config->removeuser, 'auth/db');
8ae42b8d 695 set_config('changepasswordurl', trim($config->changepasswordurl), 'auth/db');
696
b9ddb2d5 697 return true;
698 }
699
8ae42b8d 700 function ext_addslashes($text) {
701 // using custom made function for now
702 if (empty($this->config->sybasequoting)) {
703 $text = str_replace('\\', '\\\\', $text);
704 $text = str_replace(array('\'', '"', "\0"), array('\\\'', '\\"', '\\0'), $text);
705 } else {
706 $text = str_replace("'", "''", $text);
707 }
708 return $text;
709 }
b9ddb2d5 710}
711
5117d598 712