drupal/account.php

225 lines
12 KiB
PHP
Raw Normal View History

2000-05-18 19:52:00 +00:00
<?
include('config.inc');
include('functions.inc');
2000-05-18 19:52:00 +00:00
function dbsave($dbase, $data, $id=0) {
foreach ($data as $key=>$value) {
if ($key == "passwd") { $query .= "$key=PASSWORD('". addslashes($value) ."'), "; }
else { $query .= "$key='". addslashes($value) ."', "; }
2000-05-18 19:52:00 +00:00
}
$query = substr($query, 0, -2);
2000-05-18 19:52:00 +00:00
dbconnect();
if (!empty($id)) { mysql_query("UPDATE $dbase SET $query WHERE id=$id") or die(mysql_error()); return $id; }
else { mysql_query("INSERT INTO $dbase SET $query") or die(mysql_error()); return mysql_insert_id(); }
}
function showLogin($userid = "") {
print("<FORM ACTION=\"account.php\" METHOD=post>\n");
print("<TABLE BORDER=0 CELLPADDING=2 CELLSPACING=2>\n");
print("<TR><TH>User ID:</TH><TD><INPUT NAME=userid VALUE=\"$userid\"></TD></TR>\n");
print("<TR><TH>Password:</TH><TD><INPUT NAME=passwd TYPE=password></TD></TR>\n");
print("<TR><TD ALIGN=center><INPUT NAME=act TYPE=submit VALUE=\"Login\"></TD></TR>\n");
print("<TR><TD ALIGN=center><A HREF=\"account.php?op=new\">Register</A> as new user.</A></TD></TR>\n");
print("<TR><TD COLSPAN=2>$user->ublock</TD></TR>\n");
print("</TABLE>\n");
print("</FORM>\n");
}
function showAccess() {
global $user, $access;
foreach ($access as $key=>$value) if ($user->access & $value) $result .= "$key<BR>";
return $result;
}
function showUser() {
include('theme.inc');
2000-05-18 19:52:00 +00:00
$theme->header();
if (!empty($user->userid)) {
2000-06-02 21:04:10 +00:00
print("<P>Welcome $user->name! This is <B>your</B> user info page. There are many more, but this one is yours. You are probably most interested in editing something, but if you need to kill some time, this place is as good as any other place.</P>\n");
print("<TABLE BORDER=0 CELLPADDING=2 CELLSPACING=2>\n");
print("<TR><TD><B>Name:</B></TD><TD>$user->name</TD></TR>\n");
print("<TR><TD><B>User ID:</B></TD><TD>$user->userid</TD></TR>\n");
print("<TR><TD><B>E-mail:</B></TD><TD>$user->email</TD></TR>\n");
if ($user->access > 0) print("<TR><TD VALIGN=top><B>Access:</B></TD><TD>". showAccess() ."</TD></TR>\n");
print("<TR><TD><B>Bio:</B></TD><TD>$user->bio</TD></TR>\n");
print("<TR><TD COLSPAN=2>$user->ublock</TD></TR>\n");
print("</TABLE>\n");
2000-05-18 19:52:00 +00:00
}
else { showLogin($userid); }
2000-05-18 19:52:00 +00:00
$theme->footer();
}
function newUser($user = "", $error="") {
include('theme.inc');
2000-05-18 19:52:00 +00:00
$theme->header();
print("<FORM ACTION=\"account.php\" METHOD=post>\n");
print("<TABLE BORDER=0 CELLPADDING=2 CELLSPACING=2>\n");
if (!empty($error)) { print("<TR><TD COLSPAN=2>$error</TD></TR>\n"); }
2000-06-02 19:01:27 +00:00
print("<TR><TH>Name:</TH><TD><INPUT NAME=\"new[name]\" VALUE=\"$new[name]\"></TD></TR>\n");
print("<TR><TH>User ID:</TR><TD><INPUT NAME=\"new[userid]\" VALUE=\"$new[userid]\"></TD></TR>\n");
print("<TR><TH>E-mail:</TH><TD><INPUT NAME=\"new[email]\" VALUE=\"$new[email]\"></TD></TR>\n");
print("<TR><TD ALIGN=right COLSPAN=2><INPUT NAME=act TYPE=submit VALUE=\"Register\"></TD></TR>\n");
print("</TABLE>\n");
print("</FORM>\n");
2000-05-18 19:52:00 +00:00
$theme->footer();
}
function validateUser($user) {
### Verify username and e-mail address:
$user[userid] = trim($user[userid]);
if (empty($user[email]) || (!eregi("^[_\.0-9a-z-]+@([0-9a-z][0-9a-z-]+\.)+[a-z]{2,3}$", $user[email]))) $rval = "the specified e-mail address is not valid.<BR>";
if (empty($user[userid]) || (ereg("[^a-zA-Z0-9_-]", $user[userid]))) $rval = "the specified username '$uname' is not valid.<BR>";
if (strlen($user[userid]) > 15) $rval = "the specified username is too long: it must be less than 15 characters.";
if (eregi("^((root)|(httpd)|(operator)|(admin)|(administrator)|(news)|(deamon)|(nobody)|(ftp))$", $user[userid])) $rval = "the specified username is reserved.";
2000-05-18 19:52:00 +00:00
### Verify whether username and e-mail address are uniqua:
2000-05-18 19:52:00 +00:00
dbconnect();
if (mysql_num_rows(mysql_query("SELECT userid FROM testusers WHERE LOWER(userid)=LOWER('$user[userid]')")) > 0) $rval = "the specified username is already taken.";
if (mysql_num_rows(mysql_query("SELECT email FROM testusers WHERE LOWER(email)=LOWER('$user[email]')")) > 0) $rval = "the specified e-mail address is already registered.";
return($rval);
2000-05-18 19:52:00 +00:00
}
function makePassword($min_length=6) {
mt_srand((double)microtime() * 1000000);
$words = array("foo","bar","guy","neo","geek","nerd","fish","hack","star","moon","hero","cola","girl","fish","java","boss");
while(strlen($password) < $min_length) {
$password .= $words[mt_rand(0, count($words))];
2000-05-18 19:52:00 +00:00
}
return $password;
2000-05-18 19:52:00 +00:00
}
switch ($act) {
2000-05-18 19:52:00 +00:00
case "Login":
session_start();
$user = new User($userid,$passwd);
if ($user->valid()) { session_register("user"); }
showUser();
2000-05-18 19:52:00 +00:00
break;
case "new":
newUser();
2000-05-18 19:52:00 +00:00
break;
2000-06-02 18:46:08 +00:00
case "logout":
session_start();
session_destroy();
2000-06-02 18:48:23 +00:00
unset($user);
2000-05-18 19:52:00 +00:00
break;
case "Register":
if ($rval = validateUser($new)) { newUser($new, "<B>Error: $rval</B>"); }
else {
include('theme.inc');
$new[passwd] = makePassword();
dbsave("testusers", $new);
$theme->header();
if ($system == 1) {
print("Your password is: <B>$new[passwd]</B><BR>");
print("<A HREF=\"account.php?op=Login&userid=$new[userid]&passwd=$new[passwd]\">Login</A> to change your personal settings.");
} else {
$message = "Your $sitename member account has been created succesfully. To be able to use it you must login using the information below. Please save this mail for further reference.\n\n username: $new[userid]\n e-mail: $newu[email]\n password: $new[passwd]\n\nThis password is generated by a randomizer. It is recommended that you change this password immediately.\n\n$contact_signature";
$subject = "Account details for $sitename";
mail($email, $subject, $message, "From: $contact_email\nX-Mailer: PHP/" . phpversion());
print("Your member account has been created and the details necessary to login have been sent to your e-mail account <B>$email</B>. Once you received the account confirmation, hit <A HREF=\"account.php\">this link</A> to login.");
}
$theme->footer();
}
2000-05-18 19:52:00 +00:00
break;
case "edituser":
if (!$user->valid()) { showLogin(); }
include('theme.inc');
$theme->header();
print("<FORM ACTION=\"account.php\" METHOD=post>\n");
print("<B>Real name:</B><BR>\n");
print("<INPUT NAME=\"edit[name]\" MAXLENGTH=55 SIZE=30 VALUE=\"$user->name\"><BR>\n");
print("<I>Optional.</I><P>\n");
print("<B>Real e-mail address:</B><BR>\n");
print("<INPUT NAME=\"edit[email]\" MAXLENGTH=55 SIZE=30 VALUE=\"$user->email\"><BR>\n");
print("<I>Required, but never displayed publicly: needed in case you lose your password.</I><P>\n");
print("<B>Fake e-mail address:</B><BR>\n");
print("<INPUT NAME=\"edit[femail]\" MAXLENGTH=55 SIZE=30 VALUE=\"$user->femail\"><BR>\n");
print("<I>Optional, and displayed publicly by your comments. You may spam proof it if you want.</I><P>\n");
print("<B>URL of homepage:</B><BR>\n");
print("<INPUT NAME=\"edit[url]\" MAXLENGTH=55 SIZE=30 VALUE=\"$user->url\"><BR>\n");
print("<I>Optional, but make sure you enter fully qualified URLs only. That is, remember to include \"http://\".</I><P>\n");
print("<B>Bio:</B> (255 char limit)<BR>\n");
print("<TEXTAREA NAME=\"edit[bio]\" COLS=35 ROWS=5 WRAP=virtual>$user->bio</TEXTAREA><BR>\n");
print("<I>Optional. This biographical information is publicly displayed on your user page.</I><P>\n");
print("<B>User block:</B> (255 char limit)<BR>\n");
print("<TEXTAREA NAME=\"edit[ublock]\" COLS=35 ROWS=5 WRAP=virtual>$user->ublock</TEXTAREA><BR>\n");
print("<INPUT NAME=\"edit[ublockon]\" TYPE=checkbox". ($user->ublockon == 1 ? " CHECKED" : "") .">Enable user block<BR>\n");
print("<I>Enable the checkbox and whatever you enter below will appear on your costum main page.</I><P>\n");
print("<B>Password:</B><BR>\n");
print("<INPUT TYPE=password NAME=\"edit[pass1]\" SIZE=10 MAXLENGTH=20> <INPUT TYPE=password NAME=edit[pass2] SIZE=10 MAXLENGTH=20><BR>\n");
print("<I>Enter your new password twice if you want to change your current password or leave it blank if you are happy with your current password.</I><P>\n");
print("<INPUT TYPE=submit NAME=act VALUE=\"Save user information\"><BR>\n");
print("</FORM>\n");
$theme->footer();
2000-05-18 19:52:00 +00:00
break;
case "editpage":
include('theme.inc');
$theme->header();
print("<FORM ACTION=\"account.php\" METHOD=post>\n");
print("<B>Theme:</B><BR>\n");
include "themes/list.php";
for ($i = 0; $i < count($themelist); $i++) {
if ($themelist[$i] != "") {
$options .= "<OPTION VALUE=\"$themelist[$i]\"". (((!empty($userinfo[theme])) && ($themelist[$i] == "default")) || ($user->theme == $themelist[$i]) ? " SELECTED" : "") .">$themelist[$i]</OPTION>";
}
}
if ($userinfo[theme]=="") $userinfo[theme] = "default";
print("<SELECT NAME=\"edit[theme]\">$options</SELECT><BR>\n");
print("<I>Changes the look and feel of the site.</I><P>\n");
print("<B>Maximum number of stories:</B><BR>\n");
print("<INPUT NAME=\"edit[storynum]\" MAXLENGTH=3 SIZE=3 VALUE=\"$user->storynum\"><P>\n");
$options = "<OPTION VALUE=\"nocomments\"". ($user->umode == 'nocomments' ? " SELECTED" : "") .">No comments</OPTION>";
$options .= "<OPTION VALUE=\"nested\"". ($user->umode == 'nested' ? " SELECTED" : "") .">Nested</OPTION>";
$options .= "<OPTION VALUE=\"flat\"". ($user->umode == 'flat' ? " SELECTED" : "") .">Flat</OPTION>";
$options .= "<OPTION VALUE=\"threaded\"". ($user->umode == 'threaded' ? " SELECTED" : "") .">Threaded</OPTION>";
print("<B>Display mode:</B><BR>\n");
print("<SELECT NAME=\"edit[umode]\">$options</SELECT><P>\n");
$options = "<OPTION VALUE=0". ($user->uorder == 0 ? " SELECTED" : "") .">Oldest first</OPTION>";
$options .= "<OPTION VALUE=1". ($user->uorder == 1 ? " SELECTED" : "") .">Newest first</OPTION>";
$options .= "<OPTION VALUE=2". ($user->uorder == 2 ? " SELECTED" : "") .">Highest scoring first</OPTION>";
print("<B>Sort order:</B><BR>\n");
print("<SELECT NAME=\"edit[uorder]\">$options</SELECT><P>\n");
$options = "<OPTION VALUE=\"-1\"". ($user->thold == -1 ? " SELECTED" : "") .">-1: Display uncut and raw comments.</OPTION>";
$options .= "<OPTION VALUE=0". ($user->thold == 0 ? " SELECTED" : "") .">0: Display almost all comments.</OPTION>";
$options .= "<OPTION VALUE=1". ($user->thold == 1 ? " SELECTED" : "") .">1: Display almost no anonymous comments.</OPTION>";
$options .= "<OPTION VALUE=2". ($user->thold == 2 ? " SELECTED" : "") .">2: Display comments with score +2 only.</OPTION>";
$options .= "<OPTION VALUE=3". ($user->thold == 3 ? " SELECTED" : "") .">3: Display comments with score +3 only.</OPTION>";
$options .= "<OPTION VALUE=4". ($user->thold == 4 ? " SELECTED" : "") .">4: Display comments with score +4 only.</OPTION>";
$options .= "<OPTION VALUE=5". ($user->thold == 5 ? " SELECTED" : "") .">5: Display comments with score +5 only.</OPTION>";
print("<B>Threshold:</B><BR>\n");
print("<SELECT NAME=\"edit[thold]\">$options</SELECT><BR>\n");
print("<I>Comments that scored less than this setting will be ignored. Anonymous comments start at 0, comments of people logged on start at 1 and moderators can add and subtract points.</I><P>\n");
print("<B>Singature:</B> (255 char limit)<BR>\n");
print("<TEXTAREA NAME=\"edit[signature]\" COLS=35 ROWS=5 WRAP=virtual>$user->signature</TEXTAREA><BR>\n");
print("<I>Optional. This information will be publicly displayed at the end of your comments. </I><P>\n");
print("<INPUT TYPE=submit NAME=act VALUE=\"Save page settings\"><BR>\n");
print("</FORM>\n");
$theme->footer();
2000-05-18 19:52:00 +00:00
break;
case "Save user information":
if ($user->valid()) {
$data[name] = $edit[name];
$data[email] = $edit[email];
$data[femail] = $edit[femail];
$data[url] = $edit[url];
$data[bio] = $edit[bio];
$data[ublock] = $edit[ublock];
$data[ublockon] = $edit[ublockon];
if ($edit[pass1] == $edit[pass2] && !empty($edit[pass1])) { $data[passwd] = $edit[pass1]; }
dbsave("testusers", $data, $user->id);
$user->update();
}
showUser();
2000-05-18 19:52:00 +00:00
break;
case "Save page settings":
if ($user->valid()) {
$data[theme] = $edit[theme];
$data[storynum] = $edit[storynum];
$data[umode] = $edit[umode];
$data[uorder] = $edit[uorder];
$data[thold] = $edit[thold];
$data[signature] = $edit[signature];
dbsave("testusers", $data, $user->id);
$user->update();
}
showUser();
2000-05-18 19:52:00 +00:00
break;
default: showUser();
2000-05-18 19:52:00 +00:00
}
?>