X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fyoomedia_functions.php;h=75a0362ebc9b8350c9342ea5cd2b754d57bff618;hb=5a8c537bc2633402ca515964c9a3a2674f37edc2;hp=e236335de6ee403bcc76b168824ebc13e3999e67;hpb=5071030af40e69ca4284642f44758964e18f5be8;p=mailer.git diff --git a/inc/libs/yoomedia_functions.php b/inc/libs/yoomedia_functions.php index e236335de6..75a0362ebc 100644 --- a/inc/libs/yoomedia_functions.php +++ b/inc/libs/yoomedia_functions.php @@ -1,7 +1,7 @@ 0)) || ($errorCode >= 8)) { + // An error has returned from the account + logDebugMessage(__FUNCTION__, __LINE__, 'Unexpected error code ' . $errorCode . ' received.'); + } elseif (count($response) < 9) { // Log serialized raw response - DEBUG_LOG(__FUNCTION__, __LINE__, " Raw response=".base64_encode(serialize($response))); - } // END - if + logDebugMessage(__FUNCTION__, __LINE__, 'Raw response=' . base64_encode(serialize($response))); + $errorCode = -1; + } else { + // This is fine, because the result array is okay and the response code on element 8 is fine + $errorCode = '0'; + } // Do we have some data there? - return (count($response) > 10); + return ($errorCode == '0'); } // Queries the given Yoo!Media API 2.0 script @@ -83,25 +97,38 @@ function YOOMEDIA_QUERY_API ($script, $countQuery = true) { $response = array(); // Enougth queries left? - if ((getConfig('yoomedia_requests_remain') > 0) || (!$countQuery)) { + if ((getConfig('yoomedia_requests_remain') > 0) || ($countQuery === false)) { // Prepare the low-level request $requestString = sprintf("http://www.yoomedia.de/interface_2.0/%s?id=%s&sid=%s&pw=%s&reload=%s&ma=%s&uebrig=%s&verguetung=%s&erotik=%s", - $script, - getConfig(('yoomedia_id')), - getConfig(('yoomedia_sid')), - getConfig('yoomedia_passwd'), - getConfig(('yoomedia_tm_max_reload')), - getConfig(('yoomedia_tm_min_wait')), - getConfig(('yoomedia_tm_clicks_remain')), - getConfig(('yoomedia_tm_min_pay')), - getConfig(('yoomedia_erotic_allowed')) + $script, + getConfig('yoomedia_id'), + getConfig('yoomedia_sid'), + getConfig('yoomedia_passwd'), + getConfig('yoomedia_tm_max_reload'), + getConfig('yoomedia_tm_min_wait'), + getConfig('yoomedia_tm_clicks_remain'), + getConfig('yoomedia_tm_min_pay'), + getConfig('yoomedia_erotic_allowed') ); // Run the query $response = sendGetRequest($requestString); + // Convert from ISO to UTF-8 + foreach ($response as $k => $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? - if ($countQuery) { + if ($countQuery === true) { // Then update the config! updateConfiguration('yoomedia_requests_remain', 1, '-'); } // END - if @@ -115,10 +142,10 @@ function YOOMEDIA_QUERY_API ($script, $countQuery = true) { // the header lines will be returned function YOOMEDIA_GET_PARSED_RESULT_TEXTMAILS () { // Get the raw response - $response = YOOMEDIA_QUERY_API("out_textmail.php"); + $response = YOOMEDIA_QUERY_API('out_textmail.php'); // Parse the response - $result = YOOMEDIA_PARSE_RESPONSE($response, "textmail"); + $result = YOOMEDIA_PARSE_RESPONSE($response, 'textmail'); // Return result return $result; @@ -142,17 +169,24 @@ 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)); // Last line should never be a pipe! - if (substr($responseLine, -1, 1) == "|") $responseLine = substr($responseLine, 0, -1); + if (substr($responseLine, -1, 1) == '|') $responseLine = substr($responseLine, 0, -1); // Now, explode all in one array - $dataArray = explode("|", $responseLine); + $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; @@ -161,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++; @@ -175,10 +209,10 @@ function YOOMEDIA_PARSE_RESPONSE ($response, $type) { // Prepares a bonus mail for delivery. Works only if extension 'bonus' is active function YOOMEDIA_PREPARE_MAIL_DELIVERY ($data) { // Is this an admin? - if (!IS_ADMIN()) { + if (!isAdmin()) { // Abort here return false; - } elseif (!EXT_IS_ACTIVE('bonus')) { + } elseif (!isExtensionActive('bonus')) { // Abort here return false; } @@ -201,33 +235,36 @@ function YOOMEDIA_PREPARE_MAIL_DELIVERY ($data) { // Add categories $data['categories'] = generateCategoryOptionsList('normal'); + // Decode entities + $data['text'] = decodeEntities($data['text']); + // Load template - LOAD_TEMPLATE("admin_send_yoomedia", false, $data); + loadTemplate('admin_send_yoomedia', false, $data); } // Adds the mail to the bonus mail pool function YOOMEDIA_SEND_BONUS_MAIL ($data, $mode) { // Is this an admin? - if (!IS_ADMIN()) { + if (!isAdmin()) { // Abort here return false; - } elseif (!EXT_IS_ACTIVE('bonus')) { + } elseif (!isExtensionActive('bonus')) { // Abort here return false; } // Add dummy receiver to avoid notice - $data['receiver'] = 0; + $data['receiver'] = '0'; // HTML or normal? (normal is default...) $type = 't'; - if (($mode == 'html') && (EXT_IS_ACTIVE('html_mail'))) $type = 'h'; + if (($mode == 'html') && (isExtensionActive('html_mail'))) $type = 'h'; // Auto-generate URL $data['url'] = sprintf("http://www.yoomedia.de/code/%s-mail.php?id=%s&sid=%s", - $type, - $data['id'], - $data['sid'] + $type, + $data['id'], + $data['sid'] ); // Lock this mail for new delivery @@ -245,8 +282,12 @@ function YOOMEDIA_EXCLUDE_MAIL ($data, $mode) { $mode = YOOMEDIA_CONVERT_MODE($mode); // Add the entry - SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_yoomedia_reload` (`type`,`y_id`,`y_reload`,`inserted`) VALUES ('%s',%s,%s,'0000-00-00 00:00')", - array($mode, bigintval($data['id']), bigintval($data['reload'])), __FUNCTION__, __LINE__); + SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_yoomedia_reload` (`type`,`y_id`,`y_reload`,`inserted`) VALUES ('%s',%s,%s,'0000-00-00 00:00')", + array( + $mode, + bigintval($data['id']), + bigintval($data['reload']) + ), __FUNCTION__, __LINE__); } // END - if } @@ -256,8 +297,8 @@ function YOOMEDIA_UNLIST_MAIL ($data, $mode) { $mode = YOOMEDIA_CONVERT_MODE($mode); // Add the entry - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_yoomedia_reload` WHERE `type`='%s' AND `y_id`=%s LIMIT 1", - array($mode, bigintval($data['id'])), __FUNCTION__, __LINE__); + SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_yoomedia_reload` WHERE `type`='%s' AND `y_id`=%s LIMIT 1", + array($mode, bigintval($data['id'])), __FUNCTION__, __LINE__); } // "Translates" the index number into an assosiative value @@ -271,7 +312,7 @@ function yoomediaTranslateIndex ($type, $index) { $return = $GLOBALS['translation_tables']['yoomedia'][$type][$index]; } else { // Not found! - DEBUG_LOG(__FUNCTION__, __LINE__, " type={$type},index={$index} not found."); + logDebugMessage(__FUNCTION__, __LINE__, "type={$type},index={$index} not found."); } // Return value @@ -279,9 +320,9 @@ function yoomediaTranslateIndex ($type, $index) { } // "Translate" error code -function yoomediaTranslateError ($errorCode) { - // Default is "failed" - $return = "failed"; +function translateYooMediaError ($errorCode) { + // Default is 'failed' + $return = 'failed (Code: ' . $errorCode . ')'; // Is the entry there? if (isset($GLOBALS['translation_tables']['yoomedia']['error_codes'][$errorCode])) { @@ -289,7 +330,7 @@ function yoomediaTranslateError ($errorCode) { $return = $GLOBALS['translation_tables']['yoomedia']['error_codes'][$errorCode]; } else { // Log missing entries - DEBUG_LOG(__FUNCTION__, __LINE__, " errorCode={$errorCode}"); + debug_report_bug(sprintf("Unknown error code %s detected.", $errorCode)); } // Return value @@ -302,8 +343,8 @@ function YOOMEDIA_CHECK_RELOAD ($id, $reload, $type) { $reloaded = false; // Query database - $result = SQL_QUERY_ESC("SELECT `id`, UNIX_TIMESTAMP(`inserted`) AS inserted FROM `{!_MYSQL_PREFIX!}_yoomedia_reload` WHERE `type`='%s' AND `y_id`=%s LIMIT 1", - array($type, bigintval($id)), __FUNCTION__, __LINE__); + $result = SQL_QUERY_ESC("SELECT `id`, UNIX_TIMESTAMP(`inserted`) AS inserted FROM `{?_MYSQL_PREFIX?}_yoomedia_reload` WHERE `type`='%s' AND `y_id`=%s LIMIT 1", + array($type, bigintval($id)), __FUNCTION__, __LINE__); // Entry found? if (SQL_NUMROWS($result) == 1) { @@ -313,7 +354,7 @@ function YOOMEDIA_CHECK_RELOAD ($id, $reload, $type) { // Are we ready to sent again? if (((time() - $time) >= ($reload * 60*60)) && ($time > 0)) { // Remove entry - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_yoomedia_reload` WHERE `id`=%s LIMIT 1", + SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_yoomedia_reload` WHERE `id`=%s LIMIT 1", array($id), __FUNCTION__, __LINE__); } else { // Dont' sent again this mail @@ -336,8 +377,8 @@ function YOOMEDIA_RELOAD_LOCK ($data, $mode) { $mode = YOOMEDIA_CONVERT_MODE($mode); // Add the entry - SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_yoomedia_reload` (`type`,`y_id`,`y_reload`) VALUES ('%s',%s,%s)", - array($mode, bigintval($data['id']), bigintval($data['reload'])), __FUNCTION__, __LINE__); + SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_yoomedia_reload` (`type`,`y_id`,`y_reload`) VALUES ('%s',%s,%s)", + array($mode, bigintval($data['id']), bigintval($data['reload'])), __FUNCTION__, __LINE__); } // END - if } @@ -346,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 @@ -358,5 +399,41 @@ function YOOMEDIA_CONVERT_MODE ($mode) { return $mode; } -// +// Extract code from response +function YOOMEDIA_GET_ERRORCODE_FROM_RESULT ($response) { + // Bad code as default + $code = -999; + + // Which response should we parse? + if ((isset($response[8])) && (count($response) == 9)) { + // Use error code from element 8 (mostly API errors) + $codeArray = explode('
', $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']); + $code = $codeArray[0]; + $codeArray = explode('
', $code); + $code = $codeArray[0]; + $codeArray = explode('
', $code); + $code = $codeArray[0]; + + // Remove all new-line characters + $codeArray = explode("\n", $code); + $code = $codeArray[0]; + + // Remove carrige-return + $code = str_replace("\n", '', $code); + } else { + // Should not happen! + logDebugMessage(__FUNCTION__, __LINE__, 'Cannot parse response. Raw response=' . base64_encode(serialize($response))); + } + + // Return error code + return $code; +} + +// [EOF] ?>