friendica/mod/receive.php

107 lines
2.4 KiB
PHP
Raw Normal View History

<?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-30 09:51:59 +02:00
function receive_post(&$a) {
if($a->argc != 3 || $a->argv[1] !== 'users')
2011-08-10 14:10:48 +02:00
http_status_exit(500);
$guid = $a->argv[2];
$r = q("SELECT * FROM `user` WHERE `guid` = '%s' LIMIT 1",
dbesc($guid)
);
if(! count($r))
2011-08-10 14:10:48 +02:00
http_status_exit(500);
$importer = $r[0];
// I really don't know why we need urldecode - PHP should be doing this for us.
// It is an application/x-www-form-urlencoded
2011-08-15 14:27:24 +02:00
$xml = urldecode($_POST['xml']);
logger('mod-diaspora: new salmon ' . $xml, LOGGER_DATA);
if(! $xml)
2011-08-10 14:10:48 +02:00
http_status_exit(500);
2011-08-09 11:53:51 +02:00
$msg = diaspora_decode($importer,$xml);
logger('mod-diaspora: decoded msg: ' . $msg, LOGGER_DATA);
2011-08-09 11:53:51 +02:00
if(! $msg)
2011-08-10 14:10:48 +02:00
http_status_exit(500);
2011-08-15 14:27:24 +02:00
$parsed_xml = parse_xml_string($msg,false);
2011-08-10 14:10:48 +02:00
$xmlbase = $parsed_xml->post;
// If we reached this point, the message is good.
// Now let's figure out if the author is allowed to send us stuff.
$r = q("SELECT * FROM `contact` WHERE `network` = 'dspr' AND ( `url` = '%s' OR `alias` = '%s')
AND `uid` = %d LIMIT 1",
dbesc($author_link),
dbesc($author_link),
intval($importer['uid'])
);
if(! count($r)) {
logger('mod-diaspora: Author unknown to us.');
}
// is this a follower? Or have we ignored the person?
// If so we can not accept this post.
2011-08-10 14:10:48 +02:00
// However we will accept a sharing e.g. friend request
// or a retraction of same.
$allow_blocked = (($xmlbase->request || ($xmlbase->retraction && $xmlbase->retraction->type == 'Person')) ? true : false);
if((count($r))
&& (($r[0]['rel'] == CONTACT_IS_FOLLOWER) || ($r[0]['blocked']) || ($r[0]['readonly']))
&& (! $allow_blocked)) {
2011-08-10 14:10:48 +02:00
logger('mod-diaspora: Ignoring this author.');
http_status_exit(202);
// NOTREACHED
}
require_once('include/items.php');
2011-08-10 14:10:48 +02:00
$contact = ((count($r)) ? $r[0] : null);
2011-07-30 09:31:00 +02:00
2011-08-10 14:10:48 +02:00
if($xmlbase->request) {
diaspora_request($importer,$contact,$xmlbase->request);
}
elseif($xmlbase->status_message) {
diaspora_post($importer,$contact,$xmlbase->status_message);
}
elseif($xmlbase->comment) {
diaspora_comment($importer,$contact,$xmlbase->comment);
}
elseif($xmlbase->like) {
diaspora_like($importer,$contact,$xmlbase->like);
}
elseif($xmlbase->retraction) {
diaspora_retraction($importer,$contact,$xmlbase->retraction);
}
else {
logger('mod-diaspora: unknown message type: ' . print_r($xmlbase,true));
}
2011-08-10 14:10:48 +02:00
http_status_exit(200);
// NOTREACHED
}