8 require_once('include/salmon.php');
9 require_once('include/crypto.php');
10 require_once('include/diaspora.php');
13 function receive_post(&$a) {
16 $enabled = intval(get_config('system','diaspora_enabled'));
18 logger('mod-diaspora: disabled');
19 http_status_exit(500);
24 if(($a->argc == 2) && ($a->argv[1] === 'public')) {
29 if($a->argc != 3 || $a->argv[1] !== 'users')
30 http_status_exit(500);
34 $r = q("SELECT * FROM `user` WHERE `guid` = '%s' AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1",
38 http_status_exit(500);
43 // It is an application/x-www-form-urlencoded
45 logger('mod-diaspora: receiving post', LOGGER_DEBUG);
47 $xml = urldecode($_POST['xml']);
49 logger('mod-diaspora: new salmon ' . $xml, LOGGER_DATA);
52 http_status_exit(500);
54 logger('mod-diaspora: message is okay', LOGGER_DEBUG);
56 $msg = diaspora_decode($importer,$xml);
58 logger('mod-diaspora: decoded', LOGGER_DEBUG);
60 logger('mod-diaspora: decoded msg: ' . print_r($msg,true), LOGGER_DATA);
63 http_status_exit(500);
65 logger('mod-diaspora: dispatching', LOGGER_DEBUG);
69 diaspora_dispatch_public($msg);
71 $ret = diaspora_dispatch($importer,$msg);
73 http_status_exit(($ret) ? $ret : 200);