X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_user.php;h=295b8144062ad50bd112d7035216d732c4b57d0d;hp=101ad7c6a5ff7c138df74853df9e24a94dd15b1a;hb=49acdb7a7adbcf25a8e8683b5581bfcec72b23bd;hpb=414570c5081d337bb6c28dcf521bd8bca02f69e7 diff --git a/inc/modules/admin/what-list_user.php b/inc/modules/admin/what-list_user.php index 101ad7c6a5..295b814406 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 (GET_EXT_VERSION("user") >= "0.3.5") { - // Add them... - $MORE .= ", lock_reason, UNIX_TIMESTAMP(`lock_timestamp`) AS lock_timestamp"; - } // END - if +// Add lock reason? +if (isExtensionInstalledAndNewer('user', '0.3.5')) { + // Add them... + $moreColumns .= ', UNIX_TIMESTAMP(`lock_timestamp`) AS `lock_timestamp`'; } // END - if -// Is the extension "country" installed? -if (EXT_IS_ACTIVE("country")) { +// Is the extension 'country' installed? +if (isExtensionActive('country')) { // Add country code - $MORE .= ", country_code"; -} else { - // Add direct value - $MORE .= ", country"; -} + $moreColumns .= ',`country_code`'; +} // END - if -// Init unset data (bad that we change $_GET here!) -if (!REQUEST_ISSET_GET(('letter'))) { REQUEST_SET_GET('letter', getMessage('_ALL2')); } -if (!REQUEST_ISSET_GET(('sortby'))) { REQUEST_SET_GET('sortby', "userid"); } -if (!REQUEST_ISSET_GET(('page'))) { REQUEST_SET_GET('page' , "1"); } +// Init unset data +if (!isGetRequestElementSet('letter')) { setGetRequestElement('letter', ''); } +if (!isGetRequestElementSet('sortby')) { setGetRequestElement('sortby', 'userid'); } +if (!isGetRequestElementSet('page')) { setGetRequestElement('page' , 1); } -// Set base URL -$BASE = "[ 0) $LINKS = $BASE."&what=list_links&uid=".$uid."\">".$LINKS."]"; - if ($DATA['refid'] > 0) $DATA['refid'] = $BASE."&what=list_user&uid=".$DATA['refid']."\">".$DATA['refid']."]"; - if (empty($DATA['last_module'])) $DATA['last_module'] = "---"; - if ($REFS > 0) $REFS = $BASE."&what=list_refs&uid=".$uid."\">".$REFS."]"; - if ($CATS > 0) $CATS = $BASE."&what=list_cats&uid=".$uid."\">".$CATS."]"; + if ($content['links'] > 0) { + $content['links'] = $base . '&what=list_links&userid=' . $userid . '%}">' . $content['links'] . ']'; + } // END - if + if ($content['refs'] > 0) { + $content['refs'] = $base . '&what=list_refs&userid=' . $userid . '%}">{%pipe,translateComma=' . $content['refs'] . '%}]'; + } // END - if + if ($content['cats'] > 0) { + $content['cats'] = $base . '&what=list_user_cats&userid=' . $userid . '%}">{%pipe,translateComma=' . $content['cats'] . '%}]'; + } // END - if // Calculate timestamp for birthday - $stamp = mktime(0, 0, 0, $DATA['birth_month'], $DATA['birth_day'], $DATA['birth_year']); + // @TODO Refacture birth_foo to avoid uni* timetstamps as older members cannot be greeded correctly + $stamp = mktime(0, 0, 0, $content['birth_month'], $content['birth_day'], $content['birth_year']); // Is this above zero? if ($stamp > 0) { // Then use it - define('_BIRTHDAY', MAKE_DATETIME($stamp, "3")); + $content['birthday'] = generateDateTime($stamp, '2'); } else { // Zero or below so set zero! - define('_BIRTHDAY', MAKE_DATETIME(0, "3")); + $content['birthday'] = generateDateTime(0, '2'); } // Prepare data for template - define('_REFS' , $REFS); - define('_CATS' , $CATS); - define('_LINKS', $LINKS); - define('_ADMIN_LINKS', MEMBER_ACTION_LINKS($uid, $DATA['status'])); - $DATA['gender'] = TRANSLATE_GENDER($DATA['gender']); - $DATA['email_link'] = CREATE_EMAIL_LINK($DATA['email'], "user_data"); - $DATA['status'] = TRANSLATE_STATUS($DATA['status']); - $DATA['last_online'] = MAKE_DATETIME($DATA['last_online'], "0"); - $DATA['used_points'] = TRANSLATE_COMMA($DATA['used_points']); - if ($DATA['emails_sent'] > 0) $DATA['emails_sent'] = $BASE."&what=email_details&uid=".$uid."\">".TRANSLATE_COMMA($DATA['emails_sent'])."]"; - $DATA['joined'] = MAKE_DATETIME($DATA['joined'], "0"); - $DATA['last_update'] = MAKE_DATETIME($DATA['last_update'], "0"); - $DATA['last_profile_sent'] = MAKE_DATETIME($DATA['last_profile_sent'], "0"); - $DATA['total'] = TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "points")); - $DATA['locked'] = TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "locked_points")); - $DATA['lock_timestamp'] = MAKE_DATETIME($DATA['lock_timestamp'], "2"); - - // Is the lock reason not set? - if (!isset($DATA['lock_reason'])) $DATA['lock_reason'] = "---"; - - // Nickname inclusion? - // @TODO Rewrite these to filters - if (EXT_IS_ACTIVE("nickname")) { - // Nickname not set or invalid? Then - if ((empty($DATA['nickname'])) || ($DATA['nickname'] == $uid)) $DATA['nickname'] = "---"; - } else { - // Extension not found - $DATA['nickname'] = getMessage('EXT_NICKNAME_404'); - } - - // Is the user extension newer? - if (GET_EXT_VERSION("user") >= "0.3.4") { - // Then "translate" the number - $DATA['rand_confirmed'] = TRANSLATE_COMMA($DATA['rand_confirmed']); + $content['email_link'] = generateEmailLink($content['email'], 'user_data'); + $content['last_online'] = generateDateTime($content['last_online'], '2'); + $content['joined'] = generateDateTime($content['joined'], '2'); + $content['last_update'] = generateDateTime($content['last_update'], '2'); + $content['last_profile_sent'] = generateDateTime($content['last_profile_sent'], '2'); + $content['locked_points'] = countSumTotalData($content['userid'], 'user_points', 'locked_points') + countSumTotalData($content['userid'], 'user_points', 'locked_order_points'); + + // Prepare array for filter + $data = array( + 'userid' => $content['userid'], + 'points' => 0 + ); + + // Run the filter chain + $data = runFilterChain('get_own_points', $data); + + // Add more data + $content['own_points'] = $data['points']; + $content['lock_timestamp'] = generateDateTime($content['lock_timestamp'], '2'); + + // Link to email_details if some are sent + if ($content['emails_sent'] > 0) { + $content['emails_sent'] = $base . '&what=email_details&userid=' . $content['userid'] . '%}">{%pipe,translateComma=' . $content['emails_sent'] . '%}]'; } // END - if // Clickrate - $DATA['click_rate'] = 0; - if ($DATA['emails_received'] > 0) { - $DATA['click_rate'] = TRANSLATE_COMMA($DATA['mails_confirmed'] / $DATA['emails_received'] * 100); - } // END - if - - // "Translate" more data - $DATA['mails_confirmed'] = TRANSLATE_COMMA($DATA['mails_confirmed']); - $DATA['emails_received'] = TRANSLATE_COMMA($DATA['emails_received']); + $content['click_rate'] = calculatePercentageRate($content['mails_confirmed'], $content['emails_received']); - // Is the extension "country" installed? - if (EXT_IS_ACTIVE("country")) { + // Is the extension 'country' installed? + if (isExtensionActive('country')) { // Then overwrite country information - $DATA['country'] = COUNTRY_GENERATE_INFO($DATA['country_code']); - } elseif ($DATA['country'] == 0) { - // Zero ID??? - $DATA['country'] = "???"; + $content['country'] = generateCountryInfo($content['country_code']); + } elseif ($content['country'] == '0') { + // Zero id??? + $content['country'] = '???'; } + // Add userid + $content['userid'] = $userid; + // Load user-details template - LOAD_TEMPLATE("admin_user_details", false, $uid); + loadTemplate('admin_user_details', FALSE, $content); } else { // Account does not exist! - LOAD_TEMPLATE("admin_settings_saved", false, sprintf(getMessage('ADMIN_MEMBER_404'), $uid)); + displayMessage('{%message,ADMIN_MEMBER_404=' . $userid . '%}'); } // Free the result - SQL_FREERESULT($result_user); + sqlFreeResult($result_user); } else { - $whereStatement = ""; - if ((REQUEST_GET('letter') != getMessage('_ALL2')) && (REQUEST_GET('letter') != getMessage('_OTHERS')) && (REQUEST_ISSET_GET(('letter')))) { + $whereStatement = ''; + if (isGetRequestElementSet('letter')) { // List only persons w - $whereStatement = " WHERE family LIKE '".REQUEST_GET('letter')."%'"; + $whereStatement = " WHERE `family` LIKE '".getRequestElement('letter') . "%%'"; } // END - if - if (REQUEST_GET('sortby') == "family_name") REQUEST_SET_GET('sortby', "family"); // Parse the status or mode parameter - if (REQUEST_ISSET_GET(('status'))) { + if (isGetRequestElementSet('status')) { // Is a WHERE statement already there? if (!empty($whereStatement)) { // Then append the status column - $whereStatement .= sprintf(" AND `status`='%s'", SQL_ESCAPE(strip_tags(strtoupper(REQUEST_GET('status'))))); + $whereStatement .= sprintf(" AND `status`='%s'", sqlEscapeString(strtoupper(getRequestElement('status')))); } else { // Start a new one - $whereStatement = sprintf(" WHERE `status`='%s'", SQL_ESCAPE(strip_tags(strtoupper(REQUEST_GET('status'))))); + $whereStatement = sprintf(" WHERE `status`='%s'", sqlEscapeString(strtoupper(getRequestElement('status')))); } - } elseif (REQUEST_ISSET_GET(('mode'))) { + + // Exclude other users + $whereStatement = runFilterChain('user_exclusion_sql', ' ' . $whereStatement); + } elseif (isGetRequestElementSet('do')) { // Choose what we need to list - switch (REQUEST_GET('mode')) { - case "norefs": // Users w/o refs + switch (getRequestElement('do')) { + case 'norefs': // Users w/o refs if (!empty($whereStatement)) { // Add AND statement - $whereStatement .= " AND refid=0"; + $whereStatement .= ' AND (`refid`=0 OR `refid` IS NULL)'; } else { // Add WHERE statement - $whereStatement = " WHERE refid=0"; + $whereStatement = ' WHERE (`refid`=0 OR `refid` IS NULL)'; } break; - default: // Invalid list mode - DEBUG_LOG(__FILE__, __LINE__, sprintf("Invalid list mode %s detected.", REQUEST_GET(('mode')))); + case 'random_refid': // Users available for random referral id + if (!empty($whereStatement)) { + // Add AND statement + $whereStatement .= ' AND `rand_confirmed` >= {?user_min_confirmed?}'; + } else { + // Add WHERE statement + $whereStatement = ' WHERE `rand_confirmed` >= {?user_min_confirmed?}'; + } break; - } - } // END = if - // Prepare SQL and run it - $sql = "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 ".REQUEST_GET(('sortby')); - $result_master = SQL_QUERY($sql, __FILE__, __LINE__); + case 'testers': // Test accounts + // Add statement through filter + $whereStatement = runFilterChain('user_inclusion_sql', $whereStatement); + break; - // Calculate page count (0.5 fixes a bug with page count) - if (getConfig('user_limit') == 0) { - setConfigEntry('user_limit', 100); - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('EXTENSION_WARNING_USER_LIMIT')); + default: // Invalid list mode + reportBug(__FILE__, __LINE__, sprintf('Invalid do %s detected.', sqlEscapeString(getRequestElement('do')))); + break; + } // END - switch + + // If it is not 'testers', add exclusion SQL + if (getRequestElement('do') != 'testers') { + // Exclude tester users + $whereStatement = runFilterChain('user_exclusion_sql', ' ' . $whereStatement); + } // END - if } // END - if - // Activate the extension please! - $PAGES = round(SQL_NUMROWS($result_master) / getConfig('user_limit') + 0.5); + // Generate master query string + $sql = sprintf('SELECT + `userid`, + `email`, + `emails_sent`, + `mails_confirmed`, + `emails_received` + ' . $moreColumns . ' +FROM + `{?_MYSQL_PREFIX?}_user_data` +' . $whereStatement . ' +ORDER BY + `%s` ASC', + getRequestElement('sortby') + ); - if (!REQUEST_ISSET_GET(('page'))) REQUEST_SET_GET('page' , "1"); - if (!REQUEST_ISSET_GET(('offset'))) REQUEST_SET_GET('offset', getConfig('user_limit')); + // Prepare SQL and run it + $result_master = sqlQuery($sql, __FILE__, __LINE__); - // Add limitation to SQL string and run him again - $sql .= " LIMIT ".(REQUEST_GET('offset') * REQUEST_GET('page') - REQUEST_GET('offset')).", ".REQUEST_GET('offset'); - $result = SQL_QUERY($sql, __FILE__, __LINE__); + // Is the user limit zero? + if (getUserLimit() == '0') { + // Then set it to default ... + setConfigEntry('user_limit', 100); - $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); + // ... but output warning + displayMessage('{--EXTENSION_WARNING_USER_LIMIT--}'); + } // END - if - if (SQL_NUMROWS($result_master) > 0) { - // Free memory - SQL_FREERESULT($result_master); + // Calculate page count (0.5 fixes a bug with page count) + $numPages = round(sqlNumRows($result_master) / getUserLimit() + 0.5); - // We have some (new?) registrations! - define('__COLSPAN1' , $colspan); - define('__COLSPAN2' , ($colspan + 2)); - define('__USER_CNT' , $user_count); + if (!isGetRequestElementSet('page')) setGetRequestElement('page' , 1); + if (!isGetRequestElementSet('offset')) setGetRequestElement('offset', getUserLimit()); - // Sorting links - define('__ALPHA_SORT', alpha(REQUEST_GET('sortby'), $colspan, true)); - define('__SORT_LINKS', SortLinks(REQUEST_GET('letter'), REQUEST_GET('sortby'), $colspan, true)); + // Add limitation to SQL string and run him again + $sql .= ' LIMIT ' . (getRequestElement('offset') * getRequestElement('page') - getRequestElement('offset')) . ', ' . getRequestElement('offset'); + $result = sqlQuery($sql, __FILE__, __LINE__); - if ($PAGES > 1) { - define('__PAGE_NAV', ADD_PAGENAV($PAGES, getConfig('user_limit'), true, $colspan, true)); - } else { - // No page navigation is required - define('__PAGE_NAV', ""); - } + // Are there some entries? + if (!ifSqlHasZeroNumRows($result_master)) { + // Sorting links and number of pages + $templateContent['sort_links'] = addSortLinks(getRequestElement('letter'), getRequestElement('sortby')); + $templateContent['num_pages'] = $numPages; // Column with nickname when nickname extension is present - // @TODO Rewrite this into a filter - if (EXT_IS_ACTIVE("nickname")) { + // @TODO Rewrite this into a filter + $templateContent['nickname_th'] = ''; + if (isExtensionActive('nickname')) { // Nickname extension found - define('__NICKNAME_TH', " {--NICKNAME--}"); - } else { - // Not found - define('__NICKNAME_TH', ""); - } + $templateContent['nickname_th'] = '{--NICKNAME--}'; + } // END - if // Load all users - $OUT = ""; $SW = 2; - while ($content = SQL_FETCHARRAY($result)) { - // Set refid link - if ($content['refid'] > 0) $content['refid'] = ADMIN_USER_PROFILE_LINK($content['refid']); + $OUT = ''; + while ($content = sqlFetchArray($result)) { + // Merge more data in + $content = merge_array($content, $templateContent); // Get number of unconfirmed mails - $LINKS = GET_TOTAL_DATA($content['userid'], "user_links", "id", "userid", true); - if ($LINKS > 0) $LINKS = $BASE."&what=list_links&uid=".$content['userid']."\">".TRANSLATE_COMMA($LINKS)."]"; + $content['links'] = getTotalUnconfirmedMails($content['userid']); + if ($content['links'] > 0) { + $content['links'] = $base . '&what=list_links&userid=' . $content['userid'] . '%}">{%pipe,translateComma=' . $content['links'] . '%}]'; + } // END - if // Set link to sent mails if present - if ($content['emails_sent'] > 0) $content['emails_sent'] = $BASE."&what=email_details&uid=".$content['userid']."\">".TRANSLATE_COMMA($content['emails_sent'])."]"; + if ($content['emails_sent'] > 0) { + $content['emails_sent'] = $base . '&what=email_details&userid=' . $content['userid'] . '%}">{%pipe,translateComma=' . $content['emails_sent'] . '%}]'; + } // END - if + + // Click rate + $content['click_rate'] = calculatePercentageRate($content['mails_confirmed'], $content['emails_received']); + + // Transfer data to array + $content['email'] = '[' . $content['email'] . ']'; + $content['lock_timestamp'] = generateDateTime($content['lock_timestamp'], '2'); + $content['refs'] = countSumTotalData($content['userid'], 'user_refs', 'id', 'userid', TRUE); + + // Prepare array for filter + $data = array( + 'userid' => $content['userid'], + 'points' => 0 + ); + + // Run the filter chain + $data = runFilterChain('get_own_points', $data); + + // Copy points + $content['own_points'] = $data['points']; + + // Prepare array for filter again + $data = array( + 'userid' => $content['userid'], + 'points' => 0 + ); - // Add nickname - if (empty($content['nickname']) || $content['nickname'] == $content['userid']) $content['nickname'] = "---"; + // Run the filter chain + $data = runFilterChain('get_locked_points', $data); - // Calculate total points - $pointsTotal = GET_TOTAL_DATA($content['userid'], "user_points", "points") - GET_TOTAL_DATA($content['userid'], "user_data", "used_points"); + // Copy points + $content['locked_points'] = $data['points']; - // Clickrate - $clickRate = 0; - if ($content['emails_received'] > 0) { - $clickRate = $content['mails_confirmed'] / $content['emails_received'] * 100; + // If we have at least one referral, make it clickable to referral list + if ($content['refs'] > 0) { + $content['refs'] = $base . '&what=list_refs&userid=' . $content['userid'] . '%}">{%pipe,translateComma=' . $content['refs'] . '%}]'; } // END - if - // Transfer data to array - $content['sw'] = $SW; - $content['uid'] = ADMIN_USER_PROFILE_LINK($content['userid']); - $content['gender'] = TRANSLATE_GENDER($content['gender']); - $content['email'] = "[".$content['email']."]"; - $content['addr'] = $content['REMOTE_ADDR']; - $content['links'] = $LINKS; - $content['alinks'] = MEMBER_ACTION_LINKS($content['userid'], $content['status']); - $content['points'] = TRANSLATE_COMMA($pointsTotal); - $content['rate'] = TRANSLATE_COMMA($clickRate); - $content['locked'] = TRANSLATE_COMMA(GET_TOTAL_DATA($content['userid'], "user_points", "locked_points")); - $content['lock_timestamp'] = MAKE_DATETIME($content['lock_timestamp'], "2"); - $content['status'] = TRANSLATE_STATUS($content['status']); - - // Is the lock reason not set? - if (!isset($content['lock_reason'])) $content['lock_reason'] = "---"; - - // Is the extension "country" installed? + // Is the extension 'country' installed? // @TODO Rewrite this into a filter - if (EXT_IS_ACTIVE("country")) { + if (isExtensionActive('country')) { // Then overwrite country information - $content['country'] = COUNTRY_GENERATE_INFO($content['country_code']); - } elseif ($content['country'] == "") { - // Zero ID??? - $content['country'] = "???"; + $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); - $SW = 3 - $SW; + $OUT .= loadTemplate('admin_list_user_row', TRUE, $content); } // END - while // Free memory - SQL_FREERESULT($result); + sqlFreeResult($result); - define('__USER_ROWS', $OUT); + // Free some memory + sqlFreeResult($result_master); - // Load main template - LOAD_TEMPLATE("admin_list_user"); + // Remember all rows + $content['rows'] = $OUT; - // Free some memory - SQL_FREERESULT($result_master); + // Merge more data again + $content = merge_array($content, $templateContent); + + // Load main template + loadTemplate('admin_list_user', FALSE, $content); } else { // No one as registered so far! :-( - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_NO_NONE_REGISTERED')); + displayMessage('{--ADMIN_NO_NONE_REGISTERED--}'); } + + // Free memory + sqlFreeResult($result_master); } -// +// [EOF] ?>