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 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
|
<?php
/**
* User class
*
* Sets up database results and preferences for a user and abstracts this info
*
* You can now optionally pass in a db result
* handle. If you do, it re-uses that query
* to instantiate the objects
*
* IMPORTANT! That db result must contain all fields
* from users table or you will have problems
*
* GENERALLY YOU SHOULD NEVER INSTANTIATE THIS OBJECT DIRECTLY
* USE user_get_object() to instantiate properly - this will pool the objects
* and increase efficiency
*
* Copyright 1999-2001 (c) VA Linux Systems
*
* @version $Id: User.class,v 1.22 2003/09/30 11:43:18 lo-lan-do Exp $
* @author Tim Perdue tperdue@valinux.com
* @date 2000-10-11
*
* This file is part of GForge.
*
* GForge is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* GForge is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GForge; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
require_once('www/include/vote_function.php');
$USER_OBJ=array();
/**
* user_get_object_by_name() - Get User object by username.
* user_get_object is useful so you can pool user objects/save database queries
* You should always use this instead of instantiating the object directly
*
* @param string The unix username - required
* @param int The result set handle ("SELECT * FROM USERS WHERE user_id=xx")
* @return a user object or false on failure
*
*/
function &user_get_object_by_name($user_name,$res=false) {
$user_name = strtolower($user_name);
if (!$res) {
$res=db_query("SELECT * FROM users WHERE user_name='$user_name'");
}
return user_get_object(db_result($res,0,'user_id'),$res);
}
/**
* user_get_object() - Get User object by user ID.
* user_get_object is useful so you can pool user objects/save database queries
* You should always use this instead of instantiating the object directly
*
* @param int The ID of the user - required
* @param int The result set handle ("SELECT * FROM USERS WHERE user_id=xx")
* @return a user object or false on failure
*
*/
function &user_get_object($user_id,$res=false) {
//create a common set of group objects
//saves a little wear on the database
//automatically checks group_type and
//returns appropriate object
global $USER_OBJ;
if (!isset($USER_OBJ["_".$user_id."_"])) {
if ($res) {
//the db result handle was passed in
} else {
$res=db_query("SELECT * FROM users WHERE user_id='$user_id'");
}
if (!$res || db_numrows($res) < 1) {
$USER_OBJ["_".$user_id."_"]=false;
} else {
$USER_OBJ["_".$user_id."_"]= new User($user_id,$res);
}
}
return $USER_OBJ["_".$user_id."_"];
}
class User extends Error {
/**
* Associative array of data from db.
*
* @var array $data_array.
*/
var $data_array;
/**
* Is this person a site super-admin?
*
* @var bool $is_super_user
*/
var $is_super_user;
/**
* Is this person the logged in user?
*
* @var bool $is_logged_in
*/
var $is_logged_in;
/**
* Array of preferences
*
* @var array $user_pref
*/
var $user_pref;
var $theme;
var $theme_id;
/**
* User($id,$res) - CONSTRUCTOR - GENERALLY DON'T USE THIS
*
* instead use the user_get_object() function call
*
* @param int The user_id
* @param int The database result set
*/
function User($id=false,$res=false) {
$this->Error();
if (!$id) {
//setting up an empty object
//probably going to call create()
return true;
}
if (!$res) {
$this->fetchData($id);
} else {
if (db_numrows($res) < 1) {
//function in class we extended
$this->setError('User Not Found');
$this->data_array=array();
return false;
} else {
//set up an associative array for use by other functions
db_reset_result($res);
$this->data_array =& db_fetch_array($res);
}
}
$this->is_super_user=false;
$this->is_logged_in=false;
return true;
}
/**
* create() - Create a new user
*
* @param string The unix username
* @param string The real username
* @param string The first password
* @param string The confirmation password
* @param string The users email address
* @param string The users preferred default language
* @param string The users preferred default timezone
* @param string The users preference for receiving site updates by email
* @param string The users preference for receiving community updates by email
* @param int The ID of the language preference
* @param string The users preferred timezone
* @param string The users Jabber address
* @param int The users Jabber preference
* @returns The newly created user ID
*
*/
function create($unix_name,$realname,$password1,$password2,$email,
$mail_site,$mail_va,$language_id,$timezone,$jabber_address,$jabber_only,$unix_box='shell') {
global $Language;
if (!$unix_name) {
$this->setError($Language->getText('account_register','err_username'));
return false;
}
if (!$realname) {
$this->setError($Language->getText('account_register','err_realname'));
return false;
}
if (!$password1) {
$this->setError($Language->getText('account_register','err_passwd'));
return false;
}
if ($password1 != $password2) {
$this->setError($Language->getText('account_register','err_passwd2'));
return false;
}
if (!account_pwvalid($password1)) {
$this->setError($Language->getText('account_register','err_passwd3'));
return false;
}
$unix_name=strtolower($unix_name);
if (!account_namevalid($unix_name)) {
$this->setError($Language->getText('account_register','err_unixname'));
return false;
}
if (!validate_email($email)) {
$this->setError($Language->getText('account_register','err_email'));
return false;
}
if ($jabber_address && !validate_email($jabber_address)) {
$this->setError($Language->getText('account_register','err_jabber'));
return false;
}
if (!$jabber_only) {
$jabber_only=0;
} else {
$jabber_only=1;
}
if (db_numrows(db_query("SELECT user_id FROM users WHERE user_name LIKE '$unix_name'")) > 0) {
$this->setError($Language->getText('account_register','err_userexist'));
return false;
}
if ($GLOBALS['sys_require_unique_email']) {
if (db_numrows(db_query("SELECT user_id FROM users WHERE email='$email'")) > 0) {
$this->setError($Language->getText('account_register','err_mailexist'));
return false;
}
}
// if we got this far, it must be good
$confirm_hash = substr(md5($session_hash . $password1 . time()),0,16);
db_begin();
$result=db_query("INSERT INTO users (user_name,user_pw,unix_pw,realname,email,add_date,
status,confirm_hash,mail_siteupdates,mail_va,language,timezone,jabber_address,jabber_only,unix_box)
VALUES ('$unix_name',
'". md5($password1) . "',
'". account_genunixpw($password1) . "',
'". htmlspecialchars($realname). "',
'$email',
'" . time() . "',
'P',
'$confirm_hash',
'". (($mail_site)?"1":"0") . "',
'". (($mail_va)?"1":"0") . "',
'$language_id',
'$timezone',
'$jabber_address',
'$jabber_only',
'$unix_box')");
$id = db_insertid($result,'users','user_id');
if (!$result || !$id) {
$this->setError($Language->getText('account_register','err_badinsert') .db_error());
db_rollback();
return false;
} else {
// send mail
if (!$this->fetchData($id)) {
db_rollback();
return false;
}
$Language->loadLanguageID($language_id);
$this->sendRegistrationEmail();
db_commit();
return $id;
}
}
/**
* sendRegistrationEmail() - Send email for registration verification
*
* @return true or false
*/
function sendRegistrationEmail() {
global $Language;
$message=stripcslashes($Language->getText('account_register','message_body',array($this->getUnixName(),$GLOBALS['sys_default_domain'],$this->getConfirmHash(),$GLOBALS['sys_name'])));
util_send_message(
$this->getEmail(),
$Language->getText('account_register','message_header',array($GLOBALS['sys_name'])),
$message
);
}
/**
* update() - update *common* properties of User object
*
* Use specific setter to change other properties
*
* @param string The users real name
* @param int The ID of the users language preference
* @param string The useres timezone preference
* @param string The users preference for receiving site updates by email
* @param string The users preference for receiving community updates by email
* @param string The users preference for being participating in "peer ratings"
* @param string The users Jabber account address
* @param int The users Jabber preference
*/
function update($realname,$language_id,$timezone,$mail_site,$mail_va,$use_ratings,
$jabber_address,$jabber_only) {
global $Language;
$mail_site = $mail_site ? 1 : 0;
$mail_va = $mail_va ? 1 : 0;
$block_ratings = $use_ratings ? 0 : 1;
if ($jabber_address && !validate_email($jabber_address)) {
$this->setError($Language->getText('account_register','err_jabber'));
return false;
}
if (!$jabber_only) {
$jabber_only=0;
} else {
$jabber_only=1;
}
db_begin();
$res = db_query("
UPDATE users
SET
realname='".htmlspecialchars($realname)."',
language='$language_id',
timezone='$timezone',
mail_siteupdates=$mail_site,
mail_va=$mail_va,
block_ratings='$block_ratings',
jabber_address='$jabber_address',
jabber_only='$jabber_only'
WHERE user_id='".$this->getID()."'
");
if (!$res) {
$this->setError('ERROR - Could Not Update User Object: '.db_error());
db_rollback();
return false;
} else {
// If there's a transaction from using to not
// using ratings, remove all rating made by the
// user (ratings by others should not be removed,
// as it opens possibility to abuse rate system)
if (!$use_ratings && $this->usesRatings()) {
vote_remove_all_ratings_by($this->getID());
}
if (!$this->fetchData($this->getID())) {
db_rollback();
return false;
}
db_commit();
return true;
}
}
/**
* fetchData - May need to refresh database fields.
*
* If an update occurred and you need to access the updated info.
*
* @return boolean success;
*/
function fetchData($user_id) {
$res=db_query("SELECT * FROM users WHERE user_id='$user_id'");
if (!$res || db_numrows($res) < 1) {
$this->setError('User::fetchData()::'.db_error());
return false;
}
$this->data_array =& db_fetch_array($res);
return true;
}
/**
* getID - Simply return the user_id for this object.
*
* @return int This user's user_id number.
*/
function getID() {
return $this->data_array['user_id'];
}
/**
* getStatus - get the status of this user.
*
* Statuses include (A)ctive, (P)ending, (S)uspended ,(D)eleted.
*
* @return char This user's status flag.
*/
function getStatus() {
return $this->data_array['status'];
}
/**
* setStatus - set this user's status.
*
* @param string Status - P, A, S, or D.
* @return boolean success.
*/
function setStatus($status) {
if ($status != 'P' && $status != 'A'
&& $status != 'S' && $status != 'D') {
$this->setError('ERROR: Invalid status value');
return false;
}
db_begin();
$res=db_query("
UPDATE users
SET status='$status'
WHERE user_id='". $this->getID()."'
");
if (!$res) {
$this->setError('ERROR - Could Not Update User Status: '.db_error());
db_rollback();
return false;
} else {
$this->data_array['status']=$status;
if ($status == 'D') {
// Remove this user from all groups
$res = db_query("
DELETE FROM user_group
WHERE user_id='".$this->getID()."'
");
if (!$res) {
$this->setError('ERROR - Could Not Propogate Deleted Status: '.db_error());
db_rollback();
return false;
}
}
db_commit();
return true;
}
}
/**
* isActive - whether this user is confirmed and active.
*
* Database field status of 'A' returns true.
* @return boolean is_active.
*/
function isActive() {
if ($this->getStatus()=='A') {
return true;
} else {
return false;
}
}
/**
* getUnixStatus - Status of activation of unix account.
*
* @return char (N)one, (A)ctive, (S)uspended or (D)eleted
*/
function getUnixStatus() {
return $this->data_array['unix_status'];
}
/**
* setUnixStatus - Sets status of activation of unix account.
*
* @param string The unix status.
* @return boolean success.
*/
function setUnixStatus($status) {
db_begin();
if ($status != 'N') {
$this->setUpUnixUID () ;
}
$res=db_query("
UPDATE users
SET unix_status='$status'
WHERE user_id='". $this->getID()."'
");
if (!$res) {
$this->setError('ERROR - Could Not Update User Unix Status: '.db_error());
db_rollback();
return false;
} else {
if ($status == 'A') {
if (!sf_ldap_check_create_user($this->getID())) {
$this->setError(sf_ldap_get_error_msg());
db_rollback();
return false;
}
} else {
if (sf_ldap_check_user($this->getID())) {
if (!sf_ldap_remove_user($this->getID())) {
$this->setError(sf_ldap_get_error_msg());
db_rollback();
return false;
}
}
}
$this->data_array['unix_status']=$status;
db_commit();
return true;
}
}
/**
* getUnixName - the user's unix_name.
*
* @return string This user's unix/login name.
*/
function getUnixName() {
return strtolower($this->data_array['user_name']);
}
/**
* getUnixPasswd - get the user's password.
*
* @return string This user's unix crypted passwd.
*/
function getUnixPasswd() {
return $this->data_array['unix_pw'];
}
/**
* getUnixBox - the hostname of the unix box this user has an account on.
*
* @return string This user's shell login machine.
*/
function getUnixBox() {
return $this->data_array['unix_box'];
}
/**
* getMD5Passwd - the password.
*
* @return string This user's MD5-crypted passwd.
*/
function getMD5Passwd() {
return $this->data_array['user_pw'];
}
/**
* getConfirmHash - the confirm hash in the db.
*
* @return string This user's confirmation hash.
*/
function getConfirmHash() {
return $this->data_array['confirm_hash'];
}
/**
* getEmail - the user's email address.
*
* @return string This user's email address.
*/
function getEmail() {
return $this->data_array['email'];
}
/**
* getNewEmail - while changing an email address, it is stored here until confirmation.
*
* getNewEmail is a private operation for email change.
*
* @return string This user's new (not yet confirmed) email address.
* @private
*/
function getNewEmail() {
return $this->data_array['email_new'];
}
/**
* setEmail - set a new email address, which must be confirmed.
*
* @param string The email address.
* @return boolean success.
*/
function setEmail($email) {
if (!$email || !validate_email($email)) {
$this->setError('ERROR: Invalid Email');
return false;
}
$res=db_query("
UPDATE users
SET email='$email'
WHERE user_id='". $this->getID()."'
");
if (!$res) {
$this->setError('ERROR - Could Not Update User Email: '.db_error());
return false;
} else {
$this->data_array['email'] = $email;
return true;
}
}
/**
* setNewEmailAndHash - setNewEmailAndHash is a private operation for email change.
*
* @param string The email address.
* @param string The email hash.
* @return boolean success.
*/
function setNewEmailAndHash($email, $hash='') {
if (!$hash) {
$hash = substr(md5(strval(time()) . strval(mt_rand())), 0, 16);
}
if (!$email || !validate_email($email)) {
$this->setError('ERROR - Invalid Email');
return false;
}
$res=db_query("
UPDATE users
SET confirm_hash='$hash',
email_new='$email'
WHERE user_id='".$this->getID()."'
");
if (!$res) {
$this->setError('ERROR - Could Not Update User Email And Hash: '.db_error());
return false;
} else {
$this->data_array['email_new'] = $email;
$this->data_array['confirm_hash'] = $hash;
return true;
}
}
/**
* getRealName - get the user's real name.
*
* @return string This user's real name.
*/
function getRealName() {
return $this->data_array['realname'];
}
/**
* getAddDate - this user's unix time when account was opened.
*
* @return int This user's unix time when account was opened.
*/
function getAddDate() {
return $this->data_array['add_date'];
}
/**
* getTimeZone - this user's timezone setting.
*
* @return string This user's timezone setting.
*/
function getTimeZone() {
return $this->data_array['timezone'];
}
/**
* getShell - this user's preferred shell.
*
* @return string This user's preferred shell.
*/
function getShell() {
return $this->data_array['shell'];
}
/**
* setShell - sets user's preferred shell.
*
* @param string The users preferred shell.
* @return boolean success.
*/
function setShell($shell) {
$shells = file('/etc/shells');
$shells[count($shells)] = "/bin/cvssh";
$out_shells = array();
foreach ($shells as $s) {
if (substr($s, 0, 1) == '#') {
continue;
}
$out_shells[] = chop($s);
}
if (!in_array($shell, $out_shells)) {
$this->setError('ERROR: Invalid Shell');
return false;
}
db_begin();
$res=db_query("
UPDATE users
SET shell='$shell'
WHERE user_id='". $this->getID()."'
");
if (!$res) {
$this->setError('ERROR - Could Not Update User Unix Shell: '.db_error());
db_rollback();
return false;
} else {
// Now change LDAP attribute, but only if corresponding
// entry exists (i.e. if user have shell access)
if (sf_ldap_check_user($this->getID()))
{
if (!sf_ldap_user_set_attribute($this->getID(),"loginShell",$shell)) {
$this->setError(sf_ldap_get_error_msg());
db_rollback();
return false;
}
}
$this->data_array['shell']=$shell;
}
db_commit();
return true;
}
/**
* getUnixUid - this user's unix_uid.
*
* @return int This user's unix_uid.
*/
function getUnixUID() {
return $this->data_array['unix_uid'];
}
/**
* getLanguage - this user's language_id from supported_languages table.
*
* @return int This user's language_id.
*/
function getLanguage() {
return $this->data_array['language'];
}
/**
* getJabberAddress - this user's optional jabber address.
*
* @return string This user's jabber address.
*/
function getJabberAddress() {
return $this->data_array['jabber_address'];
}
/**
* getJabberOnly - whether this person wants updates sent ONLY to jabber.
*
* @return boolean This user's jabber preference.
*/
function getJabberOnly() {
return $this->data_array['jabber_only'];
}
/**
* getAuthorizedKeys - the SSH authorized keys set by the user.
*
* @return string This user's SSH authorized (public) keys.
*/
function getAuthorizedKeys() {
return ereg_replace("###", "\n", $this->data_array['authorized_keys']);
}
/**
* setAuthorizedKeys - set the SSH authorized keys for the user.
*
* @param string The users public keys.
* @return boolean success.
*/
function setAuthorizedKeys($keys) {
$keys = trim($keys);
$keys = ereg_replace("\r\n", "\n", $keys); // Convert to Unix EOL
$keys = ereg_replace("\n+", "\n", $keys); // Remove empty lines
$keys = ereg_replace("\n", "###", $keys); // Convert EOL to marker
$res=db_query("
UPDATE users
SET authorized_keys='$keys'
WHERE user_id='".$this->getID()."'
");
if (!$res) {
$this->setError('ERROR - Could Not Update User SSH Keys');
return false;
} else {
$this->data_array['authorized_keys'] = $keys;
return true;
}
}
/**
* setLoggedIn($val) - Really only used by session code.
*
* @param boolean The session value.
*/
function setLoggedIn($val=true) {
$this->is_logged_in=$val;
if ($val) {
//if this is the logged in user -
//see if they are a super user
$sql="SELECT * FROM user_group ".
"WHERE user_id='". $this->getID() ."' AND group_id='1' AND admin_flags='A'";
$result=db_query($sql);
if (!$result || db_numrows($result) < 1) {
$this->is_super_user=false;
} else {
$this->is_super_user=true;
}
}
}
/**
* isLoggedIn - only used by session code.
*
* @return boolean is_logged_in.
*/
function isLoggedIn() {
return $this->is_logged_in;
}
/**
* setPreference - set a new preference for this user.
*
* @param string The unique field name for this preference.
* @param string The value you are setting this preference to.
* @return boolean success.
*/
function setPreference($preference_name,$value) {
$preference_name=strtolower(trim($preference_name));
$result=db_query("UPDATE user_preferences SET preference_value='$value',set_date='". time() ."' ".
"WHERE user_id='". $this->getID() ."' ".
"AND preference_name='$preference_name'");
if (db_affected_rows($result) < 1) {
//echo db_error();
$result=db_query("INSERT INTO user_preferences (user_id,preference_name,preference_value,set_date) ".
"VALUES ('". $this->getID() ."','$preference_name','$value','". time() ."')");
return $result;
}
}
/**
* getPreference - get a specific preference.
*
* @param string The unique field name for this preference.
* @return the preference string or false on failure.
*/
function getPreference($preference_name) {
$preference_name=strtolower(trim($preference_name));
/*
First check to see if we have already fetched the preferences
*/
if ($this->user_pref) {
//echo "\n\nPrefs were fetched already";
if ($this->user_pref["$preference_name"]) {
//we have fetched prefs - return part of array
return $this->user_pref["$preference_name"];
} else {
//we have fetched prefs, but this pref hasn't been set
return false;
}
} else {
//we haven't returned prefs - go to the db
$result=db_query("SELECT preference_name,preference_value FROM user_preferences ".
"WHERE user_id='". $this->getID() ."'");
if (db_numrows($result) < 1) {
//echo "\n\nNo Prefs Found";
return false;
} else {
$pref=array();
//iterate and put the results into an array
for ($i=0; $i<db_numrows($result); $i++) {
$pref["".db_result($result,$i,'preference_name').""]=db_result($result,$i,'preference_value');
}
$this->user_pref =& $pref;
if ($this->user_pref["$preference_name"]) {
//we have fetched prefs - return part of array
return $this->user_pref["$preference_name"];
} else {
//we have fetched prefs, but this pref hasn't been set
return false;
}
}
}
}
/**
* setUpUnixUID - Sets up this user's unix_uid for shell access.
*
* @return boolean success.
*/
function setUpUnixUID() {
global $sys_database_type;
if ($this->getUnixUID() > 1) {
//
// already have unix_uid
//
return true;
}
//get the next unix uid
/*
hack to simulate sequences in mysql
*/
if ($sys_database_type=='mysql') {
$res=db_query("INSERT INTO unix_uids (id) values ('')");
$unixid=db_insertid($res,'unix_uids','id');
db_free_result($res);
} else {
$res=db_query("SELECT nextval('unix_uid_seq')");
$unixid=db_result($res,0,0);
db_free_result($res);
}
if (!$unixid) {
$this->setError('ERROR - Could Not Get Next Unix UID');
return false;
} else {
$res=db_query("
UPDATE users
SET unix_status='A',unix_uid='$unixid'
WHERE user_id='". $this->getID()."'
");
if (!$res || db_affected_rows($res) < 1) {
$this->setError('ERROR - Could Not Update User Account Flags: '.db_error());
return false;
} else {
$this->data_array['unix_uid'] = $unixid;
return true;
}
}
}
/**
* setPasswd - Changes user's password.
*
* @param string The plaintext password.
* @return boolean success.
*/
function setPasswd($passwd) {
if (!account_pwvalid($passwd)) {
$this->setError('Error: '.$GLOBALS['register_error']);
return false;
}
db_begin();
$unix_pw = account_genunixpw($passwd);
$res=db_query("
UPDATE users
SET user_pw='" . md5($passwd) . "',
unix_pw='$unix_pw'
WHERE user_id='".$this->getID()."'
");
if (!$res || db_affected_rows($res) < 1) {
$this->setError('ERROR - Could Not Change User Password: '.db_error());
db_rollback();
return false;
} else {
// Now change LDAP password, but only if corresponding
// entry exists (i.e. if user have shell access)
if (sf_ldap_check_user($this->getID())) {
if (!sf_ldap_user_set_attribute($this->getID(),"userPassword",'{crypt}'.$unix_pw)) {
$this->setError(sf_ldap_get_error_msg());
db_rollback();
return false;
}
}
}
db_commit();
return true;
}
/**
* usesRatings - whether user participates in rating system.
*
* @return boolean success.
*/
function usesRatings() {
return !$this->data_array['block_ratings'];
}
function getPlugins() {
if (!isset($this->plugins_data)) {
$this->plugins_data = array () ;
$sql="SELECT user_plugin.plugin_id, plugins.plugin_name
FROM user_plugin, plugins
WHERE user_plugin.user_id=".$this->getID()."
AND user_plugin.plugin_id = plugins.plugin_id" ;
$res=db_query($sql);
$rows = db_numrows($res);
for ($i=0; $i<$rows; $i++) {
$plugin_id = db_result($res,$i,'plugin_id');
$this->plugins_data[$plugin_id] = db_result($res,$i,'plugin_name');
}
}
return $this->plugins_data ;
}
function usesPlugin($pluginname) {
$plugins_data = $this->getPlugins() ;
foreach ($plugins_data as $p_name) {
if ($p_name == $pluginname) {
return true ;
}
}
return false ;
}
function setPluginUse($pluginname, $val=true) {
if ($val == $this->usesPlugin($pluginname)) {
// State is already good, returning
return true ;
}
$sql="SELECT plugin_id
FROM plugins
WHERE plugin_name = '" . $pluginname . "'" ;
$res=db_query($sql);
$rows = db_numrows($res);
if ($rows == 0) {
// Error: no plugin by that name
return false ;
}
$plugin_id = db_result($res,0,'plugin_id');
// Invalidate cache
unset ($this->plugins_data) ;
if ($val) {
$sql="INSERT INTO user_plugin (user_id, plugin_id)
VALUES (". $this->getID() . ", ". $plugin_id .")" ;
$res=db_query($sql);
return $res ;
} else {
$sql="DELETE FROM user_plugin
WHERE user_id = ". $this->getID() . "
AND plugin_id = ". $plugin_id ;
$res=db_query($sql);
return $res ;
}
}
/**
* getMailingsPrefs - Get activity status for one of the site mailings.
*
* @param string The id of mailing ('mail_va' for community mailings, 'mail_siteupdates' for site mailings)
* @return boolean success.
*/
function getMailingsPrefs($mailing_id) {
if ($mailing_id=='va') {
return $this->data_array['mail_va'];
} else if ($mailing_id=='site') {
return $this->data_array['mail_siteupdates'];
} else {
return 0;
}
}
/**
* unsubscribeFromMailings - Disable email notifications for user.
*
* @param boolean If false, disable general site mailings, else - all.
* @return boolean success.
*/
function unsubscribeFromMailings($all=false) {
$res1 = $res2 = $res3 = true;
$res1 = db_query("
UPDATE users
SET mail_siteupdates=0,
mail_va=0
WHERE user_id='".$this->getID()."'
");
if ($all) {
$res2 = db_query("
DELETE FROM forum_monitored_forums
WHERE user_id='".$this->getID()."'
");
$res3 = db_query("
DELETE FROM filemodule_monitor
WHERE user_id='".$this->getID()."'
");
}
return $res1 && $res2 && $res3;
}
/**
* getThemeID - get the theme_id for this user from the theme_prefs table.
*
* @return int The theme_id.
*/
function getThemeID() {
global $sys_theme;
if (!$this->theme_id) {
$res=db_query("SELECT * FROM theme_prefs WHERE user_id='".$this->getID()."'");
if (!$res || db_numrows($res) < 1) {
$res=db_query("SELECT theme_id FROM themes WHERE dirname='$sys_theme'");
$this->theme_id=db_result($res,0,'theme_id');
} else {
$this->theme_id=db_result($res,0,'user_theme');
}
}
return $this->theme_id;
}
/**
* setThemeID - set the theme_id for this user in the theme_prefs table.
*
* @return boolean success.
*/
function setThemeID($id) {
db_query("DELETE FROM theme_prefs WHERE user_id='".$this->getID()."'");
$result=db_query("INSERT INTO theme_prefs (user_id,user_theme) VALUES ('".$this->getID()."','$id')");
if (!$result || db_affected_rows($result) < 1) {
$this->setError('Error inserting theme_pre: '.db_error());
return false;
} else {
return true;
}
}
/**
* getThemeID - get the theme_id for this user from the theme_prefs table.
*
* @return int The theme_id.
*/
function setUpTheme() {
if (!$this->theme) {
$res=db_query("SELECT * FROM themes WHERE theme_id='".$this->getThemeID()."'");
$this->theme=db_result($res,0,'dirname');
$GLOBALS['sys_theme']=db_result($res,0,'dirname');
}
return $this->theme;
}
}
/*
EVERYTHING BELOW HERE IS DEPRECATED
DO NOT USE FOR ANY NEW CODE
*/
/**
* user_ismember() - DEPRECATED; DO NOT USE!
*
* @param int The Group ID
* @param int The Type
* @deprecated
*
*/
function user_ismember($group_id,$type=0) {
if (!session_loggedin()) {
return false;
}
$project =& group_get_object($group_id);
if (!$project || !is_object($project)) {
return false;
}
$perm =& $project->getPermission( session_get_user() );
if (!$perm || !is_object($perm) || !$perm->isMember()) {
return false;
}
$type=strtoupper($type);
switch ($type) {
case 'P2' : {
//pm admin
return $perm->isPMAdmin();
break;
}
case 'F2' : {
//forum admin
return $perm->isForumAdmin();
break;
}
case '0' : {
//just in this group
return $perm->isMember();
break;
}
case 'A' : {
//admin for this group
return $perm->isAdmin();
break;
}
case 'D1' : {
//document editor
return $perm->isDocEditor();
break;
}
default : {
//fubar request
return false;
}
}
return false;
}
/**
* user_getname() - DEPRECATED; DO NOT USE!
*
* @param int The User ID
* @deprecated
*
*/
function user_getname($user_id = false) {
// use current user if one is not passed in
if (!$user_id) {
if (session_loggedin()) {
$user=&user_get_object(user_getid());
if ($user) {
return $user->getUnixName();
} else {
return 'Error getting user';
}
} else {
return 'No User Id';
}
} else {
$user=&user_get_object($user_id);
if ($user) {
return $user->getUnixName();
} else {
return 'Invalid User';
}
}
}
// Local Variables:
// mode: php
// c-file-style: "bsd"
// End:
?>
|