]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/OStatus/lib/salmon.php
Merge branch 'profile' into 'nightly'
[quix0rs-gnu-social.git] / plugins / OStatus / lib / salmon.php
index c6e15ff21c65e749a2de230099b30ba04db179a2..b964538cbcb33e31c62689722904095f00c69756 100644 (file)
@@ -39,14 +39,14 @@ class Salmon
      * Sign and post the given Atom entry as a Salmon message.
      *
      * Side effects: may generate a keypair on-demand for the given user,
-     * which can be very slow on some systems.
+     * which can be very slow on some systems (like those without php5-gmp).
      *
      * @param string $endpoint_uri
      * @param string $xml string representation of payload
-     * @param Profile $actor local user profile whose keys to sign with
+     * @param Profile $user profile whose keys we sign with (must be a local user)
      * @return boolean success
      */
-    public function post($endpoint_uri, $xml, Profile $actor)
+    public static function post($endpoint_uri, $xml, Profile $actor, Profile $target=null)
     {
         if (empty($endpoint_uri)) {
             common_debug('No endpoint URI for Salmon post to '.$actor->getUri());
@@ -54,30 +54,18 @@ class Salmon
         }
 
         try {
-            $magic_env = MagicEnvelope::signForProfile($xml, $actor);
-            $envxml = $magic_env->toXML();
+            $magic_env = MagicEnvelope::signAsUser($xml, $actor->getUser());
         } catch (Exception $e) {
             common_log(LOG_ERR, "Salmon unable to sign: " . $e->getMessage());
             return false;
         }
 
-        $headers = array('Content-Type: application/magic-envelope+xml');
-
-        try {
-            $client = new HTTPClient();
-            $client->setBody($envelope);
-            $response = $client->post($endpoint_uri, $headers);
-        } catch (HTTP_Request2_Exception $e) {
-            common_log(LOG_ERR, "Salmon ($class) post to $endpoint_uri failed: " . $e->getMessage());
-            return false;
-        }
-        if ($response->getStatus() != 200) {
-            common_log(LOG_ERR, "Salmon ($class) at $endpoint_uri returned status " .
-                $response->getStatus() . ': ' . $response->getBody());
+        // $target is so far only used in Diaspora, so it can be null
+        if (Event::handle('SalmonSlap', array($endpoint_uri, $magic_env, $target))) {
             return false;
+            //throw new ServerException('Could not distribute salmon slap as no plugin completed the event.');
         }
 
-        // Success!
         return true;
     }
 }