]> git.mxchange.org Git - friendica.git/blob - mod/dfrn_confirm.php
Merge pull request #4234 from annando/participation-2
[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\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\Util\Crypto;
33
34 require_once 'include/enotify.php';
35 require_once 'include/items.php';
36
37 function dfrn_confirm_post(App $a, $handsfree = null)
38 {
39         $node = null;
40         if (is_array($handsfree)) {
41                 /*
42                  * We were called directly from dfrn_request due to automatic friend acceptance.
43                  * Any $_POST parameters we may require are supplied in the $handsfree array.
44                  *
45                  */
46                 $node = $handsfree['node'];
47                 $a->interactive = false; // notice() becomes a no-op since nobody is there to see it
48         } elseif ($a->argc > 1) {
49                 $node = $a->argv[1];
50         }
51
52         /*
53          * Main entry point. Scenario 1. Our user received a friend request notification (perhaps
54          * from another site) and clicked 'Approve'.
55          * $POST['source_url'] is not set. If it is, it indicates Scenario 2.
56          *
57          * We may also have been called directly from dfrn_request ($handsfree != null) due to
58          * this being a page type which supports automatic friend acceptance. That is also Scenario 1
59          * since we are operating on behalf of our registered user to approve a friendship.
60          */
61         if (!x($_POST, 'source_url')) {
62                 $uid = defaults($handsfree, 'uid', local_user());
63                 if (!$uid) {
64                         notice(t('Permission denied.') . EOL);
65                         return;
66                 }
67
68                 $user = dba::selectFirst('user', [], ['uid' => $uid]);
69                 if (!DBM::is_result($user)) {
70                         notice(t('Profile not found.') . EOL);
71                         return;
72                 }
73
74                 // These data elements may come from either the friend request notification form or $handsfree array.
75                 if (is_array($handsfree)) {
76                         logger('Confirm in handsfree mode');
77                         $dfrn_id  = $handsfree['dfrn_id'];
78                         $intro_id = $handsfree['intro_id'];
79                         $duplex   = $handsfree['duplex'];
80                         $cid      = 0;
81                         $hidden   = intval(defaults($handsfree, 'hidden'  , 0));
82                         $activity = intval(defaults($handsfree, 'activity', 0));
83                 } else {
84                         $dfrn_id  = notags(trim(defaults($_POST, 'dfrn_id'   , '')));
85                         $intro_id =      intval(defaults($_POST, 'intro_id'  , 0));
86                         $duplex   =      intval(defaults($_POST, 'duplex'    , 0));
87                         $cid      =      intval(defaults($_POST, 'contact_id', 0));
88                         $hidden   =      intval(defaults($_POST, 'hidden'    , 0));
89                         $activity =      intval(defaults($_POST, 'activity'  , 0));
90                 }
91
92                 /*
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.
96                  */
97                 if (strlen($dfrn_id)) {
98                         $cid = 0;
99                 }
100
101                 logger('Confirming request for dfrn_id (issued) ' . $dfrn_id);
102                 if ($cid) {
103                         logger('Confirming follower with contact_id: ' . $cid);
104                 }
105
106                 /*
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.
110                  */
111                 $r = q("SELECT *
112                         FROM `contact`
113                         WHERE (
114                                 (`issued-id` != '' AND `issued-id` = '%s')
115                                 OR
116                                 (`id` = %d AND `id` != 0)
117                         )
118                         AND `uid` = %d
119                         AND `duplex` = 0
120                         LIMIT 1",
121                         dbesc($dfrn_id),
122                         intval($cid),
123                         intval($uid)
124                 );
125                 if (!DBM::is_result($r)) {
126                         logger('Contact not found in DB.');
127                         notice(t('Contact not found.') . EOL);
128                         notice(t('This may occasionally happen if contact was requested by both persons and it has already been approved.') . EOL);
129                         return;
130                 }
131
132                 $contact = $r[0];
133
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'];
139
140                 $network = ((strlen($contact['issued-id'])) ? NETWORK_DFRN : NETWORK_OSTATUS);
141
142                 if ($contact['network']) {
143                         $network = $contact['network'];
144                 }
145
146                 if ($network === NETWORK_DFRN) {
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                         $res = Crypto::newKeypair(4096);
155
156                         $private_key = $res['prvkey'];
157                         $public_key  = $res['pubkey'];
158
159                         // Save the private key. Send them the public key.
160                         q("UPDATE `contact` SET `prvkey` = '%s' WHERE `id` = %d AND `uid` = %d",
161                                 dbesc($private_key),
162                                 intval($contact_id),
163                                 intval($uid)
164                         );
165
166                         $params = [];
167
168                         /*
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.
175                          *
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.
179                          */
180
181                         $src_aes_key = openssl_random_pseudo_bytes(64);
182
183                         $result = '';
184                         openssl_private_encrypt($dfrn_id, $result, $user['prvkey']);
185
186                         $params['dfrn_id'] = bin2hex($result);
187                         $params['public_key'] = $public_key;
188
189                         $my_url = System::baseUrl() . '/profile/' . $user['nickname'];
190
191                         openssl_public_encrypt($my_url, $params['source_url'], $site_pubkey);
192                         $params['source_url'] = bin2hex($params['source_url']);
193
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));
198                         }
199
200                         $params['dfrn_version'] = DFRN_PROTOCOL_VERSION;
201                         if ($duplex == 1) {
202                                 $params['duplex'] = 1;
203                         }
204
205                         if ($user['page-flags'] == PAGE_COMMUNITY) {
206                                 $params['page'] = 1;
207                         }
208
209                         if ($user['page-flags'] == PAGE_PRVGROUP) {
210                                 $params['page'] = 2;
211                         }
212
213                         logger('Confirm: posting data to ' . $dfrn_confirm . ': ' . print_r($params, true), LOGGER_DATA);
214
215                         /*
216                          *
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.
220                          *
221                          */
222
223                         $res = post_url($dfrn_confirm, $params, null, $redirects, 120);
224
225                         logger(' Confirm: received data: ' . $res, LOGGER_DATA);
226
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.
229
230                         $leading_junk = substr($res, 0, strpos($res, '<?xml'));
231
232                         $res = substr($res, strpos($res, '<?xml'));
233                         if (!strlen($res)) {
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(t('Response from remote site was not understood.') . EOL);
239                                 return;
240                         }
241
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(t('Unexpected response from remote site: ') . EOL . $leading_junk . EOL);
246                         }
247
248                         if (stristr($res, "<status") === false) {
249                                 // wrong xml! stop here!
250                                 notice(t('Unexpected response from remote site: ') . EOL . htmlspecialchars($res) . EOL);
251                                 return;
252                         }
253
254                         $xml = parse_xml_string($res);
255                         $status = (int) $xml->status;
256                         $message = unxmlify($xml->message);   // human readable text of what may have gone wrong.
257                         switch ($status) {
258                                 case 0:
259                                         info(t("Confirmation completed successfully.") . EOL);
260                                         break;
261                                 case 1:
262                                         // birthday paradox - generate new dfrn-id and fall through.
263                                         $new_dfrn_id = random_string();
264                                         q("UPDATE contact SET `issued-id` = '%s' WHERE `id` = %d AND `uid` = %d",
265                                                 dbesc($new_dfrn_id),
266                                                 intval($contact_id),
267                                                 intval($uid)
268                                         );
269
270                                 case 2:
271                                         notice(t("Temporary failure. Please wait and try again.") . EOL);
272                                         break;
273                                 case 3:
274                                         notice(t("Introduction failed or was revoked.") . EOL);
275                                         break;
276                         }
277
278                         if (strlen($message)) {
279                                 notice(t('Remote site reported: ') . $message . EOL);
280                         }
281
282                         if (($status == 0) && ($intro_id)) {
283                                 // Success. Delete the notification.
284                                 q("DELETE FROM `intro` WHERE `id` = %d AND `uid` = %d",
285                                         intval($intro_id),
286                                         intval($uid)
287                                 );
288                         }
289
290                         if ($status != 0) {
291                                 return;
292                         }
293                 }
294
295                 /*
296                  * We have now established a relationship with the other site.
297                  * Let's make our own personal copy of their profile photo so we don't have
298                  * to always load it from their site.
299                  *
300                  * We will also update the contact record with the nature and scope of the relationship.
301                  */
302                 Contact::updateAvatar($contact['photo'], $uid, $contact_id);
303
304                 logger('dfrn_confirm: confirm - imported photos');
305
306                 if ($network === NETWORK_DFRN) {
307                         $new_relation = CONTACT_IS_FOLLOWER;
308                         if (($relation == CONTACT_IS_SHARING) || ($duplex)) {
309                                 $new_relation = CONTACT_IS_FRIEND;
310                         }
311
312                         if (($relation == CONTACT_IS_SHARING) && ($duplex)) {
313                                 $duplex = 0;
314                         }
315
316                         $r = q("UPDATE `contact` SET `rel` = %d,
317                                 `name-date` = '%s',
318                                 `uri-date` = '%s',
319                                 `blocked` = 0,
320                                 `pending` = 0,
321                                 `duplex` = %d,
322                                 `hidden` = %d,
323                                 `network` = '%s' WHERE `id` = %d
324                         ",
325                                 intval($new_relation),
326                                 dbesc(datetime_convert()),
327                                 dbesc(datetime_convert()),
328                                 intval($duplex),
329                                 intval($hidden),
330                                 dbesc(NETWORK_DFRN),
331                                 intval($contact_id)
332                         );
333                 } else {
334                         // $network !== NETWORK_DFRN
335                         $network = defaults($contact, 'network', NETWORK_OSTATUS);
336
337                         $arr = Probe::uri($contact['url']);
338
339                         $notify  = defaults($contact, 'notify' , $arr['notify']);
340                         $poll    = defaults($contact, 'poll'   , $arr['poll']);
341
342                         $addr = $arr['addr'];
343
344                         $new_relation = $contact['rel'];
345                         $writable = $contact['writable'];
346
347                         if ($network === NETWORK_DIASPORA) {
348                                 if ($duplex) {
349                                         $new_relation = CONTACT_IS_FRIEND;
350                                 } else {
351                                         $new_relation = CONTACT_IS_FOLLOWER;
352                                 }
353
354                                 if ($new_relation != CONTACT_IS_FOLLOWER) {
355                                         $writable = 1;
356                                 }
357                         }
358
359                         q("DELETE FROM `intro` WHERE `id` = %d AND `uid` = %d",
360                                 intval($intro_id),
361                                 intval($uid)
362                         );
363
364                         $r = q("UPDATE `contact` SET `name-date` = '%s',
365                                 `uri-date` = '%s',
366                                 `addr` = '%s',
367                                 `notify` = '%s',
368                                 `poll` = '%s',
369                                 `blocked` = 0,
370                                 `pending` = 0,
371                                 `network` = '%s',
372                                 `writable` = %d,
373                                 `hidden` = %d,
374                                 `rel` = %d
375                                 WHERE `id` = %d
376                         ",
377                                 dbesc(datetime_convert()),
378                                 dbesc(datetime_convert()),
379                                 dbesc($addr),
380                                 dbesc($notify),
381                                 dbesc($poll),
382                                 dbesc($network),
383                                 intval($writable),
384                                 intval($hidden),
385                                 intval($new_relation),
386                                 intval($contact_id)
387                         );
388                 }
389
390                 /// @TODO is DBM::is_result() working here?
391                 if (!DBM::is_result($r)) {
392                         notice(t('Unable to set contact photo.') . EOL);
393                 }
394
395                 // reload contact info
396                 $contact = dba::selectFirst('contact', [], ['id' => $contact_id]);
397                 if ((isset($new_relation) && $new_relation == CONTACT_IS_FRIEND)) {
398                         if (DBM::is_result($contact) && ($contact['network'] === NETWORK_DIASPORA)) {
399                                 $ret = Diaspora::sendShare($user, $contact);
400                                 logger('share returns: ' . $ret);
401                         }
402
403                         // Send a new friend post if we are allowed to...
404                         $profile = dba::selectFirst('profile', ['hide-friends'], ['is-default' => true, 'uid' => $uid]);
405                         if (x($profile, 'hide-friends') === 0 && $activity && !$hidden) {
406                                 $self = dba::selectFirst('contact', [], ['self' => true, 'uid' => $uid]);
407                                 if (DBM::is_result($self)) {
408                                         $arr = [];
409                                         $arr['guid'] = get_guid(32);
410                                         $arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), $uid);
411                                         $arr['uid'] = $uid;
412                                         $arr['contact-id'] = $self['id'];
413                                         $arr['wall'] = 1;
414                                         $arr['type'] = 'wall';
415                                         $arr['gravity'] = 0;
416                                         $arr['origin'] = 1;
417                                         $arr['author-name']   = $arr['owner-name']   = $self['name'];
418                                         $arr['author-link']   = $arr['owner-link']   = $self['url'];
419                                         $arr['author-avatar'] = $arr['owner-avatar'] = $self['thumb'];
420
421                                         $A = '[url=' . $self['url'] . ']' . $self['name'] . '[/url]';
422                                         $B = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
423                                         $BPhoto = '[url=' . $contact['url'] . ']' . '[img]' . $contact['thumb'] . '[/img][/url]';
424
425                                         $arr['verb'] = ACTIVITY_FRIEND;
426                                         $arr['object-type'] = ACTIVITY_OBJ_PERSON;
427                                         $arr['body'] = t('%1$s is now friends with %2$s', $A, $B) . "\n\n\n" . $BPhoto;
428
429                                         $arr['object'] = '<object><type>' . ACTIVITY_OBJ_PERSON . '</type><title>' . $contact['name'] . '</title>'
430                                                 . '<id>' . $contact['url'] . '/' . $contact['name'] . '</id>';
431                                         $arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $contact['url'] . '" />' . "\n");
432                                         $arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $contact['thumb'] . '" />' . "\n");
433                                         $arr['object'] .= '</link></object>' . "\n";
434
435                                         $arr['last-child'] = 1;
436
437                                         $arr['allow_cid'] = $user['allow_cid'];
438                                         $arr['allow_gid'] = $user['allow_gid'];
439                                         $arr['deny_cid']  = $user['deny_cid'];
440                                         $arr['deny_gid']  = $user['deny_gid'];
441
442                                         $i = item_store($arr);
443                                         if ($i) {
444                                                 Worker::add(PRIORITY_HIGH, "Notifier", "activity", $i);
445                                         }
446                                 }
447                         }
448                 }
449
450                 Group::addMember(User::getDefaultGroup($uid, $contact["network"]), $contact['id']);
451
452                 // Let's send our user to the contact editor in case they want to
453                 // do anything special with this new friend.
454                 if ($handsfree === null) {
455                         goaway(System::baseUrl() . '/contacts/' . intval($contact_id));
456                 } else {
457                         return;
458                 }
459                 //NOTREACHED
460         }
461
462         /*
463          * End of Scenario 1. [Local confirmation of remote friend request].
464          *
465          * Begin Scenario 2. This is the remote response to the above scenario.
466          * This will take place on the site that originally initiated the friend request.
467          * In the section above where the confirming party makes a POST and
468          * retrieves xml status information, they are communicating with the following code.
469          */
470         if (x($_POST, 'source_url')) {
471                 // We are processing an external confirmation to an introduction created by our user.
472                 $public_key =         defaults($_POST, 'public_key', '');
473                 $dfrn_id    = hex2bin(defaults($_POST, 'dfrn_id'   , ''));
474                 $source_url = hex2bin(defaults($_POST, 'source_url', ''));
475                 $aes_key    =         defaults($_POST, 'aes_key'   , '');
476                 $duplex     =  intval(defaults($_POST, 'duplex'    , 0));
477                 $page       =  intval(defaults($_POST, 'page'      , 0));
478
479                 $forum = (($page == 1) ? 1 : 0);
480                 $prv   = (($page == 2) ? 1 : 0);
481
482                 logger('dfrn_confirm: requestee contacted: ' . $node);
483
484                 logger('dfrn_confirm: request: POST=' . print_r($_POST, true), LOGGER_DATA);
485
486                 // If $aes_key is set, both of these items require unpacking from the hex transport encoding.
487
488                 if (x($aes_key)) {
489                         $aes_key = hex2bin($aes_key);
490                         $public_key = hex2bin($public_key);
491                 }
492
493                 // Find our user's account
494                 $user = dba::selectFirst('user', [], ['nickname' => $node]);
495                 if (!DBM::is_result($user)) {
496                         $message = t('No user record found for \'%s\' ', $node);
497                         xml_status(3, $message); // failure
498                         // NOTREACHED
499                 }
500
501                 $my_prvkey = $user['prvkey'];
502                 $local_uid = $user['uid'];
503
504
505                 if (!strstr($my_prvkey, 'PRIVATE KEY')) {
506                         $message = t('Our site encryption key is apparently messed up.');
507                         xml_status(3, $message);
508                 }
509
510                 // verify everything
511
512                 $decrypted_source_url = "";
513                 openssl_private_decrypt($source_url, $decrypted_source_url, $my_prvkey);
514
515
516                 if (!strlen($decrypted_source_url)) {
517                         $message = t('Empty site URL was provided or URL could not be decrypted by us.');
518                         xml_status(3, $message);
519                         // NOTREACHED
520                 }
521
522                 $contact = dba::selectFirst('contact', [], ['url' => $decrypted_source_url, 'uid' => $local_uid]);
523                 if (!DBM::is_result($contact)) {
524                         if (strstr($decrypted_source_url, 'http:')) {
525                                 $newurl = str_replace('http:', 'https:', $decrypted_source_url);
526                         } else {
527                                 $newurl = str_replace('https:', 'http:', $decrypted_source_url);
528                         }
529
530                         $contact = dba::selectFirst('contact', [], ['url' => $newurl, 'uid' => $local_uid]);
531                         if (!DBM::is_result($contact)) {
532                                 // this is either a bogus confirmation (?) or we deleted the original introduction.
533                                 $message = t('Contact record was not found for you on our site.');
534                                 xml_status(3, $message);
535                                 return; // NOTREACHED
536                         }
537                 }
538
539                 $relation = $contact['rel'];
540
541                 // Decrypt all this stuff we just received
542
543                 $foreign_pubkey = $contact['site-pubkey'];
544                 $dfrn_record = $contact['id'];
545
546                 if (!$foreign_pubkey) {
547                         $message = t('Site public key not available in contact record for URL %s.', $decrypted_source_url);
548                         xml_status(3, $message);
549                 }
550
551                 $decrypted_dfrn_id = "";
552                 openssl_public_decrypt($dfrn_id, $decrypted_dfrn_id, $foreign_pubkey);
553
554                 if (strlen($aes_key)) {
555                         $decrypted_aes_key = "";
556                         openssl_private_decrypt($aes_key, $decrypted_aes_key, $my_prvkey);
557                         $dfrn_pubkey = openssl_decrypt($public_key, 'AES-256-CBC', $decrypted_aes_key);
558                 } else {
559                         $dfrn_pubkey = $public_key;
560                 }
561
562                 if (dba::exists('contact', ['dfrn-id' => $decrypted_dfrn_id])) {
563                         $message = t('The ID provided by your system is a duplicate on our system. It should work if you try again.');
564                         xml_status(1, $message); // Birthday paradox - duplicate dfrn-id
565                         // NOTREACHED
566                 }
567
568                 $r = q("UPDATE `contact` SET `dfrn-id` = '%s', `pubkey` = '%s' WHERE `id` = %d",
569                         dbesc($decrypted_dfrn_id),
570                         dbesc($dfrn_pubkey),
571                         intval($dfrn_record)
572                 );
573                 if (!DBM::is_result($r)) {
574                         $message = t('Unable to set your contact credentials on our system.');
575                         xml_status(3, $message);
576                 }
577
578                 // It's possible that the other person also requested friendship.
579                 // If it is a duplex relationship, ditch the issued-id if one exists.
580
581                 if ($duplex) {
582                         q("UPDATE `contact` SET `issued-id` = '' WHERE `id` = %d",
583                                 intval($dfrn_record)
584                         );
585                 }
586
587                 // We're good but now we have to scrape the profile photo and send notifications.
588                 $contact = dba::selectFirst('contact', ['photo'], ['id' => $dfrn_record]);
589                 if (DBM::is_result($contact)) {
590                         $photo = $contact['photo'];
591                 } else {
592                         $photo = System::baseUrl() . '/images/person-175.jpg';
593                 }
594
595                 Contact::updateAvatar($photo, $local_uid, $dfrn_record);
596
597                 logger('dfrn_confirm: request - photos imported');
598
599                 $new_relation = CONTACT_IS_SHARING;
600                 if (($relation == CONTACT_IS_FOLLOWER) || ($duplex)) {
601                         $new_relation = CONTACT_IS_FRIEND;
602                 }
603
604                 if (($relation == CONTACT_IS_FOLLOWER) && ($duplex)) {
605                         $duplex = 0;
606                 }
607
608                 $r = q("UPDATE `contact` SET
609                         `rel` = %d,
610                         `name-date` = '%s',
611                         `uri-date` = '%s',
612                         `blocked` = 0,
613                         `pending` = 0,
614                         `duplex` = %d,
615                         `forum` = %d,
616                         `prv` = %d,
617                         `network` = '%s' WHERE `id` = %d
618                 ",
619                         intval($new_relation),
620                         dbesc(datetime_convert()),
621                         dbesc(datetime_convert()),
622                         intval($duplex),
623                         intval($forum),
624                         intval($prv),
625                         dbesc(NETWORK_DFRN),
626                         intval($dfrn_record)
627                 );
628                 if (!DBM::is_result($r)) {      // indicates schema is messed up or total db failure
629                         $message = t('Unable to update your contact profile details on our system');
630                         xml_status(3, $message);
631                 }
632
633                 // Otherwise everything seems to have worked and we are almost done. Yay!
634                 // Send an email notification
635
636                 logger('dfrn_confirm: request: info updated');
637
638                 $combined = null;
639                 $r = q("SELECT `contact`.*, `user`.*
640                         FROM `contact`
641                         LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
642                         WHERE `contact`.`id` = %d
643                         LIMIT 1",
644                         intval($dfrn_record)
645                 );
646                 if (DBM::is_result($r)) {
647                         $combined = $r[0];
648
649                         if ($combined['notify-flags'] & NOTIFY_CONFIRM) {
650                                 $mutual = ($new_relation == CONTACT_IS_FRIEND);
651                                 notification([
652                                         'type'         => NOTIFY_CONFIRM,
653                                         'notify_flags' => $combined['notify-flags'],
654                                         'language'     => $combined['language'],
655                                         'to_name'      => $combined['username'],
656                                         'to_email'     => $combined['email'],
657                                         'uid'          => $combined['uid'],
658                                         'link'         => System::baseUrl() . '/contacts/' . $dfrn_record,
659                                         'source_name'  => ((strlen(stripslashes($combined['name']))) ? stripslashes($combined['name']) : t('[Name Withheld]')),
660                                         'source_link'  => $combined['url'],
661                                         'source_photo' => $combined['photo'],
662                                         'verb'         => ($mutual?ACTIVITY_FRIEND:ACTIVITY_FOLLOW),
663                                         'otype'        => 'intro'
664                                 ]);
665                         }
666                 }
667
668                 // Send a new friend post if we are allowed to...
669                 if ($page && intval(PConfig::get($local_uid, 'system', 'post_joingroup'))) {
670                         $profile = dba::selectFirst('profile', ['hide-friends'], ['is-default' => true, 'uid' => $local_uid]);
671                         if (x($profile, 'hide-friends') === 0) {
672                                 $self = dba::selectFirst('contact', [], ['self' => true, 'uid' => $local_uid]);
673                                 if (DBM::is_result($self)) {
674                                         $arr = [];
675                                         $arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), $local_uid);
676                                         $arr['uid'] = $local_uid;
677                                         $arr['contact-id'] = $self['id'];
678                                         $arr['wall'] = 1;
679                                         $arr['type'] = 'wall';
680                                         $arr['gravity'] = 0;
681                                         $arr['origin'] = 1;
682                                         $arr['author-name']   = $arr['owner-name']   = $self['name'];
683                                         $arr['author-link']   = $arr['owner-link']   = $self['url'];
684                                         $arr['author-avatar'] = $arr['owner-avatar'] = $self['thumb'];
685
686                                         $A = '[url=' . $self['url'] . ']' . $self['name'] . '[/url]';
687                                         $B = '[url=' . $combined['url'] . ']' . $combined['name'] . '[/url]';
688                                         $BPhoto = '[url=' . $combined['url'] . ']' . '[img]' . $combined['thumb'] . '[/img][/url]';
689
690                                         $arr['verb'] = ACTIVITY_JOIN;
691                                         $arr['object-type'] = ACTIVITY_OBJ_GROUP;
692                                         $arr['body'] = t('%1$s has joined %2$s', $A, $B) . "\n\n\n" . $BPhoto;
693                                         $arr['object'] = '<object><type>' . ACTIVITY_OBJ_GROUP . '</type><title>' . $combined['name'] . '</title>'
694                                                 . '<id>' . $combined['url'] . '/' . $combined['name'] . '</id>';
695                                         $arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $combined['url'] . '" />' . "\n");
696                                         $arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $combined['thumb'] . '" />' . "\n");
697                                         $arr['object'] .= '</link></object>' . "\n";
698
699                                         $arr['last-child'] = 1;
700
701                                         $arr['allow_cid'] = $user['allow_cid'];
702                                         $arr['allow_gid'] = $user['allow_gid'];
703                                         $arr['deny_cid']  = $user['deny_cid'];
704                                         $arr['deny_gid']  = $user['deny_gid'];
705
706                                         $i = item_store($arr);
707                                         if ($i) {
708                                                 Worker::add(PRIORITY_HIGH, "Notifier", "activity", $i);
709                                         }
710                                 }
711                         }
712                 }
713                 xml_status(0); // Success
714                 return; // NOTREACHED
715                 ////////////////////// End of this scenario ///////////////////////////////////////////////
716         }
717
718         // somebody arrived here by mistake or they are fishing. Send them to the homepage.
719         goaway(System::baseUrl());
720         // NOTREACHED
721 }