Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / libs / sponsor_functions.php
index a2b9d11c336de89adfec42d2ea8b1607826a8a4c..3e5909476677b783bf26173550e8b80e698556aa 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -71,9 +71,9 @@ function handleSponsorRequest ($postData, $update=false, $messageArray = array()
                                                        // Email address is not valid
                                                        $SAVE = false;
                                                } else {
-                                                       // Do we want to add a new sponsor or update his data?
+                                                       // 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__);
+                                                               array($postData['email']), __FUNCTION__, __LINE__);
 
                                                        // Is a sponsor alread in the db?
                                                        if (SQL_NUMROWS($result) == 1) {
@@ -101,7 +101,10 @@ function handleSponsorRequest ($postData, $update=false, $messageArray = array()
                                                break;
 
                                        case 'url':
-                                               if (!isUrlValid($v)) $SAVE = false;
+                                               if (!isUrlValid($v)) {
+                                                       // Don't save the URL
+                                                       $SAVE = false;
+                                               } // END - if
                                                break;
 
                                        default:
@@ -112,7 +115,8 @@ function handleSponsorRequest ($postData, $update=false, $messageArray = array()
 
                                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
@@ -135,31 +139,31 @@ function handleSponsorRequest ($postData, $update=false, $messageArray = array()
 
                                // Remove last ", " from SQL string
                                $sql = substr($sql, 0, -2)." WHERE `id`=%s LIMIT 1";
-                               $DATA['values'][] = bigintval(getRequestElement('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()))) {
                                // Add new sponsor, first add more data
-                               $DATA['keys'][] = 'status';
+                               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';
+                                       array_push($DATA['keys'], 'hash');
                                        // @TODO Rewrite this to API function
-                                       $DATA['values'][] = md5(session_id() . getEncryptSeparator() . $postData['email'] . getEncryptSeparator() . detectRemoteAddr() . getEncryptSeparator() . detectUserAgent() . getEncryptSeparator() . time());
-                                       $DATA['keys'][] = 'remote_addr';
-                                       $DATA['values'][] = detectRemoteAddr();
+                                       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
@@ -227,7 +231,7 @@ function translateSponsorStatus ($status) {
                $ret = getMessage($constantName);
        } else {
                // Not found
-               //* DEBUG: */ debug_report_bug(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status));
+               //* DEBUG: */ reportBug(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status));
                logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status));
                $ret = '{%message,ACCOUNT_STATUS_UNKNOWN=' . $status . '%}';
        }
@@ -238,7 +242,7 @@ function translateSponsorStatus ($status) {
 
 // Search for an email address in the database
 function isSponsorRegisteredWithEmail ($email) {
-       // Do we already have the provided email address in our DB?
+       // Is there already the provided email address in database?
        $ret = (countSumTotalData($email, 'sponsor_data', 'id', 'email', true) == 1);
 
        // Return result
@@ -416,7 +420,7 @@ function saveSponsorData ($postData, $content) {
                $sql   .= " `" . secureString($key) . "`='%s',";
 
                // We will secure this later inside the SQL_QUERY_ESC() function
-               $DATA[] = secureString($value);
+               array_push($DATA, secureString($value));
        } // END - foreach
 
        // Check if email has changed
@@ -431,7 +435,7 @@ function saveSponsorData ($postData, $content) {
                        // Generate hash code
                        // @TODO Rewrite this to API function
                        $HASH = md5(session_id() . getEncryptSeparator() . $postData['email'] . getEncryptSeparator() . detectRemoteAddr() . getEncryptSeparator() . detectUserAgent() . getEncryptSeparator() . time());
-                       $DATA[] = $HASH;
+                       array_push($DATA, $HASH);
                } // END - if
        } // END - if
        // Remove last commata
@@ -442,8 +446,7 @@ function saveSponsorData ($postData, $content) {
 
        // Add SQL tail data
        $sql .= " WHERE `id`=%s AND `password`='%s' LIMIT 1";
-       $DATA[] = bigintval(getSession('sponsor_id'));
-       $DATA[] = getSession('sponsor_pass');
+       array_push($DATA, bigintval(getSession('sponsor_id')), getSession('sponsor_pass'));
 
        // Saving data was completed... ufff...
        switch (getWhat()) {
@@ -451,11 +454,11 @@ function saveSponsorData ($postData, $content) {
                        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;
 
@@ -463,21 +466,21 @@ 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 = '{--SPONSOR_UNKNOWN_WHAT--}';
                        $templ   = '';
-                       $subj    = '';
+                       $subject    = '';
                        break;
        } // END - switch
 
        // Has an entry updated?
        if (!SQL_HASZEROAFFECTED()) {
                // 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__);
 
@@ -485,7 +488,7 @@ function saveSponsorData ($postData, $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') {
@@ -568,7 +571,7 @@ function doProcessSponsorFormRequest ($messageArray = array()) {
        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 '%s' REGEXP `email` LIMIT 1",
+                       $result = SQL_QUERY_ESC("SELECT `id`, `hash` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE '%s' REGEXP `email` LIMIT 1",
                                array(postRequestElement('email')), __FUNCTION__, __LINE__);
                        if (SQL_NUMROWS($result) == 1) {
                                // id found so let's load it for the confirmation email
@@ -624,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'] . "')";
@@ -637,7 +640,7 @@ function doExpressionSponsor ($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 . ')';
@@ -666,7 +669,7 @@ function fetchSponsorData ($sponsor_id, $column = 'id') {
                // Don't look for invalid sponsor_ids...
                if (!isValidUserId($sponsor_id)) {
                        // Invalid, so abort here
-                       debug_report_bug(__FUNCTION__, __LINE__, 'Sponsor id ' . $sponsor_id . ' is invalid.');
+                       reportBug(__FUNCTION__, __LINE__, 'Sponsor id ' . $sponsor_id . ' is invalid.');
                } elseif (isSponsorDataValid()) {
                        // Use cache, so it is fine
                        return true;
@@ -686,7 +689,7 @@ function fetchSponsorData ($sponsor_id, $column = 'id') {
        $result = SQL_QUERY_ESC("SELECT *".$ADD." FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `%s`='%s' LIMIT 1",
                array($column, $sponsor_id), __FUNCTION__, __LINE__);
 
-       // Do we have a record?
+       // Is there a record?
        if (SQL_NUMROWS($result) == 1) {
                // Load data from cookies
                $data = SQL_FETCHARRAY($result);
@@ -738,7 +741,7 @@ function getFetchedSponsorData ($keyColumn, $sponsor_id, $valueColumn) {
        // Zero ids are not valid
        if ($sponsor_id == 0) {
                // Abort here
-               debug_report_bug(__FUNCTION__, __LINE__, 'Zero sponsor_id provided');
+               reportBug(__FUNCTION__, __LINE__, 'Zero sponsor_id provided');
        } // END - if
 
        // Is it cached?
@@ -791,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
@@ -805,7 +808,7 @@ function isCurrentSponsorIdSet () {
 
 // Is given sponsor_id valid?
 function isValidSponsorId ($sponsor_id) {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__][$sponsor_id])) {
                // Check it out
                $GLOBALS[__FUNCTION__][$sponsor_id] = ((!is_null($sponsor_id)) && (!empty($sponsor_id)) && ($sponsor_id > 0));
@@ -819,7 +822,7 @@ function isValidSponsorId ($sponsor_id) {
 function getSponsorData ($column) {
        // Sponsor id should not be zero
        if (!isValidUserId(getCurrentSponsorId())) {
-               debug_report_bug(__FUNCTION__, __LINE__, 'Sponsor id is zero.');
+               reportBug(__FUNCTION__, __LINE__, 'Sponsor id is zero.');
        } // END - if
 
        // Return the value
@@ -842,7 +845,7 @@ function destroySponsorSession () {
                (setSession('sponsor_id', '')) &&
                (setSession('sponsor_pass', '')) &&
                (
-                       ((isExtensionActive('theme')) && (setTheme(''))) ||
+                       ((isExtensionActive('theme')) && (setMailerTheme(''))) ||
                        (!isExtensionActive('theme'))
                )
        );
@@ -850,7 +853,7 @@ function destroySponsorSession () {
 
 // Getter for sponsor_min_points
 function getSponsorMinPoints () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = getConfig('sponsor_min_points');
@@ -862,7 +865,7 @@ function getSponsorMinPoints () {
 
 // Getter for sponsor_ref_points
 function getSponsorRefPoints () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = getConfig('sponsor_ref_points');