X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_user.php;h=0c861764522ffd981c4a34001ed85d600346c553;hp=6775e97209972c7d54f860fac7260a9ca2c3d1bc;hb=0fada672e2066043b76ed5d57f852f451a49a3a3;hpb=5b8d588fdbfa375fa859ca80a9b9e1735a13300e diff --git a/inc/modules/admin/what-list_user.php b/inc/modules/admin/what-list_user.php index 6775e97209..0c86176452 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"; +$MORE = ''; +$colspan = 4; - // 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... + $MORE .= ', UNIX_TIMESTAMP(`lock_timestamp`) AS `lock_timestamp`'; } // END - if // Is the extension 'country' installed? -if (EXT_IS_ACTIVE('country')) { +if (isExtensionActive('country')) { // Add country code - $MORE .= ", country_code"; + $MORE .= ', `country_code`'; } else { // Add direct value - $MORE .= ", country"; + $MORE .= ', `country`'; } -// 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 (!isGetRequestParameterSet('letter')) { setGetRequestParameter('letter', ''); } +if (!isGetRequestParameterSet('sortby')) { setGetRequestParameter('sortby', 'userid'); } +if (!isGetRequestParameterSet('page')) { setGetRequestParameter('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'] . ']'; + if ($content['refs'] > 0) $content['refs'] = $base . '&what=list_refs&userid=' . $userid . '%}">{%pipe,translateComma=' . $content['refs'] . '%}]'; + if ($content['cats'] > 0) $content['cats'] = $base . '&what=list_cats&userid=' . $userid . '%}">{%pipe,translateComma=' . $content['cats'] . '%}]'; // Calculate timestamp for birthday - $stamp = mktime(0, 0, 0, $DATA['birth_month'], $DATA['birth_day'], $DATA['birth_year']); + $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', generateDateTime($stamp, '3')); + $content['birthday'] = generateDateTime($stamp, '3'); } else { // Zero or below so set zero! - define('_BIRTHDAY', generateDateTime(0, '3')); + $content['birthday'] = generateDateTime(0, '3'); } // Prepare data for template - define('_REFS' , $REFS); - define('_CATS' , $CATS); - define('_LINKS', $LINKS); - define('_ADMIN_LINKS', generateMemberAdminActionLinks($uid, $DATA['status'])); - $DATA['gender'] = translateGender($DATA['gender']); - $DATA['email_link'] = generateMemberEmailLink($DATA['email'], "user_data"); - $DATA['status'] = translateUserStatus($DATA['status']); - $DATA['last_online'] = generateDateTime($DATA['last_online'], '0'); - $DATA['used_points'] = translateComma($DATA['used_points']); - if ($DATA['emails_sent'] > 0) $DATA['emails_sent'] = $base."&what=email_details&uid=".$uid."\">".translateComma($DATA['emails_sent'])."]"; - $DATA['joined'] = generateDateTime($DATA['joined'], '0'); - $DATA['last_update'] = generateDateTime($DATA['last_update'], '0'); - $DATA['last_profile_sent'] = generateDateTime($DATA['last_profile_sent'], '0'); - $DATA['total'] = translateComma(GET_TOTAL_DATA($uid, "user_points", "points")); - $DATA['locked'] = translateComma(GET_TOTAL_DATA($uid, "user_points", "locked_points")); - $DATA['lock_timestamp'] = generateDateTime($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'] = translateComma($DATA['rand_confirmed']); + $content['email_link'] = generateEmailLink($content['email'], 'user_data'); + $content['last_online'] = generateDateTime($content['last_online'], '0'); + $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_points'] = getTotalPoints($content['userid']); + $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'] = translateComma($DATA['mails_confirmed'] / $DATA['emails_received'] * 100); + $content['click_rate'] = '0'; + if ($content['emails_received'] > 0) { + $content['click_rate'] = ($content['mails_confirmed'] / $content['emails_received'] * 100); } // END - if - // "Translate" more data - $DATA['mails_confirmed'] = translateComma($DATA['mails_confirmed']); - $DATA['emails_received'] = translateComma($DATA['emails_received']); - // Is the extension 'country' installed? - if (EXT_IS_ACTIVE('country')) { + 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); } else { $whereStatement = ''; - if ((REQUEST_GET('letter') != getMessage('_ALL2')) && (REQUEST_GET('letter') != getMessage('_OTHERS')) && (REQUEST_ISSET_GET(('letter')))) { + if (isGetRequestParameterSet('letter')) { // List only persons w - $whereStatement = " WHERE family LIKE '".REQUEST_GET('letter')."%'"; + $whereStatement = " WHERE `family` LIKE '".getRequestParameter('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 (isGetRequestParameterSet('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'", SQL_ESCAPE(secureString(strtoupper(getRequestParameter('status'))))); } else { // Start a new one - $whereStatement = sprintf(" WHERE `status`='%s'", SQL_ESCAPE(strip_tags(strtoupper(REQUEST_GET('status'))))); + $whereStatement = sprintf(" WHERE `status`='%s'", SQL_ESCAPE(secureString(strtoupper(getRequestParameter('status'))))); } - } elseif (REQUEST_ISSET_GET(('mode'))) { + } elseif (isGetRequestParameterSet('mode')) { // Choose what we need to list - switch (REQUEST_GET('mode')) { - case "norefs": // Users w/o refs + switch (getRequestParameter('mode')) { + case 'norefs': // Users w/o refs + if (!empty($whereStatement)) { + // Add AND statement + $whereStatement .= ' AND (`refid`=0 OR `refid` IS NULL)'; + } else { + // Add WHERE statement + $whereStatement = ' WHERE (`refid`=0 OR `refid` IS NULL)'; + } + break; + + case 'random_refid': // Users available for random referal id if (!empty($whereStatement)) { // Add AND statement - $whereStatement .= " AND refid=0"; + $whereStatement .= ' AND `rand_confirmed` >= {?user_min_confirmed?}'; } else { // Add WHERE statement - $whereStatement = " WHERE refid=0"; + $whereStatement = ' WHERE `rand_confirmed` >= {?user_min_confirmed?}'; } break; default: // Invalid list mode - DEBUG_LOG(__FILE__, __LINE__, sprintf("Invalid list mode %s detected.", REQUEST_GET(('mode')))); + debug_report_bug(__FILE__, __LINE__, sprintf("Invalid list mode %s detected.", getRequestParameter('mode'))); break; - } - } // END = if + } // END - switch + } // END - if + + // Generate master query string + $sql = sprintf("SELECT `userid`, `email`, `emails_sent`, `mails_confirmed`, `emails_received`" . $MORE . " FROM `{?_MYSQL_PREFIX?}_user_data`" . $whereStatement . " ORDER BY `%s` ASC", + getRequestParameter('sortby') + ); // 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__); // Calculate page count (0.5 fixes a bug with page count) - if (getConfig('user_limit') == 0) { + if (getConfig('user_limit') == '0') { setConfigEntry('user_limit', 100); - LOAD_TEMPLATE('admin_settings_saved', false, getMessage('EXTENSION_WARNING_USER_LIMIT')); + displayMessage('{--EXTENSION_WARNING_USER_LIMIT--}'); } // END - if // Activate the extension please! - $PAGES = round(SQL_NUMROWS($result_master) / getConfig('user_limit') + 0.5); + $numPages = round(SQL_NUMROWS($result_master) / getConfig('user_limit') + 0.5); - if (!REQUEST_ISSET_GET('page')) REQUEST_SET_GET('page' , '1'); - if (!REQUEST_ISSET_GET('offset')) REQUEST_SET_GET('offset', getConfig('user_limit')); + if (!isGetRequestParameterSet('page')) setGetRequestParameter('page' , 1); + if (!isGetRequestParameterSet('offset')) setGetRequestParameter('offset', getConfig('user_limit')); // Add limitation to SQL string and run him again - $sql .= " LIMIT ".(REQUEST_GET('offset') * REQUEST_GET('page') - REQUEST_GET('offset')).", ".REQUEST_GET('offset'); + $sql .= ' LIMIT ' . (getRequestParameter('offset') * getRequestParameter('page') - getRequestParameter('offset')) . ', ' . getRequestParameter('offset'); $result = SQL_QUERY($sql, __FILE__, __LINE__); - $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); - - if (SQL_NUMROWS($result_master) > 0) { - // Free memory - SQL_FREERESULT($result_master); - + // Are there some entries? + if (!SQL_HASZERONUMS($result_master)) { // We have some (new?) registrations! - define('__COLSPAN1' , $colspan); - define('__COLSPAN2' , ($colspan + 2)); - define('__USER_CNT' , $user_count); + $templateContent['colspan2'] = ($colspan + 2); + $templateContent['user_count'] = getTotalConfirmedUser(); // Sorting links - define('__ALPHA_SORT', alpha(REQUEST_GET('sortby'), $colspan, true)); - define('__SORT_LINKS', SortLinks(REQUEST_GET('letter'), REQUEST_GET('sortby'), $colspan, true)); + $templateContent['alpha_sort'] = alpha(getRequestParameter('sortby'), ($colspan + 1), true); + $templateContent['sort_links'] = addSortLinks(getRequestParameter('letter'), getRequestParameter('sortby'), ($colspan + 1), true); + $templateContent['page_nav'] = ''; - if ($PAGES > 1) { - define('__PAGE_NAV', ADD_PAGENAV($PAGES, getConfig('user_limit'), true, $colspan, true)); - } else { - // No page navigation is required - define('__PAGE_NAV', ''); - } + if ($numPages > 1) { + $templateContent['page_nav'] = addPageNavigation($numPages, getConfig('user_limit'), true, $colspan, true); + } // END - if // 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; + $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { - // Set refid link - if ($content['refid'] > 0) $content['refid'] = generateUserProfileLink($content['refid']); + // 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']."\">".translateComma($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']."\">".translateComma($content['emails_sent'])."]"; - - // Add nickname - if (empty($content['nickname']) || $content['nickname'] == $content['userid']) $content['nickname'] = '---'; - - // Calculate total points - $pointsTotal = GET_TOTAL_DATA($content['userid'], "user_points", "points") - GET_TOTAL_DATA($content['userid'], "user_data", "used_points"); + if ($content['emails_sent'] > 0) { + $content['emails_sent'] = $base . '&what=email_details&userid=' . $content['userid'] . '%}">{%pipe,translateComma=' . $content['emails_sent'] . '%}]'; + } // END - if - // Clickrate - $clickRate = 0; + // Click rate + $content['click_rate'] = '0'; if ($content['emails_received'] > 0) { - $clickRate = $content['mails_confirmed'] / $content['emails_received'] * 100; + $content['click_rate'] = $content['mails_confirmed'] / $content['emails_received'] * 100; } // END - if // Transfer data to array - $content['sw'] = $SW; - $content['uid'] = generateUserProfileLink($content['userid']); - $content['gender'] = translateGender($content['gender']); - $content['email'] = "[".$content['email']."]"; - $content['addr'] = $content['REMOTE_ADDR']; - $content['links'] = $LINKS; - $content['alinks'] = generateMemberAdminActionLinks($content['userid'], $content['status']); - $content['points'] = translateComma($pointsTotal); - $content['rate'] = translateComma($clickRate); - $content['locked'] = translateComma(GET_TOTAL_DATA($content['userid'], "user_points", "locked_points")); - $content['lock_timestamp'] = generateDateTime($content['lock_timestamp'], '2'); - $content['status'] = translateUserStatus($content['status']); - - // Is the lock reason not set? - if (!isset($content['lock_reason'])) $content['lock_reason'] = '---'; + $content['email'] = '[' . $content['email'] . ']'; + $content['lock_timestamp'] = generateDateTime($content['lock_timestamp'], 2); + $content['refs'] = countSumTotalData($content['userid'], 'user_refs', 'id', 'userid', true); + $content['own_points'] = countSumTotalData($content['userid'], 'user_points', 'points') + countSumTotalData($content['userid'], 'user_points', 'order_points'); + $content['locked_points'] = countSumTotalData($content['userid'], 'user_points', 'locked_points') + countSumTotalData($content['userid'], 'user_points', 'locked_order_points'); + + // 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'] . '%}">{%pipe,translateComma=' . $content['refs'] . '%}]'; + } // END - if // 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']); + $content['country'] = generateCountryInfo($content['country_code']); } elseif ($content['country'] == '') { - // Zero ID??? + // 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); - define('__USER_ROWS', $OUT); - - // Load main template - LOAD_TEMPLATE("admin_list_user"); - // Free some memory SQL_FREERESULT($result_master); + + // Remember all rows + $content['rows'] = $OUT; + + // 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 + SQL_FREERESULT($result_master); } -// +// [EOF] ?>