]> git.mxchange.org Git - friendica.git/blobdiff - src/Protocol/Salmon.php
Escape the "share" as well
[friendica.git] / src / Protocol / Salmon.php
index ebb9f1776df46a2bf2caf13eac3d8dd03345aa19..9724f82df74ab6c6dac984eeb0e0e4bdb02431d2 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -23,6 +23,7 @@ namespace Friendica\Protocol;
 
 use Friendica\Core\Logger;
 use Friendica\DI;
+use Friendica\Network\HTTPClient\Client\HttpClientAccept;
 use Friendica\Network\Probe;
 use Friendica\Util\Crypto;
 use Friendica\Util\Strings;
@@ -46,7 +47,7 @@ class Salmon
        {
                $ret = [];
 
-               Logger::notice('Fetching salmon key for '.$uri);
+               Logger::info('Fetching salmon key for '.$uri);
 
                $arr = Probe::lrdd($uri);
 
@@ -72,7 +73,8 @@ class Salmon
                                                $ret[$x] = substr($ret[$x], 5);
                                        }
                                } elseif (Strings::normaliseLink($ret[$x]) == 'http://') {
-                                       $ret[$x] = DI::httpClient()->fetch($ret[$x]);
+                                       $ret[$x] = DI::httpClient()->fetch($ret[$x], HttpClientAccept::MAGIC_KEY);
+                                       Logger::debug('Fetched public key', ['url' => $ret[$x]]);
                                }
                        }
                }
@@ -121,7 +123,7 @@ class Salmon
                        return;
                }
 
-               Logger::notice('slapper called for '.$url.'. Data: ' . $slap);
+               Logger::info('slapper called for '.$url.'. Data: ' . $slap);
 
                // create a magic envelope
 
@@ -209,7 +211,7 @@ class Salmon
                        $return_code = $postResult->getReturnCode();
                }
 
-               Logger::notice('slapper for '.$url.' returned ' . $return_code);
+               Logger::info('slapper for '.$url.' returned ' . $return_code);
 
                if (! $return_code) {
                        return -1;