4 * @file mod/dfrn_request.php
5 * @brief Module: dfrn_request
7 * Purpose: Handles communication associated with the issuance of
10 * @see PDF with dfrn specs: https://github.com/friendica/friendica/blob/master/spec/dfrn2.pdf
11 * You also find a graphic which describes the confirmation process at
12 * https://github.com/friendica/friendica/blob/master/spec/dfrn2_contact_request.png
15 require_once('include/enotify.php');
16 require_once('include/Scrape.php');
17 require_once('include/Probe.php');
18 require_once('include/group.php');
20 function dfrn_request_init(App $a) {
25 profile_load($a,$which);
31 * Function: dfrn_request_post
34 * Handles multiple scenarios.
37 * Clicking 'submit' on a friend request page.
40 * Following Scenario 1, we are brought back to our home site
41 * in order to link our friend request with our own server cell.
42 * After logging in, we click 'submit' to approve the linkage.
45 function dfrn_request_post(App $a) {
47 if(($a->argc != 2) || (! count($a->profile))) {
48 logger('Wrong count of argc or profiles: argc=' . $a->argc . ',profile()=' . count($a->profile));
53 if(x($_POST, 'cancel')) {
60 * Scenario 2: We've introduced ourself to another cell, then have been returned to our own cell
61 * to confirm the request, and then we've clicked submit (perhaps after logging in).
62 * That brings us here:
66 if((x($_POST,'localconfirm')) && ($_POST['localconfirm'] == 1)) {
69 * Ensure this is a valid request
72 if(local_user() && ($a->user['nickname'] == $a->argv[1]) && (x($_POST,'dfrn_url'))) {
75 $dfrn_url = notags(trim($_POST['dfrn_url']));
76 $aes_allow = (((x($_POST,'aes_allow')) && ($_POST['aes_allow'] == 1)) ? 1 : 0);
77 $confirm_key = ((x($_POST,'confirm_key')) ? $_POST['confirm_key'] : "");
78 $hidden = ((x($_POST,'hidden-contact')) ? intval($_POST['hidden-contact']) : 0);
79 $contact_record = null;
86 * Lookup the contact based on their URL (which is the only unique thing we have at the moment)
89 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND NOT `self` LIMIT 1",
91 dbesc(normalise_link($dfrn_url))
94 if (dbm::is_result($r)) {
95 if(strlen($r[0]['dfrn-id'])) {
98 * We don't need to be here. It has already happened.
101 notice( t("This introduction has already been accepted.") . EOL );
105 $contact_record = $r[0];
108 if(is_array($contact_record)) {
109 $r = q("UPDATE `contact` SET `ret-aes` = %d, hidden = %d WHERE `id` = %d",
112 intval($contact_record['id'])
118 * Scrape the other site's profile page to pick up the dfrn links, key, fn, and photo
121 $parms = Probe::profile($dfrn_url);
123 if (! count($parms)) {
124 notice( t('Profile location is not valid or does not contain profile information.') . EOL );
128 if (! x($parms,'fn')) {
129 notice( t('Warning: profile location has no identifiable owner name.') . EOL );
131 if (! x($parms,'photo')) {
132 notice( t('Warning: profile location has no profile photo.') . EOL );
134 $invalid = Probe::valid_dfrn($parms);
136 notice( sprintf( tt("%d required parameter was not found at the given location",
137 "%d required parameters were not found at the given location",
138 $invalid), $invalid) . EOL );
143 $dfrn_request = $parms['dfrn-request'];
145 $photo = $parms["photo"];
147 // Escape the entire array
148 dbm::esc_array($parms);
151 * Create a contact record on our site for the other person
154 $r = q("INSERT INTO `contact` ( `uid`, `created`,`url`, `nurl`, `addr`, `name`, `nick`, `photo`, `site-pubkey`,
155 `request`, `confirm`, `notify`, `poll`, `poco`, `network`, `aes_allow`, `hidden`, `blocked`, `pending`)
156 VALUES ( %d, '%s', '%s', '%s', '%s', '%s' , '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, %d)",
157 intval(local_user()),
160 dbesc(normalise_link($dfrn_url)),
166 $parms['dfrn-request'],
167 $parms['dfrn-confirm'],
168 $parms['dfrn-notify'],
180 info( t("Introduction complete.") . EOL);
183 $r = q("SELECT `id`, `network` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `site-pubkey` = '%s' LIMIT 1",
184 intval(local_user()),
186 $parms['key'] // this was already escaped
188 if (dbm::is_result($r)) {
189 $def_gid = get_default_group(local_user(), $r[0]["network"]);
191 group_add_member(local_user(), '', $r[0]['id'], $def_gid);
194 update_contact_avatar($photo, local_user(), $r[0]["id"], true);
196 $forwardurl = App::get_baseurl()."/contacts/".$r[0]['id'];
198 $forwardurl = App::get_baseurl()."/contacts";
202 * Allow the blocked remote notification to complete
205 if (is_array($contact_record)) {
206 $dfrn_request = $contact_record['request'];
209 if (strlen($dfrn_request) && strlen($confirm_key)) {
210 $s = fetch_url($dfrn_request . '?confirm_key=' . $confirm_key);
213 // (ignore reply, nothing we can do it failed)
215 // Old: goaway(zrl($dfrn_url));
217 return; // NOTREACHED
223 // invalid/bogus request
225 notice( t('Unrecoverable protocol error.') . EOL );
227 return; // NOTREACHED
234 * We are the requestee. A person from a remote cell has made an introduction
235 * on our profile web page and clicked submit. We will use their DFRN-URL to
236 * figure out how to contact their cell.
238 * Scrape the originating DFRN-URL for everything we need. Create a contact record
239 * and an introduction to show our user next time he/she logs in.
240 * Finally redirect back to the requestor so that their site can record the request.
241 * If our user (the requestee) later confirms this request, a record of it will need
242 * to exist on the requestor's cell in order for the confirmation process to complete..
244 * It's possible that neither the requestor or the requestee are logged in at the moment,
245 * and the requestor does not yet have any credentials to the requestee profile.
247 * Who is the requestee? We've already loaded their profile which means their nickname should be
248 * in $a->argv[1] and we should have their complete info in $a->profile.
252 if(! (is_array($a->profile) && count($a->profile))) {
253 notice( t('Profile unavailable.') . EOL);
257 $nickname = $a->profile['nickname'];
258 $notify_flags = $a->profile['notify-flags'];
259 $uid = $a->profile['uid'];
260 $maxreq = intval($a->profile['maxreq']);
261 $contact_record = null;
268 if( x($_POST,'dfrn_url')) {
271 * Block friend request spam
275 $r = q("SELECT * FROM `intro` WHERE `datetime` > '%s' AND `uid` = %d",
276 dbesc(datetime_convert('UTC','UTC','now - 24 hours')),
279 if (dbm::is_result($r) && count($r) > $maxreq) {
280 notice( sprintf( t('%s has received too many connection requests today.'), $a->profile['name']) . EOL);
281 notice( t('Spam protection measures have been invoked.') . EOL);
282 notice( t('Friends are advised to please try again in 24 hours.') . EOL);
289 * Cleanup old introductions that remain blocked.
290 * Also remove the contact record, but only if there is no existing relationship
291 * Do not remove email contacts as these may be awaiting email verification
294 $r = q("SELECT `intro`.*, `intro`.`id` AS `iid`, `contact`.`id` AS `cid`, `contact`.`rel`
295 FROM `intro` LEFT JOIN `contact` on `intro`.`contact-id` = `contact`.`id`
296 WHERE `intro`.`blocked` = 1 AND `contact`.`self` = 0
297 AND `contact`.`network` != '%s'
298 AND `intro`.`datetime` < UTC_TIMESTAMP() - INTERVAL 30 MINUTE ",
301 if (dbm::is_result($r)) {
302 foreach ($r as $rr) {
304 q("DELETE FROM `contact` WHERE `id` = %d AND NOT `self`",
308 q("DELETE FROM `intro` WHERE `id` = %d",
316 * Cleanup any old email intros - which will have a greater lifetime
319 $r = q("SELECT `intro`.*, `intro`.`id` AS `iid`, `contact`.`id` AS `cid`, `contact`.`rel`
320 FROM `intro` LEFT JOIN `contact` on `intro`.`contact-id` = `contact`.`id`
321 WHERE `intro`.`blocked` = 1 AND `contact`.`self` = 0
322 AND `contact`.`network` = '%s'
323 AND `intro`.`datetime` < UTC_TIMESTAMP() - INTERVAL 3 DAY ",
326 if (dbm::is_result($r)) {
327 foreach ($r as $rr) {
329 q("DELETE FROM `contact` WHERE `id` = %d AND NOT `self`",
333 q("DELETE FROM `intro` WHERE `id` = %d",
339 $email_follow = (x($_POST,'email_follow') ? intval($_POST['email_follow']) : 0);
340 $real_name = (x($_POST,'realname') ? notags(trim($_POST['realname'])) : '');
342 $url = trim($_POST['dfrn_url']);
344 notice( t("Invalid locator") . EOL );
352 if(! validate_email($url)) {
353 notice( t('Invalid email address.') . EOL);
358 $name = ($realname) ? $realname : $addr;
359 $nick = substr($addr,0,strpos($addr,'@'));
360 $url = 'http://' . substr($addr,strpos($addr,'@') + 1);
361 $nurl = normalise_url($host);
362 $poll = 'email ' . random_string();
363 $notify = 'smtp ' . random_string();
364 $network = NETWORK_MAIL2;
365 $rel = CONTACT_IS_FOLLOWER;
367 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
368 if(get_config('system','dfrn_only'))
371 if(! $mail_disabled) {
373 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
377 if (! dbm::is_result($r)) {
378 notice( t('This account has not been configured for email. Request failed.') . EOL);
383 $r = q("insert into contact ( uid, created, addr, name, nick, url, nurl, poll, notify, blocked, pending, network, rel )
384 values( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', %d ) ",
386 dbesc(datetime_convert()),
400 $r = q("SELECT `id`, `network` FROM `contact` WHERE `poll` = '%s' AND `uid` = %d LIMIT 1",
404 if (dbm::is_result($r)) {
405 $contact_id = $r[0]['id'];
407 $def_gid = get_default_group($uid, $r[0]["network"]);
408 if (intval($def_gid))
409 group_add_member($uid, '', $contact_id, $def_gid);
411 $photo = avatar_img($addr);
413 $r = q("UPDATE `contact` SET
419 `avatar-date` = '%s',
426 dbesc(datetime_convert()),
427 dbesc(datetime_convert()),
428 dbesc(datetime_convert()),
433 // contact is created. Now create an introduction
435 $hash = random_string();
437 $r = q("INSERT INTO `intro` ( `uid`, `contact-id`, knowyou, note, hash, datetime, blocked )
438 VALUES( %d , %d, %d, '%s', '%s', '%s', %d ) ",
441 ((x($_POST,'knowyou') && ($_POST['knowyou'] == 1)) ? 1 : 0),
442 dbesc(notags(trim($_POST['dfrn-request-message']))),
444 dbesc(datetime_convert()),
448 // Next send an email verify form to the requestor.
451 // Detect the network
452 $data = probe_url($url);
453 $network = $data["network"];
455 // Canonicalise email-style profile locator
456 $url = Probe::webfinger_dfrn($url,$hcard);
458 if (substr($url,0,5) === 'stat:') {
460 // Every time we detect the remote subscription we define this as OStatus.
461 // We do this even if it is not OStatus.
462 // we only need to pass this through another section of the code.
463 if ($network != NETWORK_DIASPORA)
464 $network = NETWORK_OSTATUS;
466 $url = substr($url,5);
468 $network = NETWORK_DFRN;
471 logger('dfrn_request: url: ' . $url . ',network=' . $network, LOGGER_DEBUG);
473 if($network === NETWORK_DFRN) {
474 $ret = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `self` = 0 LIMIT 1",
479 if (dbm::is_result($ret)) {
480 if(strlen($ret[0]['issued-id'])) {
481 notice( t('You have already introduced yourself here.') . EOL );
484 elseif($ret[0]['rel'] == CONTACT_IS_FRIEND) {
485 notice( sprintf( t('Apparently you are already friends with %s.'), $a->profile['name']) . EOL);
489 $contact_record = $ret[0];
490 $parms = array('dfrn-request' => $ret[0]['request']);
494 $issued_id = random_string();
496 if(is_array($contact_record)) {
497 // There is a contact record but no issued-id, so this
498 // is a reciprocal introduction from a known contact
499 $r = q("UPDATE `contact` SET `issued-id` = '%s' WHERE `id` = %d",
501 intval($contact_record['id'])
505 if (! validate_url($url)) {
506 notice( t('Invalid profile URL.') . EOL);
507 goaway(App::get_baseurl() . '/' . $a->cmd);
508 return; // NOTREACHED
511 if (! allowed_url($url)) {
512 notice( t('Disallowed profile URL.') . EOL);
513 goaway(App::get_baseurl() . '/' . $a->cmd);
514 return; // NOTREACHED
518 require_once('include/Scrape.php');
520 $parms = Probe::profile(($hcard) ? $hcard : $url);
522 if (! count($parms)) {
523 notice( t('Profile location is not valid or does not contain profile information.') . EOL );
524 goaway(App::get_baseurl() . '/' . $a->cmd);
527 if (! x($parms,'fn')) {
528 notice( t('Warning: profile location has no identifiable owner name.') . EOL );
530 if (! x($parms,'photo')) {
531 notice( t('Warning: profile location has no profile photo.') . EOL );
533 $invalid = Probe::valid_dfrn($parms);
535 notice( sprintf( tt("%d required parameter was not found at the given location",
536 "%d required parameters were not found at the given location",
537 $invalid), $invalid) . EOL );
544 $parms['url'] = $url;
545 $parms['issued-id'] = $issued_id;
546 $photo = $parms["photo"];
548 dbm::esc_array($parms);
549 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `name`, `nick`, `issued-id`, `photo`, `site-pubkey`,
550 `request`, `confirm`, `notify`, `poll`, `poco`, `network`, `blocked`, `pending` )
551 VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d )",
553 dbesc(datetime_convert()),
555 dbesc(normalise_link($url)),
562 $parms['dfrn-request'],
563 $parms['dfrn-confirm'],
564 $parms['dfrn-notify'],
572 // find the contact record we just created
574 $r = q("SELECT `id` FROM `contact`
575 WHERE `uid` = %d AND `url` = '%s' AND `issued-id` = '%s' LIMIT 1",
580 if (dbm::is_result($r)) {
581 $contact_record = $r[0];
582 update_contact_avatar($photo, $uid, $contact_record["id"], true);
588 notice( t('Failed to update contact record.') . EOL );
592 $hash = random_string() . (string) time(); // Generate a confirm_key
594 if (is_array($contact_record)) {
595 $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `note`, `hash`, `datetime`)
596 VALUES ( %d, %d, 1, %d, '%s', '%s', '%s' )",
598 intval($contact_record['id']),
599 ((x($_POST,'knowyou') && ($_POST['knowyou'] == 1)) ? 1 : 0),
600 dbesc(notags(trim($_POST['dfrn-request-message']))),
602 dbesc(datetime_convert())
606 // This notice will only be seen by the requestor if the requestor and requestee are on the same server.
609 info( t('Your introduction has been sent.') . EOL );
612 // "Homecoming" - send the requestor back to their site to record the introduction.
614 $dfrn_url = bin2hex(App::get_baseurl() . '/profile/' . $nickname);
615 $aes_allow = ((function_exists('openssl_encrypt')) ? 1 : 0);
617 goaway($parms['dfrn-request'] . "?dfrn_url=$dfrn_url"
618 . '&dfrn_version=' . DFRN_PROTOCOL_VERSION
619 . '&confirm_key=' . $hash
620 . (($aes_allow) ? "&aes_allow=1" : "")
623 // END $network === NETWORK_DFRN
624 } elseif (($network != NETWORK_PHANTOM) AND ($url != "")) {
628 * Substitute our user's feed URL into $url template
629 * Send the subscriber home to subscribe
633 // Diaspora needs the uri in the format user@domain.tld
634 // Diaspora will support the remote subscription in a future version
635 if ($network == NETWORK_DIASPORA) {
636 $uri = $nickname.'@'.$a->get_hostname();
639 $uri .= '/'.$a->get_path();
641 $uri = urlencode($uri);
643 $uri = App::get_baseurl().'/profile/'.$nickname;
646 $url = str_replace('{uri}', $uri, $url);
649 // END $network != NETWORK_PHANTOM
651 notice(t("Remote subscription can't be done for your network. Please subscribe directly on your system.").EOL);
659 function dfrn_request_content(App $a) {
661 if (($a->argc != 2) || (! count($a->profile))) {
666 // "Homecoming". Make sure we're logged in to this site as the correct user. Then offer a confirm button
667 // to send us to the post section to record the introduction.
669 if (x($_GET,'dfrn_url')) {
671 if (! local_user()) {
672 info( t("Please login to confirm introduction.") . EOL );
673 /* setup the return URL to come back to this page if they use openid */
674 $_SESSION['return_url'] = $a->query_string;
678 // Edge case, but can easily happen in the wild. This person is authenticated,
679 // but not as the person who needs to deal with this request.
681 if ($a->user['nickname'] != $a->argv[1]) {
682 notice( t("Incorrect identity currently logged in. Please login to <strong>this</strong> profile.") . EOL);
686 $dfrn_url = notags(trim(hex2bin($_GET['dfrn_url'])));
687 $aes_allow = (((x($_GET,'aes_allow')) && ($_GET['aes_allow'] == 1)) ? 1 : 0);
688 $confirm_key = (x($_GET,'confirm_key') ? $_GET['confirm_key'] : "");
690 // Checking fastlane for validity
691 if (x($_SESSION, "fastlane") AND (normalise_link($_SESSION["fastlane"]) == normalise_link($dfrn_url))) {
692 $_POST["dfrn_url"] = $dfrn_url;
693 $_POST["confirm_key"] = $confirm_key;
694 $_POST["localconfirm"] = 1;
695 $_POST["hidden-contact"] = 0;
696 $_POST["submit"] = t('Confirm');
698 dfrn_request_post($a);
701 return; // NOTREACHED
704 $tpl = get_markup_template("dfrn_req_confirm.tpl");
705 $o = replace_macros($tpl,array(
706 '$dfrn_url' => $dfrn_url,
707 '$aes_allow' => (($aes_allow) ? '<input type="hidden" name="aes_allow" value="1" />' : "" ),
708 '$hidethem' => t('Hide this contact'),
709 '$hidechecked' => '',
710 '$confirm_key' => $confirm_key,
711 '$welcome' => sprintf( t('Welcome home %s.'), $a->user['username']),
712 '$please' => sprintf( t('Please confirm your introduction/connection request to %s.'), $dfrn_url),
713 '$submit' => t('Confirm'),
714 '$uid' => $_SESSION['uid'],
715 '$nickname' => $a->user['nickname'],
716 'dfrn_rawurl' => $_GET['dfrn_url']
721 elseif((x($_GET,'confirm_key')) && strlen($_GET['confirm_key'])) {
723 // we are the requestee and it is now safe to send our user their introduction,
724 // We could just unblock it, but first we have to jump through a few hoops to
725 // send an email, or even to find out if we need to send an email.
727 $intro = q("SELECT * FROM `intro` WHERE `hash` = '%s' LIMIT 1",
728 dbesc($_GET['confirm_key'])
731 if (dbm::is_result($intro)) {
733 $r = q("SELECT `contact`.*, `user`.* FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
734 WHERE `contact`.`id` = %d LIMIT 1",
735 intval($intro[0]['contact-id'])
738 $auto_confirm = false;
740 if (dbm::is_result($r)) {
741 if(($r[0]['page-flags'] != PAGE_NORMAL) && ($r[0]['page-flags'] != PAGE_PRVGROUP))
742 $auto_confirm = true;
744 if(! $auto_confirm) {
747 'type' => NOTIFY_INTRO,
748 'notify_flags' => $r[0]['notify-flags'],
749 'language' => $r[0]['language'],
750 'to_name' => $r[0]['username'],
751 'to_email' => $r[0]['email'],
752 'uid' => $r[0]['uid'],
753 'link' => App::get_baseurl() . '/notifications/intros',
754 'source_name' => ((strlen(stripslashes($r[0]['name']))) ? stripslashes($r[0]['name']) : t('[Name Withheld]')),
755 'source_link' => $r[0]['url'],
756 'source_photo' => $r[0]['photo'],
757 'verb' => ACTIVITY_REQ_FRIEND,
763 require_once('mod/dfrn_confirm.php');
765 'uid' => $r[0]['uid'],
766 'node' => $r[0]['nickname'],
767 'dfrn_id' => $r[0]['issued-id'],
768 'intro_id' => $intro[0]['id'],
769 'duplex' => (($r[0]['page-flags'] == PAGE_FREELOVE) ? 1 : 0),
770 'activity' => intval(get_pconfig($r[0]['uid'],'system','post_newfriend'))
772 dfrn_confirm_post($a,$handsfree);
777 if(! $auto_confirm) {
779 // If we are auto_confirming, this record will have already been nuked
780 // in dfrn_confirm_post()
782 $r = q("UPDATE `intro` SET `blocked` = 0 WHERE `hash` = '%s'",
783 dbesc($_GET['confirm_key'])
789 return; // NOTREACHED
794 * Normal web request. Display our user's introduction form.
797 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
798 if(! get_config('system','local_block')) {
799 notice( t('Public access denied.') . EOL);
806 * Try to auto-fill the profile address
809 // At first look if an address was provided
810 // Otherwise take the local address
811 if (x($_GET,'addr') AND ($_GET['addr'] != "")) {
812 $myaddr = hex2bin($_GET['addr']);
813 } elseif (x($_GET,'address') AND ($_GET['address'] != "")) {
814 $myaddr = $_GET['address'];
815 } elseif (local_user()) {
816 if (strlen($a->path)) {
817 $myaddr = App::get_baseurl() . '/profile/' . $a->user['nickname'];
819 $myaddr = $a->user['nickname'] . '@' . substr(z_root(), strpos(z_root(),'://') + 3 );
823 $myaddr = get_my_url();
826 $target_addr = $a->profile['nickname'] . '@' . substr(z_root(), strpos(z_root(),'://') + 3 );
831 * The auto_request form only has the profile address
832 * because nobody is going to read the comments and
833 * it doesn't matter if they know you or not.
837 if ($a->profile['page-flags'] == PAGE_NORMAL) {
838 $tpl = get_markup_template('dfrn_request.tpl');
840 $tpl = get_markup_template('auto_request.tpl');
843 $page_desc = t("Please enter your 'Identity Address' from one of the following supported communications networks:");
845 // see if we are allowed to have NETWORK_MAIL2 contacts
847 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
849 if (get_config('system','dfrn_only')) {
853 if (! $mail_disabled) {
854 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
855 intval($a->profile['uid'])
857 if (! dbm::is_result($r)) {
862 // "coming soon" is disabled for now
863 //$emailnet = (($mail_disabled) ? '' : t("<strike>Connect as an email follower</strike> \x28Coming soon\x29"));
866 $invite_desc = sprintf(
867 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>.'),
871 $o = replace_macros($tpl,array(
872 '$header' => t('Friend/Connection Request'),
873 '$desc' => t('Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca'),
874 '$pls_answer' => t('Please answer the following:'),
875 '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$a->profile['name']), false, '', array(t('No'),t('Yes'))),
876 /*'$does_know' => sprintf( t('Does %s know you?'),$a->profile['name']),
879 '$add_note' => t('Add a personal note:'),
880 '$page_desc' => $page_desc,
881 '$friendica' => t('Friendica'),
882 '$statusnet' => t('StatusNet/Federated Social Web'),
883 '$diaspora' => t('Diaspora'),
884 '$diasnote' => sprintf (t(' - please do not use this form. Instead, enter %s into your Diaspora search bar.'),$target_addr),
885 '$your_address' => t('Your Identity Address:'),
886 '$invite_desc' => $invite_desc,
887 '$emailnet' => $emailnet,
888 '$submit' => t('Submit Request'),
889 '$cancel' => t('Cancel'),
890 '$nickname' => $a->argv[1],
891 '$name' => $a->profile['name'],
897 return; // Somebody is fishing.