mirror of
https://github.com/friendica/friendica
synced 2025-04-26 13:50:11 +00:00
Move xml to namespace
Relocate xml from include to src Related to #3878
This commit is contained in:
parent
037d6ac17b
commit
f245bc8359
12 changed files with 5394 additions and 5137 deletions
|
@ -1,10 +1,14 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file include/salmon.php
|
||||
*/
|
||||
use Friendica\Network\Probe;
|
||||
use Friendica\Util\Xml;
|
||||
|
||||
require_once 'include/crypto.php';
|
||||
|
||||
function get_salmon_key($uri, $keyhash) {
|
||||
function get_salmon_key($uri, $keyhash)
|
||||
{
|
||||
$ret = array();
|
||||
|
||||
logger('Fetching salmon key for '.$uri);
|
||||
|
@ -42,7 +46,6 @@ function get_salmon_key($uri, $keyhash) {
|
|||
logger('Key located: ' . print_r($ret, true));
|
||||
|
||||
if (count($ret) == 1) {
|
||||
|
||||
// We only found one one key so we don't care if the hash matches.
|
||||
// If it's the wrong key we'll find out soon enough because
|
||||
// message verification will fail. This also covers some older
|
||||
|
@ -64,8 +67,8 @@ function get_salmon_key($uri, $keyhash) {
|
|||
|
||||
|
||||
|
||||
function slapper($owner, $url, $slap) {
|
||||
|
||||
function slapper($owner, $url, $slap)
|
||||
{
|
||||
// does contact have a salmon endpoint?
|
||||
|
||||
if (! strlen($url)) {
|
||||
|
@ -109,7 +112,7 @@ function slapper($owner, $url, $slap) {
|
|||
|
||||
$namespaces = array("me" => "http://salmon-protocol.org/ns/magic-env");
|
||||
|
||||
$salmon = xml::from_array($xmldata, $xml, false, $namespaces);
|
||||
$salmon = Xml::from_array($xmldata, $xml, false, $namespaces);
|
||||
|
||||
// slap them
|
||||
post_url($url, $salmon, array(
|
||||
|
@ -123,7 +126,6 @@ function slapper($owner, $url, $slap) {
|
|||
// check for success, e.g. 2xx
|
||||
|
||||
if ($return_code > 299) {
|
||||
|
||||
logger('GNU Social salmon failed. Falling back to compliant mode');
|
||||
|
||||
// Now try the compliant mode that normally isn't used for GNU Social
|
||||
|
@ -136,7 +138,7 @@ function slapper($owner, $url, $slap) {
|
|||
|
||||
$namespaces = array("me" => "http://salmon-protocol.org/ns/magic-env");
|
||||
|
||||
$salmon = xml::from_array($xmldata, $xml, false, $namespaces);
|
||||
$salmon = Xml::from_array($xmldata, $xml, false, $namespaces);
|
||||
|
||||
// slap them
|
||||
post_url($url, $salmon, array(
|
||||
|
@ -159,7 +161,7 @@ function slapper($owner, $url, $slap) {
|
|||
|
||||
$namespaces = array("me" => "http://salmon-protocol.org/ns/magic-env");
|
||||
|
||||
$salmon = xml::from_array($xmldata, $xml, false, $namespaces);
|
||||
$salmon = Xml::from_array($xmldata, $xml, false, $namespaces);
|
||||
|
||||
// slap them
|
||||
post_url($url, $salmon, array(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue