]> git.mxchange.org Git - friendica.git/blob - mod/dfrn_confirm.php
Revert "Move Objects to Model"
[friendica.git] / mod / dfrn_confirm.php
1 <?php
2
3 /**
4  * @file mod/dfrn_confirm.php
5  * @brief Module: dfrn_confirm
6  * Purpose: Friendship acceptance for DFRN contacts
7  *.
8  * There are two possible entry points and three scenarios.
9  *.
10  *   1. A form was submitted by our user approving a friendship that originated elsewhere.
11  *      This may also be called from dfrn_request to automatically approve a friendship.
12  *
13  *   2. We may be the target or other side of the conversation to scenario 1, and will
14  *      interact with that process on our own user's behalf.
15  *.
16  *  @see PDF with dfrn specs: https://github.com/friendica/friendica/blob/master/spec/dfrn2.pdf
17  *    You also find a graphic which describes the confirmation process at
18  *    https://github.com/friendica/friendica/blob/master/spec/dfrn2_contact_confirmation.png
19  */
20
21 use Friendica\App;
22 use Friendica\Core\Config;
23 use Friendica\Core\PConfig;
24 use Friendica\Core\System;
25 use Friendica\Core\Worker;
26 use Friendica\Database\DBM;
27 use Friendica\Network\Probe;
28 use Friendica\Object\Contact;
29 use Friendica\Protocol\Diaspora;
30
31 require_once 'include/enotify.php';
32 require_once 'include/group.php';
33
34 function dfrn_confirm_post(App $a, $handsfree = null) {
35
36         if(is_array($handsfree)) {
37
38                 /*
39                  * We were called directly from dfrn_request due to automatic friend acceptance.
40                  * Any $_POST parameters we may require are supplied in the $handsfree array.
41                  *
42                  */
43
44                 $node = $handsfree['node'];
45                 $a->interactive = false; // notice() becomes a no-op since nobody is there to see it
46
47         }
48         else {
49                 if($a->argc > 1)
50                         $node = $a->argv[1];
51         }
52
53                 /*
54                  *
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.
58                  *
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.
62                  *
63                  */
64
65         if(! x($_POST,'source_url')) {
66
67                 $uid = ((is_array($handsfree)) ? $handsfree['uid'] : local_user());
68
69                 if(! $uid) {
70                         notice( t('Permission denied.') . EOL );
71                         return;
72                 }
73
74                 $user = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
75                         intval($uid)
76                 );
77
78                 if(! $user) {
79                         notice( t('Profile not found.') . EOL );
80                         return;
81                 }
82
83
84                 // These data elements may come from either the friend request notification form or $handsfree array.
85
86                 if(is_array($handsfree)) {
87                         logger('Confirm in handsfree mode');
88                         $dfrn_id   = $handsfree['dfrn_id'];
89                         $intro_id  = $handsfree['intro_id'];
90                         $duplex    = $handsfree['duplex'];
91                         $hidden    = ((array_key_exists('hidden',$handsfree)) ? intval($handsfree['hidden']) : 0 );
92                         $activity  = ((array_key_exists('activity',$handsfree)) ? intval($handsfree['activity']) : 0 );
93                 }
94                 else {
95                         $dfrn_id  = ((x($_POST,'dfrn_id'))    ? notags(trim($_POST['dfrn_id'])) : "");
96                         $intro_id = ((x($_POST,'intro_id'))   ? intval($_POST['intro_id'])      : 0 );
97                         $duplex   = ((x($_POST,'duplex'))     ? intval($_POST['duplex'])        : 0 );
98                         $cid      = ((x($_POST,'contact_id')) ? intval($_POST['contact_id'])    : 0 );
99                         $hidden   = ((x($_POST,'hidden'))     ? intval($_POST['hidden'])        : 0 );
100                         $activity = ((x($_POST,'activity'))   ? intval($_POST['activity'])      : 0 );
101                 }
102
103                 /*
104                  *
105                  * Ensure that dfrn_id has precedence when we go to find the contact record.
106                  * We only want to search based on contact id if there is no dfrn_id,
107                  * e.g. for OStatus network followers.
108                  *
109                  */
110
111                 if(strlen($dfrn_id))
112                         $cid = 0;
113
114                 logger('Confirming request for dfrn_id (issued) ' . $dfrn_id);
115                 if($cid)
116                         logger('Confirming follower with contact_id: ' . $cid);
117
118
119                 /*
120                  *
121                  * The other person will have been issued an ID when they first requested friendship.
122                  * Locate their record. At this time, their record will have both pending and blocked set to 1.
123                  * There won't be any dfrn_id if this is a network follower, so use the contact_id instead.
124                  *
125                  */
126
127                 $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",
128                         dbesc($dfrn_id),
129                         intval($cid),
130                         intval($uid)
131                 );
132
133                 if (! DBM::is_result($r)) {
134                         logger('Contact not found in DB.');
135                         notice( t('Contact not found.') . EOL );
136                         notice( t('This may occasionally happen if contact was requested by both persons and it has already been approved.') . EOL );
137                         return;
138                 }
139
140                 $contact = $r[0];
141
142                 $contact_id   = $contact['id'];
143                 $relation     = $contact['rel'];
144                 $site_pubkey  = $contact['site-pubkey'];
145                 $dfrn_confirm = $contact['confirm'];
146                 $aes_allow    = $contact['aes_allow'];
147
148                 $network = ((strlen($contact['issued-id'])) ? NETWORK_DFRN : NETWORK_OSTATUS);
149
150                 if($contact['network'])
151                         $network = $contact['network'];
152
153                 if($network === NETWORK_DFRN) {
154
155                         /*
156                          *
157                          * Generate a key pair for all further communications with this person.
158                          * We have a keypair for every contact, and a site key for unknown people.
159                          * This provides a means to carry on relationships with other people if
160                          * any single key is compromised. It is a robust key. We're much more
161                          * worried about key leakage than anybody cracking it.
162                          *
163                          */
164                         require_once 'include/crypto.php';
165
166                         $res = new_keypair(4096);
167
168
169                         $private_key = $res['prvkey'];
170                         $public_key  = $res['pubkey'];
171
172                         // Save the private key. Send them the public key.
173
174                         $r = q("UPDATE `contact` SET `prvkey` = '%s' WHERE `id` = %d AND `uid` = %d",
175                                 dbesc($private_key),
176                                 intval($contact_id),
177                                 intval($uid)
178                         );
179
180                         $params = array();
181
182                         /*
183                          *
184                          * Per the DFRN protocol, we will verify both ends by encrypting the dfrn_id with our
185                          * site private key (person on the other end can decrypt it with our site public key).
186                          * Then encrypt our profile URL with the other person's site public key. They can decrypt
187                          * it with their site private key. If the decryption on the other end fails for either
188                          * item, it indicates tampering or key failure on at least one site and we will not be
189                          * able to provide a secure communication pathway.
190                          *
191                          * If other site is willing to accept full encryption, (aes_allow is 1 AND we have php5.3
192                          * or later) then we encrypt the personal public key we send them using AES-256-CBC and a
193                          * random key which is encrypted with their site public key.
194                          *
195                          */
196
197                         $src_aes_key = openssl_random_pseudo_bytes(64);
198
199                         $result = '';
200                         openssl_private_encrypt($dfrn_id, $result, $user[0]['prvkey']);
201
202                         $params['dfrn_id'] = bin2hex($result);
203                         $params['public_key'] = $public_key;
204
205
206                         $my_url = System::baseUrl() . '/profile/' . $user[0]['nickname'];
207
208                         openssl_public_encrypt($my_url, $params['source_url'], $site_pubkey);
209                         $params['source_url'] = bin2hex($params['source_url']);
210
211                         if($aes_allow && function_exists('openssl_encrypt')) {
212                                 openssl_public_encrypt($src_aes_key, $params['aes_key'], $site_pubkey);
213                                 $params['aes_key'] = bin2hex($params['aes_key']);
214                                 $params['public_key'] = bin2hex(openssl_encrypt($public_key,'AES-256-CBC',$src_aes_key));
215                         }
216
217                         $params['dfrn_version'] = DFRN_PROTOCOL_VERSION ;
218                         if($duplex == 1)
219                                 $params['duplex'] = 1;
220
221                         if($user[0]['page-flags'] == PAGE_COMMUNITY)
222                                 $params['page'] = 1;
223                         if($user[0]['page-flags'] == PAGE_PRVGROUP)
224                                 $params['page'] = 2;
225
226                         logger('Confirm: posting data to ' . $dfrn_confirm . ': ' . print_r($params,true), LOGGER_DATA);
227
228                         /*
229                          *
230                          * POST all this stuff to the other site.
231                          * Temporarily raise the network timeout to 120 seconds because the default 60
232                          * doesn't always give the other side quite enough time to decrypt everything.
233                          *
234                          */
235
236                         $res = post_url($dfrn_confirm, $params, null, $redirects, 120);
237
238                         logger(' Confirm: received data: ' . $res, LOGGER_DATA);
239
240                         // Now figure out what they responded. Try to be robust if the remote site is
241                         // having difficulty and throwing up errors of some kind.
242
243                         $leading_junk = substr($res,0,strpos($res,'<?xml'));
244
245                         $res = substr($res,strpos($res,'<?xml'));
246                         if(! strlen($res)) {
247
248                                         // No XML at all, this exchange is messed up really bad.
249                                         // We shouldn't proceed, because the xml parser might choke,
250                                         // and $status is going to be zero, which indicates success.
251                                         // We can hardly call this a success.
252
253                                 notice( t('Response from remote site was not understood.') . EOL);
254                                 return;
255                         }
256
257                         if(strlen($leading_junk) && Config::get('system','debugging')) {
258
259                                         // This might be more common. Mixed error text and some XML.
260                                         // If we're configured for debugging, show the text. Proceed in either case.
261
262                                 notice( t('Unexpected response from remote site: ') . EOL . $leading_junk . EOL );
263                         }
264
265                         if(stristr($res, "<status")===false) {
266                                 // wrong xml! stop here!
267                                 notice( t('Unexpected response from remote site: ') . EOL . htmlspecialchars($res) . EOL );
268                                 return;
269                         }
270
271                         $xml = parse_xml_string($res);
272                         $status = (int) $xml->status;
273                         $message = unxmlify($xml->message);   // human readable text of what may have gone wrong.
274                         switch($status) {
275                                 case 0:
276                                         info( t("Confirmation completed successfully.") . EOL);
277                                         if(strlen($message))
278                                                 notice( t('Remote site reported: ') . $message . EOL);
279                                         break;
280                                 case 1:
281                                         // birthday paradox - generate new dfrn-id and fall through.
282                                         $new_dfrn_id = random_string();
283                                         $r = q("UPDATE contact SET `issued-id` = '%s' WHERE `id` = %d AND `uid` = %d",
284                                                 dbesc($new_dfrn_id),
285                                                 intval($contact_id),
286                                                 intval($uid)
287                                         );
288
289                                 case 2:
290                                         notice( t("Temporary failure. Please wait and try again.") . EOL);
291                                         if(strlen($message))
292                                                 notice( t('Remote site reported: ') . $message . EOL);
293                                         break;
294
295
296                                 case 3:
297                                         notice( t("Introduction failed or was revoked.") . EOL);
298                                         if(strlen($message))
299                                                 notice( t('Remote site reported: ') . $message . EOL);
300                                         break;
301                                 }
302
303                         if(($status == 0) && ($intro_id)) {
304
305                                 // Success. Delete the notification.
306
307                                 $r = q("DELETE FROM `intro` WHERE `id` = %d AND `uid` = %d",
308                                         intval($intro_id),
309                                         intval($uid)
310                                 );
311
312                         }
313
314                         if($status != 0)
315                                 return;
316                 }
317
318
319                 /*
320                  *
321                  * We have now established a relationship with the other site.
322                  * Let's make our own personal copy of their profile photo so we don't have
323                  * to always load it from their site.
324                  *
325                  * We will also update the contact record with the nature and scope of the relationship.
326                  *
327                  */
328
329                 Contact::updateAvatar($contact['photo'], $uid, $contact_id);
330
331                 logger('dfrn_confirm: confirm - imported photos');
332
333                 if($network === NETWORK_DFRN) {
334
335                         $new_relation = CONTACT_IS_FOLLOWER;
336                         if(($relation == CONTACT_IS_SHARING) || ($duplex))
337                                 $new_relation = CONTACT_IS_FRIEND;
338
339                         if(($relation == CONTACT_IS_SHARING) && ($duplex))
340                                 $duplex = 0;
341
342                         $r = q("UPDATE `contact` SET `rel` = %d,
343                                 `name-date` = '%s',
344                                 `uri-date` = '%s',
345                                 `blocked` = 0,
346                                 `pending` = 0,
347                                 `duplex` = %d,
348                                 `hidden` = %d,
349                                 `network` = '%s' WHERE `id` = %d
350                         ",
351                                 intval($new_relation),
352                                 dbesc(datetime_convert()),
353                                 dbesc(datetime_convert()),
354                                 intval($duplex),
355                                 intval($hidden),
356                                 dbesc(NETWORK_DFRN),
357                                 intval($contact_id)
358                         );
359                 } else {
360
361                         // $network !== NETWORK_DFRN
362
363                         $network = (($contact['network']) ? $contact['network'] : NETWORK_OSTATUS);
364                         $notify = (($contact['notify']) ? $contact['notify'] : '');
365                         $poll   = (($contact['poll']) ? $contact['poll'] : '');
366
367                         $arr = Probe::uri($contact['url']);
368                         if (empty($contact['notify'])) {
369                                 $notify = $arr['notify'];
370                         }
371                         if (empty($contact['poll'])) {
372                                 $poll = $arr['poll'];
373                         }
374
375                         $addr = $arr['addr'];
376
377                         $new_relation = $contact['rel'];
378                         $writable = $contact['writable'];
379
380                         if($network === NETWORK_DIASPORA) {
381                                 if($duplex)
382                                         $new_relation = CONTACT_IS_FRIEND;
383                                 else
384                                         $new_relation = CONTACT_IS_FOLLOWER;
385
386                                 if($new_relation != CONTACT_IS_FOLLOWER)
387                                         $writable = 1;
388                         }
389
390                         $r = q("DELETE FROM `intro` WHERE `id` = %d AND `uid` = %d",
391                                 intval($intro_id),
392                                 intval($uid)
393                         );
394
395
396                         $r = q("UPDATE `contact` SET `name-date` = '%s',
397                                 `uri-date` = '%s',
398                                 `addr` = '%s',
399                                 `notify` = '%s',
400                                 `poll` = '%s',
401                                 `blocked` = 0,
402                                 `pending` = 0,
403                                 `network` = '%s',
404                                 `writable` = %d,
405                                 `hidden` = %d,
406                                 `rel` = %d
407                                 WHERE `id` = %d
408                         ",
409                                 dbesc(datetime_convert()),
410                                 dbesc(datetime_convert()),
411                                 dbesc($addr),
412                                 dbesc($notify),
413                                 dbesc($poll),
414                                 dbesc($network),
415                                 intval($writable),
416                                 intval($hidden),
417                                 intval($new_relation),
418                                 intval($contact_id)
419                         );
420                 }
421
422                 /// @TODO is DBM::is_result() working here?
423                 if ($r === false) {
424                         notice( t('Unable to set contact photo.') . EOL);
425                 }
426
427                 // reload contact info
428
429                 $r = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
430                         intval($contact_id)
431                 );
432                 if (DBM::is_result($r)) {
433                         $contact = $r[0];
434                 } else {
435                         $contact = null;
436                 }
437
438
439                 if ((isset($new_relation) && $new_relation == CONTACT_IS_FRIEND)) {
440
441                         if (($contact) && ($contact['network'] === NETWORK_DIASPORA)) {
442                                 $ret = Diaspora::sendShare($user[0],$r[0]);
443                                 logger('share returns: ' . $ret);
444                         }
445
446                         // Send a new friend post if we are allowed to...
447
448                         $r = q("SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
449                                 intval($uid)
450                         );
451
452                         if((DBM::is_result($r)) && ($r[0]['hide-friends'] == 0) && ($activity) && (! $hidden)) {
453
454                                 require_once 'include/items.php';
455
456                                 $self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
457                                         intval($uid)
458                                 );
459
460                                 if(count($self)) {
461
462                                         $arr = array();
463                                         $arr['guid'] = get_guid(32);
464                                         $arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), $uid);
465                                         $arr['uid'] = $uid;
466                                         $arr['contact-id'] = $self[0]['id'];
467                                         $arr['wall'] = 1;
468                                         $arr['type'] = 'wall';
469                                         $arr['gravity'] = 0;
470                                         $arr['origin'] = 1;
471                                         $arr['author-name'] = $arr['owner-name'] = $self[0]['name'];
472                                         $arr['author-link'] = $arr['owner-link'] = $self[0]['url'];
473                                         $arr['author-avatar'] = $arr['owner-avatar'] = $self[0]['thumb'];
474
475                                         $A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]';
476                                         $APhoto = '[url=' . $self[0]['url'] . ']' . '[img]' . $self[0]['thumb'] . '[/img][/url]';
477
478                                         $B = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
479                                         $BPhoto = '[url=' . $contact['url'] . ']' . '[img]' . $contact['thumb'] . '[/img][/url]';
480
481                                         $arr['verb'] = ACTIVITY_FRIEND;
482                                         $arr['object-type'] = ACTIVITY_OBJ_PERSON;
483                                         $arr['body'] =  sprintf( t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$BPhoto;
484
485                                         $arr['object'] = '<object><type>' . ACTIVITY_OBJ_PERSON . '</type><title>' . $contact['name'] . '</title>'
486                                                 . '<id>' . $contact['url'] . '/' . $contact['name'] . '</id>';
487                                         $arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $contact['url'] . '" />' . "\n");
488                                         $arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $contact['thumb'] . '" />' . "\n");
489                                         $arr['object'] .= '</link></object>' . "\n";
490
491                                         $arr['last-child'] = 1;
492
493                                         $arr['allow_cid'] = $user[0]['allow_cid'];
494                                         $arr['allow_gid'] = $user[0]['allow_gid'];
495                                         $arr['deny_cid']  = $user[0]['deny_cid'];
496                                         $arr['deny_gid']  = $user[0]['deny_gid'];
497
498                                         $i = item_store($arr);
499                                         if($i)
500                                                 Worker::add(PRIORITY_HIGH, "Notifier", "activity", $i);
501                                 }
502                         }
503                 }
504
505                 $def_gid = get_default_group($uid, $contact["network"]);
506                 if($contact && intval($def_gid))
507                         group_add_member($uid, '', $contact['id'], $def_gid);
508
509                 // Let's send our user to the contact editor in case they want to
510                 // do anything special with this new friend.
511
512                 if ($handsfree === null) {
513                         goaway(System::baseUrl() . '/contacts/' . intval($contact_id));
514                 } else {
515                         return;
516                 }
517                 //NOTREACHED
518         }
519
520         /*
521          *
522          *
523          * End of Scenario 1. [Local confirmation of remote friend request].
524          *
525          * Begin Scenario 2. This is the remote response to the above scenario.
526          * This will take place on the site that originally initiated the friend request.
527          * In the section above where the confirming party makes a POST and
528          * retrieves xml status information, they are communicating with the following code.
529          *
530          */
531
532         if (x($_POST,'source_url')) {
533
534                 // We are processing an external confirmation to an introduction created by our user.
535
536                 $public_key = ((x($_POST,'public_key'))   ? $_POST['public_key']           : '');
537                 $dfrn_id    = ((x($_POST,'dfrn_id'))      ? hex2bin($_POST['dfrn_id'])     : '');
538                 $source_url = ((x($_POST,'source_url'))   ? hex2bin($_POST['source_url'])  : '');
539                 $aes_key    = ((x($_POST,'aes_key'))      ? $_POST['aes_key']              : '');
540                 $duplex     = ((x($_POST,'duplex'))       ? intval($_POST['duplex'])       : 0 );
541                 $page       = ((x($_POST,'page'))         ? intval($_POST['page'])         : 0 );
542                 $version_id = ((x($_POST,'dfrn_version')) ? (float) $_POST['dfrn_version'] : 2.0);
543
544                 $forum = (($page == 1) ? 1 : 0);
545                 $prv   = (($page == 2) ? 1 : 0);
546
547                 logger('dfrn_confirm: requestee contacted: ' . $node);
548
549                 logger('dfrn_confirm: request: POST=' . print_r($_POST,true), LOGGER_DATA);
550
551                 // If $aes_key is set, both of these items require unpacking from the hex transport encoding.
552
553                 if (x($aes_key)) {
554                         $aes_key = hex2bin($aes_key);
555                         $public_key = hex2bin($public_key);
556                 }
557
558                 // Find our user's account
559
560                 $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' LIMIT 1",
561                         dbesc($node));
562
563                 if (! DBM::is_result($r)) {
564                         $message = sprintf(t('No user record found for \'%s\' '), $node);
565                         xml_status(3,$message); // failure
566                         // NOTREACHED
567                 }
568
569                 $my_prvkey = $r[0]['prvkey'];
570                 $local_uid = $r[0]['uid'];
571
572
573                 if(! strstr($my_prvkey,'PRIVATE KEY')) {
574                         $message = t('Our site encryption key is apparently messed up.');
575                         xml_status(3,$message);
576                 }
577
578                 // verify everything
579
580                 $decrypted_source_url = "";
581                 openssl_private_decrypt($source_url,$decrypted_source_url,$my_prvkey);
582
583
584                 if(! strlen($decrypted_source_url)) {
585                         $message = t('Empty site URL was provided or URL could not be decrypted by us.');
586                         xml_status(3,$message);
587                         // NOTREACHED
588                 }
589
590                 $ret = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d LIMIT 1",
591                         dbesc($decrypted_source_url),
592                         intval($local_uid)
593                 );
594                 if (!DBM::is_result($ret)) {
595                         if (strstr($decrypted_source_url,'http:')) {
596                                 $newurl = str_replace('http:','https:',$decrypted_source_url);
597                         } else {
598                                 $newurl = str_replace('https:','http:',$decrypted_source_url);
599                         }
600
601                         $ret = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d LIMIT 1",
602                                 dbesc($newurl),
603                                 intval($local_uid)
604                         );
605                         if (!DBM::is_result($ret)) {
606                                 // this is either a bogus confirmation (?) or we deleted the original introduction.
607                                 $message = t('Contact record was not found for you on our site.');
608                                 xml_status(3,$message);
609                                 return; // NOTREACHED
610                         }
611                 }
612
613                 $relation = $ret[0]['rel'];
614
615                 // Decrypt all this stuff we just received
616
617                 $foreign_pubkey = $ret[0]['site-pubkey'];
618                 $dfrn_record    = $ret[0]['id'];
619
620                 if (! $foreign_pubkey) {
621                         $message = sprintf( t('Site public key not available in contact record for URL %s.'), $newurl);
622                         xml_status(3,$message);
623                 }
624
625                 $decrypted_dfrn_id = "";
626                 openssl_public_decrypt($dfrn_id,$decrypted_dfrn_id,$foreign_pubkey);
627
628                 if (strlen($aes_key)) {
629                         $decrypted_aes_key = "";
630                         openssl_private_decrypt($aes_key,$decrypted_aes_key,$my_prvkey);
631                         $dfrn_pubkey = openssl_decrypt($public_key,'AES-256-CBC',$decrypted_aes_key);
632                 }
633                 else {
634                         $dfrn_pubkey = $public_key;
635                 }
636
637                 $r = q("SELECT * FROM `contact` WHERE `dfrn-id` = '%s' LIMIT 1",
638                         dbesc($decrypted_dfrn_id)
639                 );
640                 if (DBM::is_result($r)) {
641                         $message = t('The ID provided by your system is a duplicate on our system. It should work if you try again.');
642                         xml_status(1,$message); // Birthday paradox - duplicate dfrn-id
643                         // NOTREACHED
644                 }
645
646                 $r = q("UPDATE `contact` SET `dfrn-id` = '%s', `pubkey` = '%s' WHERE `id` = %d",
647                         dbesc($decrypted_dfrn_id),
648                         dbesc($dfrn_pubkey),
649                         intval($dfrn_record)
650                 );
651                 if (! DBM::is_result($r)) {
652                         $message = t('Unable to set your contact credentials on our system.');
653                         xml_status(3,$message);
654                 }
655
656                 // It's possible that the other person also requested friendship.
657                 // If it is a duplex relationship, ditch the issued-id if one exists.
658
659                 if($duplex) {
660                         $r = q("UPDATE `contact` SET `issued-id` = '' WHERE `id` = %d",
661                                 intval($dfrn_record)
662                         );
663                 }
664
665                 // We're good but now we have to scrape the profile photo and send notifications.
666
667
668
669                 $r = q("SELECT `photo` FROM `contact` WHERE `id` = %d LIMIT 1",
670                         intval($dfrn_record));
671
672                 if (DBM::is_result($r)) {
673                         $photo = $r[0]['photo'];
674                 } else {
675                         $photo = System::baseUrl() . '/images/person-175.jpg';
676                 }
677
678                 Contact::updateAvatar($photo,$local_uid,$dfrn_record);
679
680                 logger('dfrn_confirm: request - photos imported');
681
682                 $new_relation = CONTACT_IS_SHARING;
683                 if (($relation == CONTACT_IS_FOLLOWER) || ($duplex)) {
684                         $new_relation = CONTACT_IS_FRIEND;
685                 }
686
687                 if (($relation == CONTACT_IS_FOLLOWER) && ($duplex)) {
688                         $duplex = 0;
689                 }
690
691                 $r = q("UPDATE `contact` SET
692                         `rel` = %d,
693                         `name-date` = '%s',
694                         `uri-date` = '%s',
695                         `blocked` = 0,
696                         `pending` = 0,
697                         `duplex` = %d,
698                         `forum` = %d,
699                         `prv` = %d,
700                         `network` = '%s' WHERE `id` = %d
701                 ",
702                         intval($new_relation),
703                         dbesc(datetime_convert()),
704                         dbesc(datetime_convert()),
705                         intval($duplex),
706                         intval($forum),
707                         intval($prv),
708                         dbesc(NETWORK_DFRN),
709                         intval($dfrn_record)
710                 );
711                 if ($r === false) {    // indicates schema is messed up or total db failure
712                         $message = t('Unable to update your contact profile details on our system');
713                         xml_status(3,$message);
714                 }
715
716                 // Otherwise everything seems to have worked and we are almost done. Yay!
717                 // Send an email notification
718
719                 logger('dfrn_confirm: request: info updated');
720
721                 $r = q("SELECT `contact`.*, `user`.* FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
722                         WHERE `contact`.`id` = %d LIMIT 1",
723                         intval($dfrn_record)
724                 );
725
726                 if (DBM::is_result($r))
727                         $combined = $r[0];
728
729                 if((DBM::is_result($r)) && ($r[0]['notify-flags'] & NOTIFY_CONFIRM)) {
730                         $mutual = ($new_relation == CONTACT_IS_FRIEND);
731                         notification(array(
732                                 'type'         => NOTIFY_CONFIRM,
733                                 'notify_flags' => $r[0]['notify-flags'],
734                                 'language'     => $r[0]['language'],
735                                 'to_name'      => $r[0]['username'],
736                                 'to_email'     => $r[0]['email'],
737                                 'uid'          => $r[0]['uid'],
738                                 'link'             => System::baseUrl() . '/contacts/' . $dfrn_record,
739                                 'source_name'  => ((strlen(stripslashes($r[0]['name']))) ? stripslashes($r[0]['name']) : t('[Name Withheld]')),
740                                 'source_link'  => $r[0]['url'],
741                                 'source_photo' => $r[0]['photo'],
742                                 'verb'         => ($mutual?ACTIVITY_FRIEND:ACTIVITY_FOLLOW),
743                                 'otype'        => 'intro'
744                         ));
745                 }
746
747                 // Send a new friend post if we are allowed to...
748
749                 if($page && intval(PConfig::get($local_uid,'system','post_joingroup'))) {
750                         $r = q("SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
751                                 intval($local_uid)
752                         );
753
754                         if((DBM::is_result($r)) && ($r[0]['hide-friends'] == 0)) {
755
756                                 require_once 'include/items.php';
757
758                                 $self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
759                                         intval($local_uid)
760                                 );
761
762                                 if(count($self)) {
763
764                                         $arr = array();
765                                         $arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), $local_uid);
766                                         $arr['uid'] = $local_uid;
767                                         $arr['contact-id'] = $self[0]['id'];
768                                         $arr['wall'] = 1;
769                                         $arr['type'] = 'wall';
770                                         $arr['gravity'] = 0;
771                                         $arr['origin'] = 1;
772                                         $arr['author-name'] = $arr['owner-name'] = $self[0]['name'];
773                                         $arr['author-link'] = $arr['owner-link'] = $self[0]['url'];
774                                         $arr['author-avatar'] = $arr['owner-avatar'] = $self[0]['thumb'];
775
776                                         $A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]';
777                                         $APhoto = '[url=' . $self[0]['url'] . ']' . '[img]' . $self[0]['thumb'] . '[/img][/url]';
778
779                                         $B = '[url=' . $combined['url'] . ']' . $combined['name'] . '[/url]';
780                                         $BPhoto = '[url=' . $combined['url'] . ']' . '[img]' . $combined['thumb'] . '[/img][/url]';
781
782                                         $arr['verb'] = ACTIVITY_JOIN;
783                                         $arr['object-type'] = ACTIVITY_OBJ_GROUP;
784                                         $arr['body'] =  sprintf( t('%1$s has joined %2$s'), $A, $B)."\n\n\n" .$BPhoto;
785                                         $arr['object'] = '<object><type>' . ACTIVITY_OBJ_GROUP . '</type><title>' . $combined['name'] . '</title>'
786                                                 . '<id>' . $combined['url'] . '/' . $combined['name'] . '</id>';
787                                         $arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $combined['url'] . '" />' . "\n");
788                                         $arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $combined['thumb'] . '" />' . "\n");
789                                         $arr['object'] .= '</link></object>' . "\n";
790
791                                         $arr['last-child'] = 1;
792
793                                         $arr['allow_cid'] = $user[0]['allow_cid'];
794                                         $arr['allow_gid'] = $user[0]['allow_gid'];
795                                         $arr['deny_cid']  = $user[0]['deny_cid'];
796                                         $arr['deny_gid']  = $user[0]['deny_gid'];
797
798                                         $i = item_store($arr);
799                                         if($i)
800                                                 Worker::add(PRIORITY_HIGH, "Notifier", "activity", $i);
801
802                                 }
803                         }
804                 }
805                 xml_status(0); // Success
806                 return; // NOTREACHED
807
808                         ////////////////////// End of this scenario ///////////////////////////////////////////////
809         }
810
811         // somebody arrived here by mistake or they are fishing. Send them to the homepage.
812
813         goaway(System::baseUrl());
814         // NOTREACHED
815
816 }