". t("Lost your password? Fill out your username and e-mail address, and your password will be mailed to you.") ."

\n"; $output .= "
\n"; $output .= "". t("Username") .":
\n"; $output .= "

\n"; $output .= "". t("E-mail address") .":
\n"; $output .= "

\n"; $output .= "\n"; $output .= "

\n"; return $output; } function account_create($error = "") { global $theme; if ($error) { $output .= "

". t("Failed to create account: $error.") ."

\n"; watchdog("message", "failed to create account: $error."); } else { $output .= "

". t("Registering allows you to comment, to moderate comments and pending submissions, to customize the look and feel of the site and generally helps you interact with the site more efficiently.") ."

". t("To create an account, simply fill out this form an click the 'Create account' button below. An e-mail will then be sent to you with instructions on how to validate your account.") ."

\n"; } $output .= "
\n"; $output .= "". t("Username") .":
\n"; $output .= "
\n"; $output .= "". t("Enter your desired username: only letters, numbers and common special characters are allowed.") ."

\n"; $output .= "". t("E-mail address") .":
\n"; $output .= "
\n"; $output .= "". t("You will be sent instructions on how to validate your account via this e-mail address: make sure it is accurate.") ."

\n"; $output .= "\n"; $output .= "

\n"; return $output; } function account_session_start($userid, $passwd) { global $user; if ($userid && $passwd) $user = new User($userid, $passwd); if ($user->id) session_register("user"); watchdog("message", ($user->id ? "session opened for user '$user->userid'" : "failed login for user '$userid'")); } function account_session_close() { global $user; watchdog("message", "session closed for user '$user->userid'"); session_unset(); session_destroy(); unset($user); } function account_user_edit() { global $allowed_html, $theme, $user; if ($user->id) { // Generate output/content: $output .= "
\n"; $output .= "". t("Username") .":
\n"; $output .= "$user->userid

\n"; $output .= "". t("Required, unique, and can not be changed.") ."

\n"; $output .= "". t("Real name") .":
\n"; $output .= "name\">
\n"; $output .= "". t("Optional") .".

\n"; $output .= "". t("Real e-mail address") .":
\n"; $output .= "$user->real_email

\n"; $output .= "". t("Required, unique, can not be changed.") ." ". t("Your real e-mail address is never displayed publicly: only needed in case you lose your password.") ."

\n"; $output .= "". t("Fake e-mail address") .":
\n"; $output .= "fake_email\">
\n"; $output .= "". t("Optional") .". ". t("Displayed publicly so you may spam proof your real e-mail address if you want.") ."

\n"; $output .= "". t("Homepage") .":
\n"; $output .= "url\">
\n"; $output .= "". t("Optional") .". ". t("Make sure you enter fully qualified URLs only. That is, remember to include \"http://\".") ."

\n"; $output .= "". t("Bio") .": (". t("maximal 255 characters") .")
\n"; $output .= "
\n"; $output .= "". t("Optional") .". ". t("This biographical information is publicly displayed on your user page.") ."
". t("Allowed HTML tags") .": ". htmlspecialchars($allowed_html) .".

\n"; $output .= "". t("Signature") .": (". t("maximal 255 characters") .")
\n"; $output .= "
\n"; $output .= "". t("Optional") .". ". t("This information will be publicly displayed at the end of your comments.") ."
". t("Allowed HTML tags") .": ". htmlspecialchars($allowed_html) .".

\n"; $output .= "". t("Password") .":
\n"; $output .= "
\n"; $output .= "". t("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.") ."

\n"; $output .= "
\n"; $output .= "

\n"; // Display output/content: $theme->header(); $theme->box(t("Edit user information"), $output); $theme->footer(); } else { $theme->header(); $theme->box(t("Create user account"), account_create()); $theme->box(t("E-mail new password"), account_email()); $theme->footer(); } } function account_user_save($edit) { global $user; if ($user->id) { $user = user_save($user, array("name" => $edit[name], "fake_email" => $edit[fake_email], "url" => $edit[url], "bio" => $edit[bio], "signature" => $edit[signature])); if ($edit[pass1] && $edit[pass1] == $edit[pass2]) $user = user_save($user, array("passwd" => $edit[pass1])); } } function account_site_edit() { global $cmodes, $corder, $theme, $themes, $languages, $user; if ($user->id) { $output .= "
\n"; $output .= "". t("Theme") .":
\n"; foreach ($themes as $key=>$value) $options1 .= " \n"; $output .= "
\n"; $output .= "". t("Selecting a different theme will change the look and feel of the site.") ."

\n"; $output .= "". t("Timezone") .":
\n"; $date = time() - date("Z"); for ($zone = -43200; $zone <= 46800; $zone += 3600) $options2 .= " \n"; $output .= "
\n"; $output .= "". t("Select what time you currently have and your timezone settings will be set appropriate.") ."

\n"; $output .= "". t("Language" ) .":
\n"; foreach ($languages as $key=>$value) $options3 .= " \n"; $output .= "
\n"; $output .= "". t("Selecting a different language will change the language the site.") ."

\n"; $output .= "". t("Maximum number of items to display") .":
\n"; for ($nodes = 10; $nodes <= 30; $nodes += 5) $options4 .= "\n"; $output .= "
\n"; $output .= "". t("The maximum number of nodes that will be displayed on the main page.") ."

\n"; foreach ($cmodes as $key=>$value) $options5 .= "\n"; $output .= "". t("Comment display mode") .":
\n"; $output .= "

\n"; foreach ($corder as $key=>$value) $options6 .= "\n"; $output .= "". t("Comment sort order") .":
\n"; $output .= "

\n"; for ($i = -1; $i < 6; $i++) $options7 .= " "; $output .= "". t("Comment filter") .":
\n"; $output .= "
\n"; $output .= "". t("Comments that scored less than this threshold setting will be ignored. Anonymous comments start at 0, comments of people logged on start at 1 and moderators can add and subtract points.") ."

\n"; $output .= "
\n"; $output .= "

\n"; $theme->header(); $theme->box(t("Edit your preferences"), $output); $theme->footer(); } else { $theme->header(); $theme->box(t("Create user account"), account_create()); $theme->box(t("E-mail new password"), account_email()); $theme->footer(); } } function account_site_save($edit) { global $user; if ($user->id) { $user = user_save($user, array("theme" => $edit[theme], "timezone" => $edit[timezone], "language" => $edit[language], "nodes" => $edit[nodes], "mode" => $edit[mode], "sort" => $edit[sort], "threshold" => $edit[threshold])); } } function account_content_edit() { global $theme, $user; if ($user->id) { $output .= "
\n"; $output .= "". t("Blocks in side bars") .":
\n"; $result = db_query("SELECT * FROM blocks WHERE status = 1 ORDER BY module"); while ($block = db_fetch_object($result)) { $entry = db_fetch_object(db_query("SELECT * FROM layout WHERE block = '$block->name' AND user = '$user->id'")); $output .= "name]\"". ($entry->user ? " CHECKED" : "") ."> ". t($block->name) ."
\n"; } $output .= "

". t("Enable the blocks you would like to see displayed in the side bars.") ."

\n"; $output .= "\n"; $output .= "
\n"; $theme->header(); $theme->box(t("Edit your content"), $output); $theme->footer(); } else { $theme->header(); $theme->box(t("Create user account"), account_create()); $theme->box(t("E-mail new password"), account_email()); $theme->footer(); } } function account_content_save($edit) { global $user; if ($user->id) { db_query("DELETE FROM layout WHERE user = '$user->id'"); foreach (($edit ? $edit : array()) as $block=>$weight) { db_query("INSERT INTO layout (user, block) VALUES ('$user->id', '". check_input($block) ."')"); } } } function account_user($uname) { global $user, $status, $theme; function module($name, $module, $username) { global $theme; if ($module[account] && $block = $module[account]($username, "account", "view")) { if ($block[content]) $theme->box($block[subject], $block[content]); } } if ($user->id && $user->userid == $uname) { $output .= "\n"; $output .= " \n"; $output .= " \n"; $output .= " \n"; $output .= " \n"; $output .= " \n"; $output .= "
". t("Username") .":$user->userid
". t("E-mail") .":". format_email($user->fake_email) ."
". t("Homepage") .":". format_url($user->url) ."
". t("Bio") .":". check_output($user->bio) ."
". t("Signature") .":". check_output($user->signature) ."
\n"; // Display account information: $theme->header(); $theme->box(t("Personal information"), $output); $theme->footer(); } elseif ($uname && $account = account_get_user($uname)) { $block1 .= "\n"; $block1 .= " \n"; $block1 .= " \n"; $block1 .= " \n"; $block1 .= " \n"; $block1 .= "
". t("Username") .":$account->userid
". t("E-mail") .":". format_email($account->fake_email) ."
". t("Homepage") .":". format_url($account->url) ."
". t("Bio") .":". check_output($account->bio) ."
\n"; /* $result = db_query("SELECT c.cid, c.pid, c.lid, c.subject, c.timestamp, n.title AS node FROM comments c LEFT JOIN users u ON u.id = c.author LEFT JOIN node ON n.id = c.lid WHERE u.userid = '$uname' AND n.status = '$status[posted]' AND s.timestamp > ". (time() - 1209600) ." ORDER BY cid DESC LIMIT 10"); while ($comment = db_fetch_object($result)) { $block2 .= "\n"; $block2 .= " \n"; $block2 .= " \n"; $block2 .= " \n"; $block2 .= "
". t("Comment") .":lid&cid=$comment->cid&pid=$comment->pid#$comment->cid\">". check_output($comment->subject) ."
". t("Date") .":". format_date($comment->timestamp) ."
". t("Story") .":lid\">". check_output($comment->story) ."
\n"; $block2 .= "

\n"; $comments++; } */ // Display account information: $theme->header(); if ($block1) $theme->box(strtr(t("%a's user information"), array("%a" => $uname)), $block1); // if ($block2) $theme->box(strtr(t("%a has posted %b recently"), array("%a" => $uname, "%b" => format_plural($comments, "comment", "comments"))), $block2); module_iterate("module", $uname); $theme->footer(); } else { // Display login form: $theme->header(); $theme->box(t("Create user account"), account_create()); $theme->box(t("E-mail new password"), account_email()); $theme->footer(); } } function account_validate($user) { global $type2index; // Verify username and e-mail address: if (empty($user[real_email]) || (!eregi("^[_\.0-9a-z-]+@([0-9a-z][0-9a-z-]+\.)+[a-z]{2,3}$", $user[real_email]))) $error = t("the specified e-mail address is not valid"); if (empty($user[userid]) || (ereg("[^a-zA-Z0-9_-]", $user[userid]))) $error = t("the specified username is not valid"); if (strlen($user[userid]) > 15) $error = t("the specified username is too long: it must be less than 15 characters"); // Check to see whether the username or e-mail address are banned: if ($ban = ban_match($user[userid], $type2index[usernames])) $error = t("the specified username is banned") .": $ban->reason"; if ($ban = ban_match($user[real_email], $type2index[addresses])) $error = t("the specified e-mail address is banned") .": $ban->reason"; // Verify whether username and e-mail address are unique: if (db_num_rows(db_query("SELECT userid FROM users WHERE LOWER(userid) = LOWER('$user[userid]')")) > 0) $error = t("the specified username is already taken"); if (db_num_rows(db_query("SELECT real_email FROM users WHERE LOWER(real_email) = LOWER('$user[real_email]')")) > 0) $error = t("the specified e-mail address is already in use by another account"); return $error; } function account_email_submit($userid, $email) { global $theme, $site_name, $site_url; $result = db_query("SELECT id FROM users WHERE userid = '$userid' AND real_email = '$email'"); if ($account = db_fetch_object($result)) { $passwd = account_password(); $hash = substr(md5("$userid. ". time() .""), 0, 12); $status = 1; db_query("UPDATE users SET passwd = PASSWORD('$passwd'), hash = '$hash', status = '$status' WHERE userid = '$userid'"); $link = $site_url ."account.php?op=confirm&name=$userid&hash=$hash"; $subject = strtr(t("Account details for %a"), array("%a" => $site_name)); $message = strtr(t("%a,\n\n\nyou requested us to e-mail you a new password for your account at %b. You will need to re-confirm your account or you will not be able to login. To confirm your account updates visit the URL below:\n\n %c\n\nOnce confirmed you can login using the following username and password:\n\n username: %a\n password: %d\n\n\n-- %b team"), array("%a" => $userid, "%b" => $site_name, "%c" => $link, "%d" => $passwd)); watchdog("message", "new password: `$userid' <$email>"); mail($email, $subject, $message, "From: noreply"); $output = t("Your password and further instructions have been sent to your e-mail address."); } else { watchdog("warning", "new password: '$userid' and <$email> do not match"); $output = t("Could not sent password: no match for the specified username and e-mail address."); } $theme->header(); $theme->box(t("E-mail new password"), $output); $theme->footer(); } function account_create_submit($userid, $email) { global $theme, $site_name, $site_url; $new[userid] = trim($userid); $new[real_email] = trim($email); if ($error = account_validate($new)) { $theme->header(); $theme->box(t("Create user account"), account_create($error)); $theme->footer(); } else { $new[passwd] = account_password(); $new[hash] = substr(md5("$new[userid]. ". time()), 0, 12); $user = user_save("", array("userid" => $new[userid], "real_email" => $new[real_email], "passwd" => $new[passwd], "status" => 1, "hash" => $new[hash])); $link = $site_url ."account.php?op=confirm&name=$new[userid]&hash=$new[hash]"; $subject = strtr(t("Account details for %a"), array("%a" => $site_name)); $message = strtr(t("%a,\n\n\nsomeone signed up for a user account on %b and supplied this e-mail address as their contact. If it wasn't you, don't get your panties in a knot and simply ignore this mail. If this was you, you will have to confirm your account first or you will not be able to login. To confirm your account visit the URL below:\n\n %c\n\nOnce confirmed you can login using the following username and password:\n\n username: %a\n password: %d\n\n\n-- %b team\n"), array("%a" => $new[userid], "%b" => $site_name, "%c" => $link, "%d" => $new[passwd])); watchdog("message", "new account: `$new[userid]' <$new[real_email]>"); mail($new[real_email], $subject, $message, "From: noreply"); $theme->header(); $theme->box(t("Create user account"), t("Congratulations! Your member account has been successfully created and further instructions on how to confirm your account have been sent to your e-mail address. You have to confirm your account first or you will not be able to login.")); $theme->footer(); } } function account_create_confirm($name, $hash) { global $theme; $result = db_query("SELECT userid, hash, status FROM users WHERE userid = '$name'"); if ($account = db_fetch_object($result)) { if ($account->status == 1) { if ($account->hash == $hash) { db_query("UPDATE users SET status = '2', hash = '' WHERE userid = '$name'"); $output = t("Your account has been successfully confirmed."); watchdog("message", "$name: account confirmation successful"); } else { $output = t("Confirmation failed: invalid confirmation hash."); watchdog("warning", "$name: invalid confirmation hash"); } } else { $output = t("Confirmation failed: your account has already been confirmed."); watchdog("warning", "$name: attempt to re-confirm account"); } } else { $output = t("Confirmation failed: non-existing account."); watchdog("warning", "$name: attempt to confirm non-existing account"); } $theme->header(); $theme->box(t("Create user account"), $output); $theme->footer(); } function account_password($min_length=6) { mt_srand((double)microtime() * 1000000); $words = array("foo","bar","guy","neo","tux","moo","sun","asm","dot","god","axe","geek","nerd","fish","hack","star","mice","warp","moon","hero","cola","girl","fish","java","perl","boss","dark","sith","jedi","drop","mojo"); while(strlen($password) < $min_length) $password .= $words[mt_rand(0, count($words))]; return $password; } function account_track_comments() { global $theme, $user; $sresult = db_query("SELECT n.nid, n.title, COUNT(n.nid) AS count FROM comments c LEFT JOIN node n ON c.lid = n.nid WHERE c.author = '$user->id' GROUP BY n.nid DESC LIMIT 5"); while ($node = db_fetch_object($sresult)) { $output .= "

  • ". format_plural($node->count, "comment", "comments") ." ". t("attached to node") ." `nid\">". check_output($node->title) ."`:
  • \n"; $output .= " \n"; } $theme->header(); $theme->box(t("Track your comments"), ($output ? $output : t("You have not posted any comments recently."))); $theme->footer(); } function account_track_nodes() { global $status, $theme, $user; $result = db_query("SELECT n.nid, n.type, n.title, n.timestamp, COUNT(c.cid) AS count FROM node n LEFT JOIN comments c ON c.lid = n.nid WHERE n.status = '$status[posted]' AND n.author = '$user->id' GROUP BY n.nid DESC LIMIT 25"); while ($node = db_fetch_object($result)) { $output .= "\n"; $output .= " \n"; $output .= " \n"; $output .= " \n"; $output .= "
    ". t("Subject") .":nid\">". check_output($node->title) ." (". format_plural($node->count, "comment", "comments") .")
    ". t("Type") .":". check_output($node->type) ."
    ". t("Date") .":". format_date($node->timestamp) ."
    \n"; $output .= "

    \n"; } $theme->header(); $theme->box(t("Track your nodes"), ($output ? $output : t("You have not posted any nodes."))); $theme->footer(); } function account_track_site() { global $status, $theme, $user, $site_name; $period = 259200; // 3 days $sresult = db_query("SELECT n.title, n.nid, COUNT(c.lid) AS count FROM comments c LEFT JOIN node n ON c.lid = n.nid WHERE n.status = '$status[posted]' AND ". time() ." - n.timestamp < $period GROUP BY c.lid ORDER BY n.timestamp DESC LIMIT 10"); while ($node = db_fetch_object($sresult)) { $output .= "

  • ". format_plural($node->count, "comment", "comments") ." ". t("attached to node") ." 'nid\">". check_output($node->title) ."':
  • "; $cresult = db_query("SELECT c.subject, c.cid, c.pid, u.userid FROM comments c LEFT JOIN users u ON u.id = c.author WHERE c.lid = '$node->nid' ORDER BY c.timestamp DESC LIMIT $node->count"); $output .= "\n"; } $theme->header(); $theme->box(strtr(t("Track %a"), array("%a" => $site_name)), ($output ? $output : t("No comments or nodes posted recently."))); $theme->footer(); } // Security check: if (strstr($name, " ") || strstr($hash, " ")) { watchdog("error", "account: attempt to provide malicious input through URI"); exit(); } switch ($op) { case t("E-mail new password"): account_email_submit(check_input($userid), check_input($email)); break; case t("Create account"): account_create_submit(check_input($userid), check_input($email)); break; case t("Save user information"): account_user_save($edit); account_user($user->userid); break; case t("Save site settings"): account_site_save($edit); header("Location: account.php?op=info"); break; case t("Save content settings"): account_content_save($edit); account_user($user->userid); break; case "confirm": account_create_confirm(check_input($name), check_input($hash)); break; case "login": account_session_start(check_input($userid), check_input($passwd)); header("Location: account.php?op=info"); break; case "logout": account_session_close(); header("Location: account.php?op=info"); break; case "view": switch ($topic) { case "info": account_user($user->userid); break; default: account_user(check_input($name)); } break; case "track": switch ($topic) { case "site": account_track_site(); break; case "nodes": account_track_nodes(); break; default: account_track_comments(); } break; case "edit": switch ($topic) { case "content": account_content_edit(); break; case "site": account_site_edit(); break; default: account_user_edit(); } break; default: account_user($user->userid); } ?>