Frio - bugfix - don't show new event button if the button isn't available
[friendica.git/.git] / mod / dfrn_confirm.php
1 <?php
2 /**
3  * @file mod/dfrn_confirm.php
4  * @brief Module: dfrn_confirm
5  * Purpose: Friendship acceptance for DFRN contacts
6  *
7  * There are two possible entry points and three scenarios.
8  *
9  *   1. A form was submitted by our user approving a friendship that originated elsewhere.
10  *      This may also be called from dfrn_request to automatically approve a friendship.
11  *
12  *   2. We may be the target or other side of the conversation to scenario 1, and will
13  *      interact with that process on our own user's behalf.
14  *
15  *  @see PDF with dfrn specs: https://github.com/friendica/friendica/blob/master/spec/dfrn2.pdf
16  *    You also find a graphic which describes the confirmation process at
17  *    https://github.com/friendica/friendica/blob/master/spec/dfrn2_contact_confirmation.png
18  */
19
20 use Friendica\App;
21 use Friendica\Core\Config;
22 use Friendica\Core\L10n;
23 use Friendica\Core\Protocol;
24 use Friendica\Core\System;
25 use Friendica\Database\DBA;
26 use Friendica\Model\Contact;
27 use Friendica\Model\Group;
28 use Friendica\Model\User;
29 use Friendica\Network\Probe;
30 use Friendica\Protocol\Diaspora;
31 use Friendica\Util\Crypto;
32 use Friendica\Util\DateTimeFormat;
33 use Friendica\Util\Network;
34 use Friendica\Util\XML;
35
36 require_once 'include/enotify.php';
37 require_once 'include/items.php';
38
39 function dfrn_confirm_post(App $a, $handsfree = null)
40 {
41         $node = null;
42         if (is_array($handsfree)) {
43                 /*
44                  * We were called directly from dfrn_request due to automatic friend acceptance.
45                  * Any $_POST parameters we may require are supplied in the $handsfree array.
46                  *
47                  */
48                 $node = $handsfree['node'];
49                 $a->interactive = false; // notice() becomes a no-op since nobody is there to see it
50         } elseif ($a->argc > 1) {
51                 $node = $a->argv[1];
52         }
53
54         /*
55          * Main entry point. Scenario 1. Our user received a friend request notification (perhaps
56          * from another site) and clicked 'Approve'.
57          * $POST['source_url'] is not set. If it is, it indicates Scenario 2.
58          *
59          * We may also have been called directly from dfrn_request ($handsfree != null) due to
60          * this being a page type which supports automatic friend acceptance. That is also Scenario 1
61          * since we are operating on behalf of our registered user to approve a friendship.
62          */
63         if (!x($_POST, 'source_url')) {
64                 $uid = defaults($handsfree, 'uid', local_user());
65                 if (!$uid) {
66                         notice(L10n::t('Permission denied.') . EOL);
67                         return;
68                 }
69
70                 $user = DBA::selectFirst('user', [], ['uid' => $uid]);
71                 if (!DBA::isResult($user)) {
72                         notice(L10n::t('Profile not found.') . EOL);
73                         return;
74                 }
75
76                 // These data elements may come from either the friend request notification form or $handsfree array.
77                 if (is_array($handsfree)) {
78                         logger('Confirm in handsfree mode');
79                         $dfrn_id  = $handsfree['dfrn_id'];
80                         $intro_id = $handsfree['intro_id'];
81                         $duplex   = $handsfree['duplex'];
82                         $cid      = 0;
83                         $hidden   = intval(defaults($handsfree, 'hidden'  , 0));
84                 } else {
85                         $dfrn_id  = notags(trim(defaults($_POST, 'dfrn_id'   , '')));
86                         $intro_id =      intval(defaults($_POST, 'intro_id'  , 0));
87                         $duplex   =      intval(defaults($_POST, 'duplex'    , 0));
88                         $cid      =      intval(defaults($_POST, 'contact_id', 0));
89                         $hidden   =      intval(defaults($_POST, 'hidden'    , 0));
90                 }
91
92                 /*
93                  * Ensure that dfrn_id has precedence when we go to find the contact record.
94                  * We only want to search based on contact id if there is no dfrn_id,
95                  * e.g. for OStatus network followers.
96                  */
97                 if (strlen($dfrn_id)) {
98                         $cid = 0;
99                 }
100
101                 logger('Confirming request for dfrn_id (issued) ' . $dfrn_id);
102                 if ($cid) {
103                         logger('Confirming follower with contact_id: ' . $cid);
104                 }
105
106                 /*
107                  * The other person will have been issued an ID when they first requested friendship.
108                  * Locate their record. At this time, their record will have both pending and blocked set to 1.
109                  * There won't be any dfrn_id if this is a network follower, so use the contact_id instead.
110                  */
111                 $r = q("SELECT *
112                         FROM `contact`
113                         WHERE (
114                                 (`issued-id` != '' AND `issued-id` = '%s')
115                                 OR
116                                 (`id` = %d AND `id` != 0)
117                         )
118                         AND `uid` = %d
119                         AND `duplex` = 0
120                         LIMIT 1",
121                         DBA::escape($dfrn_id),
122                         intval($cid),
123                         intval($uid)
124                 );
125                 if (!DBA::isResult($r)) {
126                         logger('Contact not found in DB.');
127                         notice(L10n::t('Contact not found.') . EOL);
128                         notice(L10n::t('This may occasionally happen if contact was requested by both persons and it has already been approved.') . EOL);
129                         return;
130                 }
131
132                 $contact = $r[0];
133
134                 $contact_id   = $contact['id'];
135                 $relation     = $contact['rel'];
136                 $site_pubkey  = $contact['site-pubkey'];
137                 $dfrn_confirm = $contact['confirm'];
138                 $aes_allow    = $contact['aes_allow'];
139
140                 $network = ((strlen($contact['issued-id'])) ? Protocol::DFRN : Protocol::OSTATUS);
141
142                 if ($contact['network']) {
143                         $network = $contact['network'];
144                 }
145
146                 if ($network === Protocol::DFRN) {
147                         /*
148                          * Generate a key pair for all further communications with this person.
149                          * We have a keypair for every contact, and a site key for unknown people.
150                          * This provides a means to carry on relationships with other people if
151                          * any single key is compromised. It is a robust key. We're much more
152                          * worried about key leakage than anybody cracking it.
153                          */
154                         $res = Crypto::newKeypair(4096);
155
156                         $private_key = $res['prvkey'];
157                         $public_key  = $res['pubkey'];
158
159                         // Save the private key. Send them the public key.
160                         q("UPDATE `contact` SET `prvkey` = '%s' WHERE `id` = %d AND `uid` = %d",
161                                 DBA::escape($private_key),
162                                 intval($contact_id),
163                                 intval($uid)
164                         );
165
166                         $params = [];
167
168                         /*
169                          * Per the DFRN protocol, we will verify both ends by encrypting the dfrn_id with our
170                          * site private key (person on the other end can decrypt it with our site public key).
171                          * Then encrypt our profile URL with the other person's site public key. They can decrypt
172                          * it with their site private key. If the decryption on the other end fails for either
173                          * item, it indicates tampering or key failure on at least one site and we will not be
174                          * able to provide a secure communication pathway.
175                          *
176                          * If other site is willing to accept full encryption, (aes_allow is 1 AND we have php5.3
177                          * or later) then we encrypt the personal public key we send them using AES-256-CBC and a
178                          * random key which is encrypted with their site public key.
179                          */
180
181                         $src_aes_key = openssl_random_pseudo_bytes(64);
182
183                         $result = '';
184                         openssl_private_encrypt($dfrn_id, $result, $user['prvkey']);
185
186                         $params['dfrn_id'] = bin2hex($result);
187                         $params['public_key'] = $public_key;
188
189                         $my_url = System::baseUrl() . '/profile/' . $user['nickname'];
190
191                         openssl_public_encrypt($my_url, $params['source_url'], $site_pubkey);
192                         $params['source_url'] = bin2hex($params['source_url']);
193
194                         if ($aes_allow && function_exists('openssl_encrypt')) {
195                                 openssl_public_encrypt($src_aes_key, $params['aes_key'], $site_pubkey);
196                                 $params['aes_key'] = bin2hex($params['aes_key']);
197                                 $params['public_key'] = bin2hex(openssl_encrypt($public_key, 'AES-256-CBC', $src_aes_key));
198                         }
199
200                         $params['dfrn_version'] = DFRN_PROTOCOL_VERSION;
201                         if ($duplex == 1) {
202                                 $params['duplex'] = 1;
203                         }
204
205                         if ($user['page-flags'] == Contact::PAGE_COMMUNITY) {
206                                 $params['page'] = 1;
207                         }
208
209                         if ($user['page-flags'] == Contact::PAGE_PRVGROUP) {
210                                 $params['page'] = 2;
211                         }
212
213                         logger('Confirm: posting data to ' . $dfrn_confirm . ': ' . print_r($params, true), LOGGER_DATA);
214
215                         /*
216                          *
217                          * POST all this stuff to the other site.
218                          * Temporarily raise the network timeout to 120 seconds because the default 60
219                          * doesn't always give the other side quite enough time to decrypt everything.
220                          *
221                          */
222
223                         $res = Network::post($dfrn_confirm, $params, null, $redirects, 120);
224
225                         logger(' Confirm: received data: ' . $res, LOGGER_DATA);
226
227                         // Now figure out what they responded. Try to be robust if the remote site is
228                         // having difficulty and throwing up errors of some kind.
229
230                         $leading_junk = substr($res, 0, strpos($res, '<?xml'));
231
232                         $res = substr($res, strpos($res, '<?xml'));
233                         if (!strlen($res)) {
234                                 // No XML at all, this exchange is messed up really bad.
235                                 // We shouldn't proceed, because the xml parser might choke,
236                                 // and $status is going to be zero, which indicates success.
237                                 // We can hardly call this a success.
238                                 notice(L10n::t('Response from remote site was not understood.') . EOL);
239                                 return;
240                         }
241
242                         if (strlen($leading_junk) && Config::get('system', 'debugging')) {
243                                 // This might be more common. Mixed error text and some XML.
244                                 // If we're configured for debugging, show the text. Proceed in either case.
245                                 notice(L10n::t('Unexpected response from remote site: ') . EOL . $leading_junk . EOL);
246                         }
247
248                         if (stristr($res, "<status") === false) {
249                                 // wrong xml! stop here!
250                                 logger('Unexpected response posting to ' . $dfrn_confirm);
251                                 notice(L10n::t('Unexpected response from remote site: ') . EOL . htmlspecialchars($res) . EOL);
252                                 return;
253                         }
254
255                         $xml = XML::parseString($res);
256                         $status = (int) $xml->status;
257                         $message = unxmlify($xml->message);   // human readable text of what may have gone wrong.
258                         switch ($status) {
259                                 case 0:
260                                         info(L10n::t("Confirmation completed successfully.") . EOL);
261                                         break;
262                                 case 1:
263                                         // birthday paradox - generate new dfrn-id and fall through.
264                                         $new_dfrn_id = random_string();
265                                         q("UPDATE contact SET `issued-id` = '%s' WHERE `id` = %d AND `uid` = %d",
266                                                 DBA::escape($new_dfrn_id),
267                                                 intval($contact_id),
268                                                 intval($uid)
269                                         );
270
271                                 case 2:
272                                         notice(L10n::t("Temporary failure. Please wait and try again.") . EOL);
273                                         break;
274                                 case 3:
275                                         notice(L10n::t("Introduction failed or was revoked.") . EOL);
276                                         break;
277                         }
278
279                         if (strlen($message)) {
280                                 notice(L10n::t('Remote site reported: ') . $message . EOL);
281                         }
282
283                         if (($status == 0) && $intro_id) {
284                                 $intro = DBA::selectFirst('intro', ['note'], ['id' => $intro_id]);
285                                 if (DBA::isResult($intro)) {
286                                         DBA::update('contact', ['reason' => $intro['note']], ['id' => $contact_id]);
287                                 }
288
289                                 // Success. Delete the notification.
290                                 DBA::delete('intro', ['id' => $intro_id]);
291                         }
292
293                         if ($status != 0) {
294                                 return;
295                         }
296                 }
297
298                 /*
299                  * We have now established a relationship with the other site.
300                  * Let's make our own personal copy of their profile photo so we don't have
301                  * to always load it from their site.
302                  *
303                  * We will also update the contact record with the nature and scope of the relationship.
304                  */
305                 Contact::updateAvatar($contact['photo'], $uid, $contact_id);
306
307                 logger('dfrn_confirm: confirm - imported photos');
308
309                 if ($network === Protocol::DFRN) {
310                         $new_relation = Contact::FOLLOWER;
311
312                         if (($relation == Contact::SHARING) || ($duplex)) {
313                                 $new_relation = Contact::FRIEND;
314                         }
315
316                         if (($relation == Contact::SHARING) && ($duplex)) {
317                                 $duplex = 0;
318                         }
319
320                         $r = q("UPDATE `contact` SET `rel` = %d,
321                                 `name-date` = '%s',
322                                 `uri-date` = '%s',
323                                 `blocked` = 0,
324                                 `pending` = 0,
325                                 `duplex` = %d,
326                                 `hidden` = %d,
327                                 `network` = '%s' WHERE `id` = %d
328                         ",
329                                 intval($new_relation),
330                                 DBA::escape(DateTimeFormat::utcNow()),
331                                 DBA::escape(DateTimeFormat::utcNow()),
332                                 intval($duplex),
333                                 intval($hidden),
334                                 DBA::escape(Protocol::DFRN),
335                                 intval($contact_id)
336                         );
337                 } else {
338                         // $network !== Protocol::DFRN
339                         $network = defaults($contact, 'network', Protocol::OSTATUS);
340
341                         $arr = Probe::uri($contact['url']);
342
343                         $notify  = defaults($contact, 'notify' , $arr['notify']);
344                         $poll    = defaults($contact, 'poll'   , $arr['poll']);
345
346                         $addr = $arr['addr'];
347
348                         $new_relation = $contact['rel'];
349                         $writable = $contact['writable'];
350
351                         if ($network === Protocol::DIASPORA) {
352                                 if ($duplex) {
353                                         $new_relation = Contact::FRIEND;
354                                 } else {
355                                         $new_relation = Contact::FOLLOWER;
356                                 }
357
358                                 if ($new_relation != Contact::FOLLOWER) {
359                                         $writable = 1;
360                                 }
361                         }
362
363                         DBA::delete('intro', ['id' => $intro_id]);
364
365                         $r = q("UPDATE `contact` SET `name-date` = '%s',
366                                 `uri-date` = '%s',
367                                 `addr` = '%s',
368                                 `notify` = '%s',
369                                 `poll` = '%s',
370                                 `blocked` = 0,
371                                 `pending` = 0,
372                                 `network` = '%s',
373                                 `writable` = %d,
374                                 `hidden` = %d,
375                                 `rel` = %d
376                                 WHERE `id` = %d
377                         ",
378                                 DBA::escape(DateTimeFormat::utcNow()),
379                                 DBA::escape(DateTimeFormat::utcNow()),
380                                 DBA::escape($addr),
381                                 DBA::escape($notify),
382                                 DBA::escape($poll),
383                                 DBA::escape($network),
384                                 intval($writable),
385                                 intval($hidden),
386                                 intval($new_relation),
387                                 intval($contact_id)
388                         );
389                 }
390
391                 if (!DBA::isResult($r)) {
392                         notice(L10n::t('Unable to set contact photo.') . EOL);
393                 }
394
395                 // reload contact info
396                 $contact = DBA::selectFirst('contact', [], ['id' => $contact_id]);
397                 if ((isset($new_relation) && $new_relation == Contact::FRIEND)) {
398                         if (DBA::isResult($contact) && ($contact['network'] === Protocol::DIASPORA)) {
399                                 $ret = Diaspora::sendShare($user, $contact);
400                                 logger('share returns: ' . $ret);
401                         }
402                 }
403
404                 Group::addMember(User::getDefaultGroup($uid, $contact["network"]), $contact['id']);
405
406                 // Let's send our user to the contact editor in case they want to
407                 // do anything special with this new friend.
408                 if ($handsfree === null) {
409                         goaway(System::baseUrl() . '/contacts/' . intval($contact_id));
410                 } else {
411                         return;
412                 }
413                 //NOTREACHED
414         }
415
416         /*
417          * End of Scenario 1. [Local confirmation of remote friend request].
418          *
419          * Begin Scenario 2. This is the remote response to the above scenario.
420          * This will take place on the site that originally initiated the friend request.
421          * In the section above where the confirming party makes a POST and
422          * retrieves xml status information, they are communicating with the following code.
423          */
424         if (x($_POST, 'source_url')) {
425                 // We are processing an external confirmation to an introduction created by our user.
426                 $public_key =         defaults($_POST, 'public_key', '');
427                 $dfrn_id    = hex2bin(defaults($_POST, 'dfrn_id'   , ''));
428                 $source_url = hex2bin(defaults($_POST, 'source_url', ''));
429                 $aes_key    =         defaults($_POST, 'aes_key'   , '');
430                 $duplex     =  intval(defaults($_POST, 'duplex'    , 0));
431                 $page       =  intval(defaults($_POST, 'page'      , 0));
432
433                 $forum = (($page == 1) ? 1 : 0);
434                 $prv   = (($page == 2) ? 1 : 0);
435
436                 logger('dfrn_confirm: requestee contacted: ' . $node);
437
438                 logger('dfrn_confirm: request: POST=' . print_r($_POST, true), LOGGER_DATA);
439
440                 // If $aes_key is set, both of these items require unpacking from the hex transport encoding.
441
442                 if (x($aes_key)) {
443                         $aes_key = hex2bin($aes_key);
444                         $public_key = hex2bin($public_key);
445                 }
446
447                 // Find our user's account
448                 $user = DBA::selectFirst('user', [], ['nickname' => $node]);
449                 if (!DBA::isResult($user)) {
450                         $message = L10n::t('No user record found for \'%s\' ', $node);
451                         System::xmlExit(3, $message); // failure
452                         // NOTREACHED
453                 }
454
455                 $my_prvkey = $user['prvkey'];
456                 $local_uid = $user['uid'];
457
458
459                 if (!strstr($my_prvkey, 'PRIVATE KEY')) {
460                         $message = L10n::t('Our site encryption key is apparently messed up.');
461                         System::xmlExit(3, $message);
462                 }
463
464                 // verify everything
465
466                 $decrypted_source_url = "";
467                 openssl_private_decrypt($source_url, $decrypted_source_url, $my_prvkey);
468
469
470                 if (!strlen($decrypted_source_url)) {
471                         $message = L10n::t('Empty site URL was provided or URL could not be decrypted by us.');
472                         System::xmlExit(3, $message);
473                         // NOTREACHED
474                 }
475
476                 $contact = DBA::selectFirst('contact', [], ['url' => $decrypted_source_url, 'uid' => $local_uid]);
477                 if (!DBA::isResult($contact)) {
478                         if (strstr($decrypted_source_url, 'http:')) {
479                                 $newurl = str_replace('http:', 'https:', $decrypted_source_url);
480                         } else {
481                                 $newurl = str_replace('https:', 'http:', $decrypted_source_url);
482                         }
483
484                         $contact = DBA::selectFirst('contact', [], ['url' => $newurl, 'uid' => $local_uid]);
485                         if (!DBA::isResult($contact)) {
486                                 // this is either a bogus confirmation (?) or we deleted the original introduction.
487                                 $message = L10n::t('Contact record was not found for you on our site.');
488                                 System::xmlExit(3, $message);
489                                 return; // NOTREACHED
490                         }
491                 }
492
493                 $relation = $contact['rel'];
494
495                 // Decrypt all this stuff we just received
496
497                 $foreign_pubkey = $contact['site-pubkey'];
498                 $dfrn_record = $contact['id'];
499
500                 if (!$foreign_pubkey) {
501                         $message = L10n::t('Site public key not available in contact record for URL %s.', $decrypted_source_url);
502                         System::xmlExit(3, $message);
503                 }
504
505                 $decrypted_dfrn_id = "";
506                 openssl_public_decrypt($dfrn_id, $decrypted_dfrn_id, $foreign_pubkey);
507
508                 if (strlen($aes_key)) {
509                         $decrypted_aes_key = "";
510                         openssl_private_decrypt($aes_key, $decrypted_aes_key, $my_prvkey);
511                         $dfrn_pubkey = openssl_decrypt($public_key, 'AES-256-CBC', $decrypted_aes_key);
512                 } else {
513                         $dfrn_pubkey = $public_key;
514                 }
515
516                 if (DBA::exists('contact', ['dfrn-id' => $decrypted_dfrn_id])) {
517                         $message = L10n::t('The ID provided by your system is a duplicate on our system. It should work if you try again.');
518                         System::xmlExit(1, $message); // Birthday paradox - duplicate dfrn-id
519                         // NOTREACHED
520                 }
521
522                 $r = q("UPDATE `contact` SET `dfrn-id` = '%s', `pubkey` = '%s' WHERE `id` = %d",
523                         DBA::escape($decrypted_dfrn_id),
524                         DBA::escape($dfrn_pubkey),
525                         intval($dfrn_record)
526                 );
527                 if (!DBA::isResult($r)) {
528                         $message = L10n::t('Unable to set your contact credentials on our system.');
529                         System::xmlExit(3, $message);
530                 }
531
532                 // It's possible that the other person also requested friendship.
533                 // If it is a duplex relationship, ditch the issued-id if one exists.
534
535                 if ($duplex) {
536                         q("UPDATE `contact` SET `issued-id` = '' WHERE `id` = %d",
537                                 intval($dfrn_record)
538                         );
539                 }
540
541                 // We're good but now we have to scrape the profile photo and send notifications.
542                 $contact = DBA::selectFirst('contact', ['photo'], ['id' => $dfrn_record]);
543                 if (DBA::isResult($contact)) {
544                         $photo = $contact['photo'];
545                 } else {
546                         $photo = System::baseUrl() . '/images/person-175.jpg';
547                 }
548
549                 Contact::updateAvatar($photo, $local_uid, $dfrn_record);
550
551                 logger('dfrn_confirm: request - photos imported');
552
553                 $new_relation = Contact::SHARING;
554
555                 if (($relation == Contact::FOLLOWER) || ($duplex)) {
556                         $new_relation = Contact::FRIEND;
557                 }
558
559                 if (($relation == Contact::FOLLOWER) && ($duplex)) {
560                         $duplex = 0;
561                 }
562
563                 $r = q("UPDATE `contact` SET
564                         `rel` = %d,
565                         `name-date` = '%s',
566                         `uri-date` = '%s',
567                         `blocked` = 0,
568                         `pending` = 0,
569                         `duplex` = %d,
570                         `forum` = %d,
571                         `prv` = %d,
572                         `network` = '%s' WHERE `id` = %d
573                 ",
574                         intval($new_relation),
575                         DBA::escape(DateTimeFormat::utcNow()),
576                         DBA::escape(DateTimeFormat::utcNow()),
577                         intval($duplex),
578                         intval($forum),
579                         intval($prv),
580                         DBA::escape(Protocol::DFRN),
581                         intval($dfrn_record)
582                 );
583                 if (!DBA::isResult($r)) {       // indicates schema is messed up or total db failure
584                         $message = L10n::t('Unable to update your contact profile details on our system');
585                         System::xmlExit(3, $message);
586                 }
587
588                 // Otherwise everything seems to have worked and we are almost done. Yay!
589                 // Send an email notification
590
591                 logger('dfrn_confirm: request: info updated');
592
593                 $combined = null;
594                 $r = q("SELECT `contact`.*, `user`.*
595                         FROM `contact`
596                         LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
597                         WHERE `contact`.`id` = %d
598                         LIMIT 1",
599                         intval($dfrn_record)
600                 );
601                 if (DBA::isResult($r)) {
602                         $combined = $r[0];
603
604                         if ($combined['notify-flags'] & NOTIFY_CONFIRM) {
605                                 $mutual = ($new_relation == Contact::FRIEND);
606                                 notification([
607                                         'type'         => NOTIFY_CONFIRM,
608                                         'notify_flags' => $combined['notify-flags'],
609                                         'language'     => $combined['language'],
610                                         'to_name'      => $combined['username'],
611                                         'to_email'     => $combined['email'],
612                                         'uid'          => $combined['uid'],
613                                         'link'         => System::baseUrl() . '/contacts/' . $dfrn_record,
614                                         'source_name'  => ((strlen(stripslashes($combined['name']))) ? stripslashes($combined['name']) : L10n::t('[Name Withheld]')),
615                                         'source_link'  => $combined['url'],
616                                         'source_photo' => $combined['photo'],
617                                         'verb'         => ($mutual?ACTIVITY_FRIEND:ACTIVITY_FOLLOW),
618                                         'otype'        => 'intro'
619                                 ]);
620                         }
621                 }
622
623                 System::xmlExit(0); // Success
624                 return; // NOTREACHED
625                 ////////////////////// End of this scenario ///////////////////////////////////////////////
626         }
627
628         // somebody arrived here by mistake or they are fishing. Send them to the homepage.
629         goaway(System::baseUrl());
630         // NOTREACHED
631 }