friendica/mod/receive.php

82 lines
1.8 KiB
PHP
Raw Normal View History

<?php
/**
* Diaspora endpoint
*/
use Friendica\App;
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) {
2017-05-07 15:11:11 +02:00
$enabled = intval(get_config('system', 'diaspora_enabled'));
if (!$enabled) {
logger('mod-diaspora: disabled');
http_status_exit(500);
}
2017-05-07 15:11:11 +02:00
if (($a->argc == 2) && ($a->argv[1] === 'public')) {
2011-09-15 04:33:42 +02:00
$public = true;
$importer = false;
2017-05-07 15:11:11 +02:00
} else {
$public = false;
2017-05-07 15:11:11 +02:00
if ($a->argc != 3 || $a->argv[1] !== 'users') {
2011-09-15 04:33:42 +02:00
http_status_exit(500);
2017-05-07 15:11:11 +02:00
}
2011-09-15 04:33:42 +02:00
$guid = $a->argv[2];
$importer = dba::select('user', array(), array('guid' => $guid, 'account_expired' => false, 'account_removed' => false), array('limit' => 1));
if (!dbm::is_result($importer)) {
2011-09-15 04:33:42 +02:00
http_status_exit(500);
}
2011-09-15 04:33:42 +02:00
}
// 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']);
2017-05-07 15:11:11 +02:00
if (!$xml) {
$postdata = file_get_contents("php://input");
if ($postdata == '') {
http_status_exit(500);
}
2013-08-05 23:06:40 +02:00
2017-05-07 15:11:11 +02:00
logger('mod-diaspora: message is in the new format', LOGGER_DEBUG);
$msg = Diaspora::decode_raw($importer, $postdata);
} else {
logger('mod-diaspora: decode message in the old format', LOGGER_DEBUG);
2017-05-07 15:11:11 +02:00
$msg = Diaspora::decode($importer, $xml);
if ($public && !$msg) {
logger('mod-diaspora: decode message in the new format', LOGGER_DEBUG);
$msg = Diaspora::decode_raw($importer, $xml);
}
2017-05-07 15:11:11 +02:00
}
2013-08-05 23:06:40 +02:00
logger('mod-diaspora: decoded', LOGGER_DEBUG);
2017-05-07 15:11:11 +02:00
logger('mod-diaspora: decoded msg: ' . print_r($msg, true), LOGGER_DATA);
2017-05-07 15:11:11 +02:00
if (!is_array($msg)) {
2011-08-10 14:10:48 +02:00
http_status_exit(500);
2017-05-07 15:11:11 +02:00
}
2011-08-10 14:10:48 +02:00
2013-08-05 23:06:40 +02:00
logger('mod-diaspora: dispatching', LOGGER_DEBUG);
$ret = true;
2017-05-07 15:11:11 +02:00
if ($public) {
Diaspora::dispatch_public($msg);
2016-03-13 19:47:02 +01:00
} else {
2017-05-07 15:11:11 +02:00
$ret = Diaspora::dispatch($importer, $msg);
2016-03-13 19:47:02 +01:00
}
http_status_exit(($ret) ? 200 : 500);
2011-08-10 14:10:48 +02:00
// NOTREACHED
}