From e8d19659c05899c4da2412bb8ebec4c9c9314b1a Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 15 Mar 2016 00:50:03 -0700 Subject: some heavy lifting porting the old salmon code --- include/salmon.php | 201 ++++++++++++++++++++++++++++++++++++++++++++++++++ version.inc | 2 +- view/tpl/magicsig.tpl | 9 +++ 3 files changed, 211 insertions(+), 1 deletion(-) create mode 100644 include/salmon.php create mode 100644 view/tpl/magicsig.tpl diff --git a/include/salmon.php b/include/salmon.php new file mode 100644 index 000000000..e1895ab75 --- /dev/null +++ b/include/salmon.php @@ -0,0 +1,201 @@ + $data, + '$encoding' => $encoding, + '$algorithm' => $algorithm, + '$keyhash' => $keyhash, + '$signature' => $signature + )); + + // slap them + + $redirects = 0; + + $ret = z_post_url($url,$salmon, $redirects, array('headers' => array( + 'Content-type: application/magic-envelope+xml', + 'Content-length: ' . strlen($salmon)) + )); + + + $return_code = $ret['return_code']; + + // check for success, e.g. 2xx + + if($return_code > 299) { + + logger('compliant salmon failed. Falling back to status.net hack2'); + + // Entirely likely that their salmon implementation is + // non-compliant. Let's try once more, this time only signing + // the data, without stripping '=' chars + + $salmon = replace_macros($salmon_tpl,array( + '$data' => $data, + '$encoding' => $encoding, + '$algorithm' => $algorithm, + '$keyhash' => $keyhash, + '$signature' => $signature2 + )); + + $redirects = 0; + + $ret = z_post_url($url,$salmon, $redirects, array('headers' => array( + 'Content-type: application/magic-envelope+xml', + 'Content-length: ' . strlen($salmon)) + )); + + + $return_code = $ret['return_code']; + + if($return_code > 299) { + + logger('compliant salmon failed. Falling back to status.net hack3'); + + // Entirely likely that their salmon implementation is + // non-compliant. Let's try once more, this time only signing + // the data, without the precomputed blob + + $salmon = replace_macros($salmon_tpl,array( + '$data' => $data, + '$encoding' => $encoding, + '$algorithm' => $algorithm, + '$keyhash' => $keyhash, + '$signature' => $signature3 + )); + + $redirects = 0; + + $ret = z_post_url($url,$salmon, $redirects, array('headers' => array( + 'Content-type: application/magic-envelope+xml', + 'Content-length: ' . strlen($salmon)) + )); + + + $return_code = $ret['return_code']; + } + } + logger('slapper for ' . $url . ' returned ' . $return_code); + + if(! $return_code) + return(-1); + if(($return_code == 503) && (stristr($ret['header'],'retry-after'))) + return(-1); + + return ((($return_code >= 200) && ($return_code < 300)) ? 0 : 1); +} + diff --git a/version.inc b/version.inc index 745b7640c..5ade25348 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2016-03-14.1335H +2016-03-15.1336H diff --git a/view/tpl/magicsig.tpl b/view/tpl/magicsig.tpl new file mode 100644 index 000000000..78d8bbbd3 --- /dev/null +++ b/view/tpl/magicsig.tpl @@ -0,0 +1,9 @@ + + + +{{$data}} + +{{$encoding}} +{{$algorithm}} +{{$signature}} + -- cgit v1.2.3