2010-07-04 23:45:56 -04:00
|
|
|
<?php
|
|
|
|
|
2016-11-28 10:23:47 -05:00
|
|
|
/**
|
|
|
|
* @file mod/dfrn_notify.php
|
|
|
|
* @brief The dfrn notify endpoint
|
|
|
|
* @see PDF with dfrn specs: https://github.com/friendica/friendica/blob/master/spec/dfrn2.pdf
|
|
|
|
*/
|
2017-04-30 00:07:00 -04:00
|
|
|
|
|
|
|
use Friendica\App;
|
2017-11-06 21:22:52 -05:00
|
|
|
use Friendica\Core\Config;
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2018-01-27 11:59:10 -05:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2017-12-07 09:04:24 -05:00
|
|
|
use Friendica\Model\Contact;
|
2019-01-06 23:49:13 -05:00
|
|
|
use Friendica\Model\User;
|
2017-11-07 22:57:46 -05:00
|
|
|
use Friendica\Protocol\DFRN;
|
2018-03-23 01:08:47 -04:00
|
|
|
use Friendica\Protocol\Diaspora;
|
2019-07-30 18:26:01 -04:00
|
|
|
use Friendica\Util\Network;
|
2019-10-20 07:00:08 -04:00
|
|
|
use Friendica\Util\Strings;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2017-01-09 07:12:54 -05:00
|
|
|
function dfrn_notify_post(App $a) {
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log(__function__, Logger::TRACE);
|
2018-03-16 02:58:54 -04:00
|
|
|
|
2019-07-30 18:26:01 -04:00
|
|
|
$postdata = Network::postdata();
|
2018-03-23 01:08:47 -04:00
|
|
|
|
|
|
|
if (empty($_POST) || !empty($postdata)) {
|
|
|
|
$data = json_decode($postdata);
|
|
|
|
if (is_object($data)) {
|
2019-10-15 09:01:17 -04:00
|
|
|
$nick = $a->argv[1] ?? '';
|
2018-03-23 01:08:47 -04:00
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
$user = DBA::selectFirst('user', [], ['nickname' => $nick, 'account_expired' => false, 'account_removed' => false]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($user)) {
|
2019-05-01 23:16:10 -04:00
|
|
|
throw new \Friendica\Network\HTTPException\InternalServerErrorException();
|
2018-03-23 01:08:47 -04:00
|
|
|
}
|
2018-04-22 06:42:01 -04:00
|
|
|
dfrn_dispatch_private($user, $postdata);
|
|
|
|
} elseif (!dfrn_dispatch_public($postdata)) {
|
2018-03-23 01:08:47 -04:00
|
|
|
require_once 'mod/salmon.php';
|
|
|
|
salmon_post($a, $postdata);
|
|
|
|
}
|
2018-03-16 02:58:54 -04:00
|
|
|
}
|
|
|
|
|
2018-11-30 09:06:22 -05:00
|
|
|
$dfrn_id = (!empty($_POST['dfrn_id']) ? Strings::escapeTags(trim($_POST['dfrn_id'])) : '');
|
|
|
|
$dfrn_version = (!empty($_POST['dfrn_version']) ? (float) $_POST['dfrn_version'] : 2.0);
|
|
|
|
$challenge = (!empty($_POST['challenge']) ? Strings::escapeTags(trim($_POST['challenge'])) : '');
|
2019-10-15 09:01:17 -04:00
|
|
|
$data = $_POST['data'] ?? '';
|
|
|
|
$key = $_POST['key'] ?? '';
|
2018-11-30 09:06:22 -05:00
|
|
|
$rino_remote = (!empty($_POST['rino']) ? intval($_POST['rino']) : 0);
|
|
|
|
$dissolve = (!empty($_POST['dissolve']) ? intval($_POST['dissolve']) : 0);
|
|
|
|
$perm = (!empty($_POST['perm']) ? Strings::escapeTags(trim($_POST['perm'])) : 'r');
|
|
|
|
$ssl_policy = (!empty($_POST['ssl_policy']) ? Strings::escapeTags(trim($_POST['ssl_policy'])): 'none');
|
|
|
|
$page = (!empty($_POST['page']) ? intval($_POST['page']) : 0);
|
2011-04-10 21:38:55 -04:00
|
|
|
|
2012-05-30 01:57:15 -04:00
|
|
|
$forum = (($page == 1) ? 1 : 0);
|
|
|
|
$prv = (($page == 2) ? 1 : 0);
|
|
|
|
|
2011-04-10 21:38:55 -04:00
|
|
|
$writable = (-1);
|
2017-03-25 09:07:26 -04:00
|
|
|
if ($dfrn_version >= 2.21) {
|
2011-04-10 21:38:55 -04:00
|
|
|
$writable = (($perm === 'rw') ? 1 : 0);
|
|
|
|
}
|
2010-09-13 00:25:37 -04:00
|
|
|
|
|
|
|
$direction = (-1);
|
2017-03-25 09:07:26 -04:00
|
|
|
if (strpos($dfrn_id, ':') == 1) {
|
|
|
|
$direction = intval(substr($dfrn_id, 0, 1));
|
|
|
|
$dfrn_id = substr($dfrn_id, 2);
|
2010-09-13 00:25:37 -04:00
|
|
|
}
|
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
if (!DBA::exists('challenge', ['dfrn-id' => $dfrn_id, 'challenge' => $challenge])) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('could not match challenge to dfrn_id ' . $dfrn_id . ' challenge=' . $challenge);
|
2018-01-27 11:59:10 -05:00
|
|
|
System::xmlExit(3, 'Could not match challenge');
|
2010-11-23 18:55:11 -05:00
|
|
|
}
|
2010-07-04 23:45:56 -04:00
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::delete('challenge', ['dfrn-id' => $dfrn_id, 'challenge' => $challenge]);
|
2010-07-04 23:45:56 -04:00
|
|
|
|
2018-08-19 09:37:56 -04:00
|
|
|
$user = DBA::selectFirst('user', ['uid'], ['nickname' => $a->argv[1]]);
|
|
|
|
if (!DBA::isResult($user)) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('User not found for nickname ' . $a->argv[1]);
|
2018-08-19 09:37:56 -04:00
|
|
|
System::xmlExit(3, 'User not found');
|
|
|
|
}
|
2010-07-16 04:26:42 -04:00
|
|
|
|
2018-08-19 09:37:56 -04:00
|
|
|
// find the local user who owns this relationship.
|
|
|
|
$condition = [];
|
2017-08-16 00:08:57 -04:00
|
|
|
switch ($direction) {
|
2010-09-13 00:25:37 -04:00
|
|
|
case (-1):
|
2018-09-12 02:05:14 -04:00
|
|
|
$condition = ["(`issued-id` = ? OR `dfrn-id` = ?) AND `uid` = ?", $dfrn_id, $dfrn_id, $user['uid']];
|
2010-09-13 00:25:37 -04:00
|
|
|
break;
|
|
|
|
case 0:
|
2018-09-12 02:05:14 -04:00
|
|
|
$condition = ['issued-id' => $dfrn_id, 'duplex' => true, 'uid' => $user['uid']];
|
2010-09-13 00:25:37 -04:00
|
|
|
break;
|
|
|
|
case 1:
|
2018-09-12 02:05:14 -04:00
|
|
|
$condition = ['dfrn-id' => $dfrn_id, 'duplex' => true, 'uid' => $user['uid']];
|
2010-09-13 00:25:37 -04:00
|
|
|
break;
|
|
|
|
default:
|
2018-01-27 11:59:10 -05:00
|
|
|
System::xmlExit(3, 'Invalid direction');
|
2010-09-13 00:25:37 -04:00
|
|
|
break; // NOTREACHED
|
|
|
|
}
|
2013-11-02 05:49:44 -04:00
|
|
|
|
2018-08-19 09:37:56 -04:00
|
|
|
$contact = DBA::selectFirst('contact', ['id'], $condition);
|
|
|
|
if (!DBA::isResult($contact)) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('contact not found for dfrn_id ' . $dfrn_id);
|
2018-01-27 11:59:10 -05:00
|
|
|
System::xmlExit(3, 'Contact not found');
|
2010-07-28 01:32:21 -04:00
|
|
|
}
|
2010-07-16 04:26:42 -04:00
|
|
|
|
2013-11-02 05:49:44 -04:00
|
|
|
// $importer in this case contains the contact record for the remote contact joined with the user record of our user.
|
2018-08-19 09:37:56 -04:00
|
|
|
$importer = DFRN::getImporter($contact['id'], $user['uid']);
|
2010-07-16 04:26:42 -04:00
|
|
|
|
2017-03-25 09:07:26 -04:00
|
|
|
if ((($writable != (-1)) && ($writable != $importer['writable'])) || ($importer['forum'] != $forum) || ($importer['prv'] != $prv)) {
|
2018-04-21 05:55:41 -04:00
|
|
|
$fields = ['writable' => ($writable == (-1)) ? $importer['writable'] : $writable,
|
|
|
|
'forum' => $forum, 'prv' => $prv];
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::update('contact', $fields, ['id' => $importer['id']]);
|
2018-04-21 05:55:41 -04:00
|
|
|
|
2017-03-25 09:07:26 -04:00
|
|
|
if ($writable != (-1)) {
|
2012-03-15 19:38:26 -04:00
|
|
|
$importer['writable'] = $writable;
|
2017-03-25 09:07:26 -04:00
|
|
|
}
|
2012-03-15 19:38:26 -04:00
|
|
|
$importer['forum'] = $page;
|
2011-04-10 22:29:21 -04:00
|
|
|
}
|
|
|
|
|
2012-03-14 23:36:23 -04:00
|
|
|
|
2012-04-03 02:07:26 -04:00
|
|
|
// if contact's ssl policy changed, update our links
|
2012-03-14 23:36:23 -04:00
|
|
|
|
2018-01-27 11:13:41 -05:00
|
|
|
$importer = Contact::updateSslPolicy($importer, $ssl_policy);
|
2012-03-28 20:21:56 -04:00
|
|
|
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('data: ' . $data, Logger::DATA);
|
2010-10-04 07:22:34 -04:00
|
|
|
|
2017-03-25 09:07:26 -04:00
|
|
|
if ($dissolve == 1) {
|
2017-11-19 17:03:39 -05:00
|
|
|
// Relationship is dissolved permanently
|
|
|
|
Contact::remove($importer['id']);
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('relationship dissolved : ' . $importer['name'] . ' dissolved ' . $importer['username']);
|
2018-01-27 11:59:10 -05:00
|
|
|
System::xmlExit(0, 'relationship dissolved');
|
2011-01-26 05:32:00 -05:00
|
|
|
}
|
|
|
|
|
2017-11-06 21:22:52 -05:00
|
|
|
$rino = Config::get('system', 'rino_encrypt');
|
2015-08-29 05:38:40 -04:00
|
|
|
$rino = intval($rino);
|
|
|
|
|
2017-03-25 09:07:26 -04:00
|
|
|
if (strlen($key)) {
|
2015-08-29 05:38:40 -04:00
|
|
|
|
2015-06-23 11:36:26 -04:00
|
|
|
// if local rino is lower than remote rino, abort: should not happen!
|
|
|
|
// but only for $remote_rino > 1, because old code did't send rino version
|
2018-01-19 11:34:56 -05:00
|
|
|
if ($rino_remote > 1 && $rino < $rino_remote) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log("rino version '$rino_remote' is lower than supported '$rino'");
|
2018-01-27 11:59:10 -05:00
|
|
|
System::xmlExit(0, "rino version '$rino_remote' is lower than supported '$rino'");
|
2015-06-23 11:36:26 -04:00
|
|
|
}
|
2015-08-29 05:38:40 -04:00
|
|
|
|
2010-11-30 21:32:34 -05:00
|
|
|
$rawkey = hex2bin(trim($key));
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('rino: md5 raw key: ' . md5($rawkey), Logger::DATA);
|
2018-04-21 05:55:41 -04:00
|
|
|
|
2010-11-30 21:32:34 -05:00
|
|
|
$final_key = '';
|
|
|
|
|
2017-03-25 09:07:26 -04:00
|
|
|
if ($dfrn_version >= 2.1) {
|
2018-04-21 05:55:41 -04:00
|
|
|
if (($importer['duplex'] && strlen($importer['cprvkey'])) || !strlen($importer['cpubkey'])) {
|
2017-03-30 14:30:23 -04:00
|
|
|
openssl_private_decrypt($rawkey, $final_key, $importer['cprvkey']);
|
2017-03-25 09:07:26 -04:00
|
|
|
} else {
|
2017-03-30 14:30:23 -04:00
|
|
|
openssl_public_decrypt($rawkey, $final_key, $importer['cpubkey']);
|
2011-02-02 00:21:47 -05:00
|
|
|
}
|
2017-03-25 09:07:26 -04:00
|
|
|
} else {
|
2018-04-21 05:55:41 -04:00
|
|
|
if (($importer['duplex'] && strlen($importer['cpubkey'])) || !strlen($importer['cprvkey'])) {
|
2017-03-30 14:30:23 -04:00
|
|
|
openssl_public_decrypt($rawkey, $final_key, $importer['cpubkey']);
|
2017-03-25 09:07:26 -04:00
|
|
|
} else {
|
2017-03-30 14:30:23 -04:00
|
|
|
openssl_private_decrypt($rawkey, $final_key, $importer['cprvkey']);
|
2011-02-02 00:21:47 -05:00
|
|
|
}
|
2010-11-30 21:32:34 -05:00
|
|
|
}
|
|
|
|
|
2018-04-21 05:55:41 -04:00
|
|
|
switch ($rino_remote) {
|
2015-06-23 10:13:09 -04:00
|
|
|
case 0:
|
|
|
|
case 1:
|
2018-01-19 11:34:56 -05:00
|
|
|
// we got a key. old code send only the key, without RINO version.
|
|
|
|
// we assume RINO 1 if key and no RINO version
|
2017-11-23 14:01:58 -05:00
|
|
|
$data = DFRN::aesDecrypt(hex2bin($data), $final_key);
|
2015-06-23 10:13:09 -04:00
|
|
|
break;
|
|
|
|
default:
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log("rino: invalid sent version '$rino_remote'");
|
2018-01-27 11:59:10 -05:00
|
|
|
System::xmlExit(0, "Invalid sent version '$rino_remote'");
|
2015-06-23 10:13:09 -04:00
|
|
|
}
|
2015-08-29 05:38:40 -04:00
|
|
|
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('rino: decrypted data: ' . $data, Logger::DATA);
|
2010-11-30 21:32:34 -05:00
|
|
|
}
|
2011-01-25 06:57:10 -05:00
|
|
|
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('Importing post from ' . $importer['addr'] . ' to ' . $importer['nickname'] . ' with the RINO ' . $rino_remote . ' encryption.', Logger::DEBUG);
|
2018-04-21 05:55:41 -04:00
|
|
|
|
2017-11-07 22:57:46 -05:00
|
|
|
$ret = DFRN::import($data, $importer);
|
2018-01-27 11:59:10 -05:00
|
|
|
System::xmlExit($ret, 'Processed');
|
2010-07-16 04:26:42 -04:00
|
|
|
|
2010-10-04 07:22:34 -04:00
|
|
|
// NOTREACHED
|
2010-07-04 23:45:56 -04:00
|
|
|
}
|
|
|
|
|
2018-04-22 06:42:01 -04:00
|
|
|
function dfrn_dispatch_public($postdata)
|
2018-04-21 05:55:41 -04:00
|
|
|
{
|
2019-10-20 07:00:08 -04:00
|
|
|
$msg = Diaspora::decodeRaw($postdata, '', true);
|
2018-04-22 06:42:01 -04:00
|
|
|
if (!$msg) {
|
|
|
|
// We have to fail silently to be able to hand it over to the salmon parser
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-04-21 05:55:41 -04:00
|
|
|
// Fetch the corresponding public contact
|
2019-06-22 00:17:38 -04:00
|
|
|
$contact_id = Contact::getIdForURL($msg['author']);
|
|
|
|
if (empty($contact_id)) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('Contact not found for address ' . $msg['author']);
|
2018-04-30 08:41:56 -04:00
|
|
|
System::xmlExit(3, 'Contact ' . $msg['author'] . ' not found');
|
2018-04-21 05:55:41 -04:00
|
|
|
}
|
|
|
|
|
2019-06-22 00:17:38 -04:00
|
|
|
$importer = DFRN::getImporter($contact_id);
|
2018-04-21 05:55:41 -04:00
|
|
|
|
|
|
|
// This should never fail
|
2018-08-19 09:37:56 -04:00
|
|
|
if (empty($importer)) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('Contact not found for address ' . $msg['author']);
|
2018-04-30 08:41:56 -04:00
|
|
|
System::xmlExit(3, 'Contact ' . $msg['author'] . ' not found');
|
2018-04-21 05:55:41 -04:00
|
|
|
}
|
|
|
|
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('Importing post from ' . $msg['author'] . ' with the public envelope.', Logger::DEBUG);
|
2018-04-21 05:55:41 -04:00
|
|
|
|
|
|
|
// Now we should be able to import it
|
|
|
|
$ret = DFRN::import($msg['message'], $importer);
|
|
|
|
System::xmlExit($ret, 'Done');
|
|
|
|
}
|
|
|
|
|
2018-04-22 06:42:01 -04:00
|
|
|
function dfrn_dispatch_private($user, $postdata)
|
2018-04-21 05:55:41 -04:00
|
|
|
{
|
2019-10-21 05:34:47 -04:00
|
|
|
$msg = Diaspora::decodeRaw($postdata, $user['prvkey'] ?? '');
|
2018-04-22 06:42:01 -04:00
|
|
|
if (!$msg) {
|
|
|
|
System::xmlExit(4, 'Unable to parse message');
|
|
|
|
}
|
|
|
|
|
2018-04-21 05:55:41 -04:00
|
|
|
// Check if the user has got this contact
|
|
|
|
$cid = Contact::getIdForURL($msg['author'], $user['uid']);
|
|
|
|
if (!$cid) {
|
|
|
|
// Otherwise there should be a public contact
|
|
|
|
$cid = Contact::getIdForURL($msg['author']);
|
|
|
|
if (!$cid) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('Contact not found for address ' . $msg['author']);
|
2018-04-30 08:41:56 -04:00
|
|
|
System::xmlExit(3, 'Contact ' . $msg['author'] . ' not found');
|
2018-04-21 05:55:41 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-19 09:37:56 -04:00
|
|
|
$importer = DFRN::getImporter($cid, $user['uid']);
|
2018-04-21 05:55:41 -04:00
|
|
|
|
|
|
|
// This should never fail
|
2018-08-19 09:37:56 -04:00
|
|
|
if (empty($importer)) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('Contact not found for address ' . $msg['author']);
|
2018-04-30 08:41:56 -04:00
|
|
|
System::xmlExit(3, 'Contact ' . $msg['author'] . ' not found');
|
2018-04-21 05:55:41 -04:00
|
|
|
}
|
|
|
|
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('Importing post from ' . $msg['author'] . ' to ' . $user['nickname'] . ' with the private envelope.', Logger::DEBUG);
|
2018-04-21 05:55:41 -04:00
|
|
|
|
|
|
|
// Now we should be able to import it
|
|
|
|
$ret = DFRN::import($msg['message'], $importer);
|
|
|
|
System::xmlExit($ret, 'Done');
|
|
|
|
}
|
2016-02-07 09:11:34 -05:00
|
|
|
|
2017-01-09 07:12:54 -05:00
|
|
|
function dfrn_notify_content(App $a) {
|
2010-07-04 23:45:56 -04:00
|
|
|
|
2018-11-30 09:06:22 -05:00
|
|
|
if (!empty($_GET['dfrn_id'])) {
|
2010-09-13 00:25:37 -04:00
|
|
|
|
2017-03-25 09:07:26 -04:00
|
|
|
/*
|
|
|
|
* initial communication from external contact, $direction is their direction.
|
|
|
|
* If this is a duplex communication, ours will be the opposite.
|
|
|
|
*/
|
2010-09-13 00:25:37 -04:00
|
|
|
|
2018-11-09 13:29:42 -05:00
|
|
|
$dfrn_id = Strings::escapeTags(trim($_GET['dfrn_id']));
|
2018-11-30 09:06:22 -05:00
|
|
|
$rino_remote = (!empty($_GET['rino']) ? intval($_GET['rino']) : 0);
|
2014-11-08 14:52:15 -05:00
|
|
|
$type = "";
|
|
|
|
$last_update = "";
|
2010-10-12 23:29:04 -04:00
|
|
|
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('new notification dfrn_id=' . $dfrn_id);
|
2010-09-13 00:25:37 -04:00
|
|
|
|
|
|
|
$direction = (-1);
|
2018-04-21 05:55:41 -04:00
|
|
|
if (strpos($dfrn_id,':') == 1) {
|
2010-09-13 00:25:37 -04:00
|
|
|
$direction = intval(substr($dfrn_id,0,1));
|
|
|
|
$dfrn_id = substr($dfrn_id,2);
|
|
|
|
}
|
|
|
|
|
2018-11-08 08:45:46 -05:00
|
|
|
$hash = Strings::getRandomHex();
|
2010-07-04 23:45:56 -04:00
|
|
|
|
|
|
|
$status = 0;
|
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::delete('challenge', ["`expire` < ?", time()]);
|
2010-07-04 23:45:56 -04:00
|
|
|
|
2018-04-21 05:55:41 -04:00
|
|
|
$fields = ['challenge' => $hash, 'dfrn-id' => $dfrn_id, 'expire' => time() + 90,
|
|
|
|
'type' => $type, 'last_update' => $last_update];
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::insert('challenge', $fields);
|
2010-07-04 23:45:56 -04:00
|
|
|
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('challenge=' . $hash, Logger::DATA);
|
2010-09-13 00:25:37 -04:00
|
|
|
|
2018-08-19 09:37:56 -04:00
|
|
|
$user = DBA::selectFirst('user', ['uid'], ['nickname' => $a->argv[1]]);
|
|
|
|
if (!DBA::isResult($user)) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('User not found for nickname ' . $a->argv[1]);
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2018-08-19 09:37:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$condition = [];
|
|
|
|
switch ($direction) {
|
2010-09-13 00:25:37 -04:00
|
|
|
case (-1):
|
2018-09-12 02:05:14 -04:00
|
|
|
$condition = ["(`issued-id` = ? OR `dfrn-id` = ?) AND `uid` = ?", $dfrn_id, $dfrn_id, $user['uid']];
|
2010-09-13 00:25:37 -04:00
|
|
|
$my_id = $dfrn_id;
|
|
|
|
break;
|
|
|
|
case 0:
|
2018-09-12 02:05:14 -04:00
|
|
|
$condition = ['issued-id' => $dfrn_id, 'duplex' => true, 'uid' => $user['uid']];
|
2010-09-13 00:25:37 -04:00
|
|
|
$my_id = '1:' . $dfrn_id;
|
|
|
|
break;
|
|
|
|
case 1:
|
2018-09-12 02:05:14 -04:00
|
|
|
$condition = ['dfrn-id' => $dfrn_id, 'duplex' => true, 'uid' => $user['uid']];
|
2010-09-13 00:25:37 -04:00
|
|
|
$my_id = '0:' . $dfrn_id;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$status = 1;
|
2019-01-07 12:51:48 -05:00
|
|
|
$my_id = '';
|
2018-08-19 09:37:56 -04:00
|
|
|
break;
|
2010-09-13 00:25:37 -04:00
|
|
|
}
|
|
|
|
|
2018-08-19 09:37:56 -04:00
|
|
|
$contact = DBA::selectFirst('contact', ['id'], $condition);
|
|
|
|
if (!DBA::isResult($contact)) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('contact not found for dfrn_id ' . $dfrn_id);
|
2018-08-19 09:37:56 -04:00
|
|
|
System::xmlExit(3, 'Contact not found');
|
|
|
|
}
|
2010-09-13 00:25:37 -04:00
|
|
|
|
2018-08-19 09:37:56 -04:00
|
|
|
// $importer in this case contains the contact record for the remote contact joined with the user record of our user.
|
|
|
|
$importer = DFRN::getImporter($contact['id'], $user['uid']);
|
|
|
|
if (empty($importer)) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('No importer data found for user ' . $a->argv[1] . ' and contact ' . $dfrn_id);
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2016-12-20 04:10:33 -05:00
|
|
|
}
|
2010-07-04 23:45:56 -04:00
|
|
|
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log("Remote rino version: ".$rino_remote." for ".$importer["url"], Logger::DATA);
|
2015-08-29 10:55:25 -04:00
|
|
|
|
2017-03-23 17:22:18 -04:00
|
|
|
$challenge = '';
|
2010-08-05 05:57:03 -04:00
|
|
|
$encrypted_id = '';
|
2017-03-23 17:22:18 -04:00
|
|
|
$id_str = $my_id . '.' . mt_rand(1000,9999);
|
2010-08-05 05:57:03 -04:00
|
|
|
|
2018-09-05 01:02:06 -04:00
|
|
|
$prv_key = trim($importer['cprvkey']);
|
|
|
|
$pub_key = trim($importer['cpubkey']);
|
2018-08-19 09:37:56 -04:00
|
|
|
$dplx = intval($importer['duplex']);
|
2017-03-23 17:22:18 -04:00
|
|
|
|
2018-09-12 02:13:04 -04:00
|
|
|
if (($dplx && strlen($prv_key)) || (strlen($prv_key) && !strlen($pub_key))) {
|
2017-03-23 17:22:18 -04:00
|
|
|
openssl_private_encrypt($hash, $challenge, $prv_key);
|
|
|
|
openssl_private_encrypt($id_str, $encrypted_id, $prv_key);
|
|
|
|
} elseif (strlen($pub_key)) {
|
|
|
|
openssl_public_encrypt($hash, $challenge, $pub_key);
|
|
|
|
openssl_public_encrypt($id_str, $encrypted_id, $pub_key);
|
|
|
|
} else {
|
|
|
|
/// @TODO these kind of else-blocks are making the code harder to understand
|
2017-03-21 12:02:59 -04:00
|
|
|
$status = 1;
|
2017-03-23 17:22:18 -04:00
|
|
|
}
|
2010-09-02 03:31:11 -04:00
|
|
|
|
|
|
|
$challenge = bin2hex($challenge);
|
2010-08-05 05:57:03 -04:00
|
|
|
$encrypted_id = bin2hex($encrypted_id);
|
|
|
|
|
2015-08-29 05:38:40 -04:00
|
|
|
|
2017-11-06 21:22:52 -05:00
|
|
|
$rino = Config::get('system', 'rino_encrypt');
|
2015-06-23 11:36:26 -04:00
|
|
|
$rino = intval($rino);
|
2016-01-22 14:26:11 -05:00
|
|
|
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log("Local rino version: ". $rino, Logger::DATA);
|
2015-08-29 05:38:40 -04:00
|
|
|
|
2015-06-23 11:36:26 -04:00
|
|
|
// if requested rino is lower than enabled local rino, lower local rino version
|
|
|
|
// if requested rino is higher than enabled local rino, reply with local rino
|
2017-03-23 17:22:18 -04:00
|
|
|
if ($rino_remote < $rino) {
|
|
|
|
$rino = $rino_remote;
|
|
|
|
}
|
2015-08-29 05:38:40 -04:00
|
|
|
|
2019-01-06 12:37:48 -05:00
|
|
|
if (($importer['rel'] && ($importer['rel'] != Contact::SHARING)) || ($importer['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
|
2012-03-28 20:21:56 -04:00
|
|
|
$perm = 'rw';
|
2017-03-23 17:22:18 -04:00
|
|
|
} else {
|
2012-03-28 20:21:56 -04:00
|
|
|
$perm = 'r';
|
|
|
|
}
|
2010-12-01 16:39:00 -05:00
|
|
|
|
2010-10-12 23:29:04 -04:00
|
|
|
header("Content-type: text/xml");
|
|
|
|
|
2013-11-02 05:49:44 -04:00
|
|
|
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\r\n"
|
2010-10-12 23:29:04 -04:00
|
|
|
. '<dfrn_notify>' . "\r\n"
|
|
|
|
. "\t" . '<status>' . $status . '</status>' . "\r\n"
|
|
|
|
. "\t" . '<dfrn_version>' . DFRN_PROTOCOL_VERSION . '</dfrn_version>' . "\r\n"
|
2012-03-28 20:21:56 -04:00
|
|
|
. "\t" . '<rino>' . $rino . '</rino>' . "\r\n"
|
2013-11-02 05:49:44 -04:00
|
|
|
. "\t" . '<perm>' . $perm . '</perm>' . "\r\n"
|
|
|
|
. "\t" . '<dfrn_id>' . $encrypted_id . '</dfrn_id>' . "\r\n"
|
2010-10-12 23:29:04 -04:00
|
|
|
. "\t" . '<challenge>' . $challenge . '</challenge>' . "\r\n"
|
2018-11-30 09:06:22 -05:00
|
|
|
. '</dfrn_notify>' . "\r\n";
|
2010-10-12 23:29:04 -04:00
|
|
|
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2010-07-04 23:45:56 -04:00
|
|
|
}
|
2010-10-04 07:22:34 -04:00
|
|
|
}
|