Bugfixing for CurlResult
authorPhilipp Holzer <admin@philipp.info>
Thu, 11 Oct 2018 05:40:57 +0000 (07:40 +0200)
committerPhilipp Holzer <admin@philipp.info>
Thu, 11 Oct 2018 05:40:57 +0000 (07:40 +0200)
blogger/blogger.php
dwpost/dwpost.php
ijpost/ijpost.php
libertree/libertree.php
ljpost/ljpost.php
mastodoncustomemojis/mastodoncustomemojis.php
openstreetmap/openstreetmap.php
pumpio/pumpio.php
wppost/wppost.php

index e747c3a..00563c3 100644 (file)
@@ -205,7 +205,7 @@ EOT;
                logger('blogger: data: ' . $xml, LOGGER_DATA);
 
                if ($bl_blog !== 'test') {
-                       $x = Network::post($bl_blog, $xml);
+                       $x = Network::post($bl_blog, $xml)->getBody();
                }
 
                logger('posted to blogger: ' . (($x) ? $x : ''), LOGGER_DEBUG);
index f6f2663..bc8959f 100644 (file)
@@ -228,7 +228,7 @@ EOT;
                logger('dwpost: data: ' . $xml, LOGGER_DATA);
 
                if ($dw_blog !== 'test') {
-                       $x = Network::post($dw_blog, $xml, ["Content-Type: text/xml"]);
+                       $x = Network::post($dw_blog, $xml, ["Content-Type: text/xml"])->getBody();
                }
 
                logger('posted to dreamwidth: ' . ($x) ? $x : '', LOGGER_DEBUG);
index 5d24509..3dcfb31 100644 (file)
@@ -224,7 +224,7 @@ EOT;
                logger('ijpost: data: ' . $xml, LOGGER_DATA);
 
                if ($ij_blog !== 'test') {
-                       $x = Network::post($ij_blog, $xml, ["Content-Type: text/xml"]);
+                       $x = Network::post($ij_blog, $xml, ["Content-Type: text/xml"])->getBody();
                }
                logger('posted to insanejournal: ' . $x ? $x : '', LOGGER_DEBUG);
        }
index c6e3f9f..aa4c48b 100644 (file)
@@ -231,7 +231,7 @@ function libertree_send(&$a,&$b) {
                //      'token' => $ltree_api_token
                ];
 
-               $result = Network::post($ltree_blog, $params);
+               $result = Network::post($ltree_blog, $params)->getBody();
                logger('libertree: ' . $result);
        }
 }
index 61c96b7..dfc1387 100644 (file)
@@ -234,7 +234,7 @@ EOT;
                logger('ljpost: data: ' . $xml, LOGGER_DATA);
 
                if ($lj_blog !== 'test') {
-                       $x = Network::post($lj_blog, $xml, ["Content-Type: text/xml"]);
+                       $x = Network::post($lj_blog, $xml, ["Content-Type: text/xml"])->getBody();
                }
                logger('posted to livejournal: ' . ($x) ? $x : '', LOGGER_DEBUG);
        }
index 5636af6..7df3111 100644 (file)
@@ -89,10 +89,10 @@ function mastodoncustomemojis_fetch_custom_emojis_for_url($api_base_url)
 
        $api_url = $api_base_url . '/api/v1/custom_emojis';
 
-       $ret = Network::fetchUrlFull($api_url);
+       $fetchResult = Network::fetchUrlFull($api_url);
 
-       if ($ret['success']) {
-               $emojis_array = json_decode($ret['body'], true);
+       if ($fetchResult->isSuccess()) {
+               $emojis_array = json_decode($fetchResult->getBody(), true);
 
                if (is_array($emojis_array) && count($emojis_array)) {
                        foreach ($emojis_array as $emoji) {
index 8394836..0420591 100644 (file)
@@ -129,9 +129,9 @@ function openstreetmap_get_coordinates($a, &$b)
        $j = Cache::get($cachekey);
 
        if (is_null($j)) {
-               $x = Network::curl($nomserver . $args);
-               if ($x['success']) {
-                       $j = json_decode($x['body'], true);
+               $curlResult = Network::curl($nomserver . $args);
+               if ($curlResult->isSuccess()) {
+                       $j = json_decode($curlResult->getBody(), true);
                        Cache::set($cachekey, $j, CACHE_MONTH);
                }
        }
index 4529ccd..2bb5233 100644 (file)
@@ -1691,8 +1691,7 @@ function pumpio_fetchallcomments(App $a, $uid, $id)
 
 function pumpio_reachable($url)
 {
-       $data = Network::curl($url, false, $redirects, ['timeout'=>10]);
-       return intval($data['return_code']) != 0;
+       return Network::curl($url, false, $redirects, ['timeout'=>10])->isSuccess();
 }
 
 /*
index d3e2194..76d928a 100644 (file)
@@ -315,7 +315,7 @@ EOT;
                logger('wppost: data: ' . $xml, LOGGER_DATA);
 
                if ($wp_blog !== 'test') {
-                       $x = Network::post($wp_blog, $xml);
+                       $x = Network::post($wp_blog, $xml)->getBody();
                }
                logger('posted to wordpress: ' . (($x) ? $x : ''), LOGGER_DEBUG);
        }