]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Change some Salmon events and similar
authorMikael Nordfeldth <mmn@hethane.se>
Sun, 4 Oct 2015 15:23:11 +0000 (17:23 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Sun, 4 Oct 2015 15:26:23 +0000 (17:26 +0200)
Use Profile instead of User and (if we know it) send along the target
profile, so a Diaspora plugin can encrypt to the receiver.

plugins/OStatus/classes/Ostatus_profile.php
plugins/OStatus/lib/salmon.php
plugins/OStatus/lib/salmonqueuehandler.php

index 8fc9f6c5f6302fab9614bdc6261e85ae59e21e5f..dbdbe885234eb4a200ac6e14fefd4a9bfeed6994 100644 (file)
@@ -345,7 +345,7 @@ class Ostatus_profile extends Managed_DataObject
         $xml = $entry->getString();
         common_log(LOG_INFO, "Posting to Salmon endpoint $this->salmonuri: $xml");
 
-        Salmon::post($this->salmonuri, $xml, $actor->getUser());
+        Salmon::post($this->salmonuri, $xml, $actor);
     }
 
     /**
@@ -359,7 +359,7 @@ class Ostatus_profile extends Managed_DataObject
     public function notifyActivity($entry, Profile $actor)
     {
         if ($this->salmonuri) {
-            return Salmon::post($this->salmonuri, $this->notifyPrepXml($entry), $actor->getUser());
+            return Salmon::post($this->salmonuri, $this->notifyPrepXml($entry), $actor, $this->localProfile());
         }
         common_debug(__CLASS__.' error: No salmonuri for Ostatus_profile uri: '.$this->uri);
 
@@ -378,7 +378,8 @@ class Ostatus_profile extends Managed_DataObject
         if ($this->salmonuri) {
             $data = array('salmonuri' => $this->salmonuri,
                           'entry' => $this->notifyPrepXml($entry),
-                          'actor' => $actor->id);
+                          'actor' => $actor->getID(),
+                          'target' => $this->localProfile()->getID());
 
             $qm = QueueManager::get();
             return $qm->enqueue($data, 'salmon');
index cdc8e02d77af23be52f011738835f77b61477e91..b964538cbcb33e31c62689722904095f00c69756 100644 (file)
@@ -43,18 +43,18 @@ class Salmon
      *
      * @param string $endpoint_uri
      * @param string $xml string representation of payload
-     * @param User $user local user profile whose keys we sign with
+     * @param Profile $user profile whose keys we sign with (must be a local user)
      * @return boolean success
      */
-    public static function post($endpoint_uri, $xml, User $user, Profile $target=null)
+    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 '.$user->getUri());
+            common_debug('No endpoint URI for Salmon post to '.$actor->getUri());
             return false;
         }
 
         try {
-            $magic_env = MagicEnvelope::signAsUser($xml, $user);
+            $magic_env = MagicEnvelope::signAsUser($xml, $actor->getUser());
         } catch (Exception $e) {
             common_log(LOG_ERR, "Salmon unable to sign: " . $e->getMessage());
             return false;
index 334dc14549c4fe101571fd4c0a30d4904ec1958b..fbc03c3954d96bd5f1bb2665ff6ed397b7d70363 100644 (file)
@@ -40,8 +40,9 @@ class SalmonQueueHandler extends QueueHandler
         assert(is_string($data['entry']));
 
         $actor = Profile::getKV($data['actor']);
+        $target = array_key_exists('target', $data) ? Profile::getKV($data['target']) : null;
 
-        Salmon::post($data['salmonuri'], $data['entry'], $actor->getUser());
+        Salmon::post($data['salmonuri'], $data['entry'], $actor, $target);
 
         // @fixme detect failure and attempt to resend
         return true;