Diff for /loncom/auth/lonlogin.pm between versions 1.158.2.9.2.3 and 1.199

version 1.158.2.9.2.3, 2021/01/04 12:50:06 version 1.199, 2022/06/18 02:10:18
Line 1 Line 1
 # The LearningOnline Network  # The LearningOnline Network
 # Login Screen  # Login Screen
 #  #
 # $Id$  # $Id$
 #  #
 # Copyright Michigan State University Board of Trustees  # Copyright Michigan State University Board of Trustees
 #  #
 # This file is part of the LearningOnline Network with CAPA (LON-CAPA).  # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
 #  #
 # LON-CAPA is free software; you can redistribute it and/or modify  # LON-CAPA is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by  # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or  # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.  # (at your option) any later version.
 #  #
 # LON-CAPA is distributed in the hope that it will be useful,  # LON-CAPA is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of  # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.  # GNU General Public License for more details.
 #  #
 # You should have received a copy of the GNU General Public License  # You should have received a copy of the GNU General Public License
 # along with LON-CAPA; if not, write to the Free Software  # along with LON-CAPA; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 #  #
 # /home/httpd/html/adm/gpl.txt  # /home/httpd/html/adm/gpl.txt
 #  #
 # http://www.lon-capa.org/  # http://www.lon-capa.org/
 #  #
   
 package Apache::lonlogin;  package Apache::lonlogin;
   
 use strict;  use strict;
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common);
 use Apache::File ();  use Apache::File ();
 use Apache::lonnet;  use Apache::lonnet;
 use Apache::loncommon();  use Apache::loncommon();
 use Apache::lonauth();  use Apache::lonauth();
 use Apache::lonlocal;  use Apache::lonlocal;
 use Apache::migrateuser();  use Apache::migrateuser();
 use lib '/home/httpd/lib/perl/';  use lib '/home/httpd/lib/perl/';
 use LONCAPA qw(:DEFAULT :match);  use LONCAPA qw(:DEFAULT :match);
 use CGI::Cookie();  use URI::Escape;
    use HTML::Entities();
 sub handler {  use CGI::Cookie();
     my $r = shift;   
   sub handler {
     &Apache::loncommon::get_unprocessed_cgi      my $r = shift;
  (join('&',$ENV{'QUERY_STRING'},$env{'request.querystring'},  
       $ENV{'REDIRECT_QUERY_STRING'}),      &Apache::loncommon::get_unprocessed_cgi
  ['interface','username','domain','firsturl','localpath','localres',   (join('&',$ENV{'QUERY_STRING'},$env{'request.querystring'},
   'token','role','symb','iptoken','btoken']);        $ENV{'REDIRECT_QUERY_STRING'}),
     if (!defined($env{'form.firsturl'})) {   ['interface','username','domain','firsturl','localpath','localres',
         &Apache::lonacc::get_posted_cgi($r,['firsturl']);    'token','role','symb','iptoken','btoken','ltoken','ttoken','linkkey',
     }            'saml','sso','retry']);
     if (!defined($env{'form.firsturl'})) {  
         if ($ENV{'REDIRECT_URL'} =~ m{^/+tiny/+$LONCAPA::match_domain/+\w+$}) {  # -- check if they are a migrating user
             $env{'form.firsturl'} = $ENV{'REDIRECT_URL'};      if (defined($env{'form.token'})) {
         }          return &Apache::migrateuser::handler($r);
     }      }
   
 # -- check if they are a migrating user      my $lonhost = $r->dir_config('lonHostID');
     if (defined($env{'form.token'})) {      if ($env{'form.ttoken'}) {
  return &Apache::migrateuser::handler($r);          my %info = &Apache::lonnet::tmpget($env{'form.ttoken'});
     }          &Apache::lonnet::tmpdel($env{'form.ttoken'});
           if ($info{'origurl'}) {
 # For "public user" - remove any exising "public" cookie, as user really wants to log-in              $env{'form.firsturl'} = $info{'origurl'};
     my ($handle,$lonidsdir,$expirepub,$userdom);          }
     $lonidsdir=$r->dir_config('lonIDsDir');          if ($info{'ltoken'}) {
     unless ($r->header_only) {              $env{'form.ltoken'} = $info{'ltoken'};
         $handle = &Apache::lonnet::check_for_valid_session($r,'lonID',undef,\$userdom);          } elsif ($info{'linkprot'}) {
         if ($handle ne '') {              $env{'form.linkprot'} = $info{'linkprot'};
             if ($handle=~/^publicuser\_/) {              if ($info{'linkprotuser'} ne '') {
                 unlink($r->dir_config('lonIDsDir')."/$handle.id");                  $env{'form.linkprotuser'} = $info{'linkprotuser'};
                 undef($handle);              }
                 undef($userdom);          } elsif ($info{'linkkey'} ne '') {
                 $expirepub = 1;              $env{'form.linkkey'} = $info{'linkkey'};
             }          }
         }      } elsif (($env{'form.sso'}) || ($env{'form.retry'})) {
     }          my $infotoken;
           if ($env{'form.sso'}) {
     &Apache::loncommon::no_cache($r);              $infotoken = $env{'form.sso'};
     &Apache::lonlocal::get_language_handle($r);          } else {
     &Apache::loncommon::content_type($r,'text/html');              $infotoken = $env{'form.retry'};
     if ($expirepub) {          }
         my $c = new CGI::Cookie(-name    => 'lonPubID',          my $data = &Apache::lonnet::reply('tmpget:'.$infotoken,$lonhost);
                                 -value   => '',          unless (($data=~/^error/) || ($data eq 'con_lost') ||
                                 -expires => '-10y',);                  ($data eq 'no_such_host')) {
         $r->header_out('Set-cookie' => $c);              my %info = &decode_token($data);
     } elsif (($handle eq '') && ($userdom ne '')) {              foreach my $item (keys(%info)) {
         my %cookies=CGI::Cookie->parse($r->header_in('Cookie'));                  $env{'form.'.$item} = $info{$item};
         foreach my $name (keys(%cookies)) {              }
             next unless ($name =~ /^lon(|S|Link|Pub)ID$/);              &Apache::lonnet::tmpdel($infotoken);
             my $c = new CGI::Cookie(-name    => $name,          }
                                     -value   => '',      } else {
                                     -expires => '-10y',);          if (!defined($env{'form.firsturl'})) {
             $r->headers_out->add('Set-cookie' => $c);              &Apache::lonacc::get_posted_cgi($r,['firsturl']);
         }          }
     }          if (!defined($env{'form.firsturl'})) {
     $r->send_http_header;              if ($ENV{'REDIRECT_URL'} =~ m{^/+tiny/+$LONCAPA::match_domain/+\w+$}) {
     return OK if $r->header_only;                  $env{'form.firsturl'} = $ENV{'REDIRECT_URL'};
               }
           }
 # Are we re-routing?          if (($env{'form.firsturl'} =~ m{^/+tiny/+$LONCAPA::match_domain/+\w+$}) &&
     my $londocroot = $r->dir_config('lonDocRoot');               (!$env{'form.ltoken'}) && (!$env{'form.linkprot'}) && (!$env{'form.linkkey'})) {
     if (-e "$londocroot/lon-status/reroute.txt") {              &Apache::lonacc::get_posted_cgi($r,['linkkey']);
  &Apache::lonauth::reroute($r);          }
  return OK;          if ($env{'form.firsturl'} eq '/adm/logout') {
     }              delete($env{'form.firsturl'});
           }
     my $lonhost = $r->dir_config('lonHostID');      }
     $env{'form.firsturl'} =~ s/(`)/'/g;  
   # For "public user" - remove any exising "public" cookie, as user really wants to log-in
 # Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer)      my ($handle,$lonidsdir,$expirepub,$userdom);
       $lonidsdir=$r->dir_config('lonIDsDir');
     my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r,1);      unless ($r->header_only) {
     if ($found_server) {          $handle = &Apache::lonnet::check_for_valid_session($r,'lonID',undef,\$userdom);
         my $hostname = &Apache::lonnet::hostname($found_server);          if ($handle ne '') {
         if ($hostname ne '') {              if ($handle=~/^publicuser\_/) {
             my $protocol = $Apache::lonnet::protocol{$found_server};                  unlink($r->dir_config('lonIDsDir')."/$handle.id");
             $protocol = 'http' if ($protocol ne 'https');                  undef($handle);
             my $dest = '/adm/roles';                  undef($userdom);
             if ($env{'form.firsturl'} ne '') {                  $expirepub = 1;
                 $dest = $env{'form.firsturl'};              }
             }          }
             my %info = (      }
                          balcookie => $lonhost.':'.$balancer_cookie,  
                        );      &Apache::loncommon::no_cache($r);
             my $balancer_token = &Apache::lonnet::tmpput(\%info,$found_server);      &Apache::lonlocal::get_language_handle($r);
             if ($balancer_token) {      &Apache::loncommon::content_type($r,'text/html');
                 $dest .=  (($dest=~/\?/)?'&;':'?') . 'btoken='.$balancer_token;      if ($expirepub) {
             }          my $c = new CGI::Cookie(-name    => 'lonPubID',
             my $url = $protocol.'://'.$hostname.$dest;                                  -value   => '',
             my $start_page =                                  -expires => '-10y',);
                 &Apache::loncommon::start_page('Switching Server ...',undef,          $r->header_out('Set-cookie' => $c);
                                                {'redirect'       => [0,$url],});      } elsif (($handle eq '') && ($userdom ne '')) {
             my $end_page   = &Apache::loncommon::end_page();          my %cookies=CGI::Cookie->parse($r->header_in('Cookie'));
             $r->print($start_page.$end_page);          foreach my $name (keys(%cookies)) {
             return OK;              next unless ($name =~ /^lon(|S|Link|Pub)ID$/);
         }              my $c = new CGI::Cookie(-name    => $name,
     }                                      -value   => '',
                                       -expires => '-10y',);
 #              $r->headers_out->add('Set-cookie' => $c);
 # Check if a LON-CAPA load balancer sent user here because user's browser sent          }
 # it a balancer cookie for an active session on this server.      }
 #      $r->send_http_header;
       return OK if $r->header_only;
     my $balcookie;  
     if ($env{'form.btoken'}) {  
         my %info = &Apache::lonnet::tmpget($env{'form.btoken'});  # Are we re-routing?
         $balcookie = $info{'balcookie'};      my $londocroot = $r->dir_config('lonDocRoot');
         &Apache::lonnet::tmpdel($env{'form.btoken'});      if (-e "$londocroot/lon-status/reroute.txt") {
         delete($env{'form.btoken'});   &Apache::lonauth::reroute($r);
     }   return OK;
       }
 #  
 # If browser sent an old cookie for which the session file had been removed  # Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer)
 # check if configuration for user's domain has a portal URL set.  If so  
 # switch user's log-in to the portal.      my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r,1);
 #      if ($found_server) {
           my $hostname = &Apache::lonnet::hostname($found_server);
     if (($handle eq '') && ($userdom ne '')) {          if ($hostname ne '') {
         my %domdefaults = &Apache::lonnet::get_domain_defaults($userdom);              my $protocol = $Apache::lonnet::protocol{$found_server};
         if ($domdefaults{'portal_def'} =~ /^https?\:/) {              $protocol = 'http' if ($protocol ne 'https');
             my $start_page = &Apache::loncommon::start_page('Switching Server ...',undef,              my $dest = '/adm/roles';
                                           {'redirect' => [0,$domdefaults{'portal_def'}],});              if ($env{'form.firsturl'} ne '') {
             my $end_page   = &Apache::loncommon::end_page();                  $dest = &HTML::Entities::encode($env{'form.firsturl'},'\'"<>&');
             $r->print($start_page.$end_page);              }
             return OK;              my %info = (
         }                           balcookie => $lonhost.':'.$balancer_cookie,
     }                         );
               if ($env{'form.role'}) {
     $env{'form.firsturl'} =~ s/(`)/'/g;                  $info{'role'} = $env{'form.role'};
               }
 # -------------------------------- Prevent users from attempting to login twice              if ($env{'form.symb'}) {
     if ($handle ne '') {                  $info{'symb'} = $env{'form.symb'};
         &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);              }
  my $start_page =               my $balancer_token = &Apache::lonnet::tmpput(\%info,$found_server);
     &Apache::loncommon::start_page('Already logged in');              unless (($balancer_token eq 'con_lost') || ($balancer_token eq 'refused') ||
  my $end_page =                       ($balancer_token eq 'unknown_cmd') || ($balancer_token eq 'no_such_host')) {
     &Apache::loncommon::end_page();                  $dest .=  (($dest=~/\?/)?'&amp;':'?') . 'btoken='.$balancer_token;
         my $dest = '/adm/roles';              }
         if ($env{'form.firsturl'} ne '') {              if ($env{'form.firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
             $dest = $env{'form.firsturl'};                   my %link_info;
         }                  if ($env{'form.ltoken'}) {
  $r->print(                      $link_info{'ltoken'} = $env{'form.ltoken'};
               $start_page                  } elsif ($env{'form.linkprot'}) {
              .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'                      $link_info{'linkprot'} = $env{'form.linkprot'};
              .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].',                      if ($env{'form.linkprotuser'} ne '') {
               '<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>').'</p>'                          $link_info{'linkprotuser'} = $env{'form.linkprotuser'};
              .$end_page                      }
              );                  } elsif ($env{'form.linkkey'} ne '') {
         return OK;                      $link_info{'linkkey'} = $env{'form.linkkey'};
     }                  }
                   if (keys(%link_info)) {
 # ---------------------------------------------------- No valid token, continue                      $link_info{'origurl'} = $env{'form.firsturl'};
                       my $token = &Apache::lonnet::tmpput(\%link_info,$found_server,'link');
 # ---------------------------- Not possible to really login to domain "public"                      unless (($token eq 'con_lost') || ($token eq 'refused') ||
     if ($env{'form.domain'} eq 'public') {                              ($token eq 'unknown_cmd') || ($token eq 'no_such_host')) {
  $env{'form.domain'}='';                          $dest .=  (($dest=~/\?/)?'&amp;':'?') . 'ttoken='.$token;
  $env{'form.username'}='';                      }
     }                  }
               }
 # ------ Is this page requested because /adm/migrateuser detected an IP change?              unless ($found_server eq $lonhost) {
     my %sessiondata;                  my $alias = &Apache::lonnet::use_proxy_alias($r,$found_server);
     if ($env{'form.iptoken'}) {                  $hostname = $alias if ($alias ne '');
         %sessiondata = &Apache::lonnet::tmpget($env{'form.iptoken'});              }
         unless ($sessiondata{'sessionserver'}) {              my $url = $protocol.'://'.$hostname.$dest;
             my $delete = &Apache::lonnet::tmpdel($env{'form.iptoken'});              my $start_page =
             delete($env{'form.iptoken'});                  &Apache::loncommon::start_page('Switching Server ...',undef,
         }                                                 {'redirect'       => [0,$url],});
     }              my $end_page   = &Apache::loncommon::end_page();
 # ----------------------------------------------------------- Process Interface              $r->print($start_page.$end_page);
     $env{'form.interface'}=~s/\W//g;              return OK;
           }
     (undef,undef,undef,undef,undef,undef,my $clientmobile) =      }
         &Apache::loncommon::decode_user_agent();  
   #
     my $iconpath=   # Check if a LON-CAPA load balancer sent user here because user's browser sent
  &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL'));  # it a balancer cookie for an active session on this server.
   #
     my $domain = &Apache::lonnet::default_login_domain();  
     my $defdom = $domain;      my $balcookie;
     if ($lonhost ne '') {      if ($env{'form.btoken'}) {
         unless ($sessiondata{'sessionserver'}) {          my %info = &Apache::lonnet::tmpget($env{'form.btoken'});
             my $redirect = &check_loginvia($domain,$lonhost,$lonidsdir,$balcookie);          $balcookie = $info{'balcookie'};
             if ($redirect) {          &Apache::lonnet::tmpdel($env{'form.btoken'});
                 $r->print($redirect);          delete($env{'form.btoken'});
                 return OK;      }
             }  
         }  #
     }  # If browser sent an old cookie for which the session file had been removed
   # check if configuration for user's domain has a portal URL set.  If so
     if (($sessiondata{'domain'}) &&  # switch user's log-in to the portal.
         (&Apache::lonnet::domain($sessiondata{'domain'},'description'))) {  #
         $domain=$sessiondata{'domain'};  
     } elsif (($env{'form.domain'}) &&       if (($handle eq '') && ($userdom ne '')) {
  (&Apache::lonnet::domain($env{'form.domain'},'description'))) {          my %domdefaults = &Apache::lonnet::get_domain_defaults($userdom);
  $domain=$env{'form.domain'};          if ($domdefaults{'portal_def'} =~ /^https?\:/) {
     }              my $start_page = &Apache::loncommon::start_page('Switching Server ...',undef,
                                             {'redirect' => [0,$domdefaults{'portal_def'}],});
     my $role    = $r->dir_config('lonRole');              my $end_page   = &Apache::loncommon::end_page();
     my $loadlim = $r->dir_config('lonLoadLim');              $r->print($start_page.$end_page);
     my $uloadlim= $r->dir_config('lonUserLoadLim');              return OK;
     my $servadm = $r->dir_config('lonAdmEMail');          }
     my $tabdir  = $r->dir_config('lonTabDir');      }
     my $include = $r->dir_config('lonIncludes');  
     my $expire  = $r->dir_config('lonExpire');  # -------------------------------- Prevent users from attempting to login twice
     my $version = $r->dir_config('lonVersion');      if ($handle ne '') {
     my $host_name = &Apache::lonnet::hostname($lonhost);          &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
    my $start_page =
 # --------------------------------------------- Default values for login fields      &Apache::loncommon::start_page('Already logged in');
        my $end_page =
     my ($authusername,$authdomain);      &Apache::loncommon::end_page();
     if ($sessiondata{'username'}) {          my $dest = '/adm/roles';
         $authusername=$sessiondata{'username'};          if ($env{'form.firsturl'} ne '') {
     } else {              $dest = &HTML::Entities::encode($env{'form.firsturl'},'\'"<>&');
         $env{'form.username'} = &Apache::loncommon::cleanup_html($env{'form.username'});          }
         $authusername=($env{'form.username'}?$env{'form.username'}:'');          if (($env{'form.ltoken'}) || ($env{'form.linkprot'})) {
     }              my ($linkprot,$linkprotuser);
     if ($sessiondata{'domain'}) {              if ($env{'form.ltoken'}) {
         $authdomain=$sessiondata{'domain'};                  my %info = &Apache::lonnet::tmpget($env{'form.ltoken'});
     } else {                  $linkprot = $info{'linkprot'};
         $env{'form.domain'} = &Apache::loncommon::cleanup_html($env{'form.domain'});                  if ($info{'linkprotuser'} ne '') {
         $authdomain=($env{'form.domain'}?$env{'form.domain'}:$domain);                      $linkprotuser = $info{'linkprotuser'};
     }                  }
                   my $delete = &Apache::lonnet::tmpdel($env{'form.ltoken'});
 # ---------------------------------------------------------- Determine own load              } else {
     my $loadavg;                  $linkprot = $env{'form.linkprot'};
     {                  $linkprotuser = $env{'form.linkprotuser'};
  my $loadfile=Apache::File->new('/proc/loadavg');              }
  $loadavg=<$loadfile>;              if ($linkprot) {
     }                  my ($linkprotector,$deeplink) = split(/:/,$linkprot,2);
     $loadavg =~ s/\s.*//g;                  if (($deeplink =~ m{^/tiny/$match_domain/\w+$}) &&
                       ($linkprotuser ne '') && ($linkprotuser ne $env{'user.name'}.':'.$env{'user.domain'})) {
     my ($loadpercent,$userloadpercent);                      my $ip = &Apache::lonnet::get_requestor_ip();
     if ($loadlim) {                      my %linkprotinfo = (
         $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);                                            origurl => $deeplink,
     }                                            linkprot => $linkprot,
     if ($uloadlim) {                                            linkprotuser => $linkprotuser,
         $userloadpercent=&Apache::lonnet::userload();                                         );    
     }                      &Apache::migrateuser::logout($r,$ip,$handle,undef,undef,\%linkprotinfo);
                       return OK;
     my $firsturl=                  }
     ($env{'request.firsturl'}?$env{'request.firsturl'}:$env{'form.firsturl'});                  if ($env{'user.linkprotector'}) {
                       my @protectors = split(/,/,$env{'user.linkprotector'});
 # ----------------------------------------------------------- Get announcements                      unless (grep(/^\Q$linkprotector\E$/,@protectors)) {
     my $announcements=&Apache::lonnet::getannounce();                          push(@protectors,$linkprotector);
 # -------------------------------------------------------- Set login parameters                          @protectors = sort { $a <=> $b } @protectors;
                           &Apache::lonnet::appenv({'user.linkprotector' => join(',',@protectors)});
     my @hexstr=('0','1','2','3','4','5','6','7',                      }
                 '8','9','a','b','c','d','e','f');                  } else {
     my $lkey='';                      &Apache::lonnet::appenv({'user.linkprotector' => $linkprotector });
     for (0..7) {                  }
         $lkey.=$hexstr[rand(15)];                  if ($env{'user.linkproturi'}) {
     }                      my @proturis = split(/,/,$env{'user.linkproturi'});
                       unless (grep(/^\Q$deeplink\E$/,@proturis)) {
     my $ukey='';                          push(@proturis,$deeplink);
     for (0..7) {                          @proturis = sort @proturis;
         $ukey.=$hexstr[rand(15)];                          &Apache::lonnet::appenv({'user.linkproturi' => join(',',@proturis)});
     }                      }
                   } else {
     my $lextkey=hex($lkey);                      &Apache::lonnet::appenv({'user.linkproturi' => $deeplink});
     if ($lextkey>2147483647) { $lextkey-=4294967296; }                  }
               }
     my $uextkey=hex($ukey);          } elsif ($env{'form.linkkey'} ne '') {
     if ($uextkey>2147483647) { $uextkey-=4294967296; }              if ($env{'form.firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
                   my $linkkey = $env{'form.linkkey'};
 # -------------------------------------------------------- Store away log token                  if ($env{'user.deeplinkkey'}) {
     my $tokenextras;                      my @linkkeys = split(/,/,$env{'user.deeplinkkey'});
     if ($env{'form.role'}) {                      unless (grep(/^\Q$linkkey\E$/,@linkkeys)) {
         $tokenextras = '&role='.&escape($env{'form.role'});                          push(@linkkeys,$linkkey);
     }                          &Apache::lonnet::appenv({'user.deeplinkkey' => join(',',sort(@linkkeys))});
     if ($env{'form.symb'}) {                      }
         if (!$tokenextras) {                  } else {
             $tokenextras = '&';                      &Apache::lonnet::appenv({'user.deeplinkkey' => $linkkey});
         }                  }
         $tokenextras .= '&symb='.&escape($env{'form.symb'});                  my $deeplink = $env{'form.firsturl'};
     }                  if ($env{'user.keyedlinkuri'}) {
     if ($env{'form.iptoken'}) {                      my @keyeduris = split(/,/,$env{'user.keyedlinkuri'});
         if (!$tokenextras) {                      unless (grep(/^\Q$deeplink\E$/,@keyeduris)) {
             $tokenextras = '&&';                          push(@keyeduris,$deeplink);
         }                          &Apache::lonnet::appenv({'user.keyedlinkuri' => join(',',sort(@keyeduris))});
         $tokenextras .= '&iptoken='.&escape($env{'form.iptoken'});                      }
     }                  } else {
     my $logtoken=Apache::lonnet::reply(                      &Apache::lonnet::appenv({'user.keyedlinkuri' => $deeplink});
        'tmpput:'.$ukey.$lkey.'&'.$firsturl.$tokenextras,                  }
        $lonhost);              }
           }
 # -- If we cannot talk to ourselves, or hostID does not map to a hostname   $r->print(
 #    we are in serious trouble                    $start_page
                    .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
     if (($logtoken eq 'con_lost') || ($logtoken eq 'no_such_host')) {                   .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].',
         if ($logtoken eq 'no_such_host') {                    '<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>').'</p>'
             &Apache::lonnet::logthis('No valid logtoken for log-in page -- unable to determine hostname for hostID: '.$lonhost.'. Check entry in hosts.tab');                   .$end_page
         }                   );
         my $spares='';          return OK;
         my (@sparehosts,%spareservers);      }
         my $sparesref = &Apache::lonnet::this_host_spares($defdom);  
         if (ref($sparesref) eq 'HASH') {  # ---------------------------------------------------- No valid token, continue
             foreach my $key (keys(%{$sparesref})) {  
                 if (ref($sparesref->{$key}) eq 'ARRAY') {  # ---------------------------- Not possible to really login to domain "public"
                     my @sorted = sort { &Apache::lonnet::hostname($a) cmp      if ($env{'form.domain'} eq 'public') {
                                         &Apache::lonnet::hostname($b);   $env{'form.domain'}='';
                                       } @{$sparesref->{$key}};   $env{'form.username'}='';
                     if (@sorted) {      }
                         if ($key eq 'primary') {  
                             unshift(@sparehosts,@sorted);  # ------ Is this page requested because /adm/migrateuser detected an IP change?
                         } elsif ($key eq 'default') {      my %sessiondata;
                             push(@sparehosts,@sorted);      if ($env{'form.iptoken'}) {
                         }          %sessiondata = &Apache::lonnet::tmpget($env{'form.iptoken'});
                     }          unless ($sessiondata{'sessionserver'}) {
                 }              my $delete = &Apache::lonnet::tmpdel($env{'form.iptoken'});
             }              delete($env{'form.iptoken'});
         }          }
         foreach my $hostid (@sparehosts) {      }
             next if ($hostid eq $lonhost);  # ----------------------------------------------------------- Process Interface
     my $hostname = &Apache::lonnet::hostname($hostid);      $env{'form.interface'}=~s/\W//g;
     next if (($hostname eq '') || ($spareservers{$hostname}));  
             $spareservers{$hostname} = 1;      (undef,undef,undef,undef,undef,undef,my $clientmobile) =
             my $protocol = $Apache::lonnet::protocol{$hostid};          &Apache::loncommon::decode_user_agent($r);
             $protocol = 'http' if ($protocol ne 'https');  
             $spares.='<br /><span style="font-size: larger;"><a href="'.$protocol.'://'.      my $iconpath=
                 $hostname.   &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL'));
                 '/adm/login?domain='.$authdomain.'">'.  
                 $hostname.'</a>'.      my $domain = &Apache::lonnet::default_login_domain();
                 ' '.&mt('(preferred)').'</span>'.$/;      my $defdom = $domain;
         }      if ($lonhost ne '') {
         if ($spares) {          unless ($sessiondata{'sessionserver'}) {
             $spares.= '<br />';              my $redirect = &check_loginvia($domain,$lonhost,$lonidsdir,$balcookie);
         }              if ($redirect) {
         my %all_hostnames = &Apache::lonnet::all_hostnames();                  $r->print($redirect);
         foreach my $hostid (sort                  return OK;
     {              }
  &Apache::lonnet::hostname($a) cmp          }
     &Apache::lonnet::hostname($b);      }
     }  
     keys(%all_hostnames)) {      if (($sessiondata{'domain'}) &&
             next if ($hostid eq $lonhost);          (&Apache::lonnet::domain($sessiondata{'domain'},'description'))) {
             my $hostname = &Apache::lonnet::hostname($hostid);          $domain=$sessiondata{'domain'};
             next if (($hostname eq '') || ($spareservers{$hostname}));      } elsif (($env{'form.domain'}) &&
             $spareservers{$hostname} = 1;   (&Apache::lonnet::domain($env{'form.domain'},'description'))) {
             my $protocol = $Apache::lonnet::protocol{$hostid};   $domain=$env{'form.domain'};
             $protocol = 'http' if ($protocol ne 'https');      }
             $spares.='<br /><a href="'.$protocol.'://'.  
              $hostname.      my $role    = $r->dir_config('lonRole');
              '/adm/login?domain='.$authdomain.'">'.      my $loadlim = $r->dir_config('lonLoadLim');
              $hostname.'</a>';      my $uloadlim= $r->dir_config('lonUserLoadLim');
          }      my $servadm = $r->dir_config('lonAdmEMail');
          $r->print(      my $tabdir  = $r->dir_config('lonTabDir');
    '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'      my $include = $r->dir_config('lonIncludes');
   .'<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">'      my $expire  = $r->dir_config('lonExpire');
   .'<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>'      my $version = $r->dir_config('lonVersion');
   .&mt('The LearningOnline Network with CAPA')      my $host_name = &Apache::lonnet::hostname($lonhost);
   .'</title></head>'  
   .'<body bgcolor="#FFFFFF">'  # --------------------------------------------- Default values for login fields
   .'<h1>'.&mt('The LearningOnline Network with CAPA').'</h1>'     
   .'<img src="/adm/lonKaputt/lonlogo_broken.gif" alt="broken icon" align="right" />'      my ($authusername,$authdomain);
   .'<h3>'.&mt('This LON-CAPA server is temporarily not available for login.').'</h3>');      if ($sessiondata{'username'}) {
         if ($spares) {          $authusername=$sessiondata{'username'};
             $r->print('<p>'.&mt('Please attempt to login to one of the following servers:')      } else {
                      .'</p>'          $env{'form.username'} = &Apache::loncommon::cleanup_html($env{'form.username'});
                      .$spares);          $authusername=($env{'form.username'}?$env{'form.username'}:'');
         }      }
         $r->print('</body>'      if ($sessiondata{'domain'}) {
                  .'</html>'          $authdomain=$sessiondata{'domain'};
         );      } else {
         return OK;          $env{'form.domain'} = &Apache::loncommon::cleanup_html($env{'form.domain'});
     }          $authdomain=($env{'form.domain'}?$env{'form.domain'}:$domain);
       }
 # ----------------------------------------------- Apparently we are in business  
     $servadm=~s/\,/\<br \/\>/g;  # ---------------------------------------------------------- Determine own load
       my $loadavg;
 # ----------------------------------------------------------- Front page design      {
     my $pgbg=&Apache::loncommon::designparm('login.pgbg',$domain);   my $loadfile=Apache::File->new('/proc/loadavg');
     my $font=&Apache::loncommon::designparm('login.font',$domain);   $loadavg=<$loadfile>;
     my $link=&Apache::loncommon::designparm('login.link',$domain);      }
     my $vlink=&Apache::loncommon::designparm('login.vlink',$domain);      $loadavg =~ s/\s.*//g;
     my $alink=&Apache::loncommon::designparm('login.alink',$domain);  
     my $mainbg=&Apache::loncommon::designparm('login.mainbg',$domain);      my ($loadpercent,$userloadpercent);
     my $loginbox_bg=&Apache::loncommon::designparm('login.sidebg',$domain);      if ($loadlim) {
     my $loginbox_header_bgcol=&Apache::loncommon::designparm('login.bgcol',$domain);          $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
     my $loginbox_header_textcol=&Apache::loncommon::designparm('login.textcol',$domain);      }
     my $logo=&Apache::loncommon::designparm('login.logo',$domain);      if ($uloadlim) {
     my $img=&Apache::loncommon::designparm('login.img',$domain);          $userloadpercent=&Apache::lonnet::userload();
     my $domainlogo=&Apache::loncommon::domainlogo($domain);      }
     my $showbanner = 1;  
     my $showmainlogo = 1;      my $firsturl=
     if (defined(&Apache::loncommon::designparm('login.showlogo_img',$domain))) {      ($env{'request.firsturl'}?$env{'request.firsturl'}:$env{'form.firsturl'});
         $showbanner = &Apache::loncommon::designparm('login.showlogo_img',$domain);  
     }  # ----------------------------------------------------------- Get announcements
     if (defined(&Apache::loncommon::designparm('login.showlogo_logo',$domain))) {      my $announcements=&Apache::lonnet::getannounce();
         $showmainlogo = &Apache::loncommon::designparm('login.showlogo_logo',$domain);  # -------------------------------------------------------- Set login parameters
     }  
     my $showadminmail;      my @hexstr=('0','1','2','3','4','5','6','7',
     my @possdoms = &Apache::lonnet::current_machine_domains();                  '8','9','a','b','c','d','e','f');
     if (grep(/^\Q$domain\E$/,@possdoms)) {      my $lkey='';
         $showadminmail=&Apache::loncommon::designparm('login.adminmail',$domain);      for (0..7) {
     }          $lkey.=$hexstr[rand(15)];
     my $showcoursecat =      }
         &Apache::loncommon::designparm('login.coursecatalog',$domain);  
     my $shownewuserlink =       my $ukey='';
         &Apache::loncommon::designparm('login.newuser',$domain);      for (0..7) {
     my $showhelpdesk =          $ukey.=$hexstr[rand(15)];
         &Apache::loncommon::designparm('login.helpdesk',$domain);      }
     my $now=time;  
     my $js = (<<ENDSCRIPT);      my $lextkey=hex($lkey);
       if ($lextkey>2147483647) { $lextkey-=4294967296; }
 <script type="text/javascript" language="JavaScript">  
 // <![CDATA[      my $uextkey=hex($ukey);
 function send()      if ($uextkey>2147483647) { $uextkey-=4294967296; }
 {  
 this.document.server.elements.uname.value  # -------------------------------------------------------- Store away log token
 =this.document.client.elements.uname.value;      my ($tokenextras,$tokentype,$linkprot_for_login);
       my @names = ('role','symb','iptoken','ltoken','linkprotuser','linkprot','linkkey');
 this.document.server.elements.udom.value      foreach my $name (@names) {
 =this.document.client.elements.udom.value;          if ($env{'form.'.$name} ne '') {
               if ($name eq 'ltoken') {
 uextkey=this.document.client.elements.uextkey.value;                  my %info = &Apache::lonnet::tmpget($env{'form.'.$name});
 lextkey=this.document.client.elements.lextkey.value;                  if ($info{'linkprot'}) {
 initkeys();                      $linkprot_for_login = $info{'linkprot'};
                       $tokenextras .= '&linkprot='.&escape($info{'linkprot'});
 this.document.server.elements.upass0.value                      if ($info{'linkprotuser'}) {
     =getCrypted(this.document.client.elements.upass$now.value);                          $tokenextras .= '&linkprotuser='.&escape($info{'linkprotuser'});
                       }
 this.document.client.elements.uname.value='';                      $tokentype = 'link';
 this.document.client.elements.upass$now.value='';                      last;
                   }
 this.document.server.submit();              } else {
 return false;                  $tokenextras .= '&'.$name.'='.&escape($env{'form.'.$name});
 }                  if (($name eq 'linkkey') || ($name eq 'linkprot')) {
                       if ((($env{'form.retry'}) || ($env{'form.sso'})) &&
 function enableInput() {                          (!$env{'form.ltoken'}) && ($name eq 'linkprot')) {
     this.document.client.elements.upass$now.removeAttribute("readOnly");                          $linkprot_for_login = $env{'form.linkprot'};
     this.document.client.elements.uname.removeAttribute("readOnly");                      }
     this.document.client.elements.udom.removeAttribute("readOnly");                      $tokentype = 'link';
     return;                  }
 }              }
           }
 // ]]>      }
 </script>      if ($tokentype) {
           $tokenextras .= ":$tokentype";
 ENDSCRIPT      }
       my $logtoken=Apache::lonnet::reply(
 # --------------------------------------------------- Print login screen header         'tmpput:'.$ukey.$lkey.'&'.&escape($firsturl).$tokenextras,
          $lonhost);
     my %add_entries = (  
        bgcolor      => "$mainbg",  # -- If we cannot talk to ourselves, or hostID does not map to a hostname
        text         => "$font",  #    we are in serious trouble
        link         => "$link",  
        vlink        => "$vlink",      if (($logtoken eq 'con_lost') || ($logtoken eq 'no_such_host')) {
        alink        => "$alink",          if ($logtoken eq 'no_such_host') {
                onload       => 'javascript:enableInput();',);              &Apache::lonnet::logthis('No valid logtoken for log-in page -- unable to determine hostname for hostID: '.$lonhost.'. Check entry in hosts.tab');
           }
     my ($lonhost_in_use,$headextra,$headextra_exempt,@hosts,%defaultdomconf);          if ($env{'form.ltoken'}) {
     @hosts = &Apache::lonnet::current_machine_ids();              &Apache::lonnet::tmpdel($env{'form.ltoken'});
     $lonhost_in_use = $lonhost;              delete($env{'form.ltoken'});
     if (@hosts > 1) {          }
         foreach my $hostid (@hosts) {          my $spares='';
             if (&Apache::lonnet::host_domain($hostid) eq $defdom) {          my (@sparehosts,%spareservers);
                 $lonhost_in_use = $hostid;          my $sparesref = &Apache::lonnet::this_host_spares($defdom);
                 last;          if (ref($sparesref) eq 'HASH') {
             }              foreach my $key (keys(%{$sparesref})) {
         }                  if (ref($sparesref->{$key}) eq 'ARRAY') {
     }                      my @sorted = sort { &Apache::lonnet::hostname($a) cmp
     %defaultdomconf = &Apache::loncommon::get_domainconf($defdom);                                          &Apache::lonnet::hostname($b);
     $headextra = $defaultdomconf{$defdom.'.login.headtag_'.$lonhost_in_use};                                        } @{$sparesref->{$key}};
     $headextra_exempt = $defaultdomconf{$domain.'.login.headtag_exempt_'.$lonhost_in_use};                      if (@sorted) {
     if ($headextra) {                          if ($key eq 'primary') {
         my $omitextra;                              unshift(@sparehosts,@sorted);
         if ($headextra_exempt ne '') {                          } elsif ($key eq 'default') {
             my @exempt = split(',',$headextra_exempt);                              push(@sparehosts,@sorted);
             my $ip = &Apache::lonnet::get_requestor_ip();                          }
             if (grep(/^\Q$ip\E$/,@exempt)) {                      }
                 $omitextra = 1;                  }
             }              }
         }          }
         unless ($omitextra) {          foreach my $hostid (@sparehosts) {
             my $confname = $defdom.'-domainconfig';              next if ($hostid eq $lonhost);
             if ($headextra =~ m{^\Q/res/$defdom/$confname/login/headtag/$lonhost_in_use/\E}) {      my $hostname = &Apache::lonnet::hostname($hostid);
                 my $extra = &Apache::lonnet::getfile(&Apache::lonnet::filelocation("",$headextra));      next if (($hostname eq '') || ($spareservers{$hostname}));
                 unless ($extra eq '-1') {              $spareservers{$hostname} = 1;
                     $js .= "\n".$extra."\n";              my $protocol = $Apache::lonnet::protocol{$hostid};
                 }              $protocol = 'http' if ($protocol ne 'https');
             }              $spares.='<br /><span style="font-size: larger;"><a href="'.$protocol.'://'.
         }                  $hostname.
     }                  '/adm/login?domain='.$authdomain.'">'.
                   $hostname.'</a>'.
     $r->print(&Apache::loncommon::start_page('The LearningOnline Network with CAPA Login',$js,                  ' '.&mt('(preferred)').'</span>'.$/;
        { 'redirect'       => [$expire,'/adm/roles'],           }
  'add_entries' => \%add_entries,          if ($spares) {
  'only_body'   => 1,}));              $spares.= '<br />';
           }
 # ----------------------------------------------------------------------- Texts          my %all_hostnames = &Apache::lonnet::all_hostnames();
           foreach my $hostid (sort
     my %lt=&Apache::lonlocal::texthash(      {
           'un'       => 'Username',   &Apache::lonnet::hostname($a) cmp
           'pw'       => 'Password',      &Apache::lonnet::hostname($b);
           'dom'      => 'Domain',      }
           'perc'     => 'percent',      keys(%all_hostnames)) {
           'load'     => 'Server Load',              next if ($hostid eq $lonhost);
           'userload' => 'User Load',              my $hostname = &Apache::lonnet::hostname($hostid);
           'catalog'  => 'Course/Community Catalog',              next if (($hostname eq '') || ($spareservers{$hostname}));
           'log'      => 'Log in',              $spareservers{$hostname} = 1;
           'help'     => 'Log-in Help',              my $protocol = $Apache::lonnet::protocol{$hostid};
           'serv'     => 'Server',              $protocol = 'http' if ($protocol ne 'https');
           'servadm'  => 'Server Administration',              $spares.='<br /><a href="'.$protocol.'://'.
           'helpdesk' => 'Contact Helpdesk',               $hostname.
           'forgotpw' => 'Forgot password?',               '/adm/login?domain='.$authdomain.'">'.
           'newuser'  => 'New User?',               $hostname.'</a>';
        );           }
 # -------------------------------------------------- Change password field name           $r->print(
      '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'
     my $forgotpw = &forgotpwdisplay(%lt);    .'<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">'
     $forgotpw .= '<br />' if $forgotpw;    .'<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>'
     my $loginhelp = &Apache::lonauth::loginhelpdisplay($authdomain);    .&mt('The LearningOnline Network with CAPA')
     if ($loginhelp) {    .'</title></head>'
         $loginhelp = '<a href="'.$loginhelp.'">'.$lt{'help'}.'</a><br />';    .'<body bgcolor="#FFFFFF">'
     }    .'<h1>'.&mt('The LearningOnline Network with CAPA').'</h1>'
     .'<img src="/adm/lonKaputt/lonlogo_broken.gif" alt="broken icon" align="right" />'
 # ---------------------------------------------------- Serve out DES JavaScript    .'<h3>'.&mt('This LON-CAPA server is temporarily not available for login.').'</h3>');
     {          if ($spares) {
     my $jsh=Apache::File->new($include."/londes.js");              $r->print('<p>'.&mt('Please attempt to login to one of the following servers:')
     $r->print(<$jsh>);                       .'</p>'
     }                       .$spares);
 # ---------------------------------------------------------- Serve rest of page          }
           $r->print('</body>'
     $r->print(                   .'</html>'
     '<div class="LC_Box"'          );
    .' style="margin:0 auto; padding:10px; width:90%; height: auto; background-color:#FFFFFF;">'          return OK;
 );      }
   
     $r->print(<<ENDSERVERFORM);  # ----------------------------------------------- Apparently we are in business
 <form name="server" action="/adm/authenticate" method="post" target="_top">      $servadm=~s/\,/\<br \/\>/g;
    <input type="hidden" name="logtoken" value="$logtoken" />  
    <input type="hidden" name="serverid" value="$lonhost" />  # ----------------------------------------------------------- Front page design
    <input type="hidden" name="uname" value="" />      my $pgbg=&Apache::loncommon::designparm('login.pgbg',$domain);
    <input type="hidden" name="upass0" value="" />      my $font=&Apache::loncommon::designparm('login.font',$domain);
    <input type="hidden" name="udom" value="" />      my $link=&Apache::loncommon::designparm('login.link',$domain);
    <input type="hidden" name="localpath" value="$env{'form.localpath'}" />      my $vlink=&Apache::loncommon::designparm('login.vlink',$domain);
    <input type="hidden" name="localres" value="$env{'form.localres'}" />      my $alink=&Apache::loncommon::designparm('login.alink',$domain);
   </form>      my $mainbg=&Apache::loncommon::designparm('login.mainbg',$domain);
 ENDSERVERFORM      my $loginbox_bg=&Apache::loncommon::designparm('login.sidebg',$domain);
     my $coursecatalog;      my $loginbox_header_bgcol=&Apache::loncommon::designparm('login.bgcol',$domain);
     if (($showcoursecat eq '') || ($showcoursecat)) {      my $loginbox_header_textcol=&Apache::loncommon::designparm('login.textcol',$domain);
         $coursecatalog = &coursecatalog_link($lt{'catalog'}).'<br />';      my $logo=&Apache::loncommon::designparm('login.logo',$domain);
     }      my $img=&Apache::loncommon::designparm('login.img',$domain);
     my $newuserlink;      my $domainlogo=&Apache::loncommon::domainlogo($domain);
     if ($shownewuserlink) {      my $showbanner = 1;
         $newuserlink = &newuser_link($lt{'newuser'}).'<br />';      my $showmainlogo = 1;
     }      if (defined(&Apache::loncommon::designparm('login.showlogo_img',$domain))) {
     my $logintitle =          $showbanner = &Apache::loncommon::designparm('login.showlogo_img',$domain);
         '<h2 class="LC_hcell"'      }
        .' style="background:'.$loginbox_header_bgcol.';'      if (defined(&Apache::loncommon::designparm('login.showlogo_logo',$domain))) {
        .' color:'.$loginbox_header_textcol.'">'          $showmainlogo = &Apache::loncommon::designparm('login.showlogo_logo',$domain);
        .$lt{'log'}      }
        .'</h2>';      my $showadminmail;
       my @possdoms = &Apache::lonnet::current_machine_domains();
     my $noscript_warning='<noscript><span class="LC_warning"><b>'      if (grep(/^\Q$domain\E$/,@possdoms)) {
                         .&mt('Use of LON-CAPA requires Javascript to be enabled in your web browser.')          $showadminmail=&Apache::loncommon::designparm('login.adminmail',$domain);
                         .'</b></span></noscript>';      }
     my $helpdeskscript;      my $showcoursecat =
     my $contactblock = &contactdisplay(\%lt,$servadm,$showadminmail,          &Apache::loncommon::designparm('login.coursecatalog',$domain);
                                        $authdomain,\$helpdeskscript,      my $shownewuserlink =
                                        $showhelpdesk,\@possdoms);          &Apache::loncommon::designparm('login.newuser',$domain);
       my $showhelpdesk =
     my $mobileargs;          &Apache::loncommon::designparm('login.helpdesk',$domain);
     if ($clientmobile) {      my $now=time;
         $mobileargs = 'autocapitalize="off" autocorrect="off"';       my $js = (<<ENDSCRIPT);
     }  
     my $loginform=(<<LFORM);  <script type="text/javascript" language="JavaScript">
 <form name="client" action="" onsubmit="return(send())">  // <![CDATA[
   <input type="hidden" name="lextkey" value="$lextkey" />  function send()
   <input type="hidden" name="uextkey" value="$uextkey" />  {
   <b><label for="uname">$lt{'un'}</label>:</b><br />  this.document.server.elements.uname.value
   <input type="text" name="uname" id="uname" size="15" value="$authusername" readonly="readonly" $mobileargs /><br />  =this.document.client.elements.uname.value;
   <b><label for="upass$now">$lt{'pw'}</label>:</b><br />  
   <input type="password" name="upass$now" id="upass$now" size="15" readonly="readonly" /><br />  this.document.server.elements.udom.value
   <b><label for="udom">$lt{'dom'}</label>:</b><br />  =this.document.client.elements.udom.value;
   <input type="text" name="udom" id="udom" size="15" value="$authdomain" readonly="readonly" $mobileargs /><br />  
   <input type="submit" value="$lt{'log'}" />  uextkey=this.document.client.elements.uextkey.value;
 </form>  lextkey=this.document.client.elements.lextkey.value;
 LFORM  initkeys();
   
     if ($showbanner) {  if(this.document.server.action.substr(0,5) === 'http:'){
         $r->print(<<HEADER);      this.document.server.elements.upass0.value
 <!-- The LON-CAPA Header -->          =getCrypted(this.document.client.elements.upass$now.value);
 <div style="background:$pgbg;margin:0;width:100%;">  } else {
   <img src="$img" border="0" alt="The Learning Online Network with CAPA" class="LC_maxwidth" />      this.document.server.elements.upass0.value
 </div>          =this.document.client.elements.upass$now.value;
 HEADER  }
     }  
     $r->print(<<ENDTOP);  this.document.client.elements.uname.value='';
 <div style="float:left;margin-top:0;">  this.document.client.elements.upass$now.value='';
 <div class="LC_Box" style="background:$loginbox_bg;">  
   $logintitle  this.document.server.submit();
   $loginform  return false;
   $noscript_warning  }
 </div>  
     function enableInput() {
 <div class="LC_Box" style="padding-top: 10px;">      this.document.client.elements.upass$now.removeAttribute("readOnly");
   $loginhelp      this.document.client.elements.uname.removeAttribute("readOnly");
   $forgotpw      this.document.client.elements.udom.removeAttribute("readOnly");
   $contactblock      return;
   $newuserlink  }
   $coursecatalog  
 </div>  // ]]>
 </div>  </script>
   
 <div>  ENDSCRIPT
 ENDTOP  
     if ($showmainlogo) {      my ($lonhost_in_use,@hosts,%defaultdomconf,$saml_prefix,$saml_landing,
         $r->print(' <img src="'.$logo.'" alt="" class="LC_maxwidth" />'."\n");          $samlssotext,$samlnonsso,$samlssoimg,$samlssoalt,$samlssourl,$samltooltip);
     }      %defaultdomconf = &Apache::loncommon::get_domainconf($defdom);
 $r->print(<<ENDTOP);      @hosts = &Apache::lonnet::current_machine_ids();
 $announcements      $lonhost_in_use = $lonhost;
 </div>      if (@hosts > 1) {
 <hr style="clear:both;" />          foreach my $hostid (@hosts) {
 ENDTOP              if (&Apache::lonnet::host_domain($hostid) eq $defdom) {
     my ($domainrow,$serverrow,$loadrow,$userloadrow,$versionrow);                  $lonhost_in_use = $hostid;
     $domainrow = <<"END";                  last;
       <tr>              }
        <td  align="left" valign="top">          }
         <small><b>$lt{'dom'}:&nbsp;</b></small>      }
        </td>      $saml_prefix = $defdom.'.login.saml_';
        <td  align="left" valign="top">      if ($defaultdomconf{$saml_prefix.$lonhost_in_use}) {
         <small><tt>&nbsp;$domain</tt></small>          $saml_landing = 1;
        </td>          $samlssotext = $defaultdomconf{$saml_prefix.'text_'.$lonhost_in_use};
       </tr>          $samlnonsso = $defaultdomconf{$saml_prefix.'notsso_'.$lonhost_in_use};
 END          $samlssoimg = $defaultdomconf{$saml_prefix.'img_'.$lonhost_in_use};
     $serverrow = <<"END";          $samlssoalt = $defaultdomconf{$saml_prefix.'alt_'.$lonhost_in_use};
       <tr>          $samlssourl = $defaultdomconf{$saml_prefix.'url_'.$lonhost_in_use};
        <td  align="left" valign="top">          $samltooltip = $defaultdomconf{$saml_prefix.'title_'.$lonhost_in_use};
         <small><b>$lt{'serv'}:&nbsp;</b></small>      }
        </td>      if ($saml_landing) {
        <td align="left" valign="top">         if ($samlssotext eq '') {
         <small><tt>&nbsp;$lonhost ($role)</tt></small>             $samlssotext = 'SSO Login';
        </td>         }
       </tr>         if ($samlnonsso eq '') {
 END             $samlnonsso = 'Non-SSO Login';
     if ($loadlim) {         }
         $loadrow = <<"END";         $js .= <<"ENDSAMLJS";
       <tr>  
        <td align="left" valign="top">  <script type="text/javascript">
         <small><b>$lt{'load'}:&nbsp;</b></small>  // <![CDATA[
        </td>  function toggleLClogin() {
        <td align="left" valign="top">      if (document.getElementById('LC_standard_login')) {
         <small><tt>&nbsp;$loadpercent $lt{'perc'}</tt></small>          if (document.getElementById('LC_standard_login').style.display == 'none') {
        </td>              document.getElementById('LC_standard_login').style.display = 'inline-block';
       </tr>              if (document.getElementById('LC_login_text')) {
 END                  document.getElementById('LC_login_text').innerHTML = '$samlnonsso';
     }              }
     if ($uloadlim) {              if ( document.client.uname ) { document.client.uname.focus(); }
         $userloadrow = <<"END";              if (document.getElementById('LC_SSO_login')) {
       <tr>                  document.getElementById('LC_SSO_login').style.display = 'none';
        <td align="left" valign="top">              }
         <small><b>$lt{'userload'}:&nbsp;</b></small>          } else {
        </td>              document.getElementById('LC_standard_login').style.display = 'none';
        <td align="left" valign="top">              if (document.getElementById('LC_login_text')) {
         <small><tt>&nbsp;$userloadpercent $lt{'perc'}</tt></small>                  document.getElementById('LC_login_text').innerHTML = '$samlssotext';
        </td>              }
       </tr>              if (document.getElementById('LC_SSO_login')) {
 END                  document.getElementById('LC_SSO_login').style.display = 'inline-block';
     }              }
     if (($version ne '') && ($version ne '<!-- VERSION -->')) {          }
         $versionrow = <<"END";      }
       <tr>      return;
        <td colspan="2" align="left">  }
         <small>$version</small>  
        </td>  // ]]>
       </tr>  </script>
 END  
     }  ENDSAMLJS
       }
     $r->print(<<ENDDOCUMENT);  
     <div style="float: left;">  # --------------------------------------------------- Print login screen header
      <table border="0" cellspacing="0" cellpadding="0">  
 $domainrow      my %add_entries = (
 $serverrow         bgcolor      => "$mainbg",
 $loadrow             text         => "$font",
 $userloadrow         link         => "$link",
 $versionrow         vlink        => "$vlink",
      </table>         alink        => "$alink",
     </div>                 onload       => 'javascript:enableInput();',);
     <div style="float: right;">  
     $domainlogo      my ($headextra,$headextra_exempt);
     </div>      $headextra = $defaultdomconf{$defdom.'.login.headtag_'.$lonhost_in_use};
     <br style="clear:both;" />      $headextra_exempt = $defaultdomconf{$domain.'.login.headtag_exempt_'.$lonhost_in_use};
  </div>      if ($headextra) {
           my $omitextra;
 <script type="text/javascript">          if ($headextra_exempt ne '') {
 // <![CDATA[              my @exempt = split(',',$headextra_exempt);
 // the if prevents the script error if the browser can not handle this              my $ip = &Apache::lonnet::get_requestor_ip();
 if ( document.client.uname ) { document.client.uname.focus(); }              if (grep(/^\Q$ip\E$/,@exempt)) {
 // ]]>                  $omitextra = 1;
 </script>              }
 $helpdeskscript          }
           unless ($omitextra) {
 ENDDOCUMENT              my $confname = $defdom.'-domainconfig';
     my %endargs = ( 'noredirectlink' => 1, );              if ($headextra =~ m{^\Q/res/$defdom/$confname/login/headtag/$lonhost_in_use/\E}) {
     $r->print(&Apache::loncommon::end_page(\%endargs));                  my $extra = &Apache::lonnet::getfile(&Apache::lonnet::filelocation("",$headextra));
     return OK;                  unless ($extra eq '-1') {
 }                      $js .= "\n".$extra."\n";
                   }
 sub check_loginvia {              }
     my ($domain,$lonhost,$lonidsdir,$balcookie) = @_;          }
     if ($domain eq '' || $lonhost eq '' || $lonidsdir eq '') {      }
         return;  
     }      $r->print(&Apache::loncommon::start_page('The LearningOnline Network with CAPA Login',$js,
     my %domconfhash = &Apache::loncommon::get_domainconf($domain);         { 'redirect'       => [$expire,'/adm/roles'],
     my $loginvia = $domconfhash{$domain.'.login.loginvia_'.$lonhost};   'add_entries' => \%add_entries,
     my $loginvia_exempt = $domconfhash{$domain.'.login.loginvia_exempt_'.$lonhost};   'only_body'   => 1,}));
     my $output;  
     if ($loginvia ne '') {  # ----------------------------------------------------------------------- Texts
         my $noredirect;  
         my $ip = &Apache::lonnet::get_requestor_ip();      my %lt=&Apache::lonlocal::texthash(
         if ($ip eq '127.0.0.1') {            'un'       => 'Username',
             $noredirect = 1;            'pw'       => 'Password',
         } else {            'dom'      => 'Domain',
             if ($loginvia_exempt ne '') {            'perc'     => 'percent',
                 my @exempt = split(',',$loginvia_exempt);            'load'     => 'Server Load',
                 if (grep(/^\Q$ip\E$/,@exempt)) {            'userload' => 'User Load',
                     $noredirect = 1;            'catalog'  => 'Course/Community Catalog',
                 }            'log'      => 'Log in',
             }            'help'     => 'Log-in Help',
         }            'serv'     => 'Server',
         unless ($noredirect) {            'servadm'  => 'Server Administration',
             my ($newhost,$path);            'helpdesk' => 'Contact Helpdesk',
             if ($loginvia =~ /:/) {            'forgotpw' => 'Forgot password?',
                 ($newhost,$path) = split(':',$loginvia);            'newuser'  => 'New User?',
             } else {            'change'   => 'Change?',
                 $newhost = $loginvia;         );
             }  # -------------------------------------------------- Change password field name
             if ($newhost ne $lonhost) {  
                 if (&Apache::lonnet::hostname($newhost) ne '') {      my $forgotpw = &forgotpwdisplay(%lt);
                     if ($balcookie) {      $forgotpw .= '<br />' if $forgotpw;
                         my ($balancer,$cookie) = split(/:/,$balcookie);      my $loginhelp = &Apache::lonauth::loginhelpdisplay($authdomain);
                         if ($cookie =~ /^($match_domain)_($match_username)_([a-f0-9]+)$/) {      if ($loginhelp) {
                             my ($udom,$uname,$cookieid) = ($1,$2,$3);          $loginhelp = '<a href="'.$loginhelp.'">'.$lt{'help'}.'</a><br />';
                             unless (&Apache::lonnet::delbalcookie($cookie,$balancer) eq 'ok') {      }
                                 if ((-d $lonidsdir) && (opendir(my $dh,$lonidsdir))) {  
                                     while (my $filename=readdir($dh)) {  # ---------------------------------------------------- Serve out DES JavaScript
                                         if ($filename=~/^(\Q$uname\E_\d+_\Q$udom\E_$match_lonid)\.id$/) {      {
                                             my $handle = $1;      my $jsh=Apache::File->new($include."/londes.js");
                                             my %hash =      $r->print(<$jsh>);
                                                 &Apache::lonnet::get_sessionfile_vars($handle,$lonidsdir,      }
                                                                                      ['request.balancercookie',  # ---------------------------------------------------------- Serve rest of page
                                                                                       'user.linkedenv']);  
                                             if ($hash{'request.balancercookie'} eq "$balancer:$cookieid") {      $r->print(
                                                 if (unlink("$lonidsdir/$filename")) {      '<div class="LC_Box"'
                                                     if (($hash{'user.linkedenv'} =~ /^[a-f0-9]+_linked$/) &&     .' style="margin:0 auto; padding:10px; width:90%; height: auto; background-color:#FFFFFF;">'
                                                         (-l "$lonidsdir/$hash{'user.linkedenv'}.id") &&  );
                                                         (readlink("$lonidsdir/$hash{'user.linkedenv'}.id") eq "$lonidsdir/$filename")) {  
                                                         unlink("$lonidsdir/$hash{'user.linkedenv'}.id");      $r->print(<<ENDSERVERFORM);
                                                     }  <form name="server" action="/adm/authenticate" method="post" target="_top">
                                                 }     <input type="hidden" name="logtoken" value="$logtoken" />
                                             }     <input type="hidden" name="serverid" value="$lonhost" />
                                             last;     <input type="hidden" name="uname" value="" />
                                         }     <input type="hidden" name="upass0" value="" />
                                     }     <input type="hidden" name="udom" value="" />
                                     closedir($dh);     <input type="hidden" name="localpath" value="$env{'form.localpath'}" />
                                 }     <input type="hidden" name="localres" value="$env{'form.localres'}" />
                             }    </form>
                         }  ENDSERVERFORM
                     }      my $coursecatalog;
                     $output = &redirect_page($newhost,$path);      if (($showcoursecat eq '') || ($showcoursecat)) {
                 }          $coursecatalog = &coursecatalog_link($lt{'catalog'}).'<br />';
             }      }
         }      my $newuserlink;
     }      if ($shownewuserlink) {
     return $output;          $newuserlink = &newuser_link($lt{'newuser'}).'<br />';
 }      }
       my $logintitle =
 sub redirect_page {          '<h2 class="LC_hcell"'
     my ($desthost,$path) = @_;         .' style="background:'.$loginbox_header_bgcol.';'
     my $hostname = &Apache::lonnet::hostname($desthost);         .' color:'.$loginbox_header_textcol.'">'
     my $protocol = $Apache::lonnet::protocol{$desthost};         .$lt{'log'}
     $protocol = 'http' if ($protocol ne 'https');         .'</h2>';
     unless ($path =~ m{^/}) {  
         $path = '/'.$path;      my $noscript_warning='<noscript><span class="LC_warning"><b>'
     }                          .&mt('Use of LON-CAPA requires Javascript to be enabled in your web browser.')
     my $url = $protocol.'://'.$hostname.$path;                          .'</b></span></noscript>';
     if ($env{'form.firsturl'} ne '') {      my $helpdeskscript;
         $url .='?firsturl='.$env{'form.firsturl'};      my $contactblock = &contactdisplay(\%lt,$servadm,$showadminmail,
     }                                         $authdomain,\$helpdeskscript,
     my $start_page = &Apache::loncommon::start_page('Switching Server ...',undef,                                         $showhelpdesk,\@possdoms);
                                                     {'redirect' => [0,$url],});  
     my $end_page   = &Apache::loncommon::end_page();      my $mobileargs;
     return $start_page.$end_page;      if ($clientmobile) {
 }          $mobileargs = 'autocapitalize="off" autocorrect="off"';
       }
 sub contactdisplay {      my $loginform=(<<LFORM);
     my ($lt,$servadm,$showadminmail,$authdomain,$helpdeskscript,$showhelpdesk,  <form name="client" action="" onsubmit="return(send())" id="lclogin">
         $possdoms) = @_;    <input type="hidden" name="lextkey" value="$lextkey" />
     my $contactblock;    <input type="hidden" name="uextkey" value="$uextkey" />
     my $origmail;    <b><label for="uname">$lt{'un'}</label>:</b><br />
     if (ref($possdoms) eq 'ARRAY') {    <input type="text" name="uname" id="uname" size="15" value="$authusername" readonly="readonly" $mobileargs /><br />
         if (grep(/^\Q$authdomain\E$/,@{$possdoms})) {     <b><label for="upass$now">$lt{'pw'}</label>:</b><br />
             $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};    <input type="password" name="upass$now" id="upass$now" size="15" readonly="readonly" /><br />
         }    <b><label for="udom">$lt{'dom'}</label>:</b><br />
     }    <input type="text" name="udom" id="udom" size="15" value="$authdomain" readonly="readonly" $mobileargs /><br />
     my $requestmail =     <input type="submit" value="$lt{'log'}" />
         &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',  </form>
                                                  $authdomain,$origmail);  LFORM
     unless ($showhelpdesk eq '0') {  
         if ($requestmail =~ m/[^\@]+\@[^\@]+/) {      if ($showbanner) {
             $showhelpdesk = 1;          my $alttext = &Apache::loncommon::designparm('login.alttext_img',$domain);
         } else {          if ($alttext eq '') {
             $showhelpdesk = 0;              $alttext = 'The Learning Online Network with CAPA';
         }          }
     }          $r->print(<<HEADER);
     if ($servadm && $showadminmail) {  <!-- The LON-CAPA Header -->
         $contactblock .= $$lt{'servadm'}.':<br />'.  <div style="background:$pgbg;margin:0;width:100%;">
                          '<tt>'.$servadm.'</tt><br />';    <img src="$img" border="0" alt="$alttext" class="LC_maxwidth" id="lcloginbanner" />
     }  </div>
     if ($showhelpdesk) {  HEADER
         $contactblock .= '<a href="javascript:helpdesk()">'.$lt->{'helpdesk'}.'</a><br />';      }
         my $thisurl = &escape('/adm/login');  
         $$helpdeskscript = <<"ENDSCRIPT";      my $stdauthformstyle = 'inline-block';
 <script type="text/javascript">      my $ssoauthstyle = 'none';
 // <![CDATA[      my $logintype;
 function helpdesk() {      $r->print('<div style="float:left;margin-top:0;">');
     var possdom = document.client.udom.value;      if ($saml_landing) {
     var codedom = possdom.replace( new RegExp("[^A-Za-z0-9.\\-]","g"),'');          $ssoauthstyle = 'inline-block';
     if (codedom == '') {          $stdauthformstyle = 'none';
         codedom = "$authdomain";          $logintype = $samlssotext;
     }          my $ssologin = '/adm/sso';
     var querystr = "origurl=$thisurl&codedom="+codedom;          if ($samlssourl  ne '') {
     document.location.href = "/adm/helpdesk?"+querystr;              $ssologin = $samlssourl;
     return;          }
 }          if (($logtoken eq 'con_lost') || ($logtoken eq 'no_such_host')) {
 // ]]>              my $querystring;
 </script>              if ($env{'form.firsturl'} ne '') {
 ENDSCRIPT                  $querystring = 'origurl=';
     }                  if ($env{'form.firsturl'} =~ /[^\x00-\xFF]/) {
     return $contactblock;                      $querystring .= &uri_escape_utf8($env{'form.firsturl'});
 }                  } else {
                       $querystring .= &uri_escape($env{'form.firsturl'});
 sub forgotpwdisplay {                  }
     my (%lt) = @_;                  $querystring = &HTML::Entities::encode($querystring,"'");
     my $prompt_for_resetpw = 1;               }
     if ($prompt_for_resetpw) {              if ($env{'form.ltoken'} ne '') {
         return '<a href="/adm/resetpw">'.$lt{'forgotpw'}.'</a>';                  $querystring .= (($querystring eq '')?'':'&amp;') . 'ltoken='.
     }                                    &HTML::Entities::encode(&uri_escape($env{'form.ltoken'}));
     return;              } elsif ($env{'form.linkkey'}) {
 }                  $querystring .= (($querystring eq '')?'':'&amp;') . 'linkkey='.
                                     &HTML::Entities::encode(&uri_escape($env{'form.linkkey'}));
 sub coursecatalog_link {              }
     my ($linkname) = @_;              if ($querystring ne '') {
     return <<"END";                  $ssologin .= (($ssologin=~/\?/)?'&amp;':'?') . $querystring;
       <a href="/adm/coursecatalog">$linkname</a>              }
 END          } elsif ($logtoken ne '') {
 }              $ssologin .= (($ssologin=~/\?/)?'&amp;':'?') . 'logtoken='.$logtoken;
           }
 sub newuser_link {          my $ssohref;
     my ($linkname) = @_;          if ($samlssoimg ne '') {
     return '<a href="/adm/createaccount">'.$linkname.'</a>';              $ssohref = '<a href="'.$ssologin.'" title="'.$samltooltip.'">'.
 }                         '<img src="'.$samlssoimg.'" alt="'.$samlssoalt.'" id="lcssobutton" /></a>';
           } else {
 1;              $ssohref = '<a href="'.$ssologin.'">'.$samlssotext.'</a>';
 __END__          }
           if (($env{'form.saml'} eq 'no') ||
               (($env{'form.username'} ne '') && ($env{'form.domain'} ne ''))) {
               $ssoauthstyle = 'none';
               $stdauthformstyle = 'inline-block';
               $logintype = $samlnonsso;
           }
           $r->print(<<ENDSAML);
   <p>
   Log-in type:
   <span style="font-weight:bold" id="LC_login_text">$logintype</span><br />
   <span><a href="javascript:toggleLClogin();" style="color:#000000">$lt{'change'}</a></span>
   </p>
   <div style="display:$ssoauthstyle" id="LC_SSO_login">
   <div class="LC_Box" style="padding-top: 10px;">
   $ssohref
   $noscript_warning
   </div>
   <div class="LC_Box" style="padding-top: 10px;">
   $loginhelp
   $contactblock
   $coursecatalog
   </div>
   </div>
   ENDSAML
       } else {
           if ($env{'form.ltoken'}) {
               &Apache::lonnet::tmpdel($env{'form.ltoken'});
               delete($env{'form.ltoken'});
           }
       }
       my $in_frame_js;
       if ($linkprot_for_login) {
           my ($linkprotector,$linkproturi) = split(/:/,$linkprot_for_login,2);
           if (($linkprotector =~ /^\d+(c|d)$/) && ($linkproturi =~ m{^/+tiny/+$LONCAPA::match_domain/+\w+$})) {
               my $set_target;
               if (($env{'form.retry'}) || ($env{'form.sso'})) {
                   if ($linkproturi eq $env{'form.firsturl'}) {
                       $set_target = "    document.server.target = '_self';";
                   }
               } else {
                   $set_target = <<ENDTARG;
       var linkproturi = '$linkproturi';
       var path = document.location.pathname.replace( new RegExp('^/adm/launch'),'');
       if (linkproturi == path) {
           document.server.target = '_self';
       }
   ENDTARG
               }
               $in_frame_js = <<ENDJS;
   <script type="text/javascript">
   // <![CDATA[
   if ((window.self !== window.top) && (document.server.target != '_self')) {
       $set_target
   }
   // ]]>
   </script>
   ENDJS
           }
       }
   
       $r->print(<<ENDLOGIN);
   <div style="display:$stdauthformstyle;" id="LC_standard_login">
   <div class="LC_Box" style="background:$loginbox_bg;">
     $logintitle
     $loginform
     $noscript_warning
   </div>
    
   <div class="LC_Box" style="padding-top: 10px;">
     $loginhelp
     $forgotpw
     $contactblock
     $newuserlink
     $coursecatalog
   </div>
   </div>
   
   ENDLOGIN
       $r->print('</div><div>'."\n");
       if ($showmainlogo) {
           my $alttext = &Apache::loncommon::designparm('login.alttext_logo',$domain);
           $r->print(' <img src="'.$logo.'" alt="'.$alttext.'" class="LC_maxwidth" id="lcloginmainlogo" />'."\n");
       }
   $r->print(<<ENDTOP);
   $announcements
   </div>
   <hr style="clear:both;" />
   ENDTOP
       my ($domainrow,$serverrow,$loadrow,$userloadrow,$versionrow);
       $domainrow = <<"END";
         <tr>
          <td  align="left" valign="top">
           <small><b>$lt{'dom'}:&nbsp;</b></small>
          </td>
          <td  align="left" valign="top">
           <small><tt>&nbsp;$domain</tt></small>
          </td>
         </tr>
   END
       $serverrow = <<"END";
         <tr>
          <td  align="left" valign="top">
           <small><b>$lt{'serv'}:&nbsp;</b></small>
          </td>
          <td align="left" valign="top">
           <small><tt>&nbsp;$lonhost ($role)</tt></small>
          </td>
         </tr>
   END
       if ($loadlim) {
           $loadrow = <<"END";
         <tr>
          <td align="left" valign="top">
           <small><b>$lt{'load'}:&nbsp;</b></small>
          </td>
          <td align="left" valign="top">
           <small><tt>&nbsp;$loadpercent $lt{'perc'}</tt></small>
          </td>
         </tr>
   END
       }
       if ($uloadlim) {
           $userloadrow = <<"END";
         <tr>
          <td align="left" valign="top">
           <small><b>$lt{'userload'}:&nbsp;</b></small>
          </td>
          <td align="left" valign="top">
           <small><tt>&nbsp;$userloadpercent $lt{'perc'}</tt></small>
          </td>
         </tr>
   END
       }
       if (($version ne '') && ($version ne '<!-- VERSION -->')) {
           $versionrow = <<"END";
         <tr>
          <td colspan="2" align="left">
           <small>$version</small>
          </td>
         </tr>
   END
       }
   
       $r->print(<<ENDDOCUMENT);
       <div style="float: left;">
        <table border="0" cellspacing="0" cellpadding="0">
   $domainrow
   $serverrow
   $loadrow    
   $userloadrow
   $versionrow
        </table>
       </div>
       <div style="float: right;">
       $domainlogo
       </div>
       <br style="clear:both;" />
    </div>
   
   $in_frame_js
   <script type="text/javascript">
   // <![CDATA[
   // the if prevents the script error if the browser can not handle this
   if ( document.client.uname ) { document.client.uname.focus(); }
   // ]]>
   </script>
   $helpdeskscript
   
   ENDDOCUMENT
       my %endargs = ( 'noredirectlink' => 1, );
       $r->print(&Apache::loncommon::end_page(\%endargs));
       return OK;
   }
   
   sub check_loginvia {
       my ($domain,$lonhost,$lonidsdir,$balcookie) = @_;
       if ($domain eq '' || $lonhost eq '' || $lonidsdir eq '') {
           return;
       }
       my %domconfhash = &Apache::loncommon::get_domainconf($domain);
       my $loginvia = $domconfhash{$domain.'.login.loginvia_'.$lonhost};
       my $loginvia_exempt = $domconfhash{$domain.'.login.loginvia_exempt_'.$lonhost};
       my $output;
       if ($loginvia ne '') {
           my $noredirect;
           my $ip = &Apache::lonnet::get_requestor_ip();  
           if ($ip eq '127.0.0.1') {
               $noredirect = 1;
           } else {
               if ($loginvia_exempt ne '') {
                   my @exempt = split(',',$loginvia_exempt);
                   if (grep(/^\Q$ip\E$/,@exempt)) {
                       $noredirect = 1;
                   }
               }
           }
           unless ($noredirect) {
               my ($newhost,$path);
               if ($loginvia =~ /:/) {
                   ($newhost,$path) = split(':',$loginvia);
               } else {
                   $newhost = $loginvia;
               }
               if ($newhost ne $lonhost) {
                   if (&Apache::lonnet::hostname($newhost) ne '') {
                       if ($balcookie) {
                           my ($balancer,$cookie) = split(/:/,$balcookie);
                           if ($cookie =~ /^($match_domain)_($match_username)_([a-f0-9]+)$/) {
                               my ($udom,$uname,$cookieid) = ($1,$2,$3);
                               unless (&Apache::lonnet::delbalcookie($cookie,$balancer) eq 'ok') {
                                   if ((-d $lonidsdir) && (opendir(my $dh,$lonidsdir))) {
                                       while (my $filename=readdir($dh)) {
                                           if ($filename=~/^(\Q$uname\E_\d+_\Q$udom\E_$match_lonid)\.id$/) {
                                               my $handle = $1;
                                               my %hash =
                                                   &Apache::lonnet::get_sessionfile_vars($handle,$lonidsdir,
                                                                                        ['request.balancercookie',
                                                                                         'user.linkedenv']);
                                               if ($hash{'request.balancercookie'} eq "$balancer:$cookieid") {
                                                   if (unlink("$lonidsdir/$filename")) {
                                                       if (($hash{'user.linkedenv'} =~ /^[a-f0-9]+_linked$/) &&
                                                           (-l "$lonidsdir/$hash{'user.linkedenv'}.id") &&
                                                           (readlink("$lonidsdir/$hash{'user.linkedenv'}.id") eq "$lonidsdir/$filename")) {
                                                           unlink("$lonidsdir/$hash{'user.linkedenv'}.id");
                                                       }
                                                   }
                                               }
                                               last;
                                           }
                                       }
                                       closedir($dh);
                                   }
                               }
                           }
                       }
                       $output = &redirect_page($newhost,$path);
                   }
               }
           }
       }
       return $output;
   }
   
   sub redirect_page {
       my ($desthost,$path) = @_;
       my $hostname = &Apache::lonnet::hostname($desthost);
       my $protocol = $Apache::lonnet::protocol{$desthost};
       $protocol = 'http' if ($protocol ne 'https');
       unless ($path =~ m{^/}) {
           $path = '/'.$path;
       }
       my $url = $protocol.'://'.$hostname.$path;
       if ($env{'form.firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
           $url = $protocol.'://'.$hostname.$env{'form.firsturl'};
           if (($env{'form.ltoken'}) || ($env{'form.linkprot'} ne '') ||
               ($env{'form.linkkey'} ne '')) {
               my %link_info;
               if ($env{'form.ltoken'}) {
                   %link_info = &Apache::lonnet::tmpget($env{'form.ltoken'});
                   &Apache::lonnet::tmpdel($env{'form.ltoken'});
               } elsif ($env{'form.linkprot'}) {
                   $link_info{'linkprot'} = $env{'form.linkprot'};
                   if ($env{'form.linkprotuser'}) {
                       $link_info{'linkprotuser'} = $env{'form.linkprotuser'};
                   }
               } elsif ($env{'form.linkkey'} ne '') {
                   $link_info{'linkkey'} = $env{'form.linkkey'};
               }
               my $token = &Apache::lonnet::tmpput(\%link_info,$desthost,'link');
               unless (($token eq 'con_lost') || ($token eq 'refused') ||
                       ($token eq 'unknown_cmd') || ($token eq 'no_such_host')) {
                   $url .= '?ltoken='.$token;
               }
           }
       } else {
           my $querystring;
           if ($env{'form.firsturl'} ne '') {
               if ($env{'form.firsturl'} =~ /[^\x00-\xFF]/) {
                   $querystring = &uri_escape_utf8($env{'form.firsturl'});
               } else {
                   $querystring = &uri_escape($env{'form.firsturl'});
               }
               $querystring = &HTML::Entities::encode($querystring,"'");
               $querystring = '?firsturl='.$querystring;
           }
           if ($env{'form.ltoken'}) {
               my %link_info = &Apache::lonnet::tmpget($env{'form.ltoken'});
               &Apache::lonnet::tmpdel($env{'form.ltoken'});
               my $token = &Apache::lonnet::tmpput(\%link_info,$desthost,'link');
               unless (($token eq 'con_lost') || ($token eq 'refused') || ($token =~ /^error:/) ||
                       ($token eq 'unknown_cmd') || ($token eq 'no_such_host')) {
                   unless (($path eq '/adm/roles') || ($path eq '/adm/login')) {
                       $url = $protocol.'://'.$hostname.'/adm/roles';
                   }
                   $querystring .= (($querystring =~/^\?/)?'&amp;':'?') . 'ttoken='.$token;
               }
           }
           $url .= $querystring;
       }
       my $start_page = &Apache::loncommon::start_page('Switching Server ...',undef,
                                                       {'redirect' => [0,$url],});
       my $end_page   = &Apache::loncommon::end_page();
       return $start_page.$end_page;
   }
   
   sub contactdisplay {
       my ($lt,$servadm,$showadminmail,$authdomain,$helpdeskscript,$showhelpdesk,
           $possdoms) = @_;
       my $contactblock;
       my $origmail;
       if (ref($possdoms) eq 'ARRAY') {
           if (grep(/^\Q$authdomain\E$/,@{$possdoms})) {
               $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
           }
       }
       my $requestmail =
           &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
                                                    $authdomain,$origmail);
       unless ($showhelpdesk eq '0') {
           if ($requestmail =~ m/[^\@]+\@[^\@]+/) {
               $showhelpdesk = 1;
           } else {
               $showhelpdesk = 0;
           }
       }
       if ($servadm && $showadminmail) {
           $contactblock .= $$lt{'servadm'}.':<br />'.
                            '<tt>'.$servadm.'</tt><br />';
       }
       if ($showhelpdesk) {
           $contactblock .= '<a href="javascript:helpdesk()">'.$lt->{'helpdesk'}.'</a><br />';
           my $thisurl = &escape('/adm/login');
           $$helpdeskscript = <<"ENDSCRIPT";
   <script type="text/javascript">
   // <![CDATA[
   function helpdesk() {
       var possdom = document.client.udom.value;
       var codedom = possdom.replace( new RegExp("[^A-Za-z0-9.\\-]","g"),'');
       if (codedom == '') {
           codedom = "$authdomain";
       }
       var querystr = "origurl=$thisurl&codedom="+codedom;
       document.location.href = "/adm/helpdesk?"+querystr;
       return;
   }
   // ]]>
   </script>
   ENDSCRIPT
       }
       return $contactblock;
   }
   
   sub forgotpwdisplay {
       my (%lt) = @_;
       my $prompt_for_resetpw = 1;
       if ($prompt_for_resetpw) {
           return '<a href="/adm/resetpw">'.$lt{'forgotpw'}.'</a>';
       }
       return;
   }
   
   sub coursecatalog_link {
       my ($linkname) = @_;
       return <<"END";
         <a href="/adm/coursecatalog">$linkname</a>
   END
   }
   
   sub newuser_link {
       my ($linkname) = @_;
       return '<a href="/adm/createaccount">'.$linkname.'</a>';
   }
   
   sub decode_token {
       my ($info) = @_;
       my ($firsturl,@rest)=split(/\&/,$info);
       my %form;
       if ($firsturl ne '') {
           $form{'firsturl'} = &unescape($firsturl);
       }
       foreach my $item (@rest) {
           my ($key,$value) = split(/=/,$item);
           $form{$key} = &unescape($value);
       }
       return %form;
   }
   
   1;
   __END__

Removed from v.1.158.2.9.2.3  
changed lines
  Added in v.1.199


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>