]> git.mxchange.org Git - friendica.git/blob - mod/dfrn_request.php
Merge branch 'master' of https://github.com/friendica/friendica
[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($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_MAIL)
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_MAIL)
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
305                 $url = trim($_POST['dfrn_url']);
306                 if(! strlen($url)) {
307                         notice( t("Invalid locator") . EOL );
308                         return;
309                 }
310
311                 // Canonicalise email-style profile locator
312
313                 $hcard = '';
314                 $url = webfinger_dfrn($url,$hcard);
315
316                 if(substr($url,0,5) === 'stat:') {
317                         $network = NETWORK_OSTATUS;
318                         $url = substr($url,5);
319                 }
320                 else {
321                         $network = NETWORK_DFRN;
322                 }
323
324                 logger('dfrn_request: url: ' . $url);
325
326                 if(! strlen($url)) {
327                         notice( t("Unable to resolve your name at the provided location.") . EOL);                      
328                         return;
329                 }
330
331
332                 if($network === NETWORK_DFRN) {
333                         $ret = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `self` = 0 LIMIT 1", 
334                                 intval($uid),
335                                 dbesc($url)
336                         );
337
338                         if(count($ret)) {
339                                 if(strlen($ret[0]['issued-id'])) {
340                                         notice( t('You have already introduced yourself here.') . EOL );
341                                         return;
342                                 }
343                                 elseif($ret[0]['rel'] == CONTACT_IS_FRIEND) {
344                                         notice( sprintf( t('Apparently you are already friends with %s.'), $a->profile['name']) . EOL);
345                                         return;
346                                 }
347                                 else {
348                                         $contact_record = $ret[0];
349                                         $parms = array('dfrn-request' => $ret[0]['request']);
350                                 }
351                         }
352
353                         $issued_id = random_string();
354
355                         if(is_array($contact_record)) {
356                                 // There is a contact record but no issued-id, so this
357                                 // is a reciprocal introduction from a known contact
358                                 $r = q("UPDATE `contact` SET `issued-id` = '%s' WHERE `id` = %d LIMIT 1",
359                                         dbesc($issued_id),
360                                         intval($contact_record['id'])
361                                 );
362                         }
363                         else {
364                                 if(! validate_url($url)) {
365                                         notice( t('Invalid profile URL.') . EOL);
366                                         goaway($a->get_baseurl() . '/' . $a->cmd);
367                                         return; // NOTREACHED
368                                 }
369
370                                 if(! allowed_url($url)) {
371                                         notice( t('Disallowed profile URL.') . EOL);
372                                         goaway($a->get_baseurl() . '/' . $a->cmd);
373                                         return; // NOTREACHED
374                                 }
375                         
376
377                                 require_once('Scrape.php');
378
379                                 $parms = scrape_dfrn(($hcard) ? $hcard : $url);
380
381                                 if(! count($parms)) {
382                                         notice( t('Profile location is not valid or does not contain profile information.') . EOL );
383                                         goaway($a->get_baseurl() . '/' . $a->cmd);
384                                 }
385                                 else {
386                                         if(! x($parms,'fn'))
387                                                 notice( t('Warning: profile location has no identifiable owner name.') . EOL );
388                                         if(! x($parms,'photo'))
389                                                 notice( t('Warning: profile location has no profile photo.') . EOL );
390                                         $invalid = validate_dfrn($parms);               
391                                         if($invalid) {
392                                                 notice( sprintf( tt("%d required parameter was not found at the given location",
393                                                                                         "%d required parameters were not found at the given location",
394                                                                                         $invalid), $invalid) . EOL );
395         
396                                                 return;
397                                         }
398                                 }
399
400
401                                 $parms['url'] = $url;
402                                 $parms['issued-id'] = $issued_id;
403
404
405                                 dbesc_array($parms);
406                                 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`,`name`, `nick`, `issued-id`, `photo`, `site-pubkey`,
407                                         `request`, `confirm`, `notify`, `poll`, `poco`, `network` )
408                                         VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' )",
409                                         intval($uid),
410                                         dbesc(datetime_convert()),
411                                         $parms['url'],
412                                         dbesc(normalise_link($parms['url'])),
413                                         $parms['fn'],
414                                         $parms['nick'],
415                                         $parms['issued-id'],
416                                         $parms['photo'],
417                                         $parms['key'],
418                                         $parms['dfrn-request'],
419                                         $parms['dfrn-confirm'],
420                                         $parms['dfrn-notify'],
421                                         $parms['dfrn-poll'],
422                                         $parms['dfrn-poco'],
423                                         dbesc(NETWORK_DFRN)
424                                 );
425
426                                 // find the contact record we just created
427                                 if($r) {        
428                                         $r = q("SELECT `id` FROM `contact` 
429                                                 WHERE `uid` = %d AND `url` = '%s' AND `issued-id` = '%s' LIMIT 1",
430                                                 intval($uid),
431                                                 $parms['url'],
432                                                 $parms['issued-id']
433                                         );
434                                         if(count($r)) 
435                                                 $contact_record = $r[0];
436                                 }
437         
438                         }
439                         if($r === false) {
440                                 notice( t('Failed to update contact record.') . EOL );
441                                 return;
442                         }
443
444                         $hash = random_string() . (string) time();   // Generate a confirm_key
445         
446                         if(is_array($contact_record)) {
447                                 $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `note`, `hash`, `datetime`)
448                                         VALUES ( %d, %d, 1, %d, '%s', '%s', '%s' )",
449                                         intval($uid),
450                                         intval($contact_record['id']),
451                                         ((x($_POST,'knowyou') && ($_POST['knowyou'] == 1)) ? 1 : 0),
452                                         dbesc(notags(trim($_POST['dfrn-request-message']))),
453                                         dbesc($hash),
454                                         dbesc(datetime_convert())
455                                 );
456                         }
457         
458                         // This notice will only be seen by the requestor if the requestor and requestee are on the same server.
459
460                         if(! $failed) 
461                                 info( t('Your introduction has been sent.') . EOL );
462
463                         // "Homecoming" - send the requestor back to their site to record the introduction.
464
465                         $dfrn_url = bin2hex($a->get_baseurl() . '/profile/' . $nickname);
466                         $aes_allow = ((function_exists('openssl_encrypt')) ? 1 : 0);
467
468                         goaway($parms['dfrn-request'] . "?dfrn_url=$dfrn_url" 
469                                 . '&dfrn_version=' . DFRN_PROTOCOL_VERSION 
470                                 . '&confirm_key='  . $hash 
471                                 . (($aes_allow) ? "&aes_allow=1" : "")
472                         );
473                         // NOTREACHED
474                         // END $network === NETWORK_DFRN
475                 }
476                 elseif($network === NETWORK_OSTATUS) {
477                         
478                         /**
479                          *
480                          * OStatus network
481                          * Check contact existence
482                          * Try and scrape together enough information to create a contact record, 
483                          * with us as CONTACT_IS_FOLLOWER
484                          * Substitute our user's feed URL into $url template
485                          * Send the subscriber home to subscribe
486                          *
487                          */
488
489                         $url = str_replace('{uri}', $a->get_baseurl() . '/dfrn_poll/' . $nickname, $url);
490                         goaway($url);
491                         // NOTREACHED
492                         // END $network === NETWORK_OSTATUS
493                 }
494
495         }       return;
496 }}
497
498
499
500
501 if(! function_exists('dfrn_request_content')) {
502 function dfrn_request_content(&$a) {
503
504         if(($a->argc != 2) || (! count($a->profile)))
505                 return "";
506
507
508         // "Homecoming". Make sure we're logged in to this site as the correct user. Then offer a confirm button
509         // to send us to the post section to record the introduction.
510
511         if(x($_GET,'dfrn_url')) {
512
513                 if(! local_user()) {
514                         info( t("Please login to confirm introduction.") . EOL );
515
516                         /* setup the return URL to come back to this page if they use openid */
517
518                         $stripped = str_replace('q=','',$a->query_string);
519                         $_SESSION['return_url'] = trim($stripped,'/');
520
521                         return login();
522                 }
523
524                 // Edge case, but can easily happen in the wild. This person is authenticated, 
525                 // but not as the person who needs to deal with this request.
526
527                 if ($a->user['nickname'] != $a->argv[1]) {
528                         notice( t("Incorrect identity currently logged in. Please login to <strong>this</strong> profile.") . EOL);
529                         return login();
530                 }
531
532                 $dfrn_url = notags(trim(hex2bin($_GET['dfrn_url'])));
533                 $aes_allow = (((x($_GET,'aes_allow')) && ($_GET['aes_allow'] == 1)) ? 1 : 0);
534                 $confirm_key = (x($_GET,'confirm_key') ? $_GET['confirm_key'] : "");
535                 $tpl = get_markup_template("dfrn_req_confirm.tpl");
536                 $o  = replace_macros($tpl,array(
537                         '$dfrn_url' => $dfrn_url,
538                         '$aes_allow' => (($aes_allow) ? '<input type="hidden" name="aes_allow" value="1" />' : "" ),
539                         '$confirm_key' => $confirm_key,
540                         '$welcome' => sprintf( t('Welcome home %s.'), $a->user['username']),
541                         '$please' => sprintf( t('Please confirm your introduction/connection request to %s.'), $dfrn_url),
542                         '$submit' => t('Confirm'),
543                         '$uid' => $_SESSION['uid'],
544                         '$nickname' => $a->user['nickname'],
545                         'dfrn_rawurl' => $_GET['dfrn_url']
546                         ));
547                 return $o;
548
549         }
550         elseif((x($_GET,'confirm_key')) && strlen($_GET['confirm_key'])) { 
551
552                 // we are the requestee and it is now safe to send our user their introduction,
553                 // We could just unblock it, but first we have to jump through a few hoops to 
554                 // send an email, or even to find out if we need to send an email. 
555
556                 $intro = q("SELECT * FROM `intro` WHERE `hash` = '%s' LIMIT 1",
557                         dbesc($_GET['confirm_key'])
558                 );
559
560                 if(count($intro)) {
561
562                         $r = q("SELECT `contact`.*, `user`.* FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
563                                 WHERE `contact`.`id` = %d LIMIT 1",
564                                 intval($intro[0]['contact-id'])
565                         );
566
567                         $auto_confirm = false;
568
569                         if(count($r)) {
570                                 if($r[0]['page-flags'] != PAGE_NORMAL)
571                                         $auto_confirm = true;                           
572
573                                 if(! $auto_confirm) {
574                                         require_once('include/enotify.php');
575                                         notification(array(
576                                                 'type'         => NOTIFY_INTRO,
577                                                 'notify_flags' => $r[0]['notify-flags'],
578                                                 'language'     => $r[0]['language'],
579                                                 'to_name'      => $r[0]['username'],
580                                                 'to_email'     => $r[0]['email'],
581                                                 'uid'          => $r[0]['uid'],
582                                                 'link'             => $a->get_baseurl() . '/notifications/intros',
583                                                 'source_name'  => ((strlen(stripslashes($r[0]['name']))) ? stripslashes($r[0]['name']) : t('[Name Withheld]')),
584                                                 'source_link'  => $r[0]['url'],
585                                                 'source_photo' => $r[0]['photo'],
586                                                 'verb'         => ACTIVITY_REQ_FRIEND,
587                                                 'otype'        => 'intro'
588                                         ));
589                                 }
590
591                                 if($auto_confirm) {
592                                         require_once('mod/dfrn_confirm.php');
593                                         $handsfree = array(
594                                                 'uid' => $r[0]['uid'],
595                                                 'node' => $r[0]['nickname'],
596                                                 'dfrn_id' => $r[0]['issued-id'],
597                                                 'intro_id' => $intro[0]['id'],
598                                                 'duplex' => (($r[0]['page-flags'] == PAGE_FREELOVE) ? 1 : 0)
599                                         );
600                                         dfrn_confirm_post($a,$handsfree);
601                                 }
602
603                         }
604
605                         if(! $auto_confirm) {
606
607                                 // If we are auto_confirming, this record will have already been nuked
608                                 // in dfrn_confirm_post()
609
610                                 $r = q("UPDATE `intro` SET `blocked` = 0 WHERE `hash` = '%s' LIMIT 1",
611                                         dbesc($_GET['confirm_key'])
612                                 );
613                         }
614                 }
615
616                 killme();
617                 return; // NOTREACHED
618         }
619         else {
620
621                 /**
622                  * Normal web request. Display our user's introduction form.
623                  */
624  
625                 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
626                         notice( t('Public access denied.') . EOL);
627                         return;
628                 }
629
630
631                 /**
632                  * Try to auto-fill the profile address
633                  */
634
635                 if(local_user()) {
636                         if(strlen($a->path)) {
637                                 $myaddr = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
638                         }
639                         else {
640                                 $myaddr = $a->user['nickname'] . '@' . substr(z_root(), strpos(z_root(),'://') + 3 );
641                         }
642                 }
643                 elseif(x($_GET,'addr')) {
644                         $myaddr = hex2bin($_GET['addr']);
645                 }
646                 else {
647                         /* $_GET variables are already urldecoded */ 
648                         $myaddr = ((x($_GET,'address')) ? $_GET['address'] : '');
649                 }
650
651                 $target_addr = $a->profile['nickname'] . '@' . substr(z_root(), strpos(z_root(),'://') + 3 );
652
653
654                 /**
655                  *
656                  * The auto_request form only has the profile address
657                  * because nobody is going to read the comments and 
658                  * it doesn't matter if they know you or not.
659                  *
660                  */
661
662                 if($a->profile['page-flags'] == PAGE_NORMAL)
663                         $tpl = get_markup_template('dfrn_request.tpl');
664                 else
665                         $tpl = get_markup_template('auto_request.tpl');
666
667         #       $page_desc = sprintf( t('Diaspora members: Please do not use this form. Instead, enter "%s" into your Diaspora search bar.'), 
668         #               $target_addr) . EOL . EOL;
669
670                 $page_desc .= t("Please enter your 'Identity Address' from one of the following supported communications networks:");
671
672                 // see if we are allowed to have NETWORK_MAIL2 contacts
673
674                 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
675                 if(get_config('system','dfrn_only'))
676                         $mail_disabled = 1;
677
678                 if(! $mail_disabled) {
679                         $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
680                                 intval($a->profile['uid'])
681                         );
682                         if(! count($r))
683                                 $mail_disabled = 1;
684                 }
685
686                 $emailnet = (($mail_disabled) ? '' : t("<strike>Connect as an email follower</strike> \x28Coming soon\x29"));
687
688                 $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>.');
689
690                 $o .= replace_macros($tpl,array(
691                         '$header' => t('Friend/Connection Request'),
692                         '$desc' => t('Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca'),
693                         '$pls_answer' => t('Please answer the following:'),
694                         '$does_know' => sprintf( t('Does %s know you?'),$a->profile['name']),
695                         '$yes' => t('Yes'),
696                         '$no' => t('No'),
697                         '$add_note' => t('Add a personal note:'),
698                         '$page_desc' => $page_desc,
699                         '$friendica' => t('Friendica'),
700                         '$statusnet' => t('StatusNet/Federated Social Web'),
701                         '$diaspora' => t('Diaspora'),
702                         '$diasnote' => sprintf (t(' - please do not use this form.  Instead, enter %s into your Diaspora search bar.'),$target_addr),
703                         '$your_address' => t('Your Identity Address:'),
704                         '$invite_desc' => $invite_desc,
705                         '$emailnet' => $emailnet,
706                         '$submit' => t('Submit Request'),
707                         '$cancel' => t('Cancel'),
708                         '$nickname' => $a->argv[1],
709                         '$name' => $a->profile['name'],
710                         '$myaddr' => $myaddr
711                 ));
712                 return $o;
713         }
714
715         return; // Somebody is fishing.
716 }}