2010-07-02 01:48:07 +02:00
|
|
|
<?php
|
|
|
|
|
2016-11-28 16:23:47 +01:00
|
|
|
/**
|
|
|
|
* @file mod/dfrn_confirm.php
|
|
|
|
* @brief Module: dfrn_confirm
|
2010-12-09 00:30:26 +01:00
|
|
|
* Purpose: Friendship acceptance for DFRN contacts
|
2016-11-28 16:23:47 +01:00
|
|
|
*.
|
2010-12-09 00:30:26 +01:00
|
|
|
* There are two possible entry points and three scenarios.
|
2016-11-28 16:23:47 +01:00
|
|
|
*.
|
2010-12-09 00:30:26 +01:00
|
|
|
* 1. A form was submitted by our user approving a friendship that originated elsewhere.
|
|
|
|
* This may also be called from dfrn_request to automatically approve a friendship.
|
|
|
|
*
|
2014-09-06 17:28:46 +02:00
|
|
|
* 2. We may be the target or other side of the conversation to scenario 1, and will
|
2010-12-09 00:30:26 +01:00
|
|
|
* interact with that process on our own user's behalf.
|
2016-11-28 16:23:47 +01:00
|
|
|
*.
|
|
|
|
* @see PDF with dfrn specs: https://github.com/friendica/friendica/blob/master/spec/dfrn2.pdf
|
|
|
|
* You also find a graphic which describes the confirmation process at
|
|
|
|
* https://github.com/friendica/friendica/blob/master/spec/dfrn2_contact_confirmation.png
|
2010-12-09 00:30:26 +01:00
|
|
|
*/
|
2010-11-19 05:58:46 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-05-07 20:44:30 +02:00
|
|
|
use Friendica\Network\Probe;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-05-07 20:40:23 +02:00
|
|
|
require_once 'include/enotify.php';
|
|
|
|
require_once 'include/group.php';
|
2014-09-06 17:28:46 +02:00
|
|
|
|
2017-01-09 13:12:54 +01:00
|
|
|
function dfrn_confirm_post(App $a, $handsfree = null) {
|
2010-08-28 00:35:41 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(is_array($handsfree)) {
|
2010-10-18 05:04:17 +02:00
|
|
|
|
2016-11-28 16:23:47 +01:00
|
|
|
/*
|
2010-12-09 00:30:26 +01:00
|
|
|
* We were called directly from dfrn_request due to automatic friend acceptance.
|
|
|
|
* Any $_POST parameters we may require are supplied in the $handsfree array.
|
|
|
|
*
|
|
|
|
*/
|
2010-10-18 05:04:17 +02:00
|
|
|
|
|
|
|
$node = $handsfree['node'];
|
|
|
|
$a->interactive = false; // notice() becomes a no-op since nobody is there to see it
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
2017-03-21 17:02:59 +01:00
|
|
|
if($a->argc > 1)
|
2010-10-18 05:04:17 +02:00
|
|
|
$node = $a->argv[1];
|
|
|
|
}
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2016-11-28 16:23:47 +01:00
|
|
|
/*
|
2010-12-09 00:30:26 +01:00
|
|
|
*
|
2014-09-06 17:28:46 +02:00
|
|
|
* Main entry point. Scenario 1. Our user received a friend request notification (perhaps
|
|
|
|
* from another site) and clicked 'Approve'.
|
2010-12-09 00:30:26 +01:00
|
|
|
* $POST['source_url'] is not set. If it is, it indicates Scenario 2.
|
|
|
|
*
|
2014-09-06 17:28:46 +02:00
|
|
|
* We may also have been called directly from dfrn_request ($handsfree != null) due to
|
2010-12-09 00:30:26 +01:00
|
|
|
* this being a page type which supports automatic friend acceptance. That is also Scenario 1
|
|
|
|
* since we are operating on behalf of our registered user to approve a friendship.
|
|
|
|
*
|
|
|
|
*/
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(! x($_POST,'source_url')) {
|
2010-10-25 05:39:24 +02:00
|
|
|
|
2010-10-18 23:34:59 +02:00
|
|
|
$uid = ((is_array($handsfree)) ? $handsfree['uid'] : local_user());
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(! $uid) {
|
2010-10-05 01:04:52 +02:00
|
|
|
notice( t('Permission denied.') . EOL );
|
2010-07-02 01:48:07 +02:00
|
|
|
return;
|
2014-03-11 23:52:32 +01:00
|
|
|
}
|
2010-10-11 03:25:34 +02:00
|
|
|
|
2010-10-18 05:04:17 +02:00
|
|
|
$user = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
|
|
|
|
intval($uid)
|
|
|
|
);
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(! $user) {
|
2010-10-18 05:04:17 +02:00
|
|
|
notice( t('Profile not found.') . EOL );
|
|
|
|
return;
|
2014-03-11 23:52:32 +01:00
|
|
|
}
|
2010-10-18 05:04:17 +02:00
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-12-09 00:30:26 +01:00
|
|
|
// These data elements may come from either the friend request notification form or $handsfree array.
|
2010-10-18 05:04:17 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(is_array($handsfree)) {
|
2014-09-06 17:28:46 +02:00
|
|
|
logger('Confirm in handsfree mode');
|
2010-12-09 00:30:26 +01:00
|
|
|
$dfrn_id = $handsfree['dfrn_id'];
|
|
|
|
$intro_id = $handsfree['intro_id'];
|
|
|
|
$duplex = $handsfree['duplex'];
|
2011-12-29 09:23:05 +01:00
|
|
|
$hidden = ((array_key_exists('hidden',$handsfree)) ? intval($handsfree['hidden']) : 0 );
|
2012-02-07 01:41:05 +01:00
|
|
|
$activity = ((array_key_exists('activity',$handsfree)) ? intval($handsfree['activity']) : 0 );
|
2010-10-18 05:04:17 +02:00
|
|
|
}
|
|
|
|
else {
|
2010-12-09 00:30:26 +01:00
|
|
|
$dfrn_id = ((x($_POST,'dfrn_id')) ? notags(trim($_POST['dfrn_id'])) : "");
|
|
|
|
$intro_id = ((x($_POST,'intro_id')) ? intval($_POST['intro_id']) : 0 );
|
|
|
|
$duplex = ((x($_POST,'duplex')) ? intval($_POST['duplex']) : 0 );
|
|
|
|
$cid = ((x($_POST,'contact_id')) ? intval($_POST['contact_id']) : 0 );
|
2011-12-29 09:23:05 +01:00
|
|
|
$hidden = ((x($_POST,'hidden')) ? intval($_POST['hidden']) : 0 );
|
2012-02-07 01:41:05 +01:00
|
|
|
$activity = ((x($_POST,'activity')) ? intval($_POST['activity']) : 0 );
|
2010-10-18 05:04:17 +02:00
|
|
|
}
|
2010-10-11 03:25:34 +02:00
|
|
|
|
2016-11-28 16:23:47 +01:00
|
|
|
/*
|
2010-12-09 00:30:26 +01:00
|
|
|
*
|
|
|
|
* Ensure that dfrn_id has precedence when we go to find the contact record.
|
2014-09-06 17:28:46 +02:00
|
|
|
* We only want to search based on contact id if there is no dfrn_id,
|
2010-12-09 00:30:26 +01:00
|
|
|
* e.g. for OStatus network followers.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(strlen($dfrn_id))
|
2010-12-09 00:30:26 +01:00
|
|
|
$cid = 0;
|
|
|
|
|
2014-09-06 17:28:46 +02:00
|
|
|
logger('Confirming request for dfrn_id (issued) ' . $dfrn_id);
|
2017-03-21 17:02:59 +01:00
|
|
|
if($cid)
|
2014-09-06 17:28:46 +02:00
|
|
|
logger('Confirming follower with contact_id: ' . $cid);
|
2010-11-19 06:14:16 +01:00
|
|
|
|
2010-11-19 05:58:46 +01:00
|
|
|
|
2016-11-28 16:23:47 +01:00
|
|
|
/*
|
2010-12-09 00:30:26 +01:00
|
|
|
*
|
|
|
|
* The other person will have been issued an ID when they first requested friendship.
|
2014-09-06 17:28:46 +02:00
|
|
|
* Locate their record. At this time, their record will have both pending and blocked set to 1.
|
2010-12-09 00:30:26 +01:00
|
|
|
* There won't be any dfrn_id if this is a network follower, so use the contact_id instead.
|
|
|
|
*
|
|
|
|
*/
|
2010-10-11 03:25:34 +02:00
|
|
|
|
2012-02-29 02:32:44 +01:00
|
|
|
$r = q("SELECT * FROM `contact` WHERE ( ( `issued-id` != '' AND `issued-id` = '%s' ) OR ( `id` = %d AND `id` != 0 ) ) AND `uid` = %d AND `duplex` = 0 LIMIT 1",
|
2010-12-09 00:30:26 +01:00
|
|
|
dbesc($dfrn_id),
|
|
|
|
intval($cid),
|
|
|
|
intval($uid)
|
2010-10-11 01:16:29 +02:00
|
|
|
);
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2016-12-20 10:10:33 +01:00
|
|
|
if (! dbm::is_result($r)) {
|
2014-09-06 17:28:46 +02:00
|
|
|
logger('Contact not found in DB.');
|
2010-10-11 03:25:34 +02:00
|
|
|
notice( t('Contact not found.') . EOL );
|
2012-02-29 02:32:44 +01:00
|
|
|
notice( t('This may occasionally happen if contact was requested by both persons and it has already been approved.') . EOL );
|
2010-07-02 01:48:07 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-10-25 05:39:24 +02:00
|
|
|
$contact = $r[0];
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-10-25 05:39:24 +02:00
|
|
|
$contact_id = $contact['id'];
|
|
|
|
$relation = $contact['rel'];
|
|
|
|
$site_pubkey = $contact['site-pubkey'];
|
|
|
|
$dfrn_confirm = $contact['confirm'];
|
|
|
|
$aes_allow = $contact['aes_allow'];
|
2014-09-06 17:28:46 +02:00
|
|
|
|
2011-08-16 03:17:19 +02:00
|
|
|
$network = ((strlen($contact['issued-id'])) ? NETWORK_DFRN : NETWORK_OSTATUS);
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if($contact['network'])
|
2011-08-14 14:23:36 +02:00
|
|
|
$network = $contact['network'];
|
2010-10-11 03:25:34 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if($network === NETWORK_DFRN) {
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2016-11-28 16:23:47 +01:00
|
|
|
/*
|
2010-12-09 00:30:26 +01:00
|
|
|
*
|
|
|
|
* Generate a key pair for all further communications with this person.
|
|
|
|
* We have a keypair for every contact, and a site key for unknown people.
|
2014-09-06 17:28:46 +02:00
|
|
|
* This provides a means to carry on relationships with other people if
|
|
|
|
* any single key is compromised. It is a robust key. We're much more
|
|
|
|
* worried about key leakage than anybody cracking it.
|
2010-12-09 00:30:26 +01:00
|
|
|
*
|
|
|
|
*/
|
2017-05-07 20:40:23 +02:00
|
|
|
require_once 'include/crypto.php';
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2012-06-24 09:56:27 +02:00
|
|
|
$res = new_keypair(4096);
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2014-09-06 17:28:46 +02:00
|
|
|
|
2012-05-21 03:30:02 +02:00
|
|
|
$private_key = $res['prvkey'];
|
|
|
|
$public_key = $res['pubkey'];
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-10-25 05:39:24 +02:00
|
|
|
// Save the private key. Send them the public key.
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2014-03-11 23:52:32 +01:00
|
|
|
$r = q("UPDATE `contact` SET `prvkey` = '%s' WHERE `id` = %d AND `uid` = %d",
|
2010-10-25 05:39:24 +02:00
|
|
|
dbesc($private_key),
|
|
|
|
intval($contact_id),
|
2014-09-06 17:28:46 +02:00
|
|
|
intval($uid)
|
2010-10-25 05:39:24 +02:00
|
|
|
);
|
2010-10-11 03:25:34 +02:00
|
|
|
|
2010-10-25 05:39:24 +02:00
|
|
|
$params = array();
|
2010-10-11 03:25:34 +02:00
|
|
|
|
2016-11-28 16:23:47 +01:00
|
|
|
/*
|
2010-12-09 00:30:26 +01:00
|
|
|
*
|
2014-09-06 17:28:46 +02:00
|
|
|
* Per the DFRN protocol, we will verify both ends by encrypting the dfrn_id with our
|
2010-12-09 00:30:26 +01:00
|
|
|
* site private key (person on the other end can decrypt it with our site public key).
|
|
|
|
* Then encrypt our profile URL with the other person's site public key. They can decrypt
|
|
|
|
* it with their site private key. If the decryption on the other end fails for either
|
2014-09-06 17:28:46 +02:00
|
|
|
* item, it indicates tampering or key failure on at least one site and we will not be
|
2010-12-09 00:30:26 +01:00
|
|
|
* able to provide a secure communication pathway.
|
|
|
|
*
|
2014-09-06 17:28:46 +02:00
|
|
|
* If other site is willing to accept full encryption, (aes_allow is 1 AND we have php5.3
|
|
|
|
* or later) then we encrypt the personal public key we send them using AES-256-CBC and a
|
|
|
|
* random key which is encrypted with their site public key.
|
2010-12-09 00:30:26 +01:00
|
|
|
*
|
|
|
|
*/
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2017-04-01 10:28:42 +02:00
|
|
|
$src_aes_key = openssl_random_pseudo_bytes(64);
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-10-25 05:39:24 +02:00
|
|
|
$result = '';
|
2017-04-01 10:28:42 +02:00
|
|
|
openssl_private_encrypt($dfrn_id, $result, $user[0]['prvkey']);
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-10-25 05:39:24 +02:00
|
|
|
$params['dfrn_id'] = bin2hex($result);
|
|
|
|
$params['public_key'] = $public_key;
|
2010-10-11 01:16:29 +02:00
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
$my_url = App::get_baseurl() . '/profile/' . $user[0]['nickname'];
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-10-25 05:39:24 +02:00
|
|
|
openssl_public_encrypt($my_url, $params['source_url'], $site_pubkey);
|
|
|
|
$params['source_url'] = bin2hex($params['source_url']);
|
2010-09-09 05:14:17 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if($aes_allow && function_exists('openssl_encrypt')) {
|
2010-10-25 05:39:24 +02:00
|
|
|
openssl_public_encrypt($src_aes_key, $params['aes_key'], $site_pubkey);
|
|
|
|
$params['aes_key'] = bin2hex($params['aes_key']);
|
|
|
|
$params['public_key'] = bin2hex(openssl_encrypt($public_key,'AES-256-CBC',$src_aes_key));
|
|
|
|
}
|
2010-10-11 03:25:34 +02:00
|
|
|
|
2010-10-25 05:39:24 +02:00
|
|
|
$params['dfrn_version'] = DFRN_PROTOCOL_VERSION ;
|
2017-03-21 17:02:59 +01:00
|
|
|
if($duplex == 1)
|
2010-10-25 05:39:24 +02:00
|
|
|
$params['duplex'] = 1;
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if($user[0]['page-flags'] == PAGE_COMMUNITY)
|
2012-03-16 00:38:26 +01:00
|
|
|
$params['page'] = 1;
|
2017-03-21 17:02:59 +01:00
|
|
|
if($user[0]['page-flags'] == PAGE_PRVGROUP)
|
2012-05-30 07:57:15 +02:00
|
|
|
$params['page'] = 2;
|
2012-03-16 00:38:26 +01:00
|
|
|
|
2014-09-06 17:28:46 +02:00
|
|
|
logger('Confirm: posting data to ' . $dfrn_confirm . ': ' . print_r($params,true), LOGGER_DATA);
|
2010-11-19 05:58:46 +01:00
|
|
|
|
2016-11-28 16:23:47 +01:00
|
|
|
/*
|
2010-12-09 23:29:38 +01:00
|
|
|
*
|
|
|
|
* POST all this stuff to the other site.
|
|
|
|
* Temporarily raise the network timeout to 120 seconds because the default 60
|
|
|
|
* doesn't always give the other side quite enough time to decrypt everything.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-01-17 20:21:46 +01:00
|
|
|
$res = post_url($dfrn_confirm, $params, null, $redirects, 120);
|
2010-10-06 04:56:09 +02:00
|
|
|
|
2014-09-06 17:28:46 +02:00
|
|
|
logger(' Confirm: received data: ' . $res, LOGGER_DATA);
|
2010-11-19 05:58:46 +01:00
|
|
|
|
2014-09-06 17:28:46 +02:00
|
|
|
// Now figure out what they responded. Try to be robust if the remote site is
|
|
|
|
// having difficulty and throwing up errors of some kind.
|
2010-10-06 04:56:09 +02:00
|
|
|
|
2010-10-25 05:39:24 +02:00
|
|
|
$leading_junk = substr($res,0,strpos($res,'<?xml'));
|
2010-10-06 04:56:09 +02:00
|
|
|
|
2010-10-25 05:39:24 +02:00
|
|
|
$res = substr($res,strpos($res,'<?xml'));
|
2017-03-21 17:02:59 +01:00
|
|
|
if(! strlen($res)) {
|
2010-10-06 04:56:09 +02:00
|
|
|
|
2010-10-25 05:39:24 +02:00
|
|
|
// No XML at all, this exchange is messed up really bad.
|
|
|
|
// We shouldn't proceed, because the xml parser might choke,
|
|
|
|
// and $status is going to be zero, which indicates success.
|
2014-09-06 17:28:46 +02:00
|
|
|
// We can hardly call this a success.
|
|
|
|
|
2010-10-25 05:39:24 +02:00
|
|
|
notice( t('Response from remote site was not understood.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
2010-10-06 04:56:09 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(strlen($leading_junk) && get_config('system','debugging')) {
|
2014-09-06 17:28:46 +02:00
|
|
|
|
2010-10-25 05:39:24 +02:00
|
|
|
// This might be more common. Mixed error text and some XML.
|
|
|
|
// If we're configured for debugging, show the text. Proceed in either case.
|
2010-10-06 04:56:09 +02:00
|
|
|
|
2010-10-25 05:39:24 +02:00
|
|
|
notice( t('Unexpected response from remote site: ') . EOL . $leading_junk . EOL );
|
|
|
|
}
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(stristr($res, "<status")===false) {
|
2014-09-06 17:28:46 +02:00
|
|
|
// wrong xml! stop here!
|
|
|
|
notice( t('Unexpected response from remote site: ') . EOL . htmlspecialchars($res) . EOL );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-04-05 04:36:18 +02:00
|
|
|
$xml = parse_xml_string($res);
|
2010-10-25 05:39:24 +02:00
|
|
|
$status = (int) $xml->status;
|
|
|
|
$message = unxmlify($xml->message); // human readable text of what may have gone wrong.
|
|
|
|
switch($status) {
|
|
|
|
case 0:
|
2012-02-20 20:39:19 +01:00
|
|
|
info( t("Confirmation completed successfully.") . EOL);
|
2017-03-21 17:02:59 +01:00
|
|
|
if(strlen($message))
|
2010-10-25 05:39:24 +02:00
|
|
|
notice( t('Remote site reported: ') . $message . EOL);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
// birthday paradox - generate new dfrn-id and fall through.
|
|
|
|
$new_dfrn_id = random_string();
|
2014-03-11 23:52:32 +01:00
|
|
|
$r = q("UPDATE contact SET `issued-id` = '%s' WHERE `id` = %d AND `uid` = %d",
|
2010-10-25 05:39:24 +02:00
|
|
|
dbesc($new_dfrn_id),
|
|
|
|
intval($contact_id),
|
2014-09-06 17:28:46 +02:00
|
|
|
intval($uid)
|
2010-10-25 05:39:24 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
notice( t("Temporary failure. Please wait and try again.") . EOL);
|
2017-03-21 17:02:59 +01:00
|
|
|
if(strlen($message))
|
2010-10-25 05:39:24 +02:00
|
|
|
notice( t('Remote site reported: ') . $message . EOL);
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
notice( t("Introduction failed or was revoked.") . EOL);
|
2017-03-21 17:02:59 +01:00
|
|
|
if(strlen($message))
|
2010-10-25 05:39:24 +02:00
|
|
|
notice( t('Remote site reported: ') . $message . EOL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(($status == 0) && ($intro_id)) {
|
2014-03-11 23:52:32 +01:00
|
|
|
|
2010-10-25 05:39:24 +02:00
|
|
|
// Success. Delete the notification.
|
2014-03-11 23:52:32 +01:00
|
|
|
|
|
|
|
$r = q("DELETE FROM `intro` WHERE `id` = %d AND `uid` = %d",
|
2010-10-25 05:39:24 +02:00
|
|
|
intval($intro_id),
|
|
|
|
intval($uid)
|
2010-07-02 01:48:07 +02:00
|
|
|
);
|
2014-03-11 23:52:32 +01:00
|
|
|
|
2010-10-06 04:56:09 +02:00
|
|
|
}
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if($status != 0)
|
2010-10-25 05:39:24 +02:00
|
|
|
return;
|
2010-07-02 01:48:07 +02:00
|
|
|
}
|
2010-10-06 04:56:09 +02:00
|
|
|
|
2010-12-09 00:30:26 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* We have now established a relationship with the other site.
|
|
|
|
* Let's make our own personal copy of their profile photo so we don't have
|
|
|
|
* to always load it from their site.
|
|
|
|
*
|
|
|
|
* We will also update the contact record with the nature and scope of the relationship.
|
|
|
|
*
|
|
|
|
*/
|
2010-10-11 03:25:34 +02:00
|
|
|
|
2017-05-07 20:40:23 +02:00
|
|
|
require_once 'include/Photo.php';
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2016-01-28 11:09:08 +01:00
|
|
|
update_contact_avatar($contact['photo'],$uid,$contact_id);
|
2014-09-06 17:28:46 +02:00
|
|
|
|
2010-11-19 05:58:46 +01:00
|
|
|
logger('dfrn_confirm: confirm - imported photos');
|
2010-09-09 05:14:17 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if($network === NETWORK_DFRN) {
|
2010-10-25 05:39:24 +02:00
|
|
|
|
2011-08-08 01:15:54 +02:00
|
|
|
$new_relation = CONTACT_IS_FOLLOWER;
|
2017-03-21 17:02:59 +01:00
|
|
|
if(($relation == CONTACT_IS_SHARING) || ($duplex))
|
2011-08-08 01:15:54 +02:00
|
|
|
$new_relation = CONTACT_IS_FRIEND;
|
2010-10-25 05:39:24 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(($relation == CONTACT_IS_SHARING) && ($duplex))
|
2010-11-10 02:53:20 +01:00
|
|
|
$duplex = 0;
|
|
|
|
|
2016-01-28 11:09:08 +01:00
|
|
|
$r = q("UPDATE `contact` SET `rel` = %d,
|
2014-03-11 23:52:32 +01:00
|
|
|
`name-date` = '%s',
|
|
|
|
`uri-date` = '%s',
|
|
|
|
`blocked` = 0,
|
2010-10-25 05:39:24 +02:00
|
|
|
`pending` = 0,
|
|
|
|
`duplex` = %d,
|
2011-12-29 09:23:05 +01:00
|
|
|
`hidden` = %d,
|
2015-04-11 22:14:56 +02:00
|
|
|
`network` = '%s' WHERE `id` = %d
|
2010-10-25 05:39:24 +02:00
|
|
|
",
|
|
|
|
intval($new_relation),
|
|
|
|
dbesc(datetime_convert()),
|
|
|
|
dbesc(datetime_convert()),
|
|
|
|
intval($duplex),
|
2011-12-29 09:23:05 +01:00
|
|
|
intval($hidden),
|
2015-04-11 22:14:56 +02:00
|
|
|
dbesc(NETWORK_DFRN),
|
2010-10-25 05:39:24 +02:00
|
|
|
intval($contact_id)
|
|
|
|
);
|
2017-03-21 17:02:59 +01:00
|
|
|
}
|
|
|
|
else {
|
2010-10-25 05:39:24 +02:00
|
|
|
|
2011-08-16 03:17:19 +02:00
|
|
|
// $network !== NETWORK_DFRN
|
|
|
|
|
|
|
|
$network = (($contact['network']) ? $contact['network'] : NETWORK_OSTATUS);
|
2011-08-14 14:23:36 +02:00
|
|
|
$notify = (($contact['notify']) ? $contact['notify'] : '');
|
|
|
|
$poll = (($contact['poll']) ? $contact['poll'] : '');
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if((! $contact['notify']) || (! $contact['poll'])) {
|
2016-07-09 20:09:09 +02:00
|
|
|
$arr = Probe::lrdd($contact['url']);
|
2017-03-21 17:02:59 +01:00
|
|
|
if(count($arr)) {
|
|
|
|
foreach($arr as $link) {
|
|
|
|
if($link['@attributes']['rel'] === 'salmon')
|
2011-08-14 14:23:36 +02:00
|
|
|
$notify = $link['@attributes']['href'];
|
2017-03-21 17:02:59 +01:00
|
|
|
if($link['@attributes']['rel'] === NAMESPACE_FEED)
|
2011-08-14 14:23:36 +02:00
|
|
|
$poll = $link['@attributes']['href'];
|
|
|
|
}
|
2010-10-25 05:39:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-16 03:17:19 +02:00
|
|
|
$new_relation = $contact['rel'];
|
2011-08-19 06:31:34 +02:00
|
|
|
$writable = $contact['writable'];
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if($network === NETWORK_DIASPORA) {
|
|
|
|
if($duplex)
|
2011-08-19 06:31:34 +02:00
|
|
|
$new_relation = CONTACT_IS_FRIEND;
|
2012-01-31 05:49:54 +01:00
|
|
|
else
|
2015-10-10 04:56:40 +02:00
|
|
|
$new_relation = CONTACT_IS_FOLLOWER;
|
2012-01-31 05:49:54 +01:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if($new_relation != CONTACT_IS_FOLLOWER)
|
2011-08-19 06:31:34 +02:00
|
|
|
$writable = 1;
|
|
|
|
}
|
2011-08-16 03:17:19 +02:00
|
|
|
|
2014-03-11 23:52:32 +01:00
|
|
|
$r = q("DELETE FROM `intro` WHERE `id` = %d AND `uid` = %d",
|
2010-10-25 05:39:24 +02:00
|
|
|
intval($intro_id),
|
|
|
|
intval($uid)
|
|
|
|
);
|
|
|
|
|
2010-11-07 06:56:39 +01:00
|
|
|
|
2016-01-28 11:09:08 +01:00
|
|
|
$r = q("UPDATE `contact` SET `name-date` = '%s',
|
2014-03-11 23:52:32 +01:00
|
|
|
`uri-date` = '%s',
|
2010-10-25 05:39:24 +02:00
|
|
|
`notify` = '%s',
|
|
|
|
`poll` = '%s',
|
2014-03-11 23:52:32 +01:00
|
|
|
`blocked` = 0,
|
2010-11-07 06:56:39 +01:00
|
|
|
`pending` = 0,
|
2011-08-16 03:17:19 +02:00
|
|
|
`network` = '%s',
|
2011-08-19 06:31:34 +02:00
|
|
|
`writable` = %d,
|
2011-12-29 09:23:05 +01:00
|
|
|
`hidden` = %d,
|
2011-08-16 03:17:19 +02:00
|
|
|
`rel` = %d
|
2014-03-11 23:52:32 +01:00
|
|
|
WHERE `id` = %d
|
2010-10-25 05:39:24 +02:00
|
|
|
",
|
|
|
|
dbesc(datetime_convert()),
|
|
|
|
dbesc(datetime_convert()),
|
|
|
|
dbesc($notify),
|
|
|
|
dbesc($poll),
|
2011-08-14 14:26:44 +02:00
|
|
|
dbesc($network),
|
2011-08-19 06:31:34 +02:00
|
|
|
intval($writable),
|
2011-12-29 09:23:05 +01:00
|
|
|
intval($hidden),
|
2011-08-16 03:17:19 +02:00
|
|
|
intval($new_relation),
|
2010-10-25 05:39:24 +02:00
|
|
|
intval($contact_id)
|
2014-03-11 23:52:32 +01:00
|
|
|
);
|
2010-10-25 05:39:24 +02:00
|
|
|
}
|
|
|
|
|
2016-12-20 15:37:27 +01:00
|
|
|
/// @TODO is dbm::is_result() working here?
|
|
|
|
if ($r === false) {
|
|
|
|
notice( t('Unable to set contact photo.') . EOL);
|
|
|
|
}
|
2010-07-27 05:45:54 +02:00
|
|
|
|
2010-12-23 02:25:04 +01:00
|
|
|
// reload contact info
|
2010-10-11 03:25:34 +02:00
|
|
|
|
2010-12-23 02:25:04 +01:00
|
|
|
$r = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
|
|
|
|
intval($contact_id)
|
|
|
|
);
|
2016-12-20 15:37:27 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2010-12-23 02:25:04 +01:00
|
|
|
$contact = $r[0];
|
2016-12-20 15:37:27 +01:00
|
|
|
} else {
|
2010-12-23 02:25:04 +01:00
|
|
|
$contact = null;
|
2016-12-20 15:37:27 +01:00
|
|
|
}
|
2010-12-23 02:25:04 +01:00
|
|
|
|
|
|
|
|
2016-12-20 15:37:27 +01:00
|
|
|
if ((isset($new_relation) && $new_relation == CONTACT_IS_FRIEND)) {
|
2012-04-30 10:25:25 +02:00
|
|
|
|
2016-12-20 15:37:27 +01:00
|
|
|
if (($contact) && ($contact['network'] === NETWORK_DIASPORA)) {
|
2017-05-07 20:40:23 +02:00
|
|
|
require_once 'include/diaspora.php';
|
2016-12-20 18:44:15 +01:00
|
|
|
$ret = Diaspora::send_share($user[0],$r[0]);
|
2016-03-14 20:53:44 +01:00
|
|
|
logger('share returns: ' . $ret);
|
2011-08-16 03:17:19 +02:00
|
|
|
}
|
|
|
|
|
2012-02-07 01:41:05 +01:00
|
|
|
// Send a new friend post if we are allowed to...
|
2010-12-23 02:25:04 +01:00
|
|
|
|
2012-02-07 01:41:05 +01:00
|
|
|
$r = q("SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
|
2010-12-23 02:25:04 +01:00
|
|
|
intval($uid)
|
|
|
|
);
|
2012-04-30 13:11:42 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if((dbm::is_result($r)) && ($r[0]['hide-friends'] == 0) && ($activity) && (! $hidden)) {
|
2010-12-23 02:25:04 +01:00
|
|
|
|
2017-05-07 20:40:23 +02:00
|
|
|
require_once 'include/items.php';
|
2010-12-23 02:25:04 +01:00
|
|
|
|
2012-02-07 01:41:05 +01:00
|
|
|
$self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
|
|
|
|
intval($uid)
|
|
|
|
);
|
2010-12-23 02:25:04 +01:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(count($self)) {
|
2012-02-07 01:41:05 +01:00
|
|
|
|
|
|
|
$arr = array();
|
2016-03-20 15:01:50 +01:00
|
|
|
$arr['guid'] = get_guid(32);
|
2014-09-06 17:28:46 +02:00
|
|
|
$arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), $uid);
|
2012-02-07 01:41:05 +01:00
|
|
|
$arr['uid'] = $uid;
|
|
|
|
$arr['contact-id'] = $self[0]['id'];
|
|
|
|
$arr['wall'] = 1;
|
|
|
|
$arr['type'] = 'wall';
|
|
|
|
$arr['gravity'] = 0;
|
|
|
|
$arr['origin'] = 1;
|
|
|
|
$arr['author-name'] = $arr['owner-name'] = $self[0]['name'];
|
|
|
|
$arr['author-link'] = $arr['owner-link'] = $self[0]['url'];
|
|
|
|
$arr['author-avatar'] = $arr['owner-avatar'] = $self[0]['thumb'];
|
2012-04-30 10:25:25 +02:00
|
|
|
|
2012-02-07 01:41:05 +01:00
|
|
|
$A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]';
|
2012-04-30 10:25:25 +02:00
|
|
|
$APhoto = '[url=' . $self[0]['url'] . ']' . '[img]' . $self[0]['thumb'] . '[/img][/url]';
|
|
|
|
|
2012-02-07 01:41:05 +01:00
|
|
|
$B = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
|
|
|
|
$BPhoto = '[url=' . $contact['url'] . ']' . '[img]' . $contact['thumb'] . '[/img][/url]';
|
|
|
|
|
2012-05-01 04:01:41 +02:00
|
|
|
$arr['verb'] = ACTIVITY_FRIEND;
|
2016-03-20 15:01:50 +01:00
|
|
|
$arr['object-type'] = ACTIVITY_OBJ_PERSON;
|
2012-05-01 04:01:41 +02:00
|
|
|
$arr['body'] = sprintf( t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$BPhoto;
|
2012-04-30 10:25:25 +02:00
|
|
|
|
2012-05-01 04:01:41 +02:00
|
|
|
$arr['object'] = '<object><type>' . ACTIVITY_OBJ_PERSON . '</type><title>' . $contact['name'] . '</title>'
|
|
|
|
. '<id>' . $contact['url'] . '/' . $contact['name'] . '</id>';
|
|
|
|
$arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $contact['url'] . '" />' . "\n");
|
|
|
|
$arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $contact['thumb'] . '" />' . "\n");
|
|
|
|
$arr['object'] .= '</link></object>' . "\n";
|
2012-04-30 10:25:25 +02:00
|
|
|
|
2012-02-07 01:41:05 +01:00
|
|
|
$arr['last-child'] = 1;
|
|
|
|
|
|
|
|
$arr['allow_cid'] = $user[0]['allow_cid'];
|
|
|
|
$arr['allow_gid'] = $user[0]['allow_gid'];
|
|
|
|
$arr['deny_cid'] = $user[0]['deny_cid'];
|
|
|
|
$arr['deny_gid'] = $user[0]['deny_gid'];
|
|
|
|
|
|
|
|
$i = item_store($arr);
|
2017-03-21 17:02:59 +01:00
|
|
|
if($i)
|
2016-08-01 07:48:43 +02:00
|
|
|
proc_run(PRIORITY_HIGH, "include/notifier.php", "activity", $i);
|
2012-02-07 01:41:05 +01:00
|
|
|
}
|
|
|
|
}
|
2010-12-23 02:25:04 +01:00
|
|
|
}
|
2012-05-18 10:03:46 +02:00
|
|
|
|
2016-03-06 13:15:27 +01:00
|
|
|
$def_gid = get_default_group($uid, $contact["network"]);
|
2017-03-21 17:02:59 +01:00
|
|
|
if($contact && intval($def_gid))
|
2016-03-06 13:15:27 +01:00
|
|
|
group_add_member($uid, '', $contact['id'], $def_gid);
|
2012-05-18 10:03:46 +02:00
|
|
|
|
2010-10-11 03:25:34 +02:00
|
|
|
// Let's send our user to the contact editor in case they want to
|
|
|
|
// do anything special with this new friend.
|
2010-10-25 05:39:24 +02:00
|
|
|
|
2016-12-20 17:43:46 +01:00
|
|
|
if ($handsfree === null) {
|
2016-12-19 14:26:13 +01:00
|
|
|
goaway(App::get_baseurl() . '/contacts/' . intval($contact_id));
|
2016-12-20 17:43:46 +01:00
|
|
|
} else {
|
2014-03-11 23:52:32 +01:00
|
|
|
return;
|
2016-12-20 17:43:46 +01:00
|
|
|
}
|
2010-12-09 00:30:26 +01:00
|
|
|
//NOTREACHED
|
2010-07-02 01:48:07 +02:00
|
|
|
}
|
2010-10-11 03:25:34 +02:00
|
|
|
|
2016-11-28 16:23:47 +01:00
|
|
|
/*
|
2010-12-09 00:30:26 +01:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* End of Scenario 1. [Local confirmation of remote friend request].
|
|
|
|
*
|
|
|
|
* Begin Scenario 2. This is the remote response to the above scenario.
|
|
|
|
* This will take place on the site that originally initiated the friend request.
|
2014-09-06 17:28:46 +02:00
|
|
|
* In the section above where the confirming party makes a POST and
|
2010-12-09 00:30:26 +01:00
|
|
|
* retrieves xml status information, they are communicating with the following code.
|
|
|
|
*
|
|
|
|
*/
|
2010-10-11 03:25:34 +02:00
|
|
|
|
2016-12-20 17:43:46 +01:00
|
|
|
if (x($_POST,'source_url')) {
|
2010-10-11 03:25:34 +02:00
|
|
|
|
|
|
|
// We are processing an external confirmation to an introduction created by our user.
|
|
|
|
|
2010-12-09 00:30:26 +01:00
|
|
|
$public_key = ((x($_POST,'public_key')) ? $_POST['public_key'] : '');
|
|
|
|
$dfrn_id = ((x($_POST,'dfrn_id')) ? hex2bin($_POST['dfrn_id']) : '');
|
|
|
|
$source_url = ((x($_POST,'source_url')) ? hex2bin($_POST['source_url']) : '');
|
|
|
|
$aes_key = ((x($_POST,'aes_key')) ? $_POST['aes_key'] : '');
|
|
|
|
$duplex = ((x($_POST,'duplex')) ? intval($_POST['duplex']) : 0 );
|
2012-03-16 00:38:26 +01:00
|
|
|
$page = ((x($_POST,'page')) ? intval($_POST['page']) : 0 );
|
2010-12-09 00:30:26 +01:00
|
|
|
$version_id = ((x($_POST,'dfrn_version')) ? (float) $_POST['dfrn_version'] : 2.0);
|
2014-03-11 23:52:32 +01:00
|
|
|
|
2012-05-30 07:57:15 +02:00
|
|
|
$forum = (($page == 1) ? 1 : 0);
|
|
|
|
$prv = (($page == 2) ? 1 : 0);
|
|
|
|
|
2010-11-19 06:14:16 +01:00
|
|
|
logger('dfrn_confirm: requestee contacted: ' . $node);
|
2010-10-11 13:01:24 +02:00
|
|
|
|
2010-11-19 05:58:46 +01:00
|
|
|
logger('dfrn_confirm: request: POST=' . print_r($_POST,true), LOGGER_DATA);
|
|
|
|
|
2010-10-11 13:01:24 +02:00
|
|
|
// If $aes_key is set, both of these items require unpacking from the hex transport encoding.
|
|
|
|
|
2016-12-20 17:43:46 +01:00
|
|
|
if (x($aes_key)) {
|
2010-10-11 13:01:24 +02:00
|
|
|
$aes_key = hex2bin($aes_key);
|
|
|
|
$public_key = hex2bin($public_key);
|
|
|
|
}
|
|
|
|
|
2010-10-11 03:25:34 +02:00
|
|
|
// Find our user's account
|
|
|
|
|
|
|
|
$r = q("SELECT * FROM `user` WHERE `nickname` = '%s' LIMIT 1",
|
|
|
|
dbesc($node));
|
|
|
|
|
2016-12-20 10:10:33 +01:00
|
|
|
if (! dbm::is_result($r)) {
|
2011-03-11 00:22:21 +01:00
|
|
|
$message = sprintf(t('No user record found for \'%s\' '), $node);
|
2010-10-11 03:25:34 +02:00
|
|
|
xml_status(3,$message); // failure
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
|
|
|
$my_prvkey = $r[0]['prvkey'];
|
|
|
|
$local_uid = $r[0]['uid'];
|
|
|
|
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(! strstr($my_prvkey,'PRIVATE KEY')) {
|
2010-10-11 03:25:34 +02:00
|
|
|
$message = t('Our site encryption key is apparently messed up.');
|
|
|
|
xml_status(3,$message);
|
|
|
|
}
|
|
|
|
|
|
|
|
// verify everything
|
|
|
|
|
|
|
|
$decrypted_source_url = "";
|
|
|
|
openssl_private_decrypt($source_url,$decrypted_source_url,$my_prvkey);
|
|
|
|
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(! strlen($decrypted_source_url)) {
|
2010-10-11 03:25:34 +02:00
|
|
|
$message = t('Empty site URL was provided or URL could not be decrypted by us.');
|
|
|
|
xml_status(3,$message);
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
|
|
|
$ret = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d LIMIT 1",
|
|
|
|
dbesc($decrypted_source_url),
|
|
|
|
intval($local_uid)
|
|
|
|
);
|
2017-01-25 15:59:27 +01:00
|
|
|
if (!dbm::is_result($ret)) {
|
|
|
|
if (strstr($decrypted_source_url,'http:')) {
|
2011-08-12 11:58:29 +02:00
|
|
|
$newurl = str_replace('http:','https:',$decrypted_source_url);
|
2017-01-25 15:59:27 +01:00
|
|
|
} else {
|
2011-08-12 11:58:29 +02:00
|
|
|
$newurl = str_replace('https:','http:',$decrypted_source_url);
|
2017-01-25 15:59:27 +01:00
|
|
|
}
|
2011-08-12 11:58:29 +02:00
|
|
|
|
|
|
|
$ret = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d LIMIT 1",
|
|
|
|
dbesc($newurl),
|
|
|
|
intval($local_uid)
|
|
|
|
);
|
2017-01-25 15:59:27 +01:00
|
|
|
if (!dbm::is_result($ret)) {
|
2011-08-12 11:58:29 +02:00
|
|
|
// this is either a bogus confirmation (?) or we deleted the original introduction.
|
|
|
|
$message = t('Contact record was not found for you on our site.');
|
|
|
|
xml_status(3,$message);
|
2014-09-06 17:28:46 +02:00
|
|
|
return; // NOTREACHED
|
2011-08-12 11:58:29 +02:00
|
|
|
}
|
2010-10-11 03:25:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$relation = $ret[0]['rel'];
|
|
|
|
|
|
|
|
// Decrypt all this stuff we just received
|
|
|
|
|
|
|
|
$foreign_pubkey = $ret[0]['site-pubkey'];
|
|
|
|
$dfrn_record = $ret[0]['id'];
|
|
|
|
|
2017-01-25 15:59:27 +01:00
|
|
|
if (! $foreign_pubkey) {
|
2011-09-07 11:23:17 +02:00
|
|
|
$message = sprintf( t('Site public key not available in contact record for URL %s.'), $newurl);
|
|
|
|
xml_status(3,$message);
|
|
|
|
}
|
|
|
|
|
2010-10-11 03:25:34 +02:00
|
|
|
$decrypted_dfrn_id = "";
|
|
|
|
openssl_public_decrypt($dfrn_id,$decrypted_dfrn_id,$foreign_pubkey);
|
|
|
|
|
2017-01-25 15:59:27 +01:00
|
|
|
if (strlen($aes_key)) {
|
2010-10-11 03:25:34 +02:00
|
|
|
$decrypted_aes_key = "";
|
|
|
|
openssl_private_decrypt($aes_key,$decrypted_aes_key,$my_prvkey);
|
|
|
|
$dfrn_pubkey = openssl_decrypt($public_key,'AES-256-CBC',$decrypted_aes_key);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$dfrn_pubkey = $public_key;
|
|
|
|
}
|
|
|
|
|
|
|
|
$r = q("SELECT * FROM `contact` WHERE `dfrn-id` = '%s' LIMIT 1",
|
2010-11-17 00:38:56 +01:00
|
|
|
dbesc($decrypted_dfrn_id)
|
2010-10-11 03:25:34 +02:00
|
|
|
);
|
2016-12-14 09:41:33 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2010-10-11 03:25:34 +02:00
|
|
|
$message = t('The ID provided by your system is a duplicate on our system. It should work if you try again.');
|
|
|
|
xml_status(1,$message); // Birthday paradox - duplicate dfrn-id
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2014-03-11 23:52:32 +01:00
|
|
|
$r = q("UPDATE `contact` SET `dfrn-id` = '%s', `pubkey` = '%s' WHERE `id` = %d",
|
2010-10-11 03:25:34 +02:00
|
|
|
dbesc($decrypted_dfrn_id),
|
|
|
|
dbesc($dfrn_pubkey),
|
|
|
|
intval($dfrn_record)
|
|
|
|
);
|
2016-12-20 10:10:33 +01:00
|
|
|
if (! dbm::is_result($r)) {
|
2010-10-11 03:25:34 +02:00
|
|
|
$message = t('Unable to set your contact credentials on our system.');
|
|
|
|
xml_status(3,$message);
|
|
|
|
}
|
|
|
|
|
2012-02-29 02:32:44 +01:00
|
|
|
// It's possible that the other person also requested friendship.
|
2014-03-11 23:52:32 +01:00
|
|
|
// If it is a duplex relationship, ditch the issued-id if one exists.
|
2012-02-29 02:32:44 +01:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if($duplex) {
|
2014-03-11 23:52:32 +01:00
|
|
|
$r = q("UPDATE `contact` SET `issued-id` = '' WHERE `id` = %d",
|
2012-02-29 02:32:44 +01:00
|
|
|
intval($dfrn_record)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2010-10-11 03:25:34 +02:00
|
|
|
// We're good but now we have to scrape the profile photo and send notifications.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$r = q("SELECT `photo` FROM `contact` WHERE `id` = %d LIMIT 1",
|
|
|
|
intval($dfrn_record));
|
|
|
|
|
2016-12-20 10:35:28 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2010-10-26 23:50:38 +02:00
|
|
|
$photo = $r[0]['photo'];
|
2016-12-20 10:35:28 +01:00
|
|
|
} else {
|
2016-12-19 14:26:13 +01:00
|
|
|
$photo = App::get_baseurl() . '/images/person-175.jpg';
|
2016-12-20 10:35:28 +01:00
|
|
|
}
|
2014-03-11 23:52:32 +01:00
|
|
|
|
2017-05-07 20:40:23 +02:00
|
|
|
require_once 'include/Photo.php';
|
2010-10-26 23:50:38 +02:00
|
|
|
|
2016-01-28 11:09:08 +01:00
|
|
|
update_contact_avatar($photo,$local_uid,$dfrn_record);
|
2010-10-11 03:25:34 +02:00
|
|
|
|
2010-11-19 05:58:46 +01:00
|
|
|
logger('dfrn_confirm: request - photos imported');
|
|
|
|
|
2011-08-08 01:15:54 +02:00
|
|
|
$new_relation = CONTACT_IS_SHARING;
|
2016-12-20 10:35:28 +01:00
|
|
|
if (($relation == CONTACT_IS_FOLLOWER) || ($duplex)) {
|
2011-08-08 01:15:54 +02:00
|
|
|
$new_relation = CONTACT_IS_FRIEND;
|
2016-12-20 10:35:28 +01:00
|
|
|
}
|
2010-10-11 03:25:34 +02:00
|
|
|
|
2016-12-20 10:35:28 +01:00
|
|
|
if (($relation == CONTACT_IS_FOLLOWER) && ($duplex)) {
|
2010-11-10 02:53:20 +01:00
|
|
|
$duplex = 0;
|
2016-12-20 10:35:28 +01:00
|
|
|
}
|
2010-11-10 02:53:20 +01:00
|
|
|
|
2014-03-11 23:52:32 +01:00
|
|
|
$r = q("UPDATE `contact` SET
|
|
|
|
`rel` = %d,
|
|
|
|
`name-date` = '%s',
|
|
|
|
`uri-date` = '%s',
|
|
|
|
`blocked` = 0,
|
2010-10-11 03:25:34 +02:00
|
|
|
`pending` = 0,
|
2014-03-11 23:52:32 +01:00
|
|
|
`duplex` = %d,
|
2012-03-16 00:38:26 +01:00
|
|
|
`forum` = %d,
|
2012-05-30 07:57:15 +02:00
|
|
|
`prv` = %d,
|
2014-03-11 23:52:32 +01:00
|
|
|
`network` = '%s' WHERE `id` = %d
|
2010-10-11 03:25:34 +02:00
|
|
|
",
|
|
|
|
intval($new_relation),
|
|
|
|
dbesc(datetime_convert()),
|
|
|
|
dbesc(datetime_convert()),
|
|
|
|
intval($duplex),
|
2012-05-30 07:57:15 +02:00
|
|
|
intval($forum),
|
|
|
|
intval($prv),
|
2011-08-19 06:31:34 +02:00
|
|
|
dbesc(NETWORK_DFRN),
|
2010-10-11 03:25:34 +02:00
|
|
|
intval($dfrn_record)
|
|
|
|
);
|
2016-12-20 10:35:28 +01:00
|
|
|
if ($r === false) { // indicates schema is messed up or total db failure
|
2010-10-11 03:25:34 +02:00
|
|
|
$message = t('Unable to update your contact profile details on our system');
|
|
|
|
xml_status(3,$message);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise everything seems to have worked and we are almost done. Yay!
|
|
|
|
// Send an email notification
|
|
|
|
|
2010-11-19 06:14:16 +01:00
|
|
|
logger('dfrn_confirm: request: info updated');
|
|
|
|
|
2011-05-24 05:30:37 +02:00
|
|
|
$r = q("SELECT `contact`.*, `user`.* FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
|
2010-10-11 03:25:34 +02:00
|
|
|
WHERE `contact`.`id` = %d LIMIT 1",
|
|
|
|
intval($dfrn_record)
|
|
|
|
);
|
2012-05-01 04:01:41 +02:00
|
|
|
|
2016-12-14 09:41:33 +01:00
|
|
|
if (dbm::is_result($r))
|
2012-05-01 04:01:41 +02:00
|
|
|
$combined = $r[0];
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if((dbm::is_result($r)) && ($r[0]['notify-flags'] & NOTIFY_CONFIRM)) {
|
2014-09-06 17:28:46 +02:00
|
|
|
$mutual = ($new_relation == CONTACT_IS_FRIEND);
|
|
|
|
notification(array(
|
|
|
|
'type' => NOTIFY_CONFIRM,
|
|
|
|
'notify_flags' => $r[0]['notify-flags'],
|
|
|
|
'language' => $r[0]['language'],
|
|
|
|
'to_name' => $r[0]['username'],
|
|
|
|
'to_email' => $r[0]['email'],
|
|
|
|
'uid' => $r[0]['uid'],
|
2016-12-19 14:26:13 +01:00
|
|
|
'link' => App::get_baseurl() . '/contacts/' . $dfrn_record,
|
2014-09-06 17:28:46 +02:00
|
|
|
'source_name' => ((strlen(stripslashes($r[0]['name']))) ? stripslashes($r[0]['name']) : t('[Name Withheld]')),
|
|
|
|
'source_link' => $r[0]['url'],
|
|
|
|
'source_photo' => $r[0]['photo'],
|
|
|
|
'verb' => ($mutual?ACTIVITY_FRIEND:ACTIVITY_FOLLOW),
|
|
|
|
'otype' => 'intro'
|
|
|
|
));
|
2010-10-11 03:25:34 +02:00
|
|
|
}
|
2012-05-01 04:01:41 +02:00
|
|
|
|
|
|
|
// Send a new friend post if we are allowed to...
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if($page && intval(get_pconfig($local_uid,'system','post_joingroup'))) {
|
2012-05-01 04:01:41 +02:00
|
|
|
$r = q("SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
|
|
|
|
intval($local_uid)
|
|
|
|
);
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if((dbm::is_result($r)) && ($r[0]['hide-friends'] == 0)) {
|
2012-05-01 04:01:41 +02:00
|
|
|
|
2017-05-07 20:40:23 +02:00
|
|
|
require_once 'include/items.php';
|
2012-05-01 04:01:41 +02:00
|
|
|
|
|
|
|
$self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
|
|
|
|
intval($local_uid)
|
|
|
|
);
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(count($self)) {
|
2012-05-01 04:01:41 +02:00
|
|
|
|
|
|
|
$arr = array();
|
2014-09-06 17:28:46 +02:00
|
|
|
$arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), $local_uid);
|
2012-05-01 04:01:41 +02:00
|
|
|
$arr['uid'] = $local_uid;
|
|
|
|
$arr['contact-id'] = $self[0]['id'];
|
|
|
|
$arr['wall'] = 1;
|
|
|
|
$arr['type'] = 'wall';
|
|
|
|
$arr['gravity'] = 0;
|
|
|
|
$arr['origin'] = 1;
|
|
|
|
$arr['author-name'] = $arr['owner-name'] = $self[0]['name'];
|
|
|
|
$arr['author-link'] = $arr['owner-link'] = $self[0]['url'];
|
|
|
|
$arr['author-avatar'] = $arr['owner-avatar'] = $self[0]['thumb'];
|
|
|
|
|
|
|
|
$A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]';
|
|
|
|
$APhoto = '[url=' . $self[0]['url'] . ']' . '[img]' . $self[0]['thumb'] . '[/img][/url]';
|
|
|
|
|
|
|
|
$B = '[url=' . $combined['url'] . ']' . $combined['name'] . '[/url]';
|
|
|
|
$BPhoto = '[url=' . $combined['url'] . ']' . '[img]' . $combined['thumb'] . '[/img][/url]';
|
|
|
|
|
|
|
|
$arr['verb'] = ACTIVITY_JOIN;
|
|
|
|
$arr['object-type'] = ACTIVITY_OBJ_GROUP;
|
|
|
|
$arr['body'] = sprintf( t('%1$s has joined %2$s'), $A, $B)."\n\n\n" .$BPhoto;
|
|
|
|
$arr['object'] = '<object><type>' . ACTIVITY_OBJ_GROUP . '</type><title>' . $combined['name'] . '</title>'
|
|
|
|
. '<id>' . $combined['url'] . '/' . $combined['name'] . '</id>';
|
|
|
|
$arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $combined['url'] . '" />' . "\n");
|
|
|
|
$arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $combined['thumb'] . '" />' . "\n");
|
|
|
|
$arr['object'] .= '</link></object>' . "\n";
|
|
|
|
|
|
|
|
$arr['last-child'] = 1;
|
|
|
|
|
|
|
|
$arr['allow_cid'] = $user[0]['allow_cid'];
|
|
|
|
$arr['allow_gid'] = $user[0]['allow_gid'];
|
|
|
|
$arr['deny_cid'] = $user[0]['deny_cid'];
|
|
|
|
$arr['deny_gid'] = $user[0]['deny_gid'];
|
|
|
|
|
|
|
|
$i = item_store($arr);
|
2017-03-21 17:02:59 +01:00
|
|
|
if($i)
|
2016-08-01 07:48:43 +02:00
|
|
|
proc_run(PRIORITY_HIGH, "include/notifier.php", "activity", $i);
|
2012-05-01 04:01:41 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-10-11 03:25:34 +02:00
|
|
|
xml_status(0); // Success
|
|
|
|
return; // NOTREACHED
|
|
|
|
|
|
|
|
////////////////////// End of this scenario ///////////////////////////////////////////////
|
|
|
|
}
|
|
|
|
|
|
|
|
// somebody arrived here by mistake or they are fishing. Send them to the homepage.
|
|
|
|
|
2011-08-02 06:02:25 +02:00
|
|
|
goaway(z_root());
|
2010-10-11 03:25:34 +02:00
|
|
|
// NOTREACHED
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
}
|