2010-10-07 02:46:44 +00:00
|
|
|
<?php
|
2017-11-16 04:09:11 +00:00
|
|
|
/**
|
|
|
|
* @file mod/salmon.php
|
|
|
|
*/
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2017-11-07 02:22:52 +00:00
|
|
|
use Friendica\Core\PConfig;
|
2018-01-27 16:59:10 +00:00
|
|
|
use Friendica\Core\System;
|
2017-11-08 03:57:46 +00:00
|
|
|
use Friendica\Database\DBM;
|
2018-01-09 14:59:52 +00:00
|
|
|
use Friendica\Model\Contact;
|
2017-11-16 04:09:11 +00:00
|
|
|
use Friendica\Protocol\OStatus;
|
2017-12-02 14:32:45 +00:00
|
|
|
use Friendica\Protocol\Salmon;
|
2017-12-30 16:51:49 +00:00
|
|
|
use Friendica\Util\Crypto;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2017-11-16 04:09:11 +00:00
|
|
|
require_once 'include/items.php';
|
2010-10-21 11:53:43 +00:00
|
|
|
|
2017-01-09 12:14:55 +00:00
|
|
|
function salmon_post(App $a) {
|
2010-10-07 02:46:44 +00:00
|
|
|
|
|
|
|
$xml = file_get_contents('php://input');
|
2010-10-27 05:09:13 +00:00
|
|
|
|
2018-02-22 09:57:06 +00:00
|
|
|
logger('new salmon ' . $xml, LOGGER_DATA);
|
2010-10-07 02:46:44 +00:00
|
|
|
|
|
|
|
$nick = (($a->argc > 1) ? notags(trim($a->argv[1])) : '');
|
|
|
|
$mentions = (($a->argc > 2 && $a->argv[2] === 'mention') ? true : false);
|
|
|
|
|
2012-11-02 20:43:47 +00:00
|
|
|
$r = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1",
|
2010-10-07 02:46:44 +00:00
|
|
|
dbesc($nick)
|
|
|
|
);
|
2017-11-08 03:57:46 +00:00
|
|
|
if (! DBM::is_result($r)) {
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(500);
|
2016-12-20 09:10:33 +00:00
|
|
|
}
|
2010-10-07 02:46:44 +00:00
|
|
|
|
|
|
|
$importer = $r[0];
|
|
|
|
|
2010-10-21 11:53:43 +00:00
|
|
|
// parse the xml
|
|
|
|
|
|
|
|
$dom = simplexml_load_string($xml,'SimpleXMLElement',0,NAMESPACE_SALMON_ME);
|
|
|
|
|
2018-02-14 05:07:26 +00:00
|
|
|
$base = null;
|
2010-10-21 11:53:43 +00:00
|
|
|
|
2018-02-14 05:07:26 +00:00
|
|
|
// figure out where in the DOM tree our data is hiding
|
2017-03-21 16:02:59 +00:00
|
|
|
if($dom->provenance->data)
|
2010-10-21 11:53:43 +00:00
|
|
|
$base = $dom->provenance;
|
2017-03-21 16:02:59 +00:00
|
|
|
elseif($dom->env->data)
|
2010-10-21 11:53:43 +00:00
|
|
|
$base = $dom->env;
|
2017-03-21 16:02:59 +00:00
|
|
|
elseif($dom->data)
|
2010-10-21 11:53:43 +00:00
|
|
|
$base = $dom;
|
2015-01-20 21:54:25 +00:00
|
|
|
|
2017-03-21 16:02:59 +00:00
|
|
|
if(! $base) {
|
2018-02-22 09:57:06 +00:00
|
|
|
logger('unable to locate salmon data in xml ');
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(400);
|
2010-10-21 11:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Stash the signature away for now. We have to find their key or it won't be good for anything.
|
|
|
|
|
|
|
|
|
|
|
|
$signature = base64url_decode($base->sig);
|
2010-10-21 22:32:09 +00:00
|
|
|
|
|
|
|
// unpack the data
|
2010-10-21 11:53:43 +00:00
|
|
|
|
2010-10-21 22:32:09 +00:00
|
|
|
// strip whitespace so our data element will return to one big base64 blob
|
2018-01-15 13:05:12 +00:00
|
|
|
$data = str_replace([" ","\t","\r","\n"],["","","",""],$base->data);
|
2010-10-21 22:32:09 +00:00
|
|
|
|
|
|
|
// stash away some other stuff for later
|
|
|
|
|
2010-10-21 11:53:43 +00:00
|
|
|
$type = $base->data[0]->attributes()->type[0];
|
2010-10-21 22:32:09 +00:00
|
|
|
$keyhash = $base->sig[0]->attributes()->keyhash[0];
|
2010-10-21 11:53:43 +00:00
|
|
|
$encoding = $base->encoding;
|
|
|
|
$alg = $base->alg;
|
|
|
|
|
2011-08-05 05:37:45 +00:00
|
|
|
// Salmon magic signatures have evolved and there is no way of knowing ahead of time which
|
|
|
|
// flavour we have. We'll try and verify it regardless.
|
2010-10-21 11:53:43 +00:00
|
|
|
|
2010-10-21 22:32:09 +00:00
|
|
|
$stnet_signed_data = $data;
|
2011-08-05 05:37:45 +00:00
|
|
|
|
2010-10-21 22:32:09 +00:00
|
|
|
$signed_data = $data . '.' . base64url_encode($type) . '.' . base64url_encode($encoding) . '.' . base64url_encode($alg);
|
|
|
|
|
2017-04-19 21:37:00 +00:00
|
|
|
$compliant_format = str_replace('=', '', $signed_data);
|
2011-08-05 05:37:45 +00:00
|
|
|
|
|
|
|
|
2010-10-21 22:32:09 +00:00
|
|
|
// decode the data
|
|
|
|
$data = base64url_decode($data);
|
2010-10-21 11:53:43 +00:00
|
|
|
|
2017-11-16 04:09:11 +00:00
|
|
|
$author = OStatus::salmonAuthor($data, $importer);
|
2015-07-13 06:06:51 +00:00
|
|
|
$author_link = $author["author-link"];
|
2010-10-21 11:53:43 +00:00
|
|
|
|
2017-03-21 16:02:59 +00:00
|
|
|
if(! $author_link) {
|
2018-02-22 09:57:06 +00:00
|
|
|
logger('Could not retrieve author URI.');
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(400);
|
2010-10-21 11:53:43 +00:00
|
|
|
}
|
2010-10-07 02:46:44 +00:00
|
|
|
|
2010-10-21 22:32:09 +00:00
|
|
|
// Once we have the author URI, go to the web and try to find their public key
|
2010-10-07 02:46:44 +00:00
|
|
|
|
2018-02-22 09:57:06 +00:00
|
|
|
logger('Fetching key for ' . $author_link);
|
2010-10-07 02:46:44 +00:00
|
|
|
|
2017-12-02 14:32:45 +00:00
|
|
|
$key = Salmon::getKey($author_link, $keyhash);
|
2010-10-21 11:53:43 +00:00
|
|
|
|
2017-03-21 16:02:59 +00:00
|
|
|
if(! $key) {
|
2018-02-22 09:57:06 +00:00
|
|
|
logger('Could not retrieve author key.');
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(400);
|
2010-10-21 11:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$key_info = explode('.',$key);
|
|
|
|
|
|
|
|
$m = base64url_decode($key_info[1]);
|
|
|
|
$e = base64url_decode($key_info[2]);
|
2010-10-21 22:32:09 +00:00
|
|
|
|
2018-02-22 09:57:06 +00:00
|
|
|
logger('key details: ' . print_r($key_info,true), LOGGER_DEBUG);
|
2010-10-21 11:53:43 +00:00
|
|
|
|
2017-12-30 16:51:49 +00:00
|
|
|
$pubkey = Crypto::meToPem($m, $e);
|
2010-10-21 11:53:43 +00:00
|
|
|
|
|
|
|
// We should have everything we need now. Let's see if it verifies.
|
|
|
|
|
2017-04-19 21:37:00 +00:00
|
|
|
// Try GNU Social format
|
2017-12-30 16:51:49 +00:00
|
|
|
$verify = Crypto::rsaVerify($signed_data, $signature, $pubkey);
|
2017-04-19 21:37:00 +00:00
|
|
|
$mode = 1;
|
2011-08-05 05:37:45 +00:00
|
|
|
|
2017-04-19 21:37:00 +00:00
|
|
|
if (! $verify) {
|
2018-02-22 09:57:06 +00:00
|
|
|
logger('message did not verify using protocol. Trying compliant format.');
|
2017-12-30 16:51:49 +00:00
|
|
|
$verify = Crypto::rsaVerify($compliant_format, $signature, $pubkey);
|
2017-04-19 21:37:00 +00:00
|
|
|
$mode = 2;
|
2015-07-13 06:06:51 +00:00
|
|
|
}
|
2010-10-21 11:53:43 +00:00
|
|
|
|
2017-04-19 21:37:00 +00:00
|
|
|
if (! $verify) {
|
2018-02-22 09:57:06 +00:00
|
|
|
logger('message did not verify using padding. Trying old statusnet format.');
|
2017-12-30 16:51:49 +00:00
|
|
|
$verify = Crypto::rsaVerify($stnet_signed_data, $signature, $pubkey);
|
2017-04-19 21:37:00 +00:00
|
|
|
$mode = 3;
|
2015-07-13 06:06:51 +00:00
|
|
|
}
|
2010-10-21 22:32:09 +00:00
|
|
|
|
2017-04-19 21:37:00 +00:00
|
|
|
if (! $verify) {
|
2018-02-22 09:57:06 +00:00
|
|
|
logger('Message did not verify. Discarding.');
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(400);
|
2010-10-21 11:53:43 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 09:57:06 +00:00
|
|
|
logger('Message verified with mode '.$mode);
|
2010-10-21 11:53:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* If we reached this point, the message is good. Now let's figure out if the author is allowed to send us stuff.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-07-13 06:06:51 +00:00
|
|
|
$r = q("SELECT * FROM `contact` WHERE `network` IN ('%s', '%s')
|
|
|
|
AND (`nurl` = '%s' OR `alias` = '%s' OR `alias` = '%s')
|
|
|
|
AND `uid` = %d LIMIT 1",
|
2012-06-08 03:20:13 +00:00
|
|
|
dbesc(NETWORK_OSTATUS),
|
2015-07-13 06:06:51 +00:00
|
|
|
dbesc(NETWORK_DFRN),
|
|
|
|
dbesc(normalise_link($author_link)),
|
2010-10-25 03:39:24 +00:00
|
|
|
dbesc($author_link),
|
2015-07-13 06:06:51 +00:00
|
|
|
dbesc(normalise_link($author_link)),
|
2010-10-21 11:53:43 +00:00
|
|
|
intval($importer['uid'])
|
|
|
|
);
|
2017-11-08 03:57:46 +00:00
|
|
|
if (! DBM::is_result($r)) {
|
2018-02-22 09:57:06 +00:00
|
|
|
logger('Author ' . $author_link . ' unknown to user ' . $importer['uid'] . '.');
|
2017-11-07 02:22:52 +00:00
|
|
|
if(PConfig::get($importer['uid'],'system','ostatus_autofriend')) {
|
2018-01-09 16:40:25 +00:00
|
|
|
$result = Contact::createFromProbe($importer['uid'], $author_link);
|
2017-03-21 16:02:59 +00:00
|
|
|
if($result['success']) {
|
2017-01-09 12:14:55 +00:00
|
|
|
$r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND ( `url` = '%s' OR `alias` = '%s')
|
2012-06-08 03:20:13 +00:00
|
|
|
AND `uid` = %d LIMIT 1",
|
|
|
|
dbesc(NETWORK_OSTATUS),
|
|
|
|
dbesc($author_link),
|
|
|
|
dbesc($author_link),
|
|
|
|
intval($importer['uid'])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2015-01-20 21:54:25 +00:00
|
|
|
}
|
2011-07-02 00:39:16 +00:00
|
|
|
|
2015-07-13 12:34:28 +00:00
|
|
|
// Have we ignored the person?
|
2011-07-02 00:39:16 +00:00
|
|
|
// If so we can not accept this post.
|
|
|
|
|
2017-11-08 03:57:46 +00:00
|
|
|
//if((DBM::is_result($r)) && (($r[0]['readonly']) || ($r[0]['rel'] == CONTACT_IS_FOLLOWER) || ($r[0]['blocked']))) {
|
|
|
|
if (DBM::is_result($r) && $r[0]['blocked']) {
|
2018-02-22 09:57:06 +00:00
|
|
|
logger('Ignoring this author.');
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(202);
|
2010-10-27 02:01:16 +00:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2015-07-13 12:34:28 +00:00
|
|
|
// Placeholder for hub discovery.
|
2010-10-21 11:53:43 +00:00
|
|
|
$hub = '';
|
|
|
|
|
2017-11-08 03:57:46 +00:00
|
|
|
$contact_rec = ((DBM::is_result($r)) ? $r[0] : null);
|
2011-01-14 22:56:13 +00:00
|
|
|
|
2017-11-16 04:09:11 +00:00
|
|
|
OStatus::import($data, $importer, $contact_rec, $hub);
|
2010-10-07 02:46:44 +00:00
|
|
|
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(200);
|
2010-10-07 02:46:44 +00:00
|
|
|
}
|