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