X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Fsponsor_functions.php;h=3de5472e7e07d6376be033ff00376408a0d100be;hp=37c66b190c81df5ad65a370cc0d73da52859b12f;hb=e9da1508b2a3ccbf63adc999981674740a47e074;hpb=f55a18dbd4f2312a8812fb3feb3296b350ba269b diff --git a/inc/libs/sponsor_functions.php b/inc/libs/sponsor_functions.php index 37c66b190c..3de5472e7e 100644 --- a/inc/libs/sponsor_functions.php +++ b/inc/libs/sponsor_functions.php @@ -14,12 +14,10 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2015 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -43,12 +41,12 @@ if (!defined('__SECURITY')) { } // END - if // -function handleSponsorRequest ($postData, $update=false, $messageArray=array(), $RET_STATUS=false) { +function handleSponsorRequest ($postData, $update=false, $messageArray = array(), $RET_STATUS=false) { // Init a lot variables - $SAVE = true; - $UPDATE = false; - $skip = false; - $ALREADY = false; + $SAVE = TRUE; + $UPDATE = FALSE; + $skip = FALSE; + $ALREADY = FALSE; $ret = 'unused'; // Skip these entries @@ -66,62 +64,65 @@ function handleSponsorRequest ($postData, $update=false, $messageArray=array(), foreach ($postData as $k => $v) { if (!(array_search($k, $SKIPPED) > -1)) { // Check only posted input entries not the submit button - switch ($k) - { + switch ($k) { case 'email': - $ALREADY = false; + $ALREADY = FALSE; if (!isEmailValid($v)) { // Email address is not valid - $SAVE = false; + $SAVE = FALSE; } else { - // Do we want to add a new sponsor or update his data? - $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE email='%s' LIMIT 1", - array($postData['email']), __FUNCTION__, __LINE__); + // Add a new sponsor or update his data? + $result = sqlQueryEscaped("SELECT `id` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE email='%s' LIMIT 1", + array($postData['email']), __FUNCTION__, __LINE__); // Is a sponsor alread in the db? - if (SQL_NUMROWS($result) == 1) { + if (sqlNumRows($result) == 1) { // Yes, he is! if ((getWhat() == 'add_sponsor') || ($update)) { - // Already found! - $ALREADY = true; + // Already found + $ALREADY = TRUE; } else { // Update his data - $UPDATE = true; + $UPDATE = TRUE; } } // Free memory - SQL_FREERESULT($result); + sqlFreeResult($result); } break; - case 'pass1': + case 'password1': $k = ''; $v = ''; break; - case 'pass2': + case 'password2': $k = 'password'; $v = md5($v); break; case 'url': - if (!isUrlValid($v)) $SAVE = false; + if (!isUrlValid($v)) { + // Don't save the URL + $SAVE = FALSE; + } // END - if break; default: // Test if there is are time selections - convertSelectionsToTimestamp($postData, $DATA, $k, $skip); + convertSelectionsToEpocheTime($postData, $DATA, $k, $skip); break; - } + } // END - switch - if ((!empty($k)) && ($skip == false)) { + if ((!empty($k)) && ($skip == FALSE)) { // Add data - $DATA['keys'][] = $k; $DATA['values'][] = $v; - } - } - } + array_push($DATA['keys'] , $k); + array_push($DATA['values'], $v); + } // END - if + } // END - if + } // END - foreach // Save sponsor? - if ($SAVE === true) { + if ($SAVE === TRUE) { // Default is no force even when a guest want to abuse this force switch if ((empty($postData['force'])) || (!isAdmin())) $postData['force'] = '0'; @@ -134,35 +135,35 @@ function handleSponsorRequest ($postData, $update=false, $messageArray=array(), $sql = "UPDATE `{?_MYSQL_PREFIX?}_sponsor_data` SET "; foreach ($DATA['keys'] as $k => $v) { $sql .= $v."='%s', "; - } + } // END - foreach // Remove last ", " from SQL string $sql = substr($sql, 0, -2)." WHERE `id`=%s LIMIT 1"; - $DATA['values'][] = bigintval(getRequestParameter('id')); + array_push($DATA['values'], bigintval(getRequestElement('id'))); // Generate message $message = getMessageFromIndexedArray('{--ADMIN_SPONSOR_UPDATED--}', 'updated', $messageArray); $ret = 'updated'; - } elseif (($ALREADY === false) || (($postData['force'] == 1) && (isAdmin()))) { + } elseif (($ALREADY === FALSE) || (($postData['force'] == 1) && (isAdmin()))) { // Add new sponsor, first add more data - $DATA['keys'][] = 'sponsor_created'; $DATA['values'][] = time(); - $DATA['keys'][] = 'status'; - if (($update === true) && (isAdmin()) && (getWhat() == 'add_sponsor')) { + array_push($DATA['keys'], 'status'); + if (($update === TRUE) && (isAdmin()) && (getWhat() == 'add_sponsor')) { // Only allowed for admin - $DATA['values'][] = 'PENDING'; + array_push($DATA['values'], 'PENDING'); // Add remote IP address as well - $DATA['keys'][] = 'remote_addr'; - $DATA['values'][] = detectRemoteAddr(); + array_push($DATA['keys'], 'remote_addr'); + array_push($DATA['values'], detectRemoteAddr()); } else { // Guest area - $DATA['values'][] = 'UNCONFIRMED'; + array_push($DATA['values'], 'UNCONFIRMED'); // Generate hash code - $DATA['keys'][] = 'hash'; - $DATA['values'][] = md5(session_id().':'.$postData['email'].':'.detectRemoteAddr().':'.detectUserAgent().':'.time()); - $DATA['keys'][] = 'remote_addr'; - $DATA['values'][] = detectRemoteAddr(); + array_push($DATA['keys'], 'hash'); + // @TODO Rewrite this to API function + array_push($DATA['values'], md5(session_id() . getEncryptSeparator() . $postData['email'] . getEncryptSeparator() . detectRemoteAddr() . getEncryptSeparator() . detectUserAgent() . getEncryptSeparator() . time())); + array_push($DATA['keys'], 'remote_addr'); + array_push($DATA['values'], detectRemoteAddr()); } // Search the entry @@ -182,13 +183,13 @@ function handleSponsorRequest ($postData, $update=false, $messageArray=array(), // Generate message $message = getMessageFromIndexedArray('{--ADMIN_SPONSOR_ADDED--}', 'added', $messageArray); $ret = 'added'; - } elseif (($update === true) && (isAdmin())) { + } elseif (($update === TRUE) && (isAdmin())) { // Add all data as hidden data $OUT = ''; foreach ($postData as $k => $v) { // Do not add 'force' ! if ($k != 'force') { - $OUT .= ''; + $OUT .= ''; } // END - if } // END - foreach @@ -197,30 +198,30 @@ function handleSponsorRequest ($postData, $update=false, $messageArray=array(), $content['email'] = $postData['email']; // Ask for adding a sponsor with same email address - loadTemplate('admin_add_sponsor_already', false, $content); + loadTemplate('admin_add_sponsor_already', FALSE, $content); return; } else { // Already added! - $message = getMaskedMessage('SPONSOR_ALREADY_FOUND', $postData['email']); + $message = '{%message,SPONSOR_ALREADY_FOUND=' . $postData['email'] . '%}'; $ret = 'already'; } if (!empty($sql)) { // Run SQL command - $result = SQL_QUERY_ESC($sql, $DATA['values'], __FUNCTION__, __LINE__); + $result = sqlQueryEscaped($sql, $DATA['values'], __FUNCTION__, __LINE__); } // END - if } else { - // Error found! + // Error detected $message = getMessageFromIndexedArray('{--SPONSOR_DATA_NOT_SAVED--}', 'failed', $messageArray); - loadTemplate('admin_settings_saved', false, $message); + displayMessage($message); } // Always return the status return $ret; } -// -function sponsorTranslateUserStatus ($status) { +// Translate the account status +function translateSponsorStatus ($status) { // Construct constant name $constantName = sprintf("ACCOUNT_STATUS_%s", $status); @@ -229,10 +230,10 @@ function sponsorTranslateUserStatus ($status) { // Then use it $ret = getMessage($constantName); } else { - // Not found! - /* DEBUG: */ debug_report_bug(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status)); + // Not found + //* DEBUG: */ reportBug(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status)); logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status)); - $ret = getMaskedMessage('ACCOUNT_STATUS_UNKNOWN_STATUS', $status); + $ret = '{%message,ACCOUNT_STATUS_UNKNOWN=' . $status . '%}'; } // Return status @@ -241,8 +242,8 @@ function sponsorTranslateUserStatus ($status) { // Search for an email address in the database function isSponsorRegisteredWithEmail ($email) { - // Do we already have the provided email address in our DB? - $ret = (countSumTotalData($email, 'sponsor_data', 'id', 'email', true) == 1); + // Is there already the provided email address in database? + $ret = (countSumTotalData($email, 'sponsor_data', 'id', 'email', TRUE) == 1); // Return result return $ret; @@ -251,12 +252,12 @@ function isSponsorRegisteredWithEmail ($email) { // Wether the current user is a sponsor function isSponsor () { // Failed is default - $ret = false; + $ret = FALSE; // Determine it $ret = ( (isSessionVariableSet('sponsor_id')) && - (isSessionVariableSet('sponsorpass')) && + (isSessionVariableSet('sponsor_pass')) && (fetchSponsorData(getSession('sponsor_id'))) ); @@ -271,8 +272,9 @@ function addSponsorMenu ($current) { if (isAdmin()) $WHERE = ''; // Load main menu entries - $result_main = SQL_QUERY("SELECT - `action` AS `main_action`, `title` AS `main_title` + $result_main = sqlQuery("SELECT + `action` AS `main_action`, + `title` AS `main_title` FROM `{?_MYSQL_PREFIX?}_sponsor_menu` WHERE @@ -280,12 +282,13 @@ WHERE " . $WHERE . " ORDER BY `sort` ASC", __FUNCTION__, __LINE__); - if (!SQL_HASZERONUMS($result_main)) { + if (!ifSqlHasZeroNums($result_main)) { // Load every menu and it's sub menus - while ($content = SQL_FETCHARRAY($result_main)) { + while ($content = sqlFetchArray($result_main)) { // Load sub menus - $result_sub = SQL_QUERY_ESC("SELECT - `what` AS `sub_what`, `title` AS `sub_title` + $result_sub = sqlQueryEscaped("SELECT + `what` AS `sub_what`, + `title` AS `sub_title` FROM `{?_MYSQL_PREFIX?}_sponsor_menu` WHERE @@ -296,46 +299,37 @@ WHERE ORDER BY `sort` ASC", array($content['main_action']), __FUNCTION__, __LINE__); - if (!SQL_HASZERONUMS($result_sub)) { + if (!ifSqlHasZeroNums($result_sub)) { // Load sub menus $SUB = ''; - while ($content2 = SQL_FETCHARRAY($result_sub)) { - // Merge both arrays - $content = merge_array($content, $content2); - + while ($content2 = sqlFetchArray($result_sub)) { // Check if current selected menu is matching the loaded one - if ($current == $content['sub_what']) $content['sub_title'] = '' . $content['sub_title'] . ''; - - // Prepare data for the sub template - $content = array( - 'what' => $content['sub_what'], - 'title' => $content['sub_title'] - ); + if ($current == $content2['sub_what']) $content2['sub_title'] = '' . $content2['sub_title'] . ''; // Load row template - $SUB .= loadTemplate('sponsor_what', true, $content); - } + $SUB .= loadTemplate('sponsor_what', TRUE, $content2); + } // END - while // Prepare data for the main template $content['menu'] = $SUB; // Load menu template - $OUT .= loadTemplate('sponsor_action', true, $content); + $OUT .= loadTemplate('sponsor_action', TRUE, $content); } else { // No sub menus active - $OUT .= loadTemplate('admin_settings_saved', true, '{--SPONSOR_NO_SUB_MENUS_ACTIVE--}'); + $OUT .= displayMessage('{--SPONSOR_NO_SUB_MENUS_ACTIVE--}', TRUE); } // Free memory - SQL_FREERESULT($result_sub); - } + sqlFreeResult($result_sub); + } // END - while } else { // No main menus active - $OUT .= loadTemplate('admin_settings_saved', true, '{--SPONSOR_NO_MAIN_MENUS_ACTIVE--}'); + $OUT .= displayMessage('{--SPONSOR_NO_MAIN_MENUS_ACTIVE--}', TRUE); } // Free memory - SQL_FREERESULT($result_main); + sqlFreeResult($result_main); // Return content return $OUT; @@ -347,13 +341,13 @@ function addSponsorContent ($what) { $GLOBALS['sponsor_output'] = ''; // Generate IFN (Include FileName) - $INC = sprintf("inc/modules/sponsor/%s.php", $what); + $INC = sprintf('inc/modules/sponsor/%s.php', $what); if (isIncludeReadable($INC)) { // Every sponsor action will output nothing directly. It will be written into $GLOBALS['sponsor_output']! loadIncludeOnce($INC); } else { - // File not found! - $GLOBALS['sponsor_output'] .= loadTemplate('admin_settings_saved', true, getMaskedMessage('SPONSOR_CONTENT_404', $what)); + // File not found + $GLOBALS['sponsor_output'] .= displayMessage('{%message,SPONSOR_CONTENT_404=' . $what . '%}', TRUE); } // Return content @@ -363,26 +357,26 @@ function addSponsorContent ($what) { // function updateSponsorLogin () { // Failed by default - $login = false; + $login = FALSE; // Is sponsor? if (isSponsor()) { // Update last online timestamp - SQL_QUERY_ESC("UPDATE + sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_sponsor_data` SET - `last_online`=UNIX_TIMESTAMP() + `last_online`=NOW() WHERE `id`=%s AND `password`='%s' LIMIT 1", array( bigintval(getSession('sponsor_id')), - getSession('sponsorpass') + getSession('sponsor_pass') ), __FUNCTION__, __LINE__); // This update went fine? - $login = (SQL_AFFECTEDROWS() == 1); + $login = (!ifSqlHasZeroAffectedRows()); } // END - if // Return status @@ -391,22 +385,22 @@ LIMIT 1", // Saves sponsor's data function saveSponsorData ($postData, $content) { - $EMAIL = false; + $EMAIL = FALSE; // Unsecure data which we don't want $UNSAFE = array('password', 'id', 'remote_addr', 'sponsor_created', 'last_online', 'status', 'ref_count', - 'points_amount', 'points_used', 'refid', 'hash', 'last_pay', 'last_curr', 'pass_old', - 'ok', 'pass1', 'pass2'); + 'points_amount', 'points_used', 'refid', 'hash', 'last_payment', 'last_currency', + 'pass_old', 'ok', 'password1', 'password2'); // Set default message ("not saved") $message = '{--SPONSOR_ACCOUNT_DATA_NOT_SAVED--}'; // Check for submitted passwords - if ((!empty($postData['pass1'])) && (!empty($postData['pass2']))) { + if ((!empty($postData['password1'])) && (!empty($postData['password2']))) { // Are both passwords the same? - if ($postData['pass1'] == $postData['pass2']) { - // Okay, then set password and remove pass1 and pass2 - $postData['password'] = md5($postData['pass1']); + if ($postData['password1'] == $postData['password2']) { + // Okay, then set password and remove password1 and password2 + $postData['password'] = md5($postData['password1']); } // END - if } // END - if @@ -415,7 +409,7 @@ function saveSponsorData ($postData, $content) { unset($postData[$remove]); } // END - foreach - // This array is for the submitted data which we will use with the SQL_QUERY_ESC() function to + // This array is for the submitted data which we will use with the sqlQueryEscaped() function to // secure the data $DATA = array(); @@ -425,44 +419,46 @@ function saveSponsorData ($postData, $content) { // Mmmmm, too less security here??? $sql .= " `" . secureString($key) . "`='%s',"; - // We will secure this later inside the SQL_QUERY_ESC() function - $DATA[] = secureString($value); + // We will secure this later inside the sqlQueryEscaped() function + array_push($DATA, secureString($value)); } // END - foreach // Check if email has changed if ((!empty($content['email'])) && (!empty($postData['email']))) { if ($content['email'] != $postData['email']) { // Change email address - $EMAIL = true; + $EMAIL = TRUE; // Okay, has changed then add status with UNCONFIRMED and new hash code - $sql .= " `status`='EMAIL', `hash`='%s',"; + $sql .= " `status`='EMAIL',`hash`='%s',"; // Generate hash code - $HASH = md5(session_id().':'.$postData['email'].':'.detectRemoteAddr().':'.detectUserAgent().':'.time()); - $DATA[] = $HASH; + // @TODO Rewrite this to API function + $HASH = md5(session_id() . getEncryptSeparator() . $postData['email'] . getEncryptSeparator() . detectRemoteAddr() . getEncryptSeparator() . detectUserAgent() . getEncryptSeparator() . time()); + array_push($DATA, $HASH); } // END - if } // END - if - // Remove last commata $sql = substr($sql, 0, -1); + // Add last_change + $sql .= ',`last_change`=NOW()'; + // Add SQL tail data $sql .= " WHERE `id`=%s AND `password`='%s' LIMIT 1"; - $DATA[] = bigintval(getSession('sponsor_id')); - $DATA[] = getSession('sponsorpass'); + array_push($DATA, bigintval(getSession('sponsor_id')), getSession('sponsor_pass')); // Saving data was completed... ufff... switch (getWhat()) { case 'account': // Change account data - if ($EMAIL === true) { + if ($EMAIL === TRUE) { $message = '{--SPONSOR_ACCOUNT_EMAIL_CHANGED--}'; $templ = 'admin_sponsor_change_email'; - $subj = '{--ADMIN_SPONSOR_ACC_EMAIL_SUBJECT--}'; + $subject = '{--ADMIN_SPONSOR_ACC_EMAIL_SUBJECT--}'; } else { $message = '{--SPONSOR_ACCOUNT_DATA_SAVED--}'; $templ = 'admin_sponsor_change_data'; - $subj = '{--ADMIN_SPONSOR_ACC_DATA_SUBJECT--}'; + $subject = '{--ADMIN_SPONSOR_ACC_DATA_SUBJECT--}'; } break; @@ -470,29 +466,29 @@ function saveSponsorData ($postData, $content) { // Set message template and subject for admin $message = '{--SPONSOR_SETTINGS_SAVED--}'; $templ = 'admin_sponsor_settings'; - $subj = '{--ADMIN_SPONSOR_SETTINGS_SUBJECT--}'; + $subject = '{--ADMIN_SPONSOR_SETTINGS_SUBJECT--}'; break; default: // Unknown sponsor what value! logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown sponsor module (what) %s detected.", getWhat())); - $message = getMaskedMessage('SPONSOR_UNKNOWN_WHAT', getWhat()); + $message = '{--SPONSOR_UNKNOWN_WHAT--}'; $templ = ''; - $subj = ''; + $subject = ''; break; } // END - switch // Has an entry updated? - if (SQL_AFFECTEDROWS() == 1) { + if (!ifSqlHasZeroAffectedRows()) { // Template and subject are set? - if (!empty($templ) && !empty($subj)) { + if (!empty($templ) && !empty($subject)) { // Run SQL command and check for success - $result = SQL_QUERY_ESC($sql, $DATA, __FUNCTION__, __LINE__); + $result = sqlQueryEscaped($sql, $DATA, __FUNCTION__, __LINE__); // Add all data to content $content['new_data'] = $postData; // Send email to admins - sendAdminNotification($subj, $templ, $content); + sendAdminNotification($subject, $templ, $content); // Shall we send mail to the sponsor's new email address? if ($content['receive_warnings'] == 'Y') { @@ -507,7 +503,7 @@ function saveSponsorData ($postData, $content) { $email_msg = loadEmailTemplate('sponsor_change_data', $content); sendEmail($content['email'], '{--SPONSOR_ACC_DATA_SUBJECT--}', $email_msg); - if ($EMAIL === true) { + if ($EMAIL === TRUE) { // Add hash code to content array $content['hash'] = $HASH; @@ -539,24 +535,25 @@ function generateSponsorEmailLink ($email, $mod = 'admin') { // But admins shall always see it if (isAdmin()) $locked = ''; - $result = SQL_QUERY_ESC("SELECT + $result = sqlQueryEscaped("SELECT `id` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE - `email`='%s'" . $locked." + '%s' REGEXP `email` + " . $locked . " LIMIT 1", array($email), __FUNCTION__, __LINE__); - if (SQL_NUMROWS($result) == 1) { + if (sqlNumRows($result) == 1) { // Load sponsor_id - list($sponsor_id) = SQL_FETCHROW($result); + list($sponsor_id) = sqlFetchRow($result); // Rewrite email address to contact link $email = '{%url=modules.php?module=' . $mod . '&what=sponsor_contct&sponsor_id=' . bigintval($sponsor_id) . '%}'; } // END - if // Free memory - SQL_FREERESULT($result); + sqlFreeResult($result); // Return rewritten (?) email address return $email; @@ -568,30 +565,30 @@ function doProcessSponsorFormRequest ($messageArray = array()) { $message = ''; // Handle the request - $status = handleSponsorRequest(postRequestArray(), true, $messageArray, true); + $status = handleSponsorRequest(postRequestArray(), TRUE, $messageArray, TRUE); // Check the status of the registration process switch ($status) { case 'added': // Sponsor successfully added with account status = UNCONFIRMED! // Check for his id number - $result = SQL_QUERY_ESC("SELECT `id`, `hash` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `email`='%s' LIMIT 1", - array(postRequestParameter('email')), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) { + $result = sqlQueryEscaped("SELECT `id`, `hash` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE '%s' REGEXP `email` LIMIT 1", + array(postRequestElement('email')), __FUNCTION__, __LINE__); + if (sqlNumRows($result) == 1) { // id found so let's load it for the confirmation email - list($id, $hash) = SQL_FETCHROW($result); + list($id, $hash) = sqlFetchRow($result); // Prepare data for the email template $content['id'] = $id; $content['hash'] = $hash; - $content['email'] = secureString(postRequestParameter('email')); - $content['surname'] = secureString(postRequestParameter('surname')); - $content['family'] = secureString(postRequestParameter('family')); + $content['email'] = postRequestElement('email'); + $content['surname'] = postRequestElement('surname'); + $content['family'] = postRequestElement('family'); $content['timestamp'] = generateDateTime(time(), 0); - $content['password'] = secureString(postRequestParameter('pass1')); + $content['password'] = postRequestElement('password1'); // Generate email and send it to the new sponsor $message = loadEmailTemplate('sponsor_confirm', $content, $id); - sendEmail(postRequestParameter('email'), '{--SPONSOR_PLEASE_CONFIRM_SUBJECT--}', $message); + sendEmail(postRequestElement('email'), '{--SPONSOR_PLEASE_CONFIRM_SUBJECT--}', $message); // Send mail to admin sendAdminNotification('{--ADMIN_NEW_SPONSOR--}', 'admin_sponsor_reg', $content); @@ -600,24 +597,24 @@ function doProcessSponsorFormRequest ($messageArray = array()) { $message = $messageArray['added']; } else { // Sponsor account not found??? - $message = getMaskedMessage('SPONSOR_EMAIL_404', postRequestParameter('email')); + $message = '{%message,SPONSOR_EMAIL_404=' . postRequestElement('email') . '%}'; } // Free memory - SQL_FREERESULT($result); + sqlFreeResult($result); break; default: - logDebugMessage(__FILE__, __LINE__, sprintf("Unknown status %s detected.", $status)); + logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status)); if (!isAdmin()) { // Message for testing admin - $message = getMaskedMessage('ADMIN_SPONSOR_UNKNOWN_STATUS', $status); + $message = '{%message,ADMIN_SPONSOR_UNKNOWN_STATUS=' . $status . '%}'; } else { // Message for the guest - $message = getMaskedMessage('SPONSOR_UNKNOWN_STATUS', $status); + $message = '{%message,SPONSOR_UNKNOWN_STATUS=' . $status . '%}'; } break; - } + } // END - switch // Return message return $message; @@ -630,7 +627,7 @@ function doExpressionSponsor ($data) { // Sponsor-related data, so is there a sponsor_id? if (!empty($data['matches'][4][$data['key']])) { - // Do we have a sponsor_id or $sponsor_id? + // Is there a sponsor_id or $sponsor_id? if ($data['matches'][4][$data['key']] == '$userid') { // Use dynamic call $functionName = "getFetchedSponsorData('id', \$userid, '" . $data['callback'] . "')"; @@ -638,12 +635,12 @@ function doExpressionSponsor ($data) { // Sponsor data found $functionName = "getFetchedSponsorData('id', " . $data['matches'][4][$data['key']] . ", '" . $data['callback'] . "')"; } - } elseif ((!empty($data['callback'])) && (isSponsorDataValid())) { + } elseif ((!empty($data['callback'])) && (isValidSponsorData())) { // "Call-back" alias column for current logged in sponsor's data $functionName = "getSponsorData('" . $data['callback'] . "')"; } - // Do we have another function to run (e.g. translations) + // Is there another function to run (e.g. translations) if (!empty($data['extra_func'])) { // Surround the original function call with it $functionName = $data['extra_func'] . '(' . $functionName . ')'; @@ -670,32 +667,32 @@ function fetchSponsorData ($sponsor_id, $column = 'id') { setCurrentSponsorId($sponsor_id); // Don't look for invalid sponsor_ids... - if ($sponsor_id < 1) { + if (!isValidId($sponsor_id)) { // Invalid, so abort here - debug_report_bug(__FUNCTION__, __LINE__, 'Sponsor id ' . $sponsor_id . ' is invalid.'); - } elseif (isSponsorDataValid()) { + reportBug(__FUNCTION__, __LINE__, 'Sponsor id ' . $sponsor_id . ' is invalid.'); + } elseif (isValidSponsorData()) { // Use cache, so it is fine - return true; + return TRUE; } - } elseif (isSponsorDataValid()) { + } elseif (isValidSponsorData()) { // Use cache, so it is fine - return true; + return TRUE; } // By default none was found - $found = false; + $found = FALSE; // Extra statements $ADD = ''; // Query for the sponsor - $result = SQL_QUERY_ESC("SELECT *".$ADD." FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `%s`='%s' LIMIT 1", + $result = sqlQueryEscaped("SELECT *".$ADD." FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `%s`='%s' LIMIT 1", array($column, $sponsor_id), __FUNCTION__, __LINE__); - // Do we have a record? - if (SQL_NUMROWS($result) == 1) { + // Is there a record? + if (sqlNumRows($result) == 1) { // Load data from cookies - $data = SQL_FETCHARRAY($result); + $data = sqlFetchArray($result); // Set the sponsor_id for later use setCurrentSponsorId($data['id']); @@ -705,10 +702,10 @@ function fetchSponsorData ($sponsor_id, $column = 'id') { if (isset($GLOBALS['sponsor_data'][getCurrentSponsorId()]['last_failure'])) { // Backup the raw one and zero it $GLOBALS['sponsor_data'][getCurrentSponsorId()]['last_failure_raw'] = $GLOBALS['sponsor_data'][getCurrentSponsorId()]['last_failure']; - $GLOBALS['sponsor_data'][getCurrentSponsorId()]['last_failure'] = '0'; + $GLOBALS['sponsor_data'][getCurrentSponsorId()]['last_failure'] = NULL; // Is it not zero? - if ($GLOBALS['sponsor_data'][getCurrentSponsorId()]['last_failure_raw'] != '0000-00-00 00:00:00') { + if (!is_null($GLOBALS['sponsor_data'][getCurrentSponsorId()]['last_failure_raw'])) { // Seperate data/time $array = explode(' ', $GLOBALS['sponsor_data'][getCurrentSponsorId()]['last_failure_raw']); @@ -729,11 +726,11 @@ function fetchSponsorData ($sponsor_id, $column = 'id') { } // END - if // Found, but valid? - $found = isSponsorDataValid(); + $found = isValidSponsorData(); } // END - if // Free memory - SQL_FREERESULT($result); + sqlFreeResult($result); // Return result return $found; @@ -742,9 +739,9 @@ function fetchSponsorData ($sponsor_id, $column = 'id') { // Wrapper for fetchSponsorData() and getSponsorData() calls function getFetchedSponsorData ($keyColumn, $sponsor_id, $valueColumn) { // Zero ids are not valid - if ($sponsor_id == 0) { + if (!isValidId($sponsor_id)) { // Abort here - debug_report_bug(__FUNCTION__, __LINE__, 'Zero sponsor_id provided'); + reportBug(__FUNCTION__, __LINE__, 'Zero sponsor_id provided'); } // END - if // Is it cached? @@ -753,7 +750,7 @@ function getFetchedSponsorData ($keyColumn, $sponsor_id, $valueColumn) { $data = ''; // Can we fetch the sponsor data? - if ((isValidSponsorId($sponsor_id)) && (fetchSponsorData($sponsor_id, $keyColumn))) { + if ((isValidId($sponsor_id)) && (fetchSponsorData($sponsor_id, $keyColumn))) { // Now get the data back $data = getSponsorData($valueColumn); } // END - if @@ -769,9 +766,9 @@ function getFetchedSponsorData ($keyColumn, $sponsor_id, $valueColumn) { // Checks if the sponsor data is valid, this may indicate that the sponsor has logged // in, but you should use isMember() if you want to find that out. -function isSponsorDataValid () { +function isValidSponsorData () { // Sponsor id should not be zero so abort here - if (!isCurrentSponsorIdSet()) return false; + if (!isCurrentSponsorIdSet()) return FALSE; // Is it cached? if (!isset($GLOBALS['is_sponsor_data_valid'][getCurrentSponsorId()])) { @@ -797,7 +794,7 @@ function getCurrentSponsorId () { // Sponsorid must be set before it can be used if (!isCurrentSponsorIdSet()) { // Not set - debug_report_bug(__FUNCTION__, __LINE__, 'Sponsor id is not set.'); + reportBug(__FUNCTION__, __LINE__, 'Sponsor id is not set.'); } // END - if // Return the sponsor_id @@ -806,25 +803,15 @@ function getCurrentSponsorId () { // Checks if current sponsor_id is set function isCurrentSponsorIdSet () { - return ((isset($GLOBALS['current_sponsor_id'])) && (isValidSponsorId($GLOBALS['current_sponsor_id']))); -} - -// Is given sponsor_id valid? -function isValidSponsorId ($sponsor_id) { - // Do we have cache? - if (!isset($GLOBALS['is_valid_sponsor_id'][$sponsor_id])) { - // Check it out - $GLOBALS['is_valid_sponsor_id'][$sponsor_id] = ((!is_null($sponsor_id)) && (!empty($sponsor_id)) && ($sponsor_id > 0)); - } // END - if - - // Return cache - return $GLOBALS['is_valid_sponsor_id'][$sponsor_id]; + return ((isset($GLOBALS['current_sponsor_id'])) && (isValidId($GLOBALS['current_sponsor_id']))); } // Getter for sponsor data function getSponsorData ($column) { // Sponsor id should not be zero - if (getCurrentSponsorId() < 1) debug_report_bug(__FUNCTION__, __LINE__, 'Sponsor id is zero.'); + if (!isValidId(getCurrentSponsorId())) { + reportBug(__FUNCTION__, __LINE__, 'Sponsor id is zero.'); + } // END - if // Return the value return $GLOBALS['sponsor_data'][getCurrentSponsorId()][$column]; @@ -839,5 +826,42 @@ function determineSponsorCountry ($sponsor_id) { return $country; } +// Destroy sponsor session +function destroySponsorSession () { + // Remove all user data from session + return ( + (setSession('sponsor_id', '')) && + (setSession('sponsor_pass', '')) && + ( + ((isExtensionActive('theme')) && (setMailerTheme(''))) || + (!isExtensionActive('theme')) + ) + ); +} + +// Getter for sponsor_min_points +function getSponsorMinPoints () { + // Is there cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('sponsor_min_points'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// Getter for sponsor_ref_points +function getSponsorRefPoints () { + // Is there cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('sponsor_ref_points'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + // [EOF] ?>