]> git.mxchange.org Git - friendica.git/blobdiff - include/salmon.php
Revert "Coding convention applied - part 1"
[friendica.git] / include / salmon.php
index 386a1de99986af5b5a8f7d3702095dce89632cda..2b583347042e24cc8d26dca3868eb8f7ac2054f5 100644 (file)
@@ -10,13 +10,14 @@ function get_salmon_key($uri,$keyhash) {
 
        $arr = Probe::lrdd($uri);
 
-       if (is_array($arr)) {
-               foreach ($arr as $a) {
-                       if ($a['@attributes']['rel'] === 'magic-public-key') {
+       if(is_array($arr)) {
+               foreach($arr as $a) {
+                       if($a['@attributes']['rel'] === 'magic-public-key') {
                                $ret[] = $a['@attributes']['href'];
                        }
                }
-       } else {
+       }
+       else {
                return '';
        }
 
@@ -68,12 +69,11 @@ function slapper($owner,$url,$slap) {
 
        // does contact have a salmon endpoint?
 
-       if (! strlen($url)) {
+       if(! strlen($url))
                return;
-       }
 
 
-       if (! $owner['sprvkey']) {
+       if(! $owner['sprvkey']) {
                logger(sprintf("user '%s' (%d) does not have a salmon private key. Send failed.",
                $owner['username'],$owner['uid']));
                return;
@@ -120,7 +120,7 @@ function slapper($owner,$url,$slap) {
 
        // check for success, e.g. 2xx
 
-       if ($return_code > 299) {
+       if($return_code > 299) {
 
                logger('compliant salmon failed. Falling back to status.net hack2');
 
@@ -144,7 +144,7 @@ function slapper($owner,$url,$slap) {
                $return_code = $a->get_curl_code();
 
 
-               if ($return_code > 299) {
+               if($return_code > 299) {
 
                        logger('compliant salmon failed. Falling back to status.net hack3');
 
@@ -169,12 +169,10 @@ function slapper($owner,$url,$slap) {
                }
        }
        logger('slapper for '.$url.' returned ' . $return_code);
-       if (! $return_code) {
+       if(! $return_code)
                return(-1);
-       }
-       if (($return_code == 503) && (stristr($a->get_curl_headers(),'retry-after'))) {
+       if(($return_code == 503) && (stristr($a->get_curl_headers(),'retry-after')))
                return(-1);
-       }
 
        return ((($return_code >= 200) && ($return_code < 300)) ? 0 : 1);
 }