]> git.mxchange.org Git - friendica.git/blob - mod/dfrn_request.php
Merge pull request #2356 from annando/1602-redmatrix-name
[friendica.git] / mod / dfrn_request.php
1 <?php
2
3 /**
4  *
5  * Module: dfrn_request
6  *
7  * Purpose: Handles communication associated with the issuance of
8  * friend requests.
9  *
10  */
11
12 require_once('include/enotify.php');
13 require_once('include/Scrape.php');
14
15 if(! function_exists('dfrn_request_init')) {
16 function dfrn_request_init(&$a) {
17
18         if($a->argc > 1)
19                 $which = $a->argv[1];
20
21         profile_load($a,$which);
22         return;
23 }}
24
25
26 /**
27  * Function: dfrn_request_post
28  *
29  * Purpose:
30  * Handles multiple scenarios.
31  *
32  * Scenario 1:
33  * Clicking 'submit' on a friend request page.
34  *
35  * Scenario 2:
36  * Following Scenario 1, we are brought back to our home site
37  * in order to link our friend request with our own server cell.
38  * After logging in, we click 'submit' to approve the linkage.
39  *
40  */
41
42 if(! function_exists('dfrn_request_post')) {
43 function dfrn_request_post(&$a) {
44
45         if(($a->argc != 2) || (! count($a->profile)))
46                 return;
47
48
49         if(x($_POST, 'cancel')) {
50                 goaway(z_root());
51         }
52
53
54         /**
55          *
56          * Scenario 2: We've introduced ourself to another cell, then have been returned to our own cell
57          * to confirm the request, and then we've clicked submit (perhaps after logging in).
58          * That brings us here:
59          *
60          */
61
62         if((x($_POST,'localconfirm')) && ($_POST['localconfirm'] == 1)) {
63
64                 /**
65                  * Ensure this is a valid request
66                  */
67
68                 if(local_user() && ($a->user['nickname'] == $a->argv[1]) && (x($_POST,'dfrn_url'))) {
69
70
71                         $dfrn_url    = notags(trim($_POST['dfrn_url']));
72                         $aes_allow   = (((x($_POST,'aes_allow')) && ($_POST['aes_allow'] == 1)) ? 1 : 0);
73                         $confirm_key = ((x($_POST,'confirm_key')) ? $_POST['confirm_key'] : "");
74                         $hidden = ((x($_POST,'hidden-contact')) ? intval($_POST['hidden-contact']) : 0);
75                         $contact_record = null;
76
77                         if(x($dfrn_url)) {
78
79                                 /**
80                                  * Lookup the contact based on their URL (which is the only unique thing we have at the moment)
81                                  */
82
83                                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND (`url` = '%s' OR `nurl` = '%s') AND `self` = 0 LIMIT 1",
84                                         intval(local_user()),
85                                         dbesc($dfrn_url),
86                                         dbesc(normalise_link($dfrn_url))
87                                 );
88
89                                 if(count($r)) {
90                                         if(strlen($r[0]['dfrn-id'])) {
91
92                                                 /**
93                                                  * We don't need to be here. It has already happened.
94                                                  */
95
96                                                 notice( t("This introduction has already been accepted.") . EOL );
97                                                 return;
98                                         }
99                                         else
100                                                 $contact_record = $r[0];
101                                 }
102
103                                 if(is_array($contact_record)) {
104                                         $r = q("UPDATE `contact` SET `ret-aes` = %d, hidden = %d WHERE `id` = %d",
105                                                 intval($aes_allow),
106                                                 intval($hidden),
107                                                 intval($contact_record['id'])
108                                         );
109                                 }
110                                 else {
111
112                                         /**
113                                          * Scrape the other site's profile page to pick up the dfrn links, key, fn, and photo
114                                          */
115
116                                         $parms = scrape_dfrn($dfrn_url);
117
118                                         if(! count($parms)) {
119                                                 notice( t('Profile location is not valid or does not contain profile information.') . EOL );
120                                                 return;
121                                         }
122                                         else {
123                                                 if(! x($parms,'fn'))
124                                                         notice( t('Warning: profile location has no identifiable owner name.') . EOL );
125                                                 if(! x($parms,'photo'))
126                                                         notice( t('Warning: profile location has no profile photo.') . EOL );
127                                                 $invalid = validate_dfrn($parms);
128                                                 if($invalid) {
129                                                         notice( sprintf( tt("%d required parameter was not found at the given location",
130                                                                                                 "%d required parameters were not found at the given location",
131                                                                                                 $invalid), $invalid) . EOL );
132                                                         return;
133                                                 }
134                                         }
135
136                                         $dfrn_request = $parms['dfrn-request'];
137
138                                         /********* Escape the entire array ********/
139
140                                         dbesc_array($parms);
141
142                                         /******************************************/
143
144                                         /**
145                                          * Create a contact record on our site for the other person
146                                          */
147
148                                         $r = q("INSERT INTO `contact` ( `uid`, `created`,`url`, `nurl`, `addr`, `name`, `nick`, `photo`, `site-pubkey`,
149                                                 `request`, `confirm`, `notify`, `poll`, `poco`, `network`, `aes_allow`, `hidden`)
150                                                 VALUES ( %d, '%s', '%s', '%s', '%s', '%s' , '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d)",
151                                                 intval(local_user()),
152                                                 datetime_convert(),
153                                                 dbesc($dfrn_url),
154                                                 dbesc(normalise_link($dfrn_url)),
155                                                 $parms['addr'],
156                                                 $parms['fn'],
157                                                 $parms['nick'],
158                                                 $parms['photo'],
159                                                 $parms['key'],
160                                                 $parms['dfrn-request'],
161                                                 $parms['dfrn-confirm'],
162                                                 $parms['dfrn-notify'],
163                                                 $parms['dfrn-poll'],
164                                                 $parms['dfrn-poco'],
165                                                 dbesc(NETWORK_DFRN),
166                                                 intval($aes_allow),
167                                                 intval($hidden)
168                                         );
169                                 }
170
171                                 if($r) {
172                                         info( t("Introduction complete.") . EOL);
173                                 }
174
175                                 $r = q("select id from contact where uid = %d and url = '%s' and `site-pubkey` = '%s' limit 1",
176                                         intval(local_user()),
177                                         dbesc($dfrn_url),
178                                         $parms['key'] // this was already escaped
179                                 );
180                                 if(count($r)) {
181                                         $g = q("select def_gid from user where uid = %d limit 1",
182                                                 intval(local_user())
183                                         );
184                                         if($g && intval($g[0]['def_gid'])) {
185                                                 require_once('include/group.php');
186                                                 group_add_member(local_user(),'',$r[0]['id'],$g[0]['def_gid']);
187                                         }
188                                         $forwardurl = $a->get_baseurl()."/contacts/".$r[0]['id'];
189                                 } else
190                                         $forwardurl = $a->get_baseurl()."/contacts";
191
192                                 /**
193                                  * Allow the blocked remote notification to complete
194                                  */
195
196                                 if(is_array($contact_record))
197                                         $dfrn_request = $contact_record['request'];
198
199                                 if(strlen($dfrn_request) && strlen($confirm_key))
200                                         $s = fetch_url($dfrn_request . '?confirm_key=' . $confirm_key);
201
202                                 // (ignore reply, nothing we can do it failed)
203
204                                 // Old: goaway(zrl($dfrn_url));
205                                 goaway($forwardurl);
206                                 return; // NOTREACHED
207
208                         }
209
210                 }
211
212                 // invalid/bogus request
213
214                 notice( t('Unrecoverable protocol error.') . EOL );
215                 goaway(z_root());
216                 return; // NOTREACHED
217         }
218
219         /**
220          * Otherwise:
221          *
222          * Scenario 1:
223          * We are the requestee. A person from a remote cell has made an introduction
224          * on our profile web page and clicked submit. We will use their DFRN-URL to
225          * figure out how to contact their cell.
226          *
227          * Scrape the originating DFRN-URL for everything we need. Create a contact record
228          * and an introduction to show our user next time he/she logs in.
229          * Finally redirect back to the requestor so that their site can record the request.
230          * If our user (the requestee) later confirms this request, a record of it will need
231          * to exist on the requestor's cell in order for the confirmation process to complete..
232          *
233          * It's possible that neither the requestor or the requestee are logged in at the moment,
234          * and the requestor does not yet have any credentials to the requestee profile.
235          *
236          * Who is the requestee? We've already loaded their profile which means their nickname should be
237          * in $a->argv[1] and we should have their complete info in $a->profile.
238          *
239          */
240
241         if(! (is_array($a->profile) && count($a->profile))) {
242                 notice( t('Profile unavailable.') . EOL);
243                 return;
244         }
245
246         $nickname       = $a->profile['nickname'];
247         $notify_flags   = $a->profile['notify-flags'];
248         $uid            = $a->profile['uid'];
249         $maxreq         = intval($a->profile['maxreq']);
250         $contact_record = null;
251         $failed         = false;
252         $parms          = null;
253
254
255         if( x($_POST,'dfrn_url')) {
256
257                 /**
258                  * Block friend request spam
259                  */
260
261                 if($maxreq) {
262                         $r = q("SELECT * FROM `intro` WHERE `datetime` > '%s' AND `uid` = %d",
263                                 dbesc(datetime_convert('UTC','UTC','now - 24 hours')),
264                                 intval($uid)
265                         );
266                         if(count($r) > $maxreq) {
267                                 notice( sprintf( t('%s has received too many connection requests today.'),  $a->profile['name']) . EOL);
268                                 notice( t('Spam protection measures have been invoked.') . EOL);
269                                 notice( t('Friends are advised to please try again in 24 hours.') . EOL);
270                                 return;
271                         }
272                 }
273
274                 /**
275                  *
276                  * Cleanup old introductions that remain blocked.
277                  * Also remove the contact record, but only if there is no existing relationship
278                  * Do not remove email contacts as these may be awaiting email verification
279                  */
280
281                 $r = q("SELECT `intro`.*, `intro`.`id` AS `iid`, `contact`.`id` AS `cid`, `contact`.`rel`
282                         FROM `intro` LEFT JOIN `contact` on `intro`.`contact-id` = `contact`.`id`
283                         WHERE `intro`.`blocked` = 1 AND `contact`.`self` = 0
284                         AND `contact`.`network` != '%s'
285                         AND `intro`.`datetime` < UTC_TIMESTAMP() - INTERVAL 30 MINUTE ",
286                         dbesc(NETWORK_MAIL2)
287                 );
288                 if(count($r)) {
289                         foreach($r as $rr) {
290                                 if(! $rr['rel']) {
291                                         q("DELETE FROM `contact` WHERE `id` = %d",
292                                                 intval($rr['cid'])
293                                         );
294                                 }
295                                 q("DELETE FROM `intro` WHERE `id` = %d",
296                                         intval($rr['iid'])
297                                 );
298                         }
299                 }
300
301                 /**
302                  *
303                  * Cleanup any old email intros - which will have a greater lifetime
304                  */
305
306                 $r = q("SELECT `intro`.*, `intro`.`id` AS `iid`, `contact`.`id` AS `cid`, `contact`.`rel`
307                         FROM `intro` LEFT JOIN `contact` on `intro`.`contact-id` = `contact`.`id`
308                         WHERE `intro`.`blocked` = 1 AND `contact`.`self` = 0
309                         AND `contact`.`network` = '%s'
310                         AND `intro`.`datetime` < UTC_TIMESTAMP() - INTERVAL 3 DAY ",
311                         dbesc(NETWORK_MAIL2)
312                 );
313                 if(count($r)) {
314                         foreach($r as $rr) {
315                                 if(! $rr['rel']) {
316                                         q("DELETE FROM `contact` WHERE `id` = %d",
317                                                 intval($rr['cid'])
318                                         );
319                                 }
320                                 q("DELETE FROM `intro` WHERE `id` = %d",
321                                         intval($rr['iid'])
322                                 );
323                         }
324                 }
325
326                 $email_follow = (x($_POST,'email_follow') ? intval($_POST['email_follow']) : 0);
327                 $real_name = (x($_POST,'realname') ? notags(trim($_POST['realname'])) : '');
328
329                 $url = trim($_POST['dfrn_url']);
330                 if(! strlen($url)) {
331                         notice( t("Invalid locator") . EOL );
332                         return;
333                 }
334
335                 $hcard = '';
336
337                 if($email_follow) {
338
339                         if(! validate_email($url)) {
340                                 notice( t('Invalid email address.') . EOL);
341                                 return;
342                         }
343
344                         $addr    = $url;
345                         $name    = ($realname) ? $realname : $addr;
346                         $nick    = substr($addr,0,strpos($addr,'@'));
347                         $url     = 'http://' . substr($addr,strpos($addr,'@') + 1);
348                         $nurl    = normalise_url($host);
349                         $poll    = 'email ' . random_string();
350                         $notify  = 'smtp ' . random_string();
351                         $blocked = 1;
352                         $pending = 1;
353                         $network = NETWORK_MAIL2;
354                         $rel     = CONTACT_IS_FOLLOWER;
355
356                         $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
357                         if(get_config('system','dfrn_only'))
358                                 $mail_disabled = 1;
359
360                         if(! $mail_disabled) {
361                                 $failed = false;
362                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
363                                         intval($uid)
364                                 );
365                                 if(! count($r)) {
366
367                                         notice( t('This account has not been configured for email. Request failed.') . EOL);
368                                         return;
369                                 }
370                         }
371
372                         $r = q("insert into contact ( uid, created, addr, name, nick, url, nurl, poll, notify, blocked, pending, network, rel )
373                                 values( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', %d ) ",
374                                 intval($uid),
375                                 dbesc(datetime_convert()),
376                                 dbesc($addr),
377                                 dbesc($name),
378                                 dbesc($nick),
379                                 dbesc($url),
380                                 dbesc($nurl),
381                                 dbesc($poll),
382                                 dbesc($notify),
383                                 intval($blocked),
384                                 intval($pending),
385                                 dbesc($network),
386                                 intval($rel)
387                         );
388
389                         $r = q("select id from contact where poll = '%s' and uid = %d limit 1",
390                                 dbesc($poll),
391                                 intval($uid)
392                         );
393                         if(count($r)) {
394                                 $contact_id = $r[0]['id'];
395
396                                 $g = q("select def_gid from user where uid = %d limit 1",
397                                         intval($uid)
398                                 );
399                                 if($g && intval($g[0]['def_gid'])) {
400                                         require_once('include/group.php');
401                                         group_add_member($uid,'',$contact_id,$g[0]['def_gid']);
402                                 }
403
404                                 $photo = avatar_img($addr);
405
406                                 $r = q("UPDATE `contact` SET
407                                         `photo` = '%s',
408                                         `thumb` = '%s',
409                                         `micro` = '%s',
410                                         `name-date` = '%s',
411                                         `uri-date` = '%s',
412                                         `avatar-date` = '%s',
413                                         `hidden` = 0,
414                                         WHERE `id` = %d
415                                 ",
416                                         dbesc($photos[0]),
417                                         dbesc($photos[1]),
418                                         dbesc($photos[2]),
419                                         dbesc(datetime_convert()),
420                                         dbesc(datetime_convert()),
421                                         dbesc(datetime_convert()),
422                                         intval($contact_id)
423                                 );
424                         }
425
426                         // contact is created. Now create an introduction
427
428                         $hash = random_string();
429
430                         $r = q("insert into intro ( uid, `contact-id`, knowyou, note, hash, datetime, blocked )
431                                 values( %d , %d, %d, '%s', '%s', '%s', %d ) ",
432                                 intval($uid),
433                                 intval($contact_id),
434                                 ((x($_POST,'knowyou') && ($_POST['knowyou'] == 1)) ? 1 : 0),
435                                 dbesc(notags(trim($_POST['dfrn-request-message']))),
436                                 dbesc($hash),
437                                 dbesc(datetime_convert()),
438                                 1
439                         );
440
441                         // Next send an email verify form to the requestor.
442
443                 } else {
444                         // Detect the network
445                         $data = probe_url($url);
446                         $network = $data["network"];
447
448                         // Canonicalise email-style profile locator
449                         $url = webfinger_dfrn($url,$hcard);
450
451                         if (substr($url,0,5) === 'stat:') {
452
453                                 // Every time we detect the remote subscription we define this as OStatus.
454                                 // We do this even if it is not OStatus.
455                                 // we only need to pass this through another section of the code.
456                                 if ($network != NETWORK_DIASPORA)
457                                         $network = NETWORK_OSTATUS;
458
459                                 $url = substr($url,5);
460                         } else
461                                 $network = NETWORK_DFRN;
462                 }
463
464                 logger('dfrn_request: url: ' . $url);
465
466                 if($network === NETWORK_DFRN) {
467                         $ret = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `self` = 0 LIMIT 1",
468                                 intval($uid),
469                                 dbesc($url)
470                         );
471
472                         if(count($ret)) {
473                                 if(strlen($ret[0]['issued-id'])) {
474                                         notice( t('You have already introduced yourself here.') . EOL );
475                                         return;
476                                 }
477                                 elseif($ret[0]['rel'] == CONTACT_IS_FRIEND) {
478                                         notice( sprintf( t('Apparently you are already friends with %s.'), $a->profile['name']) . EOL);
479                                         return;
480                                 }
481                                 else {
482                                         $contact_record = $ret[0];
483                                         $parms = array('dfrn-request' => $ret[0]['request']);
484                                 }
485                         }
486
487                         $issued_id = random_string();
488
489                         if(is_array($contact_record)) {
490                                 // There is a contact record but no issued-id, so this
491                                 // is a reciprocal introduction from a known contact
492                                 $r = q("UPDATE `contact` SET `issued-id` = '%s' WHERE `id` = %d",
493                                         dbesc($issued_id),
494                                         intval($contact_record['id'])
495                                 );
496                         }
497                         else {
498                                 if(! validate_url($url)) {
499                                         notice( t('Invalid profile URL.') . EOL);
500                                         goaway($a->get_baseurl() . '/' . $a->cmd);
501                                         return; // NOTREACHED
502                                 }
503
504                                 if(! allowed_url($url)) {
505                                         notice( t('Disallowed profile URL.') . EOL);
506                                         goaway($a->get_baseurl() . '/' . $a->cmd);
507                                         return; // NOTREACHED
508                                 }
509
510
511                                 require_once('include/Scrape.php');
512
513                                 $parms = scrape_dfrn(($hcard) ? $hcard : $url);
514
515                                 if(! count($parms)) {
516                                         notice( t('Profile location is not valid or does not contain profile information.') . EOL );
517                                         goaway($a->get_baseurl() . '/' . $a->cmd);
518                                 }
519                                 else {
520                                         if(! x($parms,'fn'))
521                                                 notice( t('Warning: profile location has no identifiable owner name.') . EOL );
522                                         if(! x($parms,'photo'))
523                                                 notice( t('Warning: profile location has no profile photo.') . EOL );
524                                         $invalid = validate_dfrn($parms);
525                                         if($invalid) {
526                                                 notice( sprintf( tt("%d required parameter was not found at the given location",
527                                                                                         "%d required parameters were not found at the given location",
528                                                                                         $invalid), $invalid) . EOL );
529
530                                                 return;
531                                         }
532                                 }
533
534
535                                 $parms['url'] = $url;
536                                 $parms['issued-id'] = $issued_id;
537
538
539                                 dbesc_array($parms);
540                                 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `name`, `nick`, `issued-id`, `photo`, `site-pubkey`,
541                                         `request`, `confirm`, `notify`, `poll`, `poco`, `network` )
542                                         VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' )",
543                                         intval($uid),
544                                         dbesc(datetime_convert()),
545                                         $parms['url'],
546                                         dbesc(normalise_link($parms['url'])),
547                                         $parms['addr'],
548                                         $parms['fn'],
549                                         $parms['nick'],
550                                         $parms['issued-id'],
551                                         $parms['photo'],
552                                         $parms['key'],
553                                         $parms['dfrn-request'],
554                                         $parms['dfrn-confirm'],
555                                         $parms['dfrn-notify'],
556                                         $parms['dfrn-poll'],
557                                         $parms['dfrn-poco'],
558                                         dbesc(NETWORK_DFRN)
559                                 );
560
561                                 // find the contact record we just created
562                                 if($r) {
563                                         $r = q("SELECT `id` FROM `contact`
564                                                 WHERE `uid` = %d AND `url` = '%s' AND `issued-id` = '%s' LIMIT 1",
565                                                 intval($uid),
566                                                 $parms['url'],
567                                                 $parms['issued-id']
568                                         );
569                                         if(count($r))
570                                                 $contact_record = $r[0];
571                                 }
572
573                         }
574                         if($r === false) {
575                                 notice( t('Failed to update contact record.') . EOL );
576                                 return;
577                         }
578
579                         $hash = random_string() . (string) time();   // Generate a confirm_key
580
581                         if(is_array($contact_record)) {
582                                 $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `note`, `hash`, `datetime`)
583                                         VALUES ( %d, %d, 1, %d, '%s', '%s', '%s' )",
584                                         intval($uid),
585                                         intval($contact_record['id']),
586                                         ((x($_POST,'knowyou') && ($_POST['knowyou'] == 1)) ? 1 : 0),
587                                         dbesc(notags(trim($_POST['dfrn-request-message']))),
588                                         dbesc($hash),
589                                         dbesc(datetime_convert())
590                                 );
591                         }
592
593                         // This notice will only be seen by the requestor if the requestor and requestee are on the same server.
594
595                         if(! $failed)
596                                 info( t('Your introduction has been sent.') . EOL );
597
598                         // "Homecoming" - send the requestor back to their site to record the introduction.
599
600                         $dfrn_url = bin2hex($a->get_baseurl() . '/profile/' . $nickname);
601                         $aes_allow = ((function_exists('openssl_encrypt')) ? 1 : 0);
602
603                         goaway($parms['dfrn-request'] . "?dfrn_url=$dfrn_url"
604                                 . '&dfrn_version=' . DFRN_PROTOCOL_VERSION
605                                 . '&confirm_key='  . $hash
606                                 . (($aes_allow) ? "&aes_allow=1" : "")
607                         );
608                         // NOTREACHED
609                         // END $network === NETWORK_DFRN
610                 } elseif (($network != NETWORK_PHANTOM) AND ($url != "")) {
611
612                         /**
613                          *
614                          * Substitute our user's feed URL into $url template
615                          * Send the subscriber home to subscribe
616                          *
617                          */
618
619                         // Diaspora needs the uri in the format user@domain.tld
620                         // Diaspora will support the remote subscription in a future version
621                         if ($network == NETWORK_DIASPORA) {
622                                 $uri = $nickname.'@'.$a->get_hostname();
623
624                                 if ($a->get_path())
625                                         $uri .= '/'.$a->get_path();
626
627                                 $uri = urlencode($uri);
628                         } else
629                                 $uri = $a->get_baseurl().'/profile/'.$nickname;
630
631                         $url = str_replace('{uri}', $uri, $url);
632                         goaway($url);
633                         // NOTREACHED
634                         // END $network != NETWORK_PHANTOM
635                 } else {
636                         notice(t("Remote subscription can't be done for your network. Please subscribe directly on your system.").EOL);
637                         return;
638                 }
639
640         }       return;
641 }}
642
643
644
645
646 if(! function_exists('dfrn_request_content')) {
647 function dfrn_request_content(&$a) {
648
649         if(($a->argc != 2) || (! count($a->profile)))
650                 return "";
651
652
653         // "Homecoming". Make sure we're logged in to this site as the correct user. Then offer a confirm button
654         // to send us to the post section to record the introduction.
655
656         if(x($_GET,'dfrn_url')) {
657
658                 if(! local_user()) {
659                         info( t("Please login to confirm introduction.") . EOL );
660                         /* setup the return URL to come back to this page if they use openid */
661                         $_SESSION['return_url'] = $a->query_string;
662                         return login();
663                 }
664
665                 // Edge case, but can easily happen in the wild. This person is authenticated,
666                 // but not as the person who needs to deal with this request.
667
668                 if ($a->user['nickname'] != $a->argv[1]) {
669                         notice( t("Incorrect identity currently logged in. Please login to <strong>this</strong> profile.") . EOL);
670                         return login();
671                 }
672
673                 $dfrn_url = notags(trim(hex2bin($_GET['dfrn_url'])));
674                 $aes_allow = (((x($_GET,'aes_allow')) && ($_GET['aes_allow'] == 1)) ? 1 : 0);
675                 $confirm_key = (x($_GET,'confirm_key') ? $_GET['confirm_key'] : "");
676
677                 // Checking fastlane for validity
678                 if (x($_SESSION, "fastlane") AND (normalise_link($_SESSION["fastlane"]) == normalise_link($dfrn_url))) {
679                         $_POST["dfrn_url"] = $dfrn_url;
680                         $_POST["confirm_key"] = $confirm_key;
681                         $_POST["localconfirm"] = 1;
682                         $_POST["hidden-contact"] = 0;
683                         $_POST["submit"] = t('Confirm');
684
685                         dfrn_request_post($a);
686
687                         killme();
688                         return; // NOTREACHED
689                 }
690
691                 $tpl = get_markup_template("dfrn_req_confirm.tpl");
692                 $o  = replace_macros($tpl,array(
693                         '$dfrn_url' => $dfrn_url,
694                         '$aes_allow' => (($aes_allow) ? '<input type="hidden" name="aes_allow" value="1" />' : "" ),
695                         '$hidethem' => t('Hide this contact'),
696                         '$hidechecked' => '',
697                         '$confirm_key' => $confirm_key,
698                         '$welcome' => sprintf( t('Welcome home %s.'), $a->user['username']),
699                         '$please' => sprintf( t('Please confirm your introduction/connection request to %s.'), $dfrn_url),
700                         '$submit' => t('Confirm'),
701                         '$uid' => $_SESSION['uid'],
702                         '$nickname' => $a->user['nickname'],
703                         'dfrn_rawurl' => $_GET['dfrn_url']
704                         ));
705                 return $o;
706
707         }
708         elseif((x($_GET,'confirm_key')) && strlen($_GET['confirm_key'])) {
709
710                 // we are the requestee and it is now safe to send our user their introduction,
711                 // We could just unblock it, but first we have to jump through a few hoops to
712                 // send an email, or even to find out if we need to send an email.
713
714                 $intro = q("SELECT * FROM `intro` WHERE `hash` = '%s' LIMIT 1",
715                         dbesc($_GET['confirm_key'])
716                 );
717
718                 if(count($intro)) {
719
720                         $r = q("SELECT `contact`.*, `user`.* FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
721                                 WHERE `contact`.`id` = %d LIMIT 1",
722                                 intval($intro[0]['contact-id'])
723                         );
724
725                         $auto_confirm = false;
726
727                         if(count($r)) {
728                                 if(($r[0]['page-flags'] != PAGE_NORMAL) && ($r[0]['page-flags'] != PAGE_PRVGROUP))
729                                         $auto_confirm = true;
730
731                                 if(! $auto_confirm) {
732
733                                         notification(array(
734                                                 'type'         => NOTIFY_INTRO,
735                                                 'notify_flags' => $r[0]['notify-flags'],
736                                                 'language'     => $r[0]['language'],
737                                                 'to_name'      => $r[0]['username'],
738                                                 'to_email'     => $r[0]['email'],
739                                                 'uid'          => $r[0]['uid'],
740                                                 'link'             => $a->get_baseurl() . '/notifications/intros',
741                                                 'source_name'  => ((strlen(stripslashes($r[0]['name']))) ? stripslashes($r[0]['name']) : t('[Name Withheld]')),
742                                                 'source_link'  => $r[0]['url'],
743                                                 'source_photo' => $r[0]['photo'],
744                                                 'verb'         => ACTIVITY_REQ_FRIEND,
745                                                 'otype'        => 'intro'
746                                         ));
747                                 }
748
749                                 if($auto_confirm) {
750                                         require_once('mod/dfrn_confirm.php');
751                                         $handsfree = array(
752                                                 'uid' => $r[0]['uid'],
753                                                 'node' => $r[0]['nickname'],
754                                                 'dfrn_id' => $r[0]['issued-id'],
755                                                 'intro_id' => $intro[0]['id'],
756                                                 'duplex' => (($r[0]['page-flags'] == PAGE_FREELOVE) ? 1 : 0),
757                                                 'activity' => intval(get_pconfig($r[0]['uid'],'system','post_newfriend'))
758                                         );
759                                         dfrn_confirm_post($a,$handsfree);
760                                 }
761
762                         }
763
764                         if(! $auto_confirm) {
765
766                                 // If we are auto_confirming, this record will have already been nuked
767                                 // in dfrn_confirm_post()
768
769                                 $r = q("UPDATE `intro` SET `blocked` = 0 WHERE `hash` = '%s'",
770                                         dbesc($_GET['confirm_key'])
771                                 );
772                         }
773                 }
774
775                 killme();
776                 return; // NOTREACHED
777         }
778         else {
779
780                 /**
781                  * Normal web request. Display our user's introduction form.
782                  */
783
784                 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
785                         if(! get_config('system','local_block')) {
786                                 notice( t('Public access denied.') . EOL);
787                                 return;
788                         }
789                 }
790
791
792                 /**
793                  * Try to auto-fill the profile address
794                  */
795
796                 // At first look if an address was provided
797                 // Otherwise take the local address
798                 if (x($_GET,'addr') AND ($_GET['addr'] != ""))
799                         $myaddr = hex2bin($_GET['addr']);
800                 elseif (x($_GET,'address') AND ($_GET['address'] != ""))
801                         $myaddr = $_GET['address'];
802                 elseif(local_user()) {
803                         if(strlen($a->path)) {
804                                 $myaddr = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
805                         }
806                         else {
807                                 $myaddr = $a->user['nickname'] . '@' . substr(z_root(), strpos(z_root(),'://') + 3 );
808                         }
809                 } else  // last, try a zrl
810                         $myaddr = get_my_url();
811
812                 $target_addr = $a->profile['nickname'] . '@' . substr(z_root(), strpos(z_root(),'://') + 3 );
813
814
815                 /**
816                  *
817                  * The auto_request form only has the profile address
818                  * because nobody is going to read the comments and
819                  * it doesn't matter if they know you or not.
820                  *
821                  */
822
823                 if($a->profile['page-flags'] == PAGE_NORMAL)
824                         $tpl = get_markup_template('dfrn_request.tpl');
825                 else
826                         $tpl = get_markup_template('auto_request.tpl');
827
828                 $page_desc .= t("Please enter your 'Identity Address' from one of the following supported communications networks:");
829
830                 // see if we are allowed to have NETWORK_MAIL2 contacts
831
832                 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
833                 if(get_config('system','dfrn_only'))
834                         $mail_disabled = 1;
835
836                 if(! $mail_disabled) {
837                         $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
838                                 intval($a->profile['uid'])
839                         );
840                         if(! count($r))
841                                 $mail_disabled = 1;
842                 }
843
844                 // "coming soon" is disabled for now
845                 //$emailnet = (($mail_disabled) ? '' : t("<strike>Connect as an email follower</strike> \x28Coming soon\x29"));
846                 $emailnet = "";
847
848                 $invite_desc = sprintf(
849                         t('If you are not yet a member of the free social web, <a href="%s/siteinfo">follow this link to find a public Friendica site and join us today</a>.'),
850                         get_server()
851                 );
852
853                 $o .= replace_macros($tpl,array(
854                         '$header' => t('Friend/Connection Request'),
855                         '$desc' => t('Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca'),
856                         '$pls_answer' => t('Please answer the following:'),
857                         '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$a->profile['name']), false, '', array(t('No'),t('Yes'))),
858                         /*'$does_know' => sprintf( t('Does %s know you?'),$a->profile['name']),
859                         '$yes' => t('Yes'),
860                         '$no' => t('No'), */
861                         '$add_note' => t('Add a personal note:'),
862                         '$page_desc' => $page_desc,
863                         '$friendica' => t('Friendica'),
864                         '$statusnet' => t('StatusNet/Federated Social Web'),
865                         '$diaspora' => t('Diaspora'),
866                         '$diasnote' => sprintf (t(' - please do not use this form.  Instead, enter %s into your Diaspora search bar.'),$target_addr),
867                         '$your_address' => t('Your Identity Address:'),
868                         '$invite_desc' => $invite_desc,
869                         '$emailnet' => $emailnet,
870                         '$submit' => t('Submit Request'),
871                         '$cancel' => t('Cancel'),
872                         '$nickname' => $a->argv[1],
873                         '$name' => $a->profile['name'],
874                         '$myaddr' => $myaddr
875                 ));
876                 return $o;
877         }
878
879         return; // Somebody is fishing.
880 }}