2011-07-20 06:23:47 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2017-12-02 15:32:45 +01:00
|
|
|
* @file mod/receive.php
|
|
|
|
* @brief Diaspora endpoint
|
2011-07-20 06:23:47 +02:00
|
|
|
*/
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-01-27 17:59:10 +01:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2017-11-08 01:37:53 +01:00
|
|
|
use Friendica\Protocol\Diaspora;
|
2011-07-20 06:23:47 +02:00
|
|
|
|
2017-12-02 15:32:45 +01:00
|
|
|
/**
|
|
|
|
* @param object $a App
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function receive_post(App $a)
|
|
|
|
{
|
2017-11-07 03:22:52 +01:00
|
|
|
$enabled = intval(Config::get('system', 'diaspora_enabled'));
|
2017-05-07 15:11:11 +02:00
|
|
|
if (!$enabled) {
|
2012-04-05 05:45:48 +02:00
|
|
|
logger('mod-diaspora: disabled');
|
2018-01-27 17:59:10 +01:00
|
|
|
System::httpExit(500);
|
2012-04-05 05:45:48 +02:00
|
|
|
}
|
|
|
|
|
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;
|
2018-07-20 07:10:16 +02:00
|
|
|
$importer = [];
|
2017-05-07 15:11:11 +02:00
|
|
|
} else {
|
2017-09-25 06:24:47 +02:00
|
|
|
$public = false;
|
2011-07-20 06:23:47 +02:00
|
|
|
|
2017-05-07 15:11:11 +02:00
|
|
|
if ($a->argc != 3 || $a->argv[1] !== 'users') {
|
2018-01-27 17:59:10 +01:00
|
|
|
System::httpExit(500);
|
2017-05-07 15:11:11 +02:00
|
|
|
}
|
2011-09-15 04:33:42 +02:00
|
|
|
$guid = $a->argv[2];
|
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
$importer = DBA::selectFirst('user', [], ['guid' => $guid, 'account_expired' => false, 'account_removed' => false]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($importer)) {
|
2018-01-27 17:59:10 +01:00
|
|
|
System::httpExit(500);
|
2016-12-20 10:10:33 +01:00
|
|
|
}
|
2011-09-15 04:33:42 +02:00
|
|
|
}
|
2011-07-20 06:23:47 +02:00
|
|
|
|
2011-08-16 02:14:51 +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);
|
|
|
|
|
2018-07-08 11:37:05 +02:00
|
|
|
if (empty($_POST['xml'])) {
|
2017-05-07 15:11:11 +02:00
|
|
|
$postdata = file_get_contents("php://input");
|
2017-12-02 15:32:45 +01:00
|
|
|
if ($postdata == '') {
|
2018-01-27 17:59:10 +01:00
|
|
|
System::httpExit(500);
|
2017-05-07 15:11:11 +02:00
|
|
|
}
|
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);
|
2017-11-23 20:01:58 +01:00
|
|
|
$msg = Diaspora::decodeRaw($importer, $postdata);
|
2017-05-07 15:11:11 +02:00
|
|
|
} else {
|
2018-07-08 11:37:05 +02:00
|
|
|
$xml = urldecode($_POST['xml']);
|
|
|
|
|
2017-09-25 06:24:47 +02:00
|
|
|
logger('mod-diaspora: decode message in the old format', LOGGER_DEBUG);
|
2017-05-07 15:11:11 +02:00
|
|
|
$msg = Diaspora::decode($importer, $xml);
|
2017-09-25 06:24:47 +02:00
|
|
|
|
|
|
|
if ($public && !$msg) {
|
|
|
|
logger('mod-diaspora: decode message in the new format', LOGGER_DEBUG);
|
2017-11-23 20:01:58 +01:00
|
|
|
$msg = Diaspora::decodeRaw($importer, $xml);
|
2017-09-25 06:24:47 +02:00
|
|
|
}
|
2017-05-07 15:11:11 +02:00
|
|
|
}
|
2011-08-16 02:14:51 +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);
|
2011-08-16 02:14:51 +02:00
|
|
|
|
2017-05-07 15:11:11 +02:00
|
|
|
if (!is_array($msg)) {
|
2018-01-27 17:59:10 +01:00
|
|
|
System::httpExit(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);
|
|
|
|
|
2017-05-17 21:25:30 +02:00
|
|
|
$ret = true;
|
2017-05-07 15:11:11 +02:00
|
|
|
if ($public) {
|
2017-11-23 20:01:58 +01:00
|
|
|
Diaspora::dispatchPublic($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
|
|
|
}
|
2011-07-20 06:23:47 +02:00
|
|
|
|
2018-01-27 17:59:10 +01:00
|
|
|
System::httpExit(($ret) ? 200 : 500);
|
2011-08-10 14:10:48 +02:00
|
|
|
// NOTREACHED
|
2011-07-20 06:23:47 +02:00
|
|
|
}
|