]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/HTTPSignature.php
Merge pull request #11647 from Quix0r/fixes/type-error-exception
[friendica.git] / src / Util / HTTPSignature.php
index db1d7a2799a9b46cc714db4162c572be678d34b4..4a4f6a5710d306936d9058861fee379988f02e1b 100644 (file)
@@ -29,6 +29,7 @@ use Friendica\Model\APContact;
 use Friendica\Model\Contact;
 use Friendica\Model\ItemURI;
 use Friendica\Model\User;
+use Friendica\Network\HTTPClient\Capability\ICanHandleHttpResponses;
 use Friendica\Network\HTTPClient\Client\HttpClientAccept;
 use Friendica\Network\HTTPClient\Client\HttpClientOptions;
 
@@ -264,21 +265,21 @@ class HTTPSignature
         */
 
        /**
-        * Transmit given data to a target for a user
+        * Post given data to a target for a user, returns the result class
         *
         * @param array   $data   Data that is about to be send
         * @param string  $target The URL of the inbox
         * @param integer $uid    User id of the sender
         *
-        * @return boolean Was the transmission successful?
+        * @return ICanHandleHttpResponses
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       public static function transmit($data, $target, $uid)
+       public static function post(array $data, string $target, int $uid): ICanHandleHttpResponses
        {
                $owner = User::getOwnerDataById($uid);
 
                if (!$owner) {
-                       return;
+                       return null;
                }
 
                $content = json_encode($data, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE);
@@ -305,16 +306,32 @@ class HTTPSignature
 
                $headers['Content-Type'] = 'application/activity+json';
 
-               $postResult = DI::httpClient()->post($target, $content, $headers);
+               $postResult = DI::httpClient()->post($target, $content, $headers, DI::config()->get('system', 'curl_timeout'));
                $return_code = $postResult->getReturnCode();
 
                Logger::info('Transmit to ' . $target . ' returned ' . $return_code);
 
-               $success = ($return_code >= 200) && ($return_code <= 299);
+               self::setInboxStatus($target, ($return_code >= 200) && ($return_code <= 299));
+
+               return $postResult;
+       }
 
-               self::setInboxStatus($target, $success);
+       /**
+        * Transmit given data to a target for a user
+        *
+        * @param array   $data   Data that is about to be send
+        * @param string  $target The URL of the inbox
+        * @param integer $uid    User id of the sender
+        *
+        * @return boolean Was the transmission successful?
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        */
+       public static function transmit(array $data, string $target, int $uid): bool
+       {
+               $postResult = self::post($data, $target, $uid);
+               $return_code = $postResult->getReturnCode();
 
-               return $success;
+               return ($return_code >= 200) && ($return_code <= 299);
        }
 
        /**