friendica/mod/receive.php

87 lines
2.0 KiB
PHP
Raw Normal View History

<?php
/**
* @file mod/receive.php
* @brief Diaspora endpoint
*/
use Friendica\App;
use Friendica\Core\Config;
2018-10-29 22:20:46 +01:00
use Friendica\Core\Logger;
use Friendica\Core\System;
use Friendica\Database\DBA;
use Friendica\Protocol\Diaspora;
/**
* @param object $a App
* @return void
*/
function receive_post(App $a)
{
$enabled = intval(Config::get('system', 'diaspora_enabled'));
2017-05-07 15:11:11 +02:00
if (!$enabled) {
2018-10-29 22:20:46 +01:00
Logger::log('mod-diaspora: disabled');
System::httpExit(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;
2018-07-20 07:10:16 +02:00
$importer = [];
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') {
System::httpExit(500);
2017-05-07 15:11:11 +02:00
}
2011-09-15 04:33:42 +02:00
$guid = $a->argv[2];
$importer = DBA::selectFirst('user', [], ['guid' => $guid, 'account_expired' => false, 'account_removed' => false]);
2018-07-21 14:46:04 +02:00
if (!DBA::isResult($importer)) {
System::httpExit(500);
}
2011-09-15 04:33:42 +02:00
}
// It is an application/x-www-form-urlencoded
Logger::log('mod-diaspora: receiving post', Logger::DEBUG);
2013-08-05 23:06:40 +02:00
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");
if ($postdata == '') {
System::httpExit(500);
2017-05-07 15:11:11 +02:00
}
2013-08-05 23:06:40 +02:00
Logger::log('mod-diaspora: message is in the new format', Logger::DEBUG);
$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']);
Logger::log('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::log('mod-diaspora: decode message in the new format', Logger::DEBUG);
$msg = Diaspora::decodeRaw($importer, $xml);
}
2017-05-07 15:11:11 +02:00
}
Logger::log('mod-diaspora: decoded', Logger::DEBUG);
2013-08-05 23:06:40 +02:00
Logger::log('mod-diaspora: decoded msg: ' . print_r($msg, true), Logger::DATA);
2017-05-07 15:11:11 +02:00
if (!is_array($msg)) {
System::httpExit(500);
2017-05-07 15:11:11 +02:00
}
2011-08-10 14:10:48 +02:00
Logger::log('mod-diaspora: dispatching', Logger::DEBUG);
2013-08-05 23:06:40 +02:00
$ret = true;
2017-05-07 15:11:11 +02:00
if ($public) {
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
}
System::httpExit(($ret) ? 200 : 500);
2011-08-10 14:10:48 +02:00
// NOTREACHED
}