]> git.mxchange.org Git - friendica.git/blobdiff - mod/salmon.php
added more spaces/curly braces
[friendica.git] / mod / salmon.php
index 78cdc09328685158a9dcc931a7b22963e0471a9d..76ab999b2d8d06c9acdc353343ceb6176b08ccba 100644 (file)
@@ -8,9 +8,9 @@ require_once('include/follow.php');
 
 function salmon_return($val) {
 
-       if($val >= 400)
+       if ($val >= 400)
                $err = 'Error';
-       if($val >= 200 && $val < 300)
+       if ($val >= 200 && $val < 300)
                $err = 'OK';
 
        logger('mod-salmon returns ' . $val);
@@ -19,7 +19,7 @@ function salmon_return($val) {
 
 }
 
-function salmon_post(&$a) {
+function salmon_post(App $a) {
 
        $xml = file_get_contents('php://input');
 
@@ -31,8 +31,9 @@ function salmon_post(&$a) {
        $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1",
                dbesc($nick)
        );
-       if(! dbm::is_result($r))
+       if (! dbm::is_result($r)) {
                http_status_exit(500);
+       }
 
        $importer = $r[0];
 
@@ -42,14 +43,14 @@ function salmon_post(&$a) {
 
        // figure out where in the DOM tree our data is hiding
 
-       if($dom->provenance->data)
+       if ($dom->provenance->data)
                $base = $dom->provenance;
-       elseif($dom->env->data)
+       elseif ($dom->env->data)
                $base = $dom->env;
-       elseif($dom->data)
+       elseif ($dom->data)
                $base = $dom;
 
-       if(! $base) {
+       if (! $base) {
                logger('mod-salmon: unable to locate salmon data in xml ');
                http_status_exit(400);
        }
@@ -87,7 +88,7 @@ function salmon_post(&$a) {
        $author = ostatus::salmon_author($data,$importer);
        $author_link = $author["author-link"];
 
-       if(! $author_link) {
+       if (! $author_link) {
                logger('mod-salmon: Could not retrieve author URI.');
                http_status_exit(400);
        }
@@ -98,7 +99,7 @@ function salmon_post(&$a) {
 
        $key = get_salmon_key($author_link,$keyhash);
 
-       if(! $key) {
+       if (! $key) {
                logger('mod-salmon: Could not retrieve author key.');
                http_status_exit(400);
        }
@@ -116,17 +117,17 @@ function salmon_post(&$a) {
 
        $verify = rsa_verify($compliant_format,$signature,$pubkey);
 
-       if(! $verify) {
+       if (! $verify) {
                logger('mod-salmon: message did not verify using protocol. Trying padding hack.');
            $verify = rsa_verify($signed_data,$signature,$pubkey);
        }
 
-       if(! $verify) {
+       if (! $verify) {
                logger('mod-salmon: message did not verify using padding. Trying old statusnet hack.');
            $verify = rsa_verify($stnet_signed_data,$signature,$pubkey);
        }
 
-       if(! $verify) {
+       if (! $verify) {
                logger('mod-salmon: Message did not verify. Discarding.');
                http_status_exit(400);
        }
@@ -150,12 +151,12 @@ function salmon_post(&$a) {
                dbesc(normalise_link($author_link)),
                intval($importer['uid'])
        );
-       if(! dbm::is_result($r)) {
+       if (! dbm::is_result($r)) {
                logger('mod-salmon: Author unknown to us.');
-               if(get_pconfig($importer['uid'],'system','ostatus_autofriend')) {
+               if (get_pconfig($importer['uid'],'system','ostatus_autofriend')) {
                        $result = new_contact($importer['uid'],$author_link);
-                       if($result['success']) {
-                               $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND ( `url` = '%s' OR `alias` = '%s') 
+                       if ($result['success']) {
+                               $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND ( `url` = '%s' OR `alias` = '%s')
                                        AND `uid` = %d LIMIT 1",
                                        dbesc(NETWORK_OSTATUS),
                                        dbesc($author_link),
@@ -169,7 +170,7 @@ function salmon_post(&$a) {
        // Have we ignored the person?
        // If so we can not accept this post.
 
-       //if((dbm::is_result($r)) && (($r[0]['readonly']) || ($r[0]['rel'] == CONTACT_IS_FOLLOWER) || ($r[0]['blocked']))) {
+       //if ((dbm::is_result($r)) && (($r[0]['readonly']) || ($r[0]['rel'] == CONTACT_IS_FOLLOWER) || ($r[0]['blocked']))) {
        if (dbm::is_result($r) && $r[0]['blocked']) {
                logger('mod-salmon: Ignoring this author.');
                http_status_exit(202);