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