]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/yoomedia_functions.php
New functions introduced, several rewrites:
[mailer.git] / inc / libs / yoomedia_functions.php
index 588eea1ab419f5b739ce298867d6098bfba648ac..75a0362ebc9b8350c9342ea5cd2b754d57bff618 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/10/2008 *
- * ===============                              Last change: 10/10/2008 *
+ * Mailer v0.2.1-FINAL                                Start: 10/10/2008 *
+ * ===================                          Last change: 10/10/2008 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : yoomedia_functions.php                           *
@@ -67,7 +67,7 @@ function YOOMEDIA_TEST_CONFIG ($data) {
        $errorCode = YOOMEDIA_GET_ERRORCODE_FROM_RESULT($response);
 
        // Log the response if failed
-       if (count($response) == 0) {
+       if (count($response) == '0') {
                // Queries depleted (as we count here!)
                logDebugMessage(__FUNCTION__, __LINE__, 'Requested depleted. Maxmimum was: ' . getConfig('yoomedia_requests_total'));
                $errorCode = -1;
@@ -84,11 +84,11 @@ function YOOMEDIA_TEST_CONFIG ($data) {
                $errorCode = -1;
        } else {
                // This is fine, because the result array is okay and the response code on element 8 is fine
-               $errorCode = 0;
+               $errorCode = '0';
        }
 
        // Do we have some data there?
-       return ($errorCode == 0);
+       return ($errorCode == '0');
 }
 
 // Queries the given Yoo!Media API 2.0 script
@@ -116,7 +116,15 @@ function YOOMEDIA_QUERY_API ($script, $countQuery = true) {
 
                // Convert from ISO to UTF-8
                foreach ($response as $k => $v) {
-                       $response[$k] = iconv('ISO-8859-1', 'UTF-8//TRANSLIT',$v);
+                       $response[$k] = iconv('windows-1252', 'UTF-8//TRANSLIT', $v);
+                       /*
+                       // iconv()-less ISO-8859-1 -> UTF-8
+                       $response[$k] = preg_replace(
+                               "/([\x80-\xFF])/e",
+                               "chr(0xC0|ord('\\1')>>6).chr(0x80|ord('\\1')&0x3F)",
+                               $v
+                       );
+                       */
                } // END - if
 
                // Shall we count the query as used?
@@ -161,6 +169,13 @@ function YOOMEDIA_PARSE_RESPONSE ($response, $type) {
                } // END - if
        } // END - foreach
 
+       // If we have no result, abort here
+       if (count($dummy) == 0) {
+               // Empty response from API
+               logDebugMessage(__FUNCTION__, __LINE__, 'Empy result from API received.');
+               return array();
+       } // END - if
+
        // The result is now still raw, so we must split it up and trim spaces away
        $responseLine = trim(implode("\n", $dummy));
 
@@ -171,7 +186,7 @@ function YOOMEDIA_PARSE_RESPONSE ($response, $type) {
        $dataArray = explode('|', $responseLine);
 
        // Now make the result array with two dimensions
-       $cnt = 0; $entry = 0;
+       $cnt = '0'; $entry = '0';
        foreach ($dataArray as $line) {
                // Add the line
                $result[$entry][yoomediaTranslateIndex($type, $cnt)] = $line;
@@ -180,7 +195,7 @@ function YOOMEDIA_PARSE_RESPONSE ($response, $type) {
                if ($cnt == 6) {
                        // Then advance to next entry and reset counter
                        $entry++;
-                       $cnt = 0;
+                       $cnt = '0';
                } else {
                        // Count up
                        $cnt++;
@@ -221,7 +236,7 @@ function YOOMEDIA_PREPARE_MAIL_DELIVERY ($data) {
        $data['categories'] = generateCategoryOptionsList('normal');
 
        // Decode entities
-       $data['text'] = (decodeEntities($data['text']));
+       $data['text'] = decodeEntities($data['text']);
 
        // Load template
        loadTemplate('admin_send_yoomedia', false, $data);
@@ -239,7 +254,7 @@ function YOOMEDIA_SEND_BONUS_MAIL ($data, $mode) {
        }
 
        // Add dummy receiver to avoid notice
-       $data['receiver'] = 0;
+       $data['receiver'] = '0';
 
        // HTML or normal? (normal is default...)
        $type = 't';
@@ -372,11 +387,11 @@ function YOOMEDIA_CONVERT_MODE ($mode) {
        // Convert mode for normal/html
        switch ($mode) {
                case 'normal':
-                       $mode = "textmail";
+                       $mode = 'textmail';
                        break;
 
                case 'html':
-                       $mode = "htmlmail";
+                       $mode = 'htmlmail';
                        break;
        } // END - switch
 
@@ -392,17 +407,17 @@ function YOOMEDIA_GET_ERRORCODE_FROM_RESULT ($response) {
        // Which response should we parse?
        if ((isset($response[8])) && (count($response) == 9)) {
                // Use error code from element 8 (mostly API errors)
-               $codeArray = explode("<br>", $response[8]);
+               $codeArray = explode('<br>', $response[8]);
 
                // Use only the first element
                $code = bigintval($codeArray[0]);
        } elseif ((is_array($response[0])) && (isset($response[0]['id']))) {
                // Begin with extraction
-               $codeArray = explode(" ", $response[0]['id']);
+               $codeArray = explode(' ', $response[0]['id']);
                $code = $codeArray[0];
-               $codeArray = explode("<br />", $code);
+               $codeArray = explode('<br />', $code);
                $code = $codeArray[0];
-               $codeArray = explode("<br>", $code);
+               $codeArray = explode('<br>', $code);
                $code = $codeArray[0];
 
                // Remove all new-line characters
@@ -413,7 +428,7 @@ function YOOMEDIA_GET_ERRORCODE_FROM_RESULT ($response) {
                $code = str_replace("\n", '', $code);
        } else {
                // Should not happen!
-               logDebugMessage(__FUNCTION__, __LINE__, "Cannot parse response. Raw response=" . base64_encode(serialize($response)));
+               logDebugMessage(__FUNCTION__, __LINE__, 'Cannot parse response. Raw response=' . base64_encode(serialize($response)));
        }
 
        // Return error code