X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_user.php;h=3d497c18d38997f88cee2b8e059ab9c41bcdf637;hp=f964aef935a529966e0e12221893f914542a715b;hb=bc72f913ef9ef26f4103d3deddb4d8be5337a1e5;hpb=5dfaf0ed80b30f53574a8866858d3e7cf05ce325 diff --git a/inc/modules/admin/what-list_user.php b/inc/modules/admin/what-list_user.php index f964aef935..3d497c18d3 100644 --- a/inc/modules/admin/what-list_user.php +++ b/inc/modules/admin/what-list_user.php @@ -1,7 +1,7 @@ = '0.3.4') { + // Add it... + $MORE .= ", `rand_confirmed`"; + + // Add lock reason? + if (getExtensionVersion('user') >= '0.3.5') { + // Add them... + $MORE .= ", `lock_reason`, UNIX_TIMESTAMP(`lock_timestamp`) AS lock_timestamp"; + } // END - if +} // END - if -$MORE = ", userid"; $colspan = "4"; // 27 -if (EXT_IS_ACTIVE("nickname")) { $MORE = ", nickname"; } +// Is the extension 'country' installed? +if (isExtensionActive('country')) { + // Add country code + $MORE .= ", `country_code`"; +} else { + // Add direct value + $MORE .= ", `country`"; +} -if (empty($_GET['letter'])) { $_GET['letter'] = _ALL2; } -if (empty($_GET['sortby'])) { $_GET['sortby'] = "userid"; } -if (empty($_GET['page'])) { $_GET['page'] = "1"; } +// Init unset data +if (!isGetRequestElementSet('letter')) { setGetRequestElement('letter', getMessage('_ALL2')); } +if (!isGetRequestElementSet('sortby')) { setGetRequestElement('sortby', 'userid'); } +if (!isGetRequestElementSet('page')) { setGetRequestElement('page' , 1); } // Set base URL -$BASE = " 0) $content['links'] = $base . '&what=list_links&userid=' . $userid . '%}">' . $content['links'] . ']'; + if ($content['refid'] > 0) $content['refid'] = $base . '&what=list_user&userid=' . $content['refid'] . '%}">'.$content['refid'] . ']'; + if ($content['refs'] > 0) $content['refs'] = $base . '&what=list_refs&userid=' . $userid . '%}">' . $content['refs'] . ']'; + if ($content['cats'] > 0) $content['cats'] = $base . '&what=list_cats&userid=' . $userid . '%}">' . $content['cats'] . ']'; + + // Fix empty module + if (empty($content['last_module'])) $content['last_module'] = '---'; - $REFS = GET_TOTAL_DATA($uid, "refsystem", "counter"); - $CATS = GET_TOTAL_DATA($uid, "user_cats", "id", "userid", true); - $LINKS = GET_TOTAL_DATA($uid, "user_links", "id", "userid", true); + // Calculate timestamp for birthday + $stamp = mktime(0, 0, 0, $content['birth_month'], $content['birth_day'], $content['birth_year']); - if ($LINKS > 0) $LINKS = $BASE."&what=list_links&u_id=".$uid."\">".$LINKS.""; - if ($DATA[13] > 0) $DATA[13] = str_replace(("u_id=".$uid), ("u_id=".$DATA[13]), $BASE."&what=list_user\">".$DATA[13].""); - if (empty($DATA[17])) $DATA[17] = "---"; - if ($REFS > 0) $REFS = $BASE."&what=list_refs&u_id=".$uid."\">".$REFS.""; - if ($CATS > 0) $CATS = $BASE."&what=list_cats&u_id=".$uid."\">".$CATS.""; + // Is this above zero? + if ($stamp > 0) { + // Then use it + $content['birthday'] = generateDateTime($stamp, 3); + } else { + // Zero or below so set zero! + $content['birthday'] = generateDateTime(0, 3); + } // Prepare data for template - define('_BIRTHDAY', MAKE_DATETIME(mktime(0, 0, 0, $DATA[9], $DATA[8], $DATA[10]), "3")); - define('_REFS' , $REFS); - define('_CATS' , $CATS); - define('_LINKS', $LINKS); - define('_ADMIN_LINKS', MEMBER_ACTION_LINKS($uid, $DATA[14])); - $DATA[0] = TRANSLATE_SEX($DATA[0]); - $DATA[28] = CREATE_EMAIL_LINK($DATA[7], "user_data"); - $DATA[14] = TRANSLATE_STATUS($DATA[14]); - $DATA[16] = MAKE_DATETIME($DATA[16], "0"); - $DATA[20] = TRANSLATE_COMMA($DATA[20]); - if ($DATA[21] > 0) $DATA[21] = $BASE."&what=email_details&u_id=".$uid."\">".$DATA[21].""; - $DATA[22] = MAKE_DATETIME($DATA[22], "0"); - $DATA[23] = MAKE_DATETIME($DATA[23], "0"); - $DATA[24] = MAKE_DATETIME($DATA[24], "0"); - if ((empty($DATA[27])) || ($DATA[27] == $uid)) $DATA[27] = "---"; - $DATA['total'] = TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "points")); - $DATA['locked'] = TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "locked_points")); - - if (EXT_IS_ACTIVE("nickname")) { - if ((empty($DATA[27])) || ($DATA[27] == $uid)) $DATA[27] = "---"; + $content['admin_links'] = generateMemberAdminActionLinks($userid, $content['status']); + $content['gender'] = translateGender($content['gender']); + $content['email_link'] = generateEmailLink($content['email'], 'user_data'); + $content['status'] = translateUserStatus($content['status']); + $content['last_online'] = generateDateTime($content['last_online'], 0); + $content['used_points'] = translateComma($content['used_points']); + if ($content['emails_sent'] > 0) $content['emails_sent'] = $base . '&what=email_details&userid=' . $userid . '%}">' . translateComma($content['emails_sent']) . ']'; + $content['joined'] = generateDateTime($content['joined'], 0); + $content['last_update'] = generateDateTime($content['last_update'], 0); + $content['last_profile_sent'] = generateDateTime($content['last_profile_sent'], 0); + $content['total'] = translateComma(countSumTotalData($userid, 'user_points', 'points')); + $content['locked'] = translateComma(countSumTotalData($userid, 'user_points', 'locked_points')); + $content['lock_timestamp'] = generateDateTime($content['lock_timestamp'], 2); + + // Is the lock reason not set? + if (!isset($content['lock_reason'])) $content['lock_reason'] = '---'; + + // Nickname inclusion? + // @TODO Rewrite these to filters + if (isExtensionActive('nickname')) { + // Nickname not set or invalid? Then + if ((empty($content['nickname'])) || ($content['nickname'] == $userid)) $content['nickname'] = '---'; } else { - $DATA[27] = EXT_NICKNAME_404; + // Extension not found + $content['nickname'] = getMessage('EXT_NICKNAME_404'); } - // Template laden - LOAD_TEMPLATE("admin_user_details", false, $uid); - } - else - { - // Account does not exists! - LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_MEMBER_404_1.$uid.ADMIN_MEMBER_404_2); + // Is the user extension newer? + if (getExtensionVersion('user') >= '0.3.4') { + // Then "translate" the number + $content['rand_confirmed'] = translateComma($content['rand_confirmed']); + } // END - if + + // Clickrate + $content['click_rate'] = '0'; + if ($content['emails_received'] > 0) { + $content['click_rate'] = translateComma($content['mails_confirmed'] / $content['emails_received'] * 100); + } // END - if + + // "Translate" more data + $content['mails_confirmed'] = translateComma($content['mails_confirmed']); + $content['emails_received'] = translateComma($content['emails_received']); + + // Is the extension 'country' installed? + if (isExtensionActive('country')) { + // Then overwrite country information + $content['country'] = generateCountryInfo($content['country_code']); + } elseif ($content['country'] == '0') { + // Zero id??? + $content['country'] = '???'; + } + + // Add userid + $content['userid'] = $userid; + + // Load user-details template + loadTemplate('admin_user_details', false, $content); + } else { + // Account does not exist! + loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_MEMBER_404', $userid)); } -} - else -{ - $WHERE = ""; - if (($_GET['letter'] != _ALL2) && ($_GET['letter'] != _OTHERS) && (!empty($_GET['letter']))) - { + + // Free the result + SQL_FREERESULT($result_user); +} else { + $whereStatement = ''; + if ((getRequestElement('letter') != getMessage('_ALL2')) && (getRequestElement('letter') != getMessage('_OTHERS')) && (isGetRequestElementSet('letter'))) { // List only persons w - $WHERE = " WHERE family LIKE '".$_GET['letter']."%'"; - } - if ($_GET['sortby'] == "family_name") $_GET['sortby'] = "family"; + $whereStatement = " WHERE `family` LIKE '".getRequestElement('letter') . "%'"; + } // END - if - // Parse the mode parameter - if (isset($_GET['mode'])) { + // Parse the status or mode parameter + if (isGetRequestElementSet(('status'))) { // Is a WHERE statement already there? - if (!empty($WHERE)) { + if (!empty($whereStatement)) { // Then append the status column - $WHERE .= sprintf(" AND status='%s'", SQL_ESCAPE(strip_tags(strtoupper($_GET['mode'])))); + $whereStatement .= sprintf(" AND `status`='%s'", SQL_ESCAPE(secureString(strtoupper(getRequestElement('status'))))); } else { // Start a new one - $WHERE = sprintf(" WHERE status='%s'", SQL_ESCAPE(strip_tags(strtoupper($_GET['mode'])))); + $whereStatement = sprintf(" WHERE `status`='%s'", SQL_ESCAPE(secureString(strtoupper(getRequestElement('status'))))); } - } + } elseif (isGetRequestElementSet('mode')) { + // Choose what we need to list + switch (getRequestElement('mode')) { + case 'norefs': // Users w/o refs + if (!empty($whereStatement)) { + // Add AND statement + $whereStatement .= " AND `refid`=0"; + } else { + // Add WHERE statement + $whereStatement = " WHERE `refid`=0"; + } + break; - $SQL = "SELECT userid, sex, surname, family, email, REMOTE_ADDR, refid, status".$MORE." FROM "._MYSQL_PREFIX."_user_data".$WHERE." ORDER BY ".$_GET['sortby']; - $result_master = SQL_QUERY($SQL, __FILE__, __LINE__); + default: // Invalid list mode + logDebugMessage(__FILE__, __LINE__, sprintf("Invalid list mode %s detected.", getRequestElement('mode'))); + break; + } // END - switch + } // END - if + + // Generate master query string + $sql = sprintf("SELECT `userid`, `gender`, `surname`, `family`, `email`, `REMOTE_ADDR`, `refid`, `status`, `emails_sent`, `mails_confirmed`, `emails_received`" . $MORE . " FROM `{?_MYSQL_PREFIX?}_user_data`" . $whereStatement . " ORDER BY `%s` ASC", + getRequestElement('sortby') + ); + + // Prepare SQL and run it + $result_master = SQL_QUERY($sql, __FILE__, __LINE__); // Calculate page count (0.5 fixes a bug with page count) - $PAGES = round(SQL_NUMROWS($result_master) / $CONFIG['user_limit'] + 0.5); + if (getConfig('user_limit') == '0') { + setConfigEntry('user_limit', 100); + loadTemplate('admin_settings_saved', false, getMessage('EXTENSION_WARNING_USER_LIMIT')); + } // END - if - if (empty($_GET['page'])) $_GET['page'] = "1"; - if (empty($_GET['offset'])) $_GET['offset'] = $CONFIG['user_limit']; + // Activate the extension please! + $PAGES = round(SQL_NUMROWS($result_master) / getConfig('user_limit') + 0.5); - // Add limitation to SQL string and run him again - $SQL .= " LIMIT ".($_GET['offset'] * $_GET['page'] - $_GET['offset']).", ".$_GET['offset']; - $result = SQL_QUERY($SQL, __FILE__, __LINE__); + if (!isGetRequestElementSet('page')) setGetRequestElement('page' , 1); + if (!isGetRequestElementSet('offset')) setGetRequestElement('offset', getConfig('user_limit')); - $result_user = SQL_QUERY("SELECT emails_sent FROM "._MYSQL_PREFIX."_user_data WHERE status='CONFIRMED'", __FILE__, __LINE__); - $user_count = SQL_NUMROWS($result_user); - SQL_FREERESULT($result_user); + // Add limitation to SQL string and run him again + $sql .= " LIMIT ".(getRequestElement('offset') * getRequestElement('page') - getRequestElement('offset')).", ".getRequestElement('offset'); + $result = SQL_QUERY($sql, __FILE__, __LINE__); - if (SQL_NUMROWS($result_master) > 0) - { - // Free memory - SQL_FREERESULT($result_master); + // Count all confirmed users + $user_count = countSumTotalData('CONFIRMED','user_data','userid','status',true); + // Are there some entries? + if (SQL_NUMROWS($result_master) > 0) { // We have some (new?) registrations! - define('__COLSPAN1' , $colspan); define('__COLSPAN2' , ($colspan + 2)); define('__USER_CNT' , $user_count); - define('__ALPHA_SORT', alpha($_GET['sortby'], $colspan, true)); - define('__SORT_LINKS', SortLinks($_GET['letter'], $_GET['sortby'], $colspan, true)); - if ($PAGES > 1) - { - define('__PAGE_NAV', ADD_PAGENAV($PAGES, $CONFIG['user_limit'], true, $colspan, true)); - } - else - { + + // Sorting links + define('__ALPHA_SORT', alpha(getRequestElement('sortby'), $colspan, true)); + define('__SORT_LINKS', addSortLinks(getRequestElement('letter'), getRequestElement('sortby'), $colspan, true)); + + if ($PAGES > 1) { + define('__PAGE_NAV', addPageNavigation($PAGES, getConfig('user_limit'), true, $colspan, true)); + } else { // No page navigation is required - define('__PAGE_NAV', ""); + define('__PAGE_NAV', ''); } + // Column with nickname when nickname extension is present - if (EXT_IS_ACTIVE("nickname")) - { + // @TODO Rewrite this into a filter + if (isExtensionActive('nickname')) { // Nickname extension found - define('__NICKNAME_TH', " ".NICKNAME.""); - } - else - { + define('__NICKNAME_TH', " {--NICKNAME--}"); + } else { // Not found - define('__NICKNAME_TH', ""); + define('__NICKNAME_TH', ''); } - $SW = 2; $OUT = ""; - while (list($uid, $sex, $sname, $fname, $email, $IP, $ref, $status, $nick) = SQL_FETCHROW($result)) - { - if ($ref > 0) $ref = ADMIN_USER_PROFILE_LINK($ref); - $LINKS = TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_links", "id", "userid", true)); - if ($LINKS > 0) $LINKS = $BASE."&what=list_links&u_id=".$uid."\">".$LINKS.""; + // Load all users + $OUT = ''; $SW = 2; + while ($content = SQL_FETCHARRAY($result)) { + // Set refid link + if ($content['refid'] > 0) $content['refid'] = generateUserProfileLink($content['refid']); + + // Get number of unconfirmed mails + $content['links'] = countSumTotalData($content['userid'], 'user_links', 'id', 'userid', true); + if ($content['links'] > 0) $content['links'] = $base . '&what=list_links&userid=' . $content['userid'] . '%}">' . translateComma($content['links']) . ']'; + + // Set link to sent mails if present + if ($content['emails_sent'] > 0) $content['emails_sent'] = $base . '&what=email_details&userid=' . $content['userid'] . '%}">' . translateComma($content['emails_sent']) . ']'; // Add nickname - if (empty($nick) || $nick == $uid) $nick = "---"; + if ((empty($content['nickname'])) || ($content['nickname'] == $content['userid'])) $content['nickname'] = '---'; + + // Calculate total points + $content['points'] = countSumTotalData($content['userid'], 'user_points', 'points') - countSumTotalData($content['userid'], 'user_data', 'used_points'); + + // Clickrate + $content['rate'] = '0'; + if ($content['emails_received'] > 0) { + $content['rate'] = $content['mails_confirmed'] / $content['emails_received'] * 100; + } // END - if // Transfer data to array - $content = array( - 'sw' => $SW, - 'uid' => ADMIN_USER_PROFILE_LINK($uid), - 'sex' => TRANSLATE_SEX($sex), - 'sname' => $sname, - 'fname' => $fname, - 'email' => "".$email."", - 'addr' => $IP, - 'ref' => $ref, - 'status' => TRANSLATE_STATUS($status), - 'links' => $LINKS, - 'nick' => $nick, - 'alinks' => MEMBER_ACTION_LINKS($uid, $status) - ); + $content['sw'] = $SW; + $content['userid_link'] = generateUserProfileLink($content['userid']); + $content['gender'] = translateGender($content['gender']); + $content['email'] = '[' . $content['email'] . ']'; + $content['alinks'] = generateMemberAdminActionLinks($content['userid'], $content['status']); + $content['points'] = translateComma($content['points']); + $content['rate'] = translateComma($content['rate']); + $content['locked'] = translateComma(countSumTotalData($content['userid'], 'user_points', 'locked_points')); + $content['lock_timestamp'] = generateDateTime($content['lock_timestamp'], 2); + $content['status'] = translateUserStatus($content['status']); + $content['refs'] = countSumTotalData($content['userid'], 'user_refs', 'id', 'userid', true); + + // If we have at least one referal, make it clickable to referal list + if ($content['refs'] > 0) $content['refs'] = $base . '&what=list_refs&userid=' . $content['userid'] . '%}">' . $content['refs'] . ']'; + + // Is the lock reason not set? + if (!isset($content['lock_reason'])) $content['lock_reason'] = '---'; + + // Is the extension 'country' installed? + // @TODO Rewrite this into a filter + if (isExtensionActive('country')) { + // Then overwrite country information + $content['country'] = generateCountryInfo($content['country_code']); + } elseif ($content['country'] == '') { + // Zero id??? + $content['country'] = '???'; + } // Load row template and switch colors - $OUT .= LOAD_TEMPLATE("admin_list_user_row", true, $content); + $OUT .= loadTemplate('admin_list_user_row', true, $content); $SW = 3 - $SW; - } + } // END - while // Free memory SQL_FREERESULT($result); - define('__USER_ROWS', $OUT); - - // Load main template - LOAD_TEMPLATE("admin_list_user"); - // Free some memory SQL_FREERESULT($result_master); - } - else - { + + // Remember all rows + $content['rows'] = $OUT; + + // Init title with "all accounts" + $content['title'] = getMessage('ADMIN_ALL_ACCOUNTS'); + if (isGetRequestElementSet(('status'))) { + // Set title according to the 'status' + $content['title'] = getMessage(sprintf("ADMIN_LIST_STATUS_%s_ACCOUNTS", strtoupper(getRequestElement(('status'))))); + } elseif (isGetRequestElementSet('mode')) { + // Set title according to the "mode" + $content['title'] = getMessage(sprintf("ADMIN_LIST_MODE_%s_ACCOUNTS", strtoupper(getRequestElement('mode')))); + } + + // Load main template + loadTemplate('admin_list_user', false, $content); + } else { // No one as registered so far! :-( - LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_NO_NONE_REGISTERED); + loadTemplate('admin_settings_saved', false, getMessage('ADMIN_NO_NONE_REGISTERED')); } + + // Free memory + SQL_FREERESULT($result_master); } -// +// [EOF] ?>