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