friendica/mod/receive.php

77 lignes
1.5 KiB
PHP
Brut Vue normale Historique

<?php
/**
* Diaspora endpoint
*/
require_once('include/salmon.php');
2011-08-10 03:55:46 +02:00
require_once('include/crypto.php');
2011-08-09 11:53:51 +02:00
require_once('include/diaspora.php');
function receive_post(App $a) {
$enabled = intval(get_config('system','diaspora_enabled'));
if(! $enabled) {
logger('mod-diaspora: disabled');
http_status_exit(500);
}
2011-09-15 04:33:42 +02:00
$public = false;
if(($a->argc == 2) && ($a->argv[1] === 'public')) {
2011-09-15 04:33:42 +02:00
$public = true;
}
else {
if($a->argc != 3 || $a->argv[1] !== 'users')
2011-09-15 04:33:42 +02:00
http_status_exit(500);
$guid = $a->argv[2];
$r = q("SELECT * FROM `user` WHERE `guid` = '%s' AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1",
2011-09-15 04:33:42 +02:00
dbesc($guid)
);
if (! dbm::is_result($r)) {
2011-09-15 04:33:42 +02:00
http_status_exit(500);
}
2011-09-15 04:33:42 +02:00
$importer = $r[0];
}
// It is an application/x-www-form-urlencoded
2013-08-05 23:06:40 +02:00
logger('mod-diaspora: receiving post', LOGGER_DEBUG);
2011-08-15 14:27:24 +02:00
$xml = urldecode($_POST['xml']);
logger('mod-diaspora: new salmon ' . $xml, LOGGER_DATA);
if(! $xml)
2011-08-10 14:10:48 +02:00
http_status_exit(500);
2013-08-05 23:06:40 +02:00
logger('mod-diaspora: message is okay', LOGGER_DEBUG);
$msg = Diaspora::decode($importer,$xml);
2013-08-05 23:06:40 +02:00
logger('mod-diaspora: decoded', LOGGER_DEBUG);
2011-08-17 07:31:14 +02:00
logger('mod-diaspora: decoded msg: ' . print_r($msg,true), LOGGER_DATA);
if(! is_array($msg))
2011-08-10 14:10:48 +02:00
http_status_exit(500);
2013-08-05 23:06:40 +02:00
logger('mod-diaspora: dispatching', LOGGER_DEBUG);
2011-09-15 04:33:42 +02:00
$ret = 0;
if($public) {
Diaspora::dispatch_public($msg);
2016-03-13 19:47:02 +01:00
} else {
$ret = Diaspora::dispatch($importer,$msg);
2016-03-13 19:47:02 +01:00
}
2011-09-15 04:33:42 +02:00
http_status_exit(($ret) ? $ret : 200);
2011-08-10 14:10:48 +02:00
// NOTREACHED
}