X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FOStatus%2Flib%2Fsalmon.php;fp=plugins%2FOStatus%2Flib%2Fsalmon.php;h=f81c9bdc22d910620a57db40f5cad3378c7f5101;hb=30a4393afab9c426a95da69ecb7805bc00e24de2;hp=2097ffa77f87e04378037e8f91c09922176ee793;hpb=aab7667cd53b06c012d811aebb7a391dd3ec74e7;p=quix0rs-gnu-social.git diff --git a/plugins/OStatus/lib/salmon.php b/plugins/OStatus/lib/salmon.php index 2097ffa77f..f81c9bdc22 100644 --- a/plugins/OStatus/lib/salmon.php +++ b/plugins/OStatus/lib/salmon.php @@ -55,12 +55,13 @@ class Salmon try { $magic_env = MagicEnvelope::signAsUser($xml, $user); - $envxml = $magic_env->toXML(); } catch (Exception $e) { common_log(LOG_ERR, "Salmon unable to sign: " . $e->getMessage()); return false; } + $envxml = $magic_env->toXML(); + $headers = array('Content-Type: application/magic-envelope+xml'); try { @@ -73,8 +74,10 @@ class Salmon } // Diaspora wants a slightly different formatting on the POST (other Content-type, so body needs "xml=") + // This also gives us the opportunity to send the specially formatted Diaspora salmon slap, which + // encrypts the content of me:data if ($response->getStatus() === 422) { - common_debug(sprintf('Salmon (from profile %d) endpoint %s returned status %s. Diaspora? Will try again! Body: %s', + common_debug(sprintf('Salmon (from profile %d) endpoint %s returned status %s. We assume it is a Diaspora seed, will adapt and try again! Body: %s', $user->id, $endpoint_uri, $response->getStatus(), $response->getBody())); $headers = array('Content-Type: application/x-www-form-urlencoded'); $client->setBody('xml=' . Magicsig::base64_url_encode($envxml));