2011-07-20 06:23:47 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Diaspora endpoint
|
|
|
|
*/
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2011-07-20 06:23:47 +02:00
|
|
|
|
|
|
|
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');
|
2011-07-20 06:23:47 +02:00
|
|
|
|
2017-01-09 13:14:55 +01:00
|
|
|
function receive_post(App $a) {
|
2017-05-07 15:11:11 +02:00
|
|
|
$enabled = intval(get_config('system', 'diaspora_enabled'));
|
|
|
|
if (!$enabled) {
|
2012-04-05 05:45:48 +02:00
|
|
|
logger('mod-diaspora: disabled');
|
|
|
|
http_status_exit(500);
|
|
|
|
}
|
|
|
|
|
2011-09-15 04:33:42 +02:00
|
|
|
$public = false;
|
2011-07-20 06:23:47 +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;
|
2017-05-07 15:11:11 +02:00
|
|
|
} else {
|
2011-07-20 06:23:47 +02:00
|
|
|
|
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];
|
|
|
|
|
2017-05-07 22:52:00 +02:00
|
|
|
$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);
|
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);
|
|
|
|
|
2011-08-15 14:27:24 +02:00
|
|
|
$xml = urldecode($_POST['xml']);
|
2011-07-20 06:23:47 +02:00
|
|
|
|
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: message is in the old format', LOGGER_DEBUG);
|
|
|
|
$msg = Diaspora::decode($importer, $xml);
|
|
|
|
}
|
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)) {
|
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);
|
|
|
|
|
2017-05-17 21:25:30 +02:00
|
|
|
$ret = true;
|
2017-05-07 15:11:11 +02:00
|
|
|
if ($public) {
|
2016-12-20 18:44:15 +01:00
|
|
|
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
|
|
|
}
|
2011-07-20 06:23:47 +02:00
|
|
|
|
2017-05-17 21:25:30 +02:00
|
|
|
http_status_exit(($ret) ? 200 : 500);
|
2011-08-10 14:10:48 +02:00
|
|
|
// NOTREACHED
|
2011-07-20 06:23:47 +02:00
|
|
|
}
|
2016-02-07 15:11:34 +01:00
|
|
|
|