3 * @file mod/dfrn_confirm.php
4 * @brief Module: dfrn_confirm
5 * Purpose: Friendship acceptance for DFRN contacts
7 * There are two possible entry points and three scenarios.
9 * 1. A form was submitted by our user approving a friendship that originated elsewhere.
10 * This may also be called from dfrn_request to automatically approve a friendship.
12 * 2. We may be the target or other side of the conversation to scenario 1, and will
13 * interact with that process on our own user's behalf.
15 * @see PDF with dfrn specs: https://github.com/friendica/friendica/blob/master/spec/dfrn2.pdf
16 * You also find a graphic which describes the confirmation process at
17 * https://github.com/friendica/friendica/blob/master/spec/dfrn2_contact_confirmation.png
21 use Friendica\Core\Config;
22 use Friendica\Core\L10n;
23 use Friendica\Core\Logger;
24 use Friendica\Core\Protocol;
25 use Friendica\Core\System;
26 use Friendica\Database\DBA;
27 use Friendica\Model\Contact;
28 use Friendica\Model\Group;
29 use Friendica\Model\User;
30 use Friendica\Network\Probe;
31 use Friendica\Protocol\Diaspora;
32 use Friendica\Protocol\ActivityPub;
33 use Friendica\Util\Crypto;
34 use Friendica\Util\DateTimeFormat;
35 use Friendica\Util\Network;
36 use Friendica\Util\Strings;
37 use Friendica\Util\XML;
39 function dfrn_confirm_post(App $a, $handsfree = null)
42 if (is_array($handsfree)) {
44 * We were called directly from dfrn_request due to automatic friend acceptance.
45 * Any $_POST parameters we may require are supplied in the $handsfree array.
48 $node = $handsfree['node'];
49 $a->interactive = false; // notice() becomes a no-op since nobody is there to see it
50 } elseif ($a->argc > 1) {
55 * Main entry point. Scenario 1. Our user received a friend request notification (perhaps
56 * from another site) and clicked 'Approve'.
57 * $POST['source_url'] is not set. If it is, it indicates Scenario 2.
59 * We may also have been called directly from dfrn_request ($handsfree != null) due to
60 * this being a page type which supports automatic friend acceptance. That is also Scenario 1
61 * since we are operating on behalf of our registered user to approve a friendship.
63 if (empty($_POST['source_url'])) {
64 $uid = defaults($handsfree, 'uid', local_user());
66 notice(L10n::t('Permission denied.') . EOL);
70 $user = DBA::selectFirst('user', [], ['uid' => $uid]);
71 if (!DBA::isResult($user)) {
72 notice(L10n::t('Profile not found.') . EOL);
76 // These data elements may come from either the friend request notification form or $handsfree array.
77 if (is_array($handsfree)) {
78 Logger::log('Confirm in handsfree mode');
79 $dfrn_id = $handsfree['dfrn_id'];
80 $intro_id = $handsfree['intro_id'];
81 $duplex = $handsfree['duplex'];
83 $hidden = intval(defaults($handsfree, 'hidden' , 0));
85 $dfrn_id = Strings::escapeTags(trim(defaults($_POST, 'dfrn_id' , '')));
86 $intro_id = intval(defaults($_POST, 'intro_id' , 0));
87 $duplex = intval(defaults($_POST, 'duplex' , 0));
88 $cid = intval(defaults($_POST, 'contact_id', 0));
89 $hidden = intval(defaults($_POST, 'hidden' , 0));
93 * Ensure that dfrn_id has precedence when we go to find the contact record.
94 * We only want to search based on contact id if there is no dfrn_id,
95 * e.g. for OStatus network followers.
97 if (strlen($dfrn_id)) {
101 Logger::log('Confirming request for dfrn_id (issued) ' . $dfrn_id);
103 Logger::log('Confirming follower with contact_id: ' . $cid);
107 * The other person will have been issued an ID when they first requested friendship.
108 * Locate their record. At this time, their record will have both pending and blocked set to 1.
109 * There won't be any dfrn_id if this is a network follower, so use the contact_id instead.
114 (`issued-id` != '' AND `issued-id` = '%s')
116 (`id` = %d AND `id` != 0)
121 DBA::escape($dfrn_id),
125 if (!DBA::isResult($r)) {
126 Logger::log('Contact not found in DB.');
127 notice(L10n::t('Contact not found.') . EOL);
128 notice(L10n::t('This may occasionally happen if contact was requested by both persons and it has already been approved.') . EOL);
134 $contact_id = $contact['id'];
135 $relation = $contact['rel'];
136 $site_pubkey = $contact['site-pubkey'];
137 $dfrn_confirm = $contact['confirm'];
138 $aes_allow = $contact['aes_allow'];
140 $network = ((strlen($contact['issued-id'])) ? Protocol::DFRN : Protocol::OSTATUS);
142 if ($contact['network']) {
143 $network = $contact['network'];
146 if ($network === Protocol::DFRN) {
148 * Generate a key pair for all further communications with this person.
149 * We have a keypair for every contact, and a site key for unknown people.
150 * This provides a means to carry on relationships with other people if
151 * any single key is compromised. It is a robust key. We're much more
152 * worried about key leakage than anybody cracking it.
154 $res = Crypto::newKeypair(4096);
156 $private_key = $res['prvkey'];
157 $public_key = $res['pubkey'];
159 // Save the private key. Send them the public key.
160 q("UPDATE `contact` SET `prvkey` = '%s' WHERE `id` = %d AND `uid` = %d",
161 DBA::escape($private_key),
169 * Per the DFRN protocol, we will verify both ends by encrypting the dfrn_id with our
170 * site private key (person on the other end can decrypt it with our site public key).
171 * Then encrypt our profile URL with the other person's site public key. They can decrypt
172 * it with their site private key. If the decryption on the other end fails for either
173 * item, it indicates tampering or key failure on at least one site and we will not be
174 * able to provide a secure communication pathway.
176 * If other site is willing to accept full encryption, (aes_allow is 1 AND we have php5.3
177 * or later) then we encrypt the personal public key we send them using AES-256-CBC and a
178 * random key which is encrypted with their site public key.
181 $src_aes_key = openssl_random_pseudo_bytes(64);
184 openssl_private_encrypt($dfrn_id, $result, $user['prvkey']);
186 $params['dfrn_id'] = bin2hex($result);
187 $params['public_key'] = $public_key;
189 $my_url = System::baseUrl() . '/profile/' . $user['nickname'];
191 openssl_public_encrypt($my_url, $params['source_url'], $site_pubkey);
192 $params['source_url'] = bin2hex($params['source_url']);
194 if ($aes_allow && function_exists('openssl_encrypt')) {
195 openssl_public_encrypt($src_aes_key, $params['aes_key'], $site_pubkey);
196 $params['aes_key'] = bin2hex($params['aes_key']);
197 $params['public_key'] = bin2hex(openssl_encrypt($public_key, 'AES-256-CBC', $src_aes_key));
200 $params['dfrn_version'] = DFRN_PROTOCOL_VERSION;
202 $params['duplex'] = 1;
205 if ($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY) {
209 if ($user['page-flags'] == User::PAGE_FLAGS_PRVGROUP) {
213 Logger::log('Confirm: posting data to ' . $dfrn_confirm . ': ' . print_r($params, true), Logger::DATA);
217 * POST all this stuff to the other site.
218 * Temporarily raise the network timeout to 120 seconds because the default 60
219 * doesn't always give the other side quite enough time to decrypt everything.
223 $res = Network::post($dfrn_confirm, $params, null, $redirects, 120)->getBody();
225 Logger::log(' Confirm: received data: ' . $res, Logger::DATA);
227 // Now figure out what they responded. Try to be robust if the remote site is
228 // having difficulty and throwing up errors of some kind.
230 $leading_junk = substr($res, 0, strpos($res, '<?xml'));
232 $res = substr($res, strpos($res, '<?xml'));
234 // No XML at all, this exchange is messed up really bad.
235 // We shouldn't proceed, because the xml parser might choke,
236 // and $status is going to be zero, which indicates success.
237 // We can hardly call this a success.
238 notice(L10n::t('Response from remote site was not understood.') . EOL);
242 if (strlen($leading_junk) && Config::get('system', 'debugging')) {
243 // This might be more common. Mixed error text and some XML.
244 // If we're configured for debugging, show the text. Proceed in either case.
245 notice(L10n::t('Unexpected response from remote site: ') . EOL . $leading_junk . EOL);
248 if (stristr($res, "<status") === false) {
249 // wrong xml! stop here!
250 Logger::log('Unexpected response posting to ' . $dfrn_confirm);
251 notice(L10n::t('Unexpected response from remote site: ') . EOL . htmlspecialchars($res) . EOL);
255 $xml = XML::parseString($res);
256 $status = (int) $xml->status;
257 $message = XML::unescape($xml->message); // human readable text of what may have gone wrong.
260 info(L10n::t("Confirmation completed successfully.") . EOL);
263 // birthday paradox - generate new dfrn-id and fall through.
264 $new_dfrn_id = Strings::getRandomHex();
265 q("UPDATE contact SET `issued-id` = '%s' WHERE `id` = %d AND `uid` = %d",
266 DBA::escape($new_dfrn_id),
272 notice(L10n::t("Temporary failure. Please wait and try again.") . EOL);
275 notice(L10n::t("Introduction failed or was revoked.") . EOL);
279 if (strlen($message)) {
280 notice(L10n::t('Remote site reported: ') . $message . EOL);
283 if (($status == 0) && $intro_id) {
284 $intro = DBA::selectFirst('intro', ['note'], ['id' => $intro_id]);
285 if (DBA::isResult($intro)) {
286 DBA::update('contact', ['reason' => $intro['note']], ['id' => $contact_id]);
289 // Success. Delete the notification.
290 DBA::delete('intro', ['id' => $intro_id]);
299 * We have now established a relationship with the other site.
300 * Let's make our own personal copy of their profile photo so we don't have
301 * to always load it from their site.
303 * We will also update the contact record with the nature and scope of the relationship.
305 Contact::updateAvatar($contact['photo'], $uid, $contact_id);
307 Logger::log('dfrn_confirm: confirm - imported photos');
309 if ($network === Protocol::DFRN) {
310 $new_relation = Contact::FOLLOWER;
312 if (($relation == Contact::SHARING) || ($duplex)) {
313 $new_relation = Contact::FRIEND;
316 if (($relation == Contact::SHARING) && ($duplex)) {
320 $r = q("UPDATE `contact` SET `rel` = %d,
327 `network` = '%s' WHERE `id` = %d
329 intval($new_relation),
330 DBA::escape(DateTimeFormat::utcNow()),
331 DBA::escape(DateTimeFormat::utcNow()),
334 DBA::escape(Protocol::DFRN),
338 if ($network == Protocol::ACTIVITYPUB) {
339 ActivityPub\Transmitter::sendContactAccept($contact['url'], $contact['hub-verify'], $uid);
340 // Setting "pending" to true on a bidirectional contact request could create a problem when it isn't accepted on the other side
341 // Then we have got a situation where - although one direction is accepted - the contact still appears as pending.
342 // Possibly we need two different "pending" fields, one for incoming, one for outgoing?
343 // This has to be thought over, but for now this here is a better solution.
344 // $pending = $duplex;
350 // $network !== Protocol::DFRN
351 $network = defaults($contact, 'network', Protocol::OSTATUS);
353 $arr = Probe::uri($contact['url'], $network);
355 $notify = defaults($contact, 'notify' , $arr['notify']);
356 $poll = defaults($contact, 'poll' , $arr['poll']);
358 $addr = $arr['addr'];
360 $new_relation = $contact['rel'];
361 $writable = $contact['writable'];
363 if (in_array($network, [Protocol::DIASPORA, Protocol::ACTIVITYPUB])) {
365 $new_relation = Contact::FRIEND;
367 $new_relation = Contact::FOLLOWER;
370 if ($new_relation != Contact::FOLLOWER) {
375 DBA::delete('intro', ['id' => $intro_id]);
377 $fields = ['name-date' => DateTimeFormat::utcNow(),
378 'uri-date' => DateTimeFormat::utcNow(), 'addr' => $addr,
379 'notify' => $notify, 'poll' => $poll, 'blocked' => false,
380 'pending' => $pending, 'network' => $network,
381 'writable' => $writable, 'hidden' => $hidden, 'rel' => $new_relation];
382 DBA::update('contact', $fields, ['id' => $contact_id]);
385 if (!DBA::isResult($r)) {
386 notice(L10n::t('Unable to set contact photo.') . EOL);
389 // reload contact info
390 $contact = DBA::selectFirst('contact', [], ['id' => $contact_id]);
391 if ((isset($new_relation) && $new_relation == Contact::FRIEND)) {
392 if (DBA::isResult($contact) && ($contact['network'] === Protocol::DIASPORA)) {
393 $ret = Diaspora::sendShare($user, $contact);
394 Logger::log('share returns: ' . $ret);
398 Group::addMember(User::getDefaultGroup($uid, $contact["network"]), $contact['id']);
400 if ($network == Protocol::ACTIVITYPUB && $duplex) {
401 ActivityPub\Transmitter::sendActivity('Follow', $contact['url'], $uid);
404 // Let's send our user to the contact editor in case they want to
405 // do anything special with this new friend.
406 if ($handsfree === null) {
407 $a->internalRedirect('contact/' . intval($contact_id));
415 * End of Scenario 1. [Local confirmation of remote friend request].
417 * Begin Scenario 2. This is the remote response to the above scenario.
418 * This will take place on the site that originally initiated the friend request.
419 * In the section above where the confirming party makes a POST and
420 * retrieves xml status information, they are communicating with the following code.
422 if (!empty($_POST['source_url'])) {
423 // We are processing an external confirmation to an introduction created by our user.
424 $public_key = defaults($_POST, 'public_key', '');
425 $dfrn_id = hex2bin(defaults($_POST, 'dfrn_id' , ''));
426 $source_url = hex2bin(defaults($_POST, 'source_url', ''));
427 $aes_key = defaults($_POST, 'aes_key' , '');
428 $duplex = intval(defaults($_POST, 'duplex' , 0));
429 $page = intval(defaults($_POST, 'page' , 0));
431 $forum = (($page == 1) ? 1 : 0);
432 $prv = (($page == 2) ? 1 : 0);
434 Logger::log('dfrn_confirm: requestee contacted: ' . $node);
436 Logger::log('dfrn_confirm: request: POST=' . print_r($_POST, true), Logger::DATA);
438 // If $aes_key is set, both of these items require unpacking from the hex transport encoding.
440 if (!empty($aes_key)) {
441 $aes_key = hex2bin($aes_key);
442 $public_key = hex2bin($public_key);
445 // Find our user's account
446 $user = DBA::selectFirst('user', [], ['nickname' => $node]);
447 if (!DBA::isResult($user)) {
448 $message = L10n::t('No user record found for \'%s\' ', $node);
449 System::xmlExit(3, $message); // failure
453 $my_prvkey = $user['prvkey'];
454 $local_uid = $user['uid'];
457 if (!strstr($my_prvkey, 'PRIVATE KEY')) {
458 $message = L10n::t('Our site encryption key is apparently messed up.');
459 System::xmlExit(3, $message);
464 $decrypted_source_url = "";
465 openssl_private_decrypt($source_url, $decrypted_source_url, $my_prvkey);
468 if (!strlen($decrypted_source_url)) {
469 $message = L10n::t('Empty site URL was provided or URL could not be decrypted by us.');
470 System::xmlExit(3, $message);
474 $contact = DBA::selectFirst('contact', [], ['url' => $decrypted_source_url, 'uid' => $local_uid]);
475 if (!DBA::isResult($contact)) {
476 if (strstr($decrypted_source_url, 'http:')) {
477 $newurl = str_replace('http:', 'https:', $decrypted_source_url);
479 $newurl = str_replace('https:', 'http:', $decrypted_source_url);
482 $contact = DBA::selectFirst('contact', [], ['url' => $newurl, 'uid' => $local_uid]);
483 if (!DBA::isResult($contact)) {
484 // this is either a bogus confirmation (?) or we deleted the original introduction.
485 $message = L10n::t('Contact record was not found for you on our site.');
486 System::xmlExit(3, $message);
487 return; // NOTREACHED
491 $relation = $contact['rel'];
493 // Decrypt all this stuff we just received
495 $foreign_pubkey = $contact['site-pubkey'];
496 $dfrn_record = $contact['id'];
498 if (!$foreign_pubkey) {
499 $message = L10n::t('Site public key not available in contact record for URL %s.', $decrypted_source_url);
500 System::xmlExit(3, $message);
503 $decrypted_dfrn_id = "";
504 openssl_public_decrypt($dfrn_id, $decrypted_dfrn_id, $foreign_pubkey);
506 if (strlen($aes_key)) {
507 $decrypted_aes_key = "";
508 openssl_private_decrypt($aes_key, $decrypted_aes_key, $my_prvkey);
509 $dfrn_pubkey = openssl_decrypt($public_key, 'AES-256-CBC', $decrypted_aes_key);
511 $dfrn_pubkey = $public_key;
514 if (DBA::exists('contact', ['dfrn-id' => $decrypted_dfrn_id])) {
515 $message = L10n::t('The ID provided by your system is a duplicate on our system. It should work if you try again.');
516 System::xmlExit(1, $message); // Birthday paradox - duplicate dfrn-id
520 $r = q("UPDATE `contact` SET `dfrn-id` = '%s', `pubkey` = '%s' WHERE `id` = %d",
521 DBA::escape($decrypted_dfrn_id),
522 DBA::escape($dfrn_pubkey),
525 if (!DBA::isResult($r)) {
526 $message = L10n::t('Unable to set your contact credentials on our system.');
527 System::xmlExit(3, $message);
530 // It's possible that the other person also requested friendship.
531 // If it is a duplex relationship, ditch the issued-id if one exists.
534 q("UPDATE `contact` SET `issued-id` = '' WHERE `id` = %d",
539 // We're good but now we have to scrape the profile photo and send notifications.
540 $contact = DBA::selectFirst('contact', ['photo'], ['id' => $dfrn_record]);
541 if (DBA::isResult($contact)) {
542 $photo = $contact['photo'];
544 $photo = System::baseUrl() . '/images/person-300.jpg';
547 Contact::updateAvatar($photo, $local_uid, $dfrn_record);
549 Logger::log('dfrn_confirm: request - photos imported');
551 $new_relation = Contact::SHARING;
553 if (($relation == Contact::FOLLOWER) || ($duplex)) {
554 $new_relation = Contact::FRIEND;
557 if (($relation == Contact::FOLLOWER) && ($duplex)) {
561 $r = q("UPDATE `contact` SET
570 `network` = '%s' WHERE `id` = %d
572 intval($new_relation),
573 DBA::escape(DateTimeFormat::utcNow()),
574 DBA::escape(DateTimeFormat::utcNow()),
578 DBA::escape(Protocol::DFRN),
581 if (!DBA::isResult($r)) { // indicates schema is messed up or total db failure
582 $message = L10n::t('Unable to update your contact profile details on our system');
583 System::xmlExit(3, $message);
586 // Otherwise everything seems to have worked and we are almost done. Yay!
587 // Send an email notification
589 Logger::log('dfrn_confirm: request: info updated');
592 $r = q("SELECT `contact`.*, `user`.*
594 LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
595 WHERE `contact`.`id` = %d
599 if (DBA::isResult($r)) {
602 if ($combined['notify-flags'] & NOTIFY_CONFIRM) {
603 $mutual = ($new_relation == Contact::FRIEND);
605 'type' => NOTIFY_CONFIRM,
606 'notify_flags' => $combined['notify-flags'],
607 'language' => $combined['language'],
608 'to_name' => $combined['username'],
609 'to_email' => $combined['email'],
610 'uid' => $combined['uid'],
611 'link' => System::baseUrl() . '/contact/' . $dfrn_record,
612 'source_name' => ((strlen(stripslashes($combined['name']))) ? stripslashes($combined['name']) : L10n::t('[Name Withheld]')),
613 'source_link' => $combined['url'],
614 'source_photo' => $combined['photo'],
615 'verb' => ($mutual?ACTIVITY_FRIEND:ACTIVITY_FOLLOW),
621 System::xmlExit(0); // Success
622 return; // NOTREACHED
623 ////////////////////// End of this scenario ///////////////////////////////////////////////
626 // somebody arrived here by mistake or they are fishing. Send them to the homepage.
627 $a->internalRedirect();