Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: functions_user.php 5380 2011-02-21 12:04:43Z Tomm $
| * $Id$
|
*/
/**
| */
/**
|
Zeile 40 | Zeile 40 |
---|
{ global $db;
|
{ global $db;
|
$query = $db->simple_select("users", "COUNT(*) as user", "LOWER(username)='".$db->escape_string(my_strtolower($username))."'", array('limit' => 1));
| $username = $db->escape_string(my_strtolower($username)); $query = $db->simple_select("users", "COUNT(*) as user", "LOWER(username)='".$username."' OR LOWER(email)='".$username."'", array('limit' => 1));
|
if($db->fetch_field($query, 'user') == 1) {
| if($db->fetch_field($query, 'user') == 1) {
|
Zeile 61 | Zeile 62 |
---|
*/ function validate_password_from_username($username, $password) {
|
*/ function validate_password_from_username($username, $password) {
|
global $db;
$query = $db->simple_select("users", "uid,username,password,salt,loginkey,coppauser,usergroup", "LOWER(username)='".$db->escape_string(my_strtolower($username))."'", array('limit' => 1));
| global $db, $mybb;
$username = $db->escape_string(my_strtolower($username)); switch($mybb->settings['username_method']) { case 0: $query = $db->simple_select("users", "uid,username,password,salt,loginkey,coppauser,usergroup", "LOWER(username)='".$username."'", array('limit' => 1)); break; case 1: $query = $db->simple_select("users", "uid,username,password,salt,loginkey,coppauser,usergroup", "LOWER(email)='".$username."'", array('limit' => 1)); break; case 2: $query = $db->simple_select("users", "uid,username,password,salt,loginkey,coppauser,usergroup", "LOWER(username)='".$username."' OR LOWER(email)='".$username."'", array('limit' => 1)); break; default: $query = $db->simple_select("users", "uid,username,password,salt,loginkey,coppauser,usergroup", "LOWER(username)='".$username."'", array('limit' => 1)); break; }
|
$user = $db->fetch_array($query);
|
$user = $db->fetch_array($query);
|
if(!$user['uid']) {
| if(!$user['uid']) {
|
return false; } else
| return false; } else
|
Zeile 87 | Zeile 103 |
---|
function validate_password_from_uid($uid, $password, $user = array()) { global $db, $mybb;
|
function validate_password_from_uid($uid, $password, $user = array()) { global $db, $mybb;
|
if($mybb->user['uid'] == $uid)
| if(isset($mybb->user['uid']) && $mybb->user['uid'] == $uid)
|
{ $user = $mybb->user; }
| { $user = $mybb->user; }
|
Zeile 97 | Zeile 113 |
---|
$user = $db->fetch_array($query); } if(!$user['salt'])
|
$user = $db->fetch_array($query); } if(!$user['salt'])
|
{
| {
|
// Generate a salt for this user and assume the password stored in db is a plain md5 password $user['salt'] = generate_salt(); $user['password'] = salt_password($user['password'], $user['salt']); $sql_array = array( "salt" => $user['salt'], "password" => $user['password']
|
// Generate a salt for this user and assume the password stored in db is a plain md5 password $user['salt'] = generate_salt(); $user['password'] = salt_password($user['password'], $user['salt']); $sql_array = array( "salt" => $user['salt'], "password" => $user['password']
|
);
| );
|
$db->update_query("users", $sql_array, "uid='".$user['uid']."'", 1); }
| $db->update_query("users", $sql_array, "uid='".$user['uid']."'", 1); }
|
Zeile 119 | Zeile 135 |
---|
if(salt_password(md5($password), $user['salt']) == $user['password']) { return $user;
|
if(salt_password(md5($password), $user['salt']) == $user['password']) { return $user;
|
} else
| } else
|
{ return false; }
| { return false; }
|
Zeile 296 | Zeile 312 |
---|
* If no uid is supplied, the currently logged in user's id will be used. * * @param int The tid of the thread to remove from the list.
|
* If no uid is supplied, the currently logged in user's id will be used. * * @param int The tid of the thread to remove from the list.
|
* @param int (Optional) The uid of the user who's list to update.
| * @param int (Optional) The uid of the user who's list to update.
|
* @return boolean True when success, false when otherwise. */ function remove_subscribed_thread($tid, $uid="")
|
* @return boolean True when success, false when otherwise. */ function remove_subscribed_thread($tid, $uid="")
|
{ global $mybb, $db; if(!$uid) { $uid = $mybb->user['uid']; } if(!$uid) {
| { global $mybb, $db; if(!$uid) { $uid = $mybb->user['uid']; } if(!$uid) {
|
return; } $db->delete_query("threadsubscriptions", "tid='".$tid."' AND uid='{$uid}'");
|
return; } $db->delete_query("threadsubscriptions", "tid='".$tid."' AND uid='{$uid}'");
|
return true; }
| return true; }
|
/** * Adds a forum to a user's forum subscription list. * If no uid is supplied, the currently logged in user's id will be used.
| /** * Adds a forum to a user's forum subscription list. * If no uid is supplied, the currently logged in user's id will be used.
|
Zeile 328 | Zeile 344 |
---|
function add_subscribed_forum($fid, $uid="") { global $mybb, $db;
|
function add_subscribed_forum($fid, $uid="") { global $mybb, $db;
|
if(!$uid) {
| if(!$uid) {
|
$uid = $mybb->user['uid']; } if(!$uid) { return;
|
$uid = $mybb->user['uid']; } if(!$uid) { return;
|
}
| }
|
$fid = intval($fid); $uid = intval($uid);
| $fid = intval($fid); $uid = intval($uid);
|
Zeile 351 | Zeile 367 |
---|
'uid' => $uid ); $db->insert_query("forumsubscriptions", $insert_array);
|
'uid' => $uid ); $db->insert_query("forumsubscriptions", $insert_array);
|
} return true; }
| } return true; }
|
/** * Removes a forum from a user's forum subscription list. * If no uid is supplied, the currently logged in user's id will be used.
| /** * Removes a forum from a user's forum subscription list. * If no uid is supplied, the currently logged in user's id will be used.
|
Zeile 363 | Zeile 379 |
---|
* @param int The fid of the forum to remove from the list. * @param int (Optional) The uid of the user who's list to update. * @return boolean True when success, false when otherwise.
|
* @param int The fid of the forum to remove from the list. * @param int (Optional) The uid of the user who's list to update. * @return boolean True when success, false when otherwise.
|
*/
| */
|
function remove_subscribed_forum($fid, $uid="") { global $mybb, $db;
| function remove_subscribed_forum($fid, $uid="") { global $mybb, $db;
|
Zeile 406 | Zeile 422 |
---|
global $usercpmenu;
eval("\$usercpnav = \"".$templates->get("usercp_nav")."\";");
|
global $usercpmenu;
eval("\$usercpnav = \"".$templates->get("usercp_nav")."\";");
|
|
|
$plugins->run_hooks("usercp_menu_built"); }
/** * Constructs the usercp messenger menu.
|
$plugins->run_hooks("usercp_menu_built"); }
/** * Constructs the usercp messenger menu.
|
* */
| * */
|
function usercp_menu_messenger() { global $db, $mybb, $templates, $theme, $usercpmenu, $lang, $collapsed, $collapsedimg;
|
function usercp_menu_messenger() { global $db, $mybb, $templates, $theme, $usercpmenu, $lang, $collapsed, $collapsedimg;
|
| $usercp_nav_messenger = $templates->get("usercp_nav_messenger"); // Hide tracking link if no permission $tracking = ''; if($mybb->usergroup['cantrackpms']) { $tracking = $templates->get("usercp_nav_messenger_tracking"); } eval("\$ucp_nav_tracking = \"". $tracking ."\";");
$folderlinks = '';
|
$foldersexploded = explode("$%%$", $mybb->user['pmfolders']); foreach($foldersexploded as $key => $folders) {
| $foldersexploded = explode("$%%$", $mybb->user['pmfolders']); foreach($foldersexploded as $key => $folders) {
|
Zeile 428 | Zeile 454 |
---|
$class = "usercp_nav_trash_pmfolder"; } else if($folderlinks)
|
$class = "usercp_nav_trash_pmfolder"; } else if($folderlinks)
|
{
| {
|
$class = "usercp_nav_sub_pmfolder"; } else
| $class = "usercp_nav_sub_pmfolder"; } else
|
Zeile 439 | Zeile 465 |
---|
$folderlinks .= "<div><a href=\"private.php?fid=$folderinfo[0]\" class=\"usercp_nav_item {$class}\">$folderinfo[1]</a></div>\n"; }
|
$folderlinks .= "<div><a href=\"private.php?fid=$folderinfo[0]\" class=\"usercp_nav_item {$class}\">$folderinfo[1]</a></div>\n"; }
|
eval("\$usercpmenu .= \"".$templates->get("usercp_nav_messenger")."\";");
| eval("\$usercpmenu .= \"".$usercp_nav_messenger."\";");
|
}
/** * Constructs the usercp profile menu.
|
}
/** * Constructs the usercp profile menu.
|
*
| *
|
*/ function usercp_menu_profile() { global $db, $mybb, $templates, $theme, $usercpmenu, $lang, $collapsed, $collapsedimg;
if($mybb->usergroup['canchangename'] != 0)
|
*/ function usercp_menu_profile() { global $db, $mybb, $templates, $theme, $usercpmenu, $lang, $collapsed, $collapsedimg;
if($mybb->usergroup['canchangename'] != 0)
|
{
| {
|
eval("\$changenameop = \"".$templates->get("usercp_nav_changename")."\";"); }
|
eval("\$changenameop = \"".$templates->get("usercp_nav_changename")."\";"); }
|
if($mybb->user['suspendsignature'] == 0 || $mybb->user['suspendsignature'] == 1 && $mybb->user['suspendsigtime'] > 0 && $mybb->user['suspendsigtime'] < TIME_NOW)
| if($mybb->usergroup['canusesig'] == 1 && ($mybb->usergroup['canusesigxposts'] == 0 || $mybb->usergroup['canusesigxposts'] > 0 && $mybb->user['postnum'] > $mybb->usergroup['canusesigxposts']))
|
{
|
{
|
eval("\$changesigop = \"".$templates->get("usercp_nav_editsignature")."\";");
| if($mybb->user['suspendsignature'] == 0 || $mybb->user['suspendsignature'] == 1 && $mybb->user['suspendsigtime'] > 0 && $mybb->user['suspendsigtime'] < TIME_NOW) { eval("\$changesigop = \"".$templates->get("usercp_nav_editsignature")."\";"); }
|
}
eval("\$usercpmenu .= \"".$templates->get("usercp_nav_profile")."\";");
| }
eval("\$usercpmenu .= \"".$templates->get("usercp_nav_profile")."\";");
|
Zeile 470 | Zeile 499 |
---|
function usercp_menu_misc() { global $db, $mybb, $templates, $theme, $usercpmenu, $lang, $collapsed, $collapsedimg;
|
function usercp_menu_misc() { global $db, $mybb, $templates, $theme, $usercpmenu, $lang, $collapsed, $collapsedimg;
|
| $draftstart = $draftend = $draftcount = '';
|
$query = $db->simple_select("posts", "COUNT(*) AS draftcount", "visible='-2' AND uid='".$mybb->user['uid']."'"); $count = $db->fetch_array($query);
if($count['draftcount'] > 0)
|
$query = $db->simple_select("posts", "COUNT(*) AS draftcount", "visible='-2' AND uid='".$mybb->user['uid']."'"); $count = $db->fetch_array($query);
if($count['draftcount'] > 0)
|
{
| {
|
$draftstart = "<strong>"; $draftend = "</strong>"; $draftcount = "(".my_number_format($count['draftcount']).")";
| $draftstart = "<strong>"; $draftend = "</strong>"; $draftcount = "(".my_number_format($count['draftcount']).")";
|
Zeile 483 | Zeile 514 |
---|
$profile_link = get_profile_link($mybb->user['uid']); eval("\$usercpmenu .= \"".$templates->get("usercp_nav_misc")."\";");
|
$profile_link = get_profile_link($mybb->user['uid']); eval("\$usercpmenu .= \"".$templates->get("usercp_nav_misc")."\";");
|
}
| }
|
/** * Gets the usertitle for a specific uid. * * @param int The uid of the user to get the usertitle of. * @return string The usertitle of the user.
|
/** * Gets the usertitle for a specific uid. * * @param int The uid of the user to get the usertitle of. * @return string The usertitle of the user.
|
*/
| */
|
function get_usertitle($uid="") { global $db, $mybb;
| function get_usertitle($uid="") { global $db, $mybb;
|
Zeile 503 | Zeile 534 |
---|
{ $query = $db->simple_select("users", "usertitle,postnum", "uid='$uid'", array('limit' => 1)); $user = $db->fetch_array($query);
|
{ $query = $db->simple_select("users", "usertitle,postnum", "uid='$uid'", array('limit' => 1)); $user = $db->fetch_array($query);
|
}
| }
|
if($user['usertitle']) { return $user['usertitle'];
| if($user['usertitle']) { return $user['usertitle'];
|
Zeile 534 | Zeile 565 |
---|
if(intval($uid) == 0) { $uid = $mybb->user['uid'];
|
if(intval($uid) == 0) { $uid = $mybb->user['uid'];
|
| } $uid = intval($uid); $pmcount = array(); if($uid == 0) { return $pmcount;
|
}
// Update total number of messages.
| }
// Update total number of messages.
|
Zeile 552 | Zeile 590 |
---|
$pmcount['unreadpms'] = $unread['pms_unread']; }
|
$pmcount['unreadpms'] = $unread['pms_unread']; }
|
if(is_array($pmcount))
| if(!empty($pmcount))
|
{
|
{
|
$db->update_query("users", $pmcount, "uid='".intval($uid)."'");
| $db->update_query("users", $pmcount, "uid='".$uid."'");
|
} return $pmcount; }
| } return $pmcount; }
|