2011-07-20 06:23:47 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Diaspora endpoint
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2015-07-11 14:36:04 +02:00
|
|
|
|
2011-07-20 06:23:47 +02:00
|
|
|
function receive_post(&$a) {
|
|
|
|
|
2012-04-05 05:45:48 +02:00
|
|
|
|
|
|
|
$enabled = intval(get_config('system','diaspora_enabled'));
|
|
|
|
if(! $enabled) {
|
|
|
|
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
|
|
|
|
2011-09-15 04:33:42 +02:00
|
|
|
if(($a->argc == 2) && ($a->argv[1] === 'public')) {
|
|
|
|
$public = true;
|
|
|
|
}
|
|
|
|
else {
|
2011-07-20 06:23:47 +02:00
|
|
|
|
2011-09-15 04:33:42 +02:00
|
|
|
if($a->argc != 3 || $a->argv[1] !== 'users')
|
|
|
|
http_status_exit(500);
|
|
|
|
|
|
|
|
$guid = $a->argv[2];
|
|
|
|
|
2012-11-02 21:43:47 +01:00
|
|
|
$r = q("SELECT * FROM `user` WHERE `guid` = '%s' AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1",
|
2011-09-15 04:33:42 +02:00
|
|
|
dbesc($guid)
|
|
|
|
);
|
|
|
|
if(! count($r))
|
|
|
|
http_status_exit(500);
|
2011-07-20 06:23:47 +02:00
|
|
|
|
2011-09-15 04:33:42 +02:00
|
|
|
$importer = $r[0];
|
|
|
|
}
|
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
|
|
|
|
|
|
|
logger('mod-diaspora: new salmon ' . $xml, LOGGER_DATA);
|
|
|
|
|
|
|
|
if(! $xml)
|
2011-08-10 14:10:48 +02:00
|
|
|
http_status_exit(500);
|
2011-07-20 06:23:47 +02:00
|
|
|
|
2013-08-05 23:06:40 +02:00
|
|
|
logger('mod-diaspora: message is okay', LOGGER_DEBUG);
|
|
|
|
|
2011-08-09 11:53:51 +02:00
|
|
|
$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);
|
|
|
|
|
2011-08-17 07:31:14 +02:00
|
|
|
logger('mod-diaspora: decoded msg: ' . print_r($msg,true), LOGGER_DATA);
|
2011-08-16 02:14:51 +02:00
|
|
|
|
2011-08-17 07:31:14 +02:00
|
|
|
if(! is_array($msg))
|
2011-08-10 14:10:48 +02:00
|
|
|
http_status_exit(500);
|
|
|
|
|
2013-08-05 23:06:40 +02:00
|
|
|
logger('mod-diaspora: dispatching', LOGGER_DEBUG);
|
|
|
|
|
2011-09-15 04:33:42 +02:00
|
|
|
$ret = 0;
|
|
|
|
if($public)
|
|
|
|
diaspora_dispatch_public($msg);
|
|
|
|
else
|
|
|
|
$ret = diaspora_dispatch($importer,$msg);
|
2011-07-20 06:23:47 +02:00
|
|
|
|
2011-09-15 04:33:42 +02:00
|
|
|
http_status_exit(($ret) ? $ret : 200);
|
2011-08-10 14:10:48 +02:00
|
|
|
// NOTREACHED
|
2011-07-20 06:23:47 +02:00
|
|
|
}
|
|
|
|
|