Diff for /loncom/auth/lonauth.pm between versions 1.121.2.24.2.6 and 1.145

version 1.121.2.24.2.6, 2023/01/23 00:38:50 version 1.145, 2017/08/08 17:01:25
Line 1 Line 1
 # The LearningOnline Network  # The LearningOnline Network
 # User Authentication Module  # User Authentication Module
 #  #
 # $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::lonauth;  package Apache::lonauth;
   
 use strict;  use strict;
 use LONCAPA qw(:DEFAULT :match);  use LONCAPA qw(:DEFAULT :match);
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common);
 use CGI qw(:standard);  use CGI qw(:standard);
 use Apache::loncommon();  use Apache::loncommon();
 use Apache::lonnet;  use Apache::lonnet;
 use Apache::lonmenu();  use Apache::lonmenu();
 use Apache::createaccount;  use Apache::createaccount;
 use Fcntl qw(:flock);  use Fcntl qw(:flock);
 use Apache::lonlocal;  use Apache::lonlocal;
 use Apache::File();  use Apache::File();
 use HTML::Entities;  use HTML::Entities;
 use Digest::MD5;  use Digest::MD5;
 use CGI::Cookie();   
    # ------------------------------------------------------------ Successful login
 # ------------------------------------------------------------ Successful login  sub success {
 sub success {      my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,
     my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,   $form) = @_;
  $form,$cid,$expirepub,$write_to_opener) = @_;  
   # ------------------------------------------------------------ Get cookie ready
 # ------------------------------------------------------------ Get cookie ready      my $cookie =
     my $cookie =   &Apache::loncommon::init_user_environment($r, $username, $domain,
  &Apache::loncommon::init_user_environment($r, $username, $domain,    $authhost, $form,
   $authhost, $form,    {'extra_env' => $extra_env,});
   {'extra_env' => $extra_env,});  
       my $public=($username eq 'public' && $domain eq 'public');
     my $public=($username eq 'public' && $domain eq 'public');  
       if ($public or $lowerurl eq 'noredirect') { return $cookie; }
     if ($public or $lowerurl eq 'noredirect') { return $cookie; }  
   # -------------------------------------------------------------------- Log this
 # -------------------------------------------------------------------- Log this  
       &Apache::lonnet::log($domain,$username,$authhost,
     my $ip = &Apache::lonnet::get_requestor_ip();                           "Login $ENV{'REMOTE_ADDR'}");
     &Apache::lonnet::log($domain,$username,$authhost,  
                          "Login $ip");  # ------------------------------------------------- Check for critical messages
   
 # ------------------------------------------------- Check for critical messages      my @what=&Apache::lonnet::dump('critical',$domain,$username);
       if ($what[0]) {
     my @what=&Apache::lonnet::dump('critical',$domain,$username);   if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {
     if ($what[0]) {      $lowerurl='/adm/email?critical=display';
  if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {          }
     $lowerurl='/adm/email?critical=display';      }
         }  
     }  # ----------------------------------------------------------- Get cookies ready
       my ($securecookie,$defaultcookie);
 # ------------------------------------------------------------ Get cookies ready      if ($ENV{'SERVER_PORT'} == 443) {
     my ($securecookie,$defaultcookie);          $securecookie="lonID=$cookie; path=/; HttpOnly; secure";
     my $ssl = $r->subprocess_env('https');          my $lonidsdir=$r->dir_config('lonIDsDir');
     if ($ssl) {          if (($lonidsdir) && (-e "$lonidsdir/$cookie.id")) {
         $securecookie="lonSID=$cookie; path=/; HttpOnly; secure";              my $linkname=substr(Digest::MD5::md5_hex(Digest::MD5::md5_hex(time(). {}. rand(). $$)), 0, 32).'_linked';
         my $lonidsdir=$r->dir_config('lonIDsDir');              if (-e "$lonidsdir/$linkname.id") {
         if (($lonidsdir) && (-e "$lonidsdir/$cookie.id")) {                  unlink("$lonidsdir/$linkname.id");
             my $linkname=substr(Digest::MD5::md5_hex(Digest::MD5::md5_hex(time(). {}. rand(). $$)), 0, 32).'_linked';              }
             if (-e "$lonidsdir/$linkname.id") {              my $made_symlink = eval { symlink("$lonidsdir/$cookie.id",
                 unlink("$lonidsdir/$linkname.id");                                                "$lonidsdir/$linkname.id"); 1 };
             }              if ($made_symlink) {
             my $made_symlink = eval { symlink("$lonidsdir/$cookie.id",                  $defaultcookie = "lonLinkID=$linkname; path=/; HttpOnly;";
                                               "$lonidsdir/$linkname.id"); 1 };                  &Apache::lonnet::appenv({'user.linkedenv' => "$lonidsdir/$linkname.id"});
             if ($made_symlink) {              }
                 $defaultcookie = "lonLinkID=$linkname; path=/; HttpOnly;";          }
                 &Apache::lonnet::appenv({'user.linkedenv' => $linkname});      } else {
             }          $defaultcookie = "lonID=$cookie; path=/; HttpOnly;";
         }      }
     } else {  # -------------------------------------------------------- Menu script and info
         $defaultcookie = "lonID=$cookie; path=/; HttpOnly;";      my $destination = $lowerurl;
     }  
 # -------------------------------------------------------- Menu script and info      if (defined($form->{role})) {
     my $destination = $lowerurl;          my $envkey = 'user.role.'.$form->{role};
           my $now=time;
     if (defined($form->{role})) {          my $then=$env{'user.login.time'};
         my $envkey = 'user.role.'.$form->{role};          my $refresh=$env{'user.refresh.time'};
         my $now=time;          my $update=$env{'user.update.time'};
         my $then=$env{'user.login.time'};          if (!$update) {
         my $refresh=$env{'user.refresh.time'};              $update = $then;
         my $update=$env{'user.update.time'};          }
         if (!$update) {          if (exists($env{$envkey})) {
             $update = $then;              my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus);
         }              &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,
         if (exists($env{$envkey})) {                                           \$trolecode,\$tstatus,\$tstart,\$tend);
             my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus);              if ($tstatus eq 'is') {
             &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,                  $destination  .= ($destination =~ /\?/) ? '&' : '?';
                                          \$trolecode,\$tstatus,\$tstart,\$tend);                  my $newrole = &HTML::Entities::encode($form->{role},'"<>&');
             if ($tstatus eq 'is') {                  $destination .= 'selectrole=1&'.$newrole.'=1';
                 $destination  .= ($destination =~ /\?/) ? '&' : '?';              }
                 my $newrole = &HTML::Entities::encode($form->{role},'"<>&');          }
                 $destination .= 'selectrole=1&'.$newrole.'=1';      }
             }      if (defined($form->{symb})) {
         }          my $destsymb = $form->{symb};
     } elsif (defined($form->{display})) {          $destination  .= ($destination =~ /\?/) ? '&' : '?';
         if ($destination =~ m{^/adm/email($|\?)}) {          if ($destsymb =~ /___/) {
             $destination  .= ($destination =~ /\?/) ? '&' : '?' .'display='.&escape($form->{display});              # FIXME Need to deal with encrypted symbs and urls as needed.
         }              my ($map,$resid,$desturl)=split(/___/,$destsymb);
     }              $desturl = &Apache::lonnet::clutter($desturl);
     if (defined($form->{symb})) {              $desturl = &HTML::Entities::encode($desturl,'"<>&');
         my $destsymb = $form->{symb};              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
         my $encrypted;              $destination .= 'destinationurl='.$desturl.
         if ($destsymb =~ m{^/enc/}) {                              '&destsymb='.$destsymb;
             $encrypted = 1;          } else {
             if ($cid) {              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
                 $destsymb = &Apache::lonenc::unencrypted($destsymb,$cid);              $destination .= 'destinationurl='.$destsymb;
             }          }
         }      }
         $destination  .= ($destination =~ /\?/) ? '&' : '?';      if ($destination =~ m{^/adm/roles}) {
         if ($destsymb =~ /___/) {          $destination  .= ($destination =~ /\?/) ? '&' : '?';
             my ($map,$resid,$desturl)=split(/___/,$destsymb);          $destination .= 'source=login';
             $desturl = &Apache::lonnet::clutter($desturl);      }
             if ($encrypted) {  
                 $desturl = &Apache::lonenc::encrypted($desturl,1,$cid);      my $windowinfo = Apache::lonhtmlcommon::scripttag('self.name="loncapaclient";');
                 $destsymb = $form->{symb};      my $header = '<meta HTTP-EQUIV="Refresh" CONTENT="0; url='.$destination.'" />';
             }      my $brcrum = [{'href' => '',
             $desturl = &HTML::Entities::encode($desturl,'"<>&');                     'text' => 'Successful Login'},];
             $destsymb = &HTML::Entities::encode($destsymb,'"<>&');      my $args = {'bread_crumbs' => $brcrum,};
             $destination .= 'destinationurl='.$desturl.      unless ((defined($form->{role})) || (defined($form->{symb}))) {
                             '&destsymb='.$destsymb;          my $update=$env{'user.update.time'};
         } elsif (!$encrypted) {          if (!$update) {
             $destsymb = &HTML::Entities::encode($destsymb,'"<>&');              $update = $env{'user.login.time'};
             $destination .= 'destinationurl='.$destsymb;          }
         }          my %roles_in_env;
     }          my $showcount = &Apache::lonroles::roles_from_env(\%roles_in_env,$update);
     if ($destination =~ m{^/adm/roles}) {          if ($showcount == 1) {
         $destination  .= ($destination =~ /\?/) ? '&' : '?';              foreach my $rolecode (keys(%roles_in_env)) {
         $destination .= 'source=login';                  my ($cid) = ($rolecode =~ m{^\Quser.role.st./\E($match_domain/$match_courseid)(?:/|$)});
     }                  if ($cid) {
                       my %coursedescription =
     my $brcrum = [{'href' => '',                          &Apache::lonnet::coursedescription($cid,{'one_time' => '1'});
                    'text' => 'Successful Login'},];                      if ($coursedescription{'type'} eq 'Placement') {
     my $args = {'no_inline_link' => 1,                          $args->{'crstype'} = 'Placement';
                 'bread_crumbs' => $brcrum,};                      }
     if (($env{'request.deeplink.login'} eq $lowerurl) &&                      last;
         (($env{'request.linkprot'}) || ($env{'request.linkkey'} ne ''))) {                  }
         my %info;              }
         if ($env{'request.linkprot'}) {          }
             $info{'linkprot'} = $env{'request.linkprot'};      }
             foreach my $item ('linkprotuser','linkprotexit') {      my $start_page=&Apache::loncommon::start_page('Successful Login',
                 if ($form->{$item}) {                                                    $header,$args);
                     $info{$item} = $form->{$item};      my $end_page  =&Apache::loncommon::end_page();
                 }  
             }   my $continuelink='<a href="'.$destination.'">'.&mt('Continue').'</a>';
             $args = {'only_body' => 1,};  # ------------------------------------------------- Output for successful login
         } elsif ($env{'request.linkkey'} ne '') {  
             $info{'linkkey'} = $env{'request.linkkey'};      &Apache::loncommon::content_type($r,'text/html');
         }      if ($securecookie) {
         $info{'origurl'} = $lowerurl;          $r->headers_out->add('Set-cookie' => $securecookie);
         my $token = &Apache::lonnet::tmpput(\%info,$r->dir_config('lonHostID'),'link');      }
         unless (($token eq 'con_lost') || ($token eq 'refused') ||      if ($defaultcookie) {
                 ($token eq 'unknown_cmd') || ($token eq 'no_such_host')) {          $r->headers_out->add('Set-cookie' => $defaultcookie);
             $destination .= (($destination =~ /\?/) ? '&' : '?') . 'ttoken='.$token;      }
         }      $r->send_http_header;
     }  
     if ($env{'request.deeplink.login'}) {      my %lt=&Apache::lonlocal::texthash(
         if ($env{'environment.remote'} eq 'on') {         'wel' => 'Welcome',
             &Apache::lonnet::appenv({'environment.remote' => 'off'});         'pro' => 'Login problems?',
         }         );
     }      my $loginhelp = &loginhelpdisplay($domain);
     my $startupremote;      if ($loginhelp) {
     if ($write_to_opener) {          $loginhelp = '<p><a href="'.$loginhelp.'">'.$lt{'pro'}.'</a></p>';
         if ($env{'environment.remote'} eq 'on') {      }
             &Apache::lonnet::appenv({'environment.remote' => 'off'});  
         }      my $welcome = &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');
         $args->{'redirect'} = [0,$destination,'',$write_to_opener];      $r->print(<<ENDSUCCESS);
     } else {  $start_page
         $startupremote=&Apache::lonmenu::startupremote($destination);  $windowinfo
     }  <h1>$lt{'wel'}</h1>
   $welcome
     my $windowinfo=&Apache::lonmenu::open($env{'browser.os'});  $loginhelp
     my $remoteinfo=&Apache::lonmenu::load_remote_msg($lowerurl);  $continuelink
     my $setflags=&Apache::lonmenu::setflags();  $end_page
     my $maincall=&Apache::lonmenu::maincall();  ENDSUCCESS
     my $start_page=&Apache::loncommon::start_page('Successful Login',      return;
                                                   $startupremote,$args);  }
     my $end_page  =&Apache::loncommon::end_page();  
   # --------------------------------------------------------------- Failed login!
     my $continuelink;  
     if ($env{'environment.remote'} eq 'off') {  sub failed {
         unless ($write_to_opener) {      my ($r,$message,$form) = @_;
     $continuelink='<a href="'.$destination.'">'.&mt('Continue').'</a>';      (undef,undef,undef,my $clientmathml,my $clientunicode) =
         }          &Apache::loncommon::decode_user_agent();
     }      my $args = {};
 # ------------------------------------------------- Output for successful login      if ($clientunicode && !$clientmathml) {
           $args = {'browser.unicode' => 1};
     &Apache::loncommon::content_type($r,'text/html');      }
     if ($securecookie) {  
         $r->headers_out->add('Set-cookie' => $securecookie);      my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,$args);
     }      my $uname = &Apache::loncommon::cleanup_html($form->{'uname'});
     if ($defaultcookie) {      my $udom = &Apache::loncommon::cleanup_html($form->{'udom'});
         $r->headers_out->add('Set-cookie' => $defaultcookie);      if (&Apache::lonnet::domain($udom,'description') eq '') {
     }          undef($udom);
     if ($expirepub) {      }
         my $c = new CGI::Cookie(-name    => 'lonPubID',      my $retry = '/adm/login';
                                 -value   => '',      if ($uname eq $form->{'uname'}) {
                                 -expires => '-10y',);          $retry .= '?username='.$uname;
         $r->headers_out->add('Set-cookie' => $c);      }
     }      if ($udom) {
     $r->send_http_header;          $retry .= (($retry=~/\?/)?'&amp;':'?').'domain='.$udom;
       }
     if ($env{'request.linkprot'}) {      if (exists($form->{role})) {
         $r->print(<<END);          my $role = &Apache::loncommon::cleanup_html($form->{role});
 $start_page          if ($role ne '') {
 <br />$continuelink              $retry .= (($retry=~/\?/)?'&amp;':'?').'role='.$role;
 $end_page          }
 END      }
     } else {      if (exists($form->{symb})) {
         my %lt=&Apache::lonlocal::texthash(          my $symb = &Apache::loncommon::cleanup_html($form->{symb});
            'wel' => 'Welcome',          if ($symb ne '') {
            'pro' => 'Login problems?',              $retry .= (($retry=~/\?/)?'&amp;':'?').'symb='.$symb;
           );          }
         my $loginhelp = &loginhelpdisplay($domain);      }
         if ($loginhelp) {      my $end_page = &Apache::loncommon::end_page();
             $loginhelp = '<p><a href="'.$loginhelp.'">'.$lt{'pro'}.'</a></p>';      &Apache::loncommon::content_type($r,'text/html');
         }      $r->send_http_header;
       my @actions =
         my $welcome = &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');            (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));
         $r->print(<<ENDSUCCESS);      my $loginhelp = &loginhelpdisplay($udom);
 $start_page      if ($loginhelp) {
 $setflags          push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');
 $windowinfo      }
 <h1>$lt{'wel'}</h1>      #FIXME: link to helpdesk might be added here
 $welcome  
 $loginhelp      $r->print(
 $remoteinfo         $start_page
 $maincall        .'<h2>'.&mt('Sorry ...').'</h2>'
 $continuelink        .&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />'
 $end_page        .&Apache::lonhtmlcommon::actionbox(\@actions)
 ENDSUCCESS        .$end_page
     }      );
     return;   }
 }  
   # ------------------------------------------------------------------ Rerouting!
 # --------------------------------------------------------------- Failed login!  
   sub reroute {
 sub failed {      my ($r) = @_;
     my ($r,$message,$form,$authhost) = @_;      &Apache::loncommon::content_type($r,'text/html');
     (undef,undef,undef,my $clientmathml,my $clientunicode) =      $r->send_http_header;
         &Apache::loncommon::decode_user_agent();      my $msg='<b>'.&mt('Sorry ...').'</b><br />'
     my $args = {};             .&mt('Please [_1]log in again[_2].');
     if ($clientunicode && !$clientmathml) {      &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});
         $args = {'browser.unicode' => 1};  }
     }  
     if ($form->{firsturl} =~ m{^/tiny/$match_domain/\w+$}) {  # ---------------------------------------------------------------- Main handler
         if ($form->{linkprot}) {  
             $args->{only_body} = 1;  sub handler {
         }      my $r = shift;
     }      my $londocroot = $r->dir_config('lonDocRoot');
   # Are we re-routing?
     my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,$args);      if (-e "$londocroot/lon-status/reroute.txt") {
     my $uname = &Apache::loncommon::cleanup_html($form->{'uname'});   &reroute($r);
     my $udom = &Apache::loncommon::cleanup_html($form->{'udom'});   return OK;
     if (&Apache::lonnet::domain($udom,'description') eq '') {      }
         undef($udom);  
     }      &Apache::lonlocal::get_language_handle($r);
     my $retry = '/adm/login';  
     if ($uname eq $form->{'uname'}) {  # -------------------------------- Prevent users from attempting to login twice
         $retry .= '?username='.$uname;      my $handle = &Apache::lonnet::check_for_valid_session($r);
     }      if ($handle ne '') {
     if ($udom) {          my $lonidsdir=$r->dir_config('lonIDsDir');
         $retry .= (($retry=~/\?/)?'&amp;':'?').'domain='.$udom;          if ($handle=~/^publicuser\_/) {
     }  # For "public user" - remove it, we apparently really want to login
     my $lonhost = $r->dir_config('lonHostID');              unlink($r->dir_config('lonIDsDir')."/$handle.id");
     my $querystr;          } else {
     my $result = &set_retry_token($form,$lonhost,\$querystr);  # Indeed, a valid token is found
     if ($result eq 'fail') {              &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
         if (exists($form->{role})) {      &Apache::loncommon::content_type($r,'text/html');
             my $role = &Apache::loncommon::cleanup_html($form->{role});      $r->send_http_header;
             if ($role ne '') {      my $start_page =
                 $retry .= (($retry=~/\?/)?'&amp;':'?').'role='.$role;          &Apache::loncommon::start_page('Already logged in');
             }      my $end_page =
         }          &Apache::loncommon::end_page();
         if (exists($form->{symb})) {              my $dest = '/adm/roles';
             my $symb = &Apache::loncommon::cleanup_html($form->{symb});              if ($env{'form.firsturl'} ne '') {
             if ($symb ne '') {                  $dest = $env{'form.firsturl'};
                 $retry .= (($retry=~/\?/)?'&amp;':'?').'symb='.$symb;              }
             }              $r->print(
         }                 $start_page
         if (exists($form->{firsturl})) {                .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
             my $firsturl = &Apache::loncommon::cleanup_html($form->{firsturl});                .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'
             if ($firsturl ne '') {                      ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')
                 $retry .= (($retry=~/\?/)?'&amp;':'?').'firsturl='.$firsturl;                .'</p>'
                 if ($form->{firsturl} =~ m{^/tiny/$match_domain/\w+$}) {                .$end_page
                     unless (exists($form->{linkprot})) {              );
                         if (exists($form->{linkkey})) {              return OK;
                             $retry .= 'linkkey='.$form->{linkkey};          }
                         }      }
                     }  
                 }  # ---------------------------------------------------- No valid token, continue
             }  
         }  
         if (exists($form->{linkprot})) {      my $buffer;
             my %info = (      if ($r->header_in('Content-length') > 0) {
                          'linkprot' => $form->{'linkprot'},   $r->read($buffer,$r->header_in('Content-length'),0);
                        );      }
             foreach my $item ('linkprotuser','linkprotexit') {      my %form;
                 if ($form->{$item} ne '') {      foreach my $pair (split(/&/,$buffer)) {
                     $info{$item} = $form->{$item};         my ($name,$value) = split(/=/,$pair);
                 }         $value =~ tr/+/ /;
             }         $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
             my $ltoken = &Apache::lonnet::tmpput(\%info,         $form{$name}=$value;
                                                  $r->dir_config('lonHostID'),'retry');      }
             if ($ltoken) {  
                 $retry .= (($retry =~ /\?/) ? '&' : '?').'ltoken='.$ltoken;      if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {
             }   &failed($r,'Username, password and domain need to be specified.',
         }   \%form);
     } elsif ($querystr ne '') {          return OK;
         $retry .= (($retry=~/\?/)?'&amp;':'?').$querystr;      }
     }  
     my $end_page = &Apache::loncommon::end_page();  # split user logging in and "su"-user
     &Apache::loncommon::content_type($r,'text/html');  
     $r->send_http_header;      ($form{'uname'},$form{'suname'},$form{'sudom'})=split(/\:/,$form{'uname'});
     my @actions =      $form{'uname'} = &LONCAPA::clean_username($form{'uname'});
          (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));      $form{'suname'}= &LONCAPA::clean_username($form{'suname'});
     my $loginhelp = &loginhelpdisplay($udom);      $form{'udom'}  = &LONCAPA::clean_domain($form{'udom'});
     if ($loginhelp) {      $form{'sudom'} = &LONCAPA::clean_domain($form{'sudom'});
         push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');  
     }      my $role   = $r->dir_config('lonRole');
     #FIXME: link to helpdesk might be added here      my $domain = $r->dir_config('lonDefDomain');
       my $prodir = $r->dir_config('lonUsersDir');
     $r->print(      my $contact_name = &mt('LON-CAPA helpdesk');
        $start_page  
       .'<h2>'.&mt('Sorry ...').'</h2>'  # ---------------------------------------- Get the information from login token
       .&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />'  
       .&Apache::lonhtmlcommon::actionbox(\@actions)      my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},
       .$end_page                                        $form{'serverid'});
     );  
  }      if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||
           ($tmpinfo eq 'no_such_host')) {
 # ------------------------------------------------------------------ Rerouting!   &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);
           return OK;
 sub reroute {      } else {
     my ($r) = @_;   my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},
     &Apache::loncommon::content_type($r,'text/html');     $form{'serverid'});
     $r->send_http_header;          if ( $reply ne 'ok' ) {
     my $msg='<b>'.&mt('Sorry ...').'</b><br />'              &failed($r,'Session could not be opened.',\%form);
            .&mt('Please [_1]log in again[_2].');      &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");
     &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});      return OK;
 }   }
       }
 # ---------------------------------------------------------------- Main handler  
       if (!&Apache::lonnet::domain($form{'udom'})) {
 sub handler {          &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);
     my $r = shift;          return OK;
     my $londocroot = $r->dir_config('lonDocRoot');      }
 # Are we re-routing?  
     if (-e "$londocroot/lon-status/reroute.txt") {      my ($key,$firsturl,$rolestr,$symbstr,$iptokenstr)=split(/&/,$tmpinfo);
  &reroute($r);      if ($rolestr) {
  return OK;          $rolestr = &unescape($rolestr);
     }      }
       if ($symbstr) {
     &Apache::lonlocal::get_language_handle($r);          $symbstr= &unescape($symbstr);
       }
 # -------------------------------- Prevent users from attempting to login twice      if ($iptokenstr) {
     my $handle = &Apache::lonnet::check_for_valid_session($r);          $iptokenstr = &unescape($iptokenstr);
     if ($handle ne '') {      }
         my $lonidsdir=$r->dir_config('lonIDsDir');      if ($rolestr =~ /^role=/) {
         if ($handle=~/^publicuser\_/) {          (undef,$form{'role'}) = split('=',$rolestr);
 # For "public user" - remove it, we apparently really want to login      }
             unlink($r->dir_config('lonIDsDir')."/$handle.id");      if ($symbstr =~ /^symb=/) {
         } else {          (undef,$form{'symb'}) = split('=',$symbstr);
 # Indeed, a valid token is found      }
             &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);      if ($iptokenstr =~ /^iptoken=/) {
     &Apache::loncommon::content_type($r,'text/html');          (undef,$form{'iptoken'}) = split('=',$iptokenstr);
     $r->send_http_header;      }
     my $start_page =   
         &Apache::loncommon::start_page('Already logged in');      my $upass = $ENV{HTTPS} ? $form{'upass0'}
     my $end_page =           : &Apache::loncommon::des_decrypt($key,$form{'upass0'});
         &Apache::loncommon::end_page();  
             my $dest = '/adm/roles';  # ---------------------------------------------------------------- Authenticate
             my %form = &get_form_items($r);  
             if ($form{'logtoken'}) {      my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});
                 my $tmpinfo = &Apache::lonnet::reply('tmpget:'.$form{'logtoken'},      my ($cancreate,$statustocreate) =
                                                      $form{'serverid'});          &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});
                 unless (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||      my $defaultauth;
                         ($tmpinfo eq 'no_such_host')) {      if (ref($cancreate) eq 'ARRAY') {
                     my ($des_key,$firsturl,@rest)=split(/&/,$tmpinfo);          if (grep(/^login$/,@{$cancreate})) {
                     $firsturl = &unescape($firsturl);              $defaultauth = 1;
                     my %info;          }
                     foreach my $item (@rest) {      }
                         my ($key,$value) = split(/=/,$item);      my $clientcancheckhost = 1;
                         $info{$key} = &unescape($value);      my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,
                     }                                                $form{'udom'},$defaultauth,
                     if ($firsturl ne '') {                                                $clientcancheckhost);
                         $info{'firsturl'} = $firsturl;     
                         $dest = $firsturl;  # --------------------------------------------------------------------- Failed?
                         my $relogin;  
                         if ($dest =~ m{^/tiny/$match_domain/\w+$}) {      if ($authhost eq 'no_host') {
                             if ($env{'request.course.id'}) {   &failed($r,'Username and/or password could not be authenticated.',
                                 my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};   \%form);
                                 my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};          return OK;
                                 my $symb = &Apache::loncommon::symb_from_tinyurl($dest,$cnum,$cdom);      } elsif ($authhost eq 'no_account_on_host') {
                                 if ($symb) {          if ($defaultauth) {
                                     unless (&set_deeplink_login(%info) eq 'ok') {              my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');
                                         $relogin = 1;              unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {
                                     }                  return OK;
                                 }              }
                             }              my $start_page =
                             if ($relogin) {                  &Apache::loncommon::start_page('Create a user account in LON-CAPA');
                                 $r->print(              my $lonhost = $r->dir_config('lonHostID');
                                       $start_page              my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
                                      .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'              my $contacts =
                                      .'<p>'.&mt('Please [_1]log out[_2] first, and then try your access again',                  &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
                                                 '<a href="/adm/logout">','</a>')                                                          $form{'udom'},$origmail);
                                      .'</p>'              my ($contact_email) = split(',',$contacts);
                                      .$end_page);              my $output =
                             } else {                  &Apache::createaccount::username_check($form{'uname'},$form{'udom'},
                                 if (($info{'linkprot'}) || ($info{'linkkey'} ne '')) {                                                         $domdesc,'',$lonhost,
                                     if (($info{'linkprot'}) && ($info{'linkprotuser'} ne '')) {                                                         $contact_email,$contact_name,
                                         unless ($info{'linkprotuser'} eq $env{'user.name'}.':'.$env{'user.domain'}) {                                                         undef,$statustocreate);
                                             $r->print(              &Apache::loncommon::content_type($r,'text/html');
                                                       $start_page              $r->send_http_header;
                                                       .'<p class="LC_warning">'.&mt('You are already logged in, but as a different user from the one expected for the link you followed from another system').'</p>'              &Apache::createaccount::print_header($r,$start_page);
                                                       .'<p>'.&mt('Please [_1]log out[_2] first, and then try following the link again from the other system',              $r->print('<h3>'.&mt('Account creation').'</h3>'.
                                                                  '<a href="/adm/logout">','</a>')                        &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.
                         $output.&Apache::loncommon::end_page());
                                                       .'</p>'              return OK;
                                                       .$end_page);          } else {
                                             return OK;              &failed($r,'Although your username and password were authenticated, you do not currently have a LON-CAPA account in this domain, and you are not permitted to create one.',\%form);
                                         }              return OK;
                                     }          }
                                     my $token = &Apache::lonnet::tmpput(\%info,$r->dir_config('lonHostID'),'link');      }
                                     unless (($token eq 'con_lost') || ($token eq 'refused') ||  
                                             ($token eq 'unknown_cmd') || ($token eq 'no_such_host')) {      if (($firsturl eq '') ||
                                         $dest .= (($dest =~ /\?/) ? '&' : '?') . 'ttoken='.$token;   ($firsturl=~/^\/adm\/(logout|remote)/)) {
                                     }   $firsturl='/adm/roles';
                                 }      }
                                 $r->print(  
                                       $start_page      my $hosthere;
                                      .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'      if ($form{'iptoken'}) {
                                      .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4] first, and then try your access again',          my %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});
                                                 '<a href="'.$dest.'">','</a>',          my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});
                                                 '<a href="/adm/logout">','</a>')          if (($sessiondata{'domain'} eq $form{'udom'}) &&
                                      .'</p>'              ($sessiondata{'username'} eq $form{'uname'})) {
                                      .$end_page);              $hosthere = 1;
                             }          }
                             return OK;      }
                         }  
                     }  # --------------------------------- Are we attempting to login as somebody else?
                 }      if ($form{'suname'}) {
             }          my ($suname,$sudom,$sudomref);
             $r->print(          $suname = $form{'suname'};
                $start_page          $sudom = $form{'udom'};
               .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'          if ($form{'sudom'}) {
               .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'              unless ($sudom eq $form{'sudom'}) {
                     ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')                  if (&Apache::lonnet::domain($form{'sudom'})) {
               .'</p>'                      $sudomref = [$form{'sudom'}];
               .$end_page                      $sudom = $form{'sudom'};
             );                  }
             return OK;              }
         }          }
     }  # ------------ see if the original user has enough privileges to pull this stunt
    if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {
 # ---------------------------------------------------- No valid token, continue  # ---------------------------------------------------- see if the su-user exists
       unless (&Apache::lonnet::homeserver($suname,$sudom) eq 'no_host') {
     my %form = &get_form_items($r);   &Apache::lonnet::logthis(&Apache::lonnet::homeserver($suname,$sudom));
     if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {  # ------------------------------ see if the su-user is not too highly privileged
  &failed($r,'Username, password and domain need to be specified.',   unless (&Apache::lonnet::privileged($suname,$sudom)) {
  \%form);  #
         return OK;  # su-user's home server and user's home server must have one of:
     }  # (a) same internet dom
   # (b) same primary library server for home server's domain
 # split user logging in and "su"-user  # (c) same "internet domain" for primary library server for home server's domain
   #
     ($form{'uname'},$form{'suname'},$form{'sudom'})=split(/\:/,$form{'uname'});                      unless ($sudom eq $form{'udom'}) {
     $form{'uname'} = &LONCAPA::clean_username($form{'uname'});                          my $suprim = &Apache::lonnet::domain($sudom,'primary');
     $form{'suname'}= &LONCAPA::clean_username($form{'suname'});                          my $uprim = &Apache::lonnet::domain($sudom,'primary');
     $form{'udom'}  = &LONCAPA::clean_domain($form{'udom'});                          unless ($suprim eq $uprim) {
     $form{'sudom'} = &LONCAPA::clean_domain($form{'sudom'});                              my $suintdom = &Apache::lonnet::internet_dom($suprim);
                               my $uintdom = &Apache::lonnet::internet_dom($uprim);
     my $role   = $r->dir_config('lonRole');                              unless ($suintdom eq $uintdom) {
     my $domain = $r->dir_config('lonDefDomain');                                  &Apache::lonnet::logthis('Attempted switch user '
     my $prodir = $r->dir_config('lonUsersDir');                                                           .'to privileged user');                        
     my $contact_name = &mt('LON-CAPA helpdesk');                              }
                           }
 # ---------------------------------------- Get the information from login token                      }
   
     my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},  # -------------------------------------------------------- actually switch users
                                       $form{'serverid'});  
       &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.$form{'udom'}.
     if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||    ' logging in as '.$suname.':'.$sudom);
         ($tmpinfo eq 'no_such_host')) {      $form{'uname'}=$suname;
  &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);                      if ($form{'udom'} ne $sudom) {
         return OK;                          $form{'udom'}=$sudom;
     } else {                      }
  my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},   } else {
    $form{'serverid'});      &Apache::lonnet::logthis('Attempted switch user to privileged user');
         if ( $reply ne 'ok' ) {   }
             &failed($r,'Session could not be opened.',\%form);      }
     &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");   } else {
     return OK;      &Apache::lonnet::logthis('Non-privileged user attempting switch user');
  }   }
     }      }
   
     if (!&Apache::lonnet::domain($form{'udom'})) {      my ($is_balancer,$otherserver);
         &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);  
         return OK;      unless ($hosthere) {
     }          ($is_balancer,$otherserver) =
               &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');
     my ($des_key,$firsturl,@rest)=split(/&/,$tmpinfo);          if ($is_balancer) {
     $firsturl = &unescape($firsturl);              if ($otherserver eq '') {
     foreach my $item (@rest) {                  my $lowest_load;
         my ($key,$value) = split(/=/,$item);                  ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});
         $form{$key} = &unescape($value);                  if ($lowest_load > 100) {
     }                      $otherserver = &Apache::lonnet::spareserver($lowest_load,$lowest_load,1,$form{'udom'});
     if ($firsturl =~ m{^/tiny/$match_domain/\w+$}) {                  }
         $form{'firsturl'} = $firsturl;              }
     }              if ($otherserver ne '') {
     my $upass = &Apache::loncommon::des_decrypt($des_key,$form{'upass0'});                  my @hosts = &Apache::lonnet::current_machine_ids();
                   if (grep(/^\Q$otherserver\E$/,@hosts)) {
 # ---------------------------------------------------------------- Authenticate                      $hosthere = $otherserver;
                   }
     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});              }
     my ($cancreate,$statustocreate) =          }
         &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});      }
     my $defaultauth;  
     if (ref($cancreate) eq 'ARRAY') {      if (($is_balancer) && (!$hosthere)) {
         if (grep(/^login$/,@{$cancreate})) {          if ($otherserver) {
             $defaultauth = 1;              &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
         }                       \%form);
     }              my $switchto = '/adm/switchserver?otherserver='.$otherserver;
     my $clientcancheckhost = 1;              if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
     my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,                  $switchto .= '&origurl='.$firsturl;
                                               $form{'udom'},$defaultauth,              }
                                               $clientcancheckhost);              if ($form{'role'}) {
                       $switchto .= '&role='.$form{'role'};
 # --------------------------------------------------------------------- Failed?              }
               if ($form{'symb'}) {
     if ($authhost eq 'no_host') {                  $switchto .= '&symb='.$form{'symb'};
         my $pwdverify;              }
         if (&Apache::lonnet::homeserver($form{'uname'},$form{'udom'}) eq 'no_host') {              $r->internal_redirect($switchto);
             my %possunames = &alternate_unames_check($form{'uname'},$form{'udom'});          } else {
             if (keys(%possunames) > 0) {              $r->print(&noswitch());
                 foreach my $rulematch (keys(%possunames)) {          }
                     my $possuname = $possunames{$rulematch};          return OK;
                     if (($possuname ne '') && ($possuname =~ /^$match_username$/)) {      } else {
                         $authhost=Apache::lonnet::authenticate($possuname,$upass,          if (!&check_can_host($r,\%form,$authhost)) {
                                                                $form{'udom'},undef,              my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});
                                                                $clientcancheckhost);              if ($otherserver) {
                         if (($authhost eq 'no_host') || ($authhost eq 'no_account_on_host')) {                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
                             next;                           \%form);
                         } elsif (($authhost ne '') && (&Apache::lonnet::hostname($authhost) ne '')) {                  my $switchto = '/adm/switchserver?otherserver='.$otherserver;
                             $pwdverify = 1;                  if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
                             &Apache::lonnet::logthis("Authenticated user: $possuname was submitted as: $form{'uname'}");                      $switchto .= '&origurl='.$firsturl;
                             $form{'uname'} = $possuname;                  }
                             last;                  if ($form{'role'}) {
                         }                      $switchto .= '&role='.$form{'role'};
                     }                  }
                 }                  if ($form{'symb'}) {
             }                      $switchto .= '&symb='.$form{'symb'};
         }                  }
         unless ($pwdverify) {                  $r->internal_redirect($switchto);
             &failed($r,'Username and/or password could not be authenticated.',              } else {
                     \%form);                  $r->print(&noswitch());
             return OK;              }
         }              return OK;
     } elsif ($authhost eq 'no_account_on_host') {          }
         if ($defaultauth) {  
             my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');  # ------------------------------------------------------- Do the load balancing
             unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {  
                 return OK;  # ---------------------------------------------------------- Determine own load
             }          my $loadlim = $r->dir_config('lonLoadLim');
             my $start_page =           my $loadavg;
                 &Apache::loncommon::start_page('Create a user account in LON-CAPA',          {
                                                '',{'no_inline_link'   => 1,});              my $loadfile=Apache::File->new('/proc/loadavg');
             my $lonhost = $r->dir_config('lonHostID');              $loadavg=<$loadfile>;
             my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};          }
             my $contacts =           $loadavg =~ s/\s.*//g;
                 &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',          my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
                                                         $form{'udom'},$origmail);          my $userloadpercent=&Apache::lonnet::userload();
             my ($contact_email) = split(',',$contacts);   
             my $output =   # ---------------------------------------------------------- Are we overloaded?
                 &Apache::createaccount::username_check($form{'uname'},$form{'udom'},          if ((($userloadpercent>100.0)||($loadpercent>100.0))) {
                                                        $domdesc,'',$lonhost,              my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'});
                                                        $contact_email,$contact_name,              if (!$unloaded) {
                                                        undef,$statustocreate);                  ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});
             &Apache::loncommon::content_type($r,'text/html');              }
             $r->send_http_header;              if ($unloaded) {
             &Apache::createaccount::print_header($r,$start_page);                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',
             $r->print('<h3>'.&mt('Account creation').'</h3>'.                           undef,\%form);
                       &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.                  $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);
                       $output.&Apache::loncommon::end_page());                  return OK;
             return OK;              }
         } else {          }
             &failed($r,'Although your username and password were authenticated, you do not currently have a LON-CAPA account in this domain, and you are not permitted to create one.',\%form);          if (($is_balancer) && ($hosthere)) {
             return OK;              $form{'noloadbalance'} = $hosthere;
         }          }
     }          &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,
                    \%form);
     if (($firsturl eq '') ||           return OK;
  ($firsturl=~/^\/adm\/(logout|remote)/)) {      }
  $firsturl='/adm/roles';  }
     }  
   sub check_can_host {
     my ($hosthere,%sessiondata);      my ($r,$form,$authhost,$domdesc) = @_;
     if ($form{'iptoken'}) {      return unless (ref($form) eq 'HASH');
         %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});      my $canhost = 1;
         my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});      my $lonhost = $r->dir_config('lonHostID');
         if (($sessiondata{'domain'} eq $form{'udom'}) &&      my $udom = $form->{'udom'};
             ($sessiondata{'username'} eq $form{'uname'})) {      my @intdoms;
             $hosthere = 1;      my $internet_names = &Apache::lonnet::get_internet_names($lonhost);
         }      if (ref($internet_names) eq 'ARRAY') {
     }          @intdoms = @{$internet_names};
       }
 # --------------------------------- Are we attempting to login as somebody else?      my $uprimary_id = &Apache::lonnet::domain($udom,'primary');
     if ($form{'suname'}) {      my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
         my ($suname,$sudom,$sudomref);      unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {
         $suname = $form{'suname'};          my $machine_dom = &Apache::lonnet::host_domain($lonhost);
         $sudom = $form{'udom'};          my $hostname = &Apache::lonnet::hostname($lonhost);
         if ($form{'sudom'}) {          my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);
             unless ($sudom eq $form{'sudom'}) {          my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);
                 if (&Apache::lonnet::domain($form{'sudom'})) {          my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);
                     $sudomref = [$form{'sudom'}];          my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);
                     $sudom = $form{'sudom'};          my $loncaparev;
                 }          if ($authhost eq 'no_account_on_host') {
             }              $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);
         }          } else {
 # ------------ see if the original user has enough privileges to pull this stunt              $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);
  if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {          }
 # ---------------------------------------------------- see if the su-user exists          $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,
     unless (&Apache::lonnet::homeserver($suname,$sudom) eq 'no_host') {                                                       $udomdefaults{'remotesessions'},
 # ------------------------------ see if the su-user is not too highly privileged                                                       $defdomdefaults{'hostedsessions'});
  if (&Apache::lonnet::privileged($suname,$sudom)) {      }
                     &Apache::lonnet::logthis('Attempted switch user to privileged user');      unless ($canhost) {
                 } else {          if ($authhost eq 'no_account_on_host') {
                     my $noprivswitch;              my $checkloginvia = 1;
 #              my ($login_host,$hostname) =
 # su-user's home server and user's home server must have one of:                  &Apache::lonnet::choose_server($udom,$checkloginvia);
 # (a) same domain              &Apache::loncommon::content_type($r,'text/html');
 # (b) same primary library server for the two domains              $r->send_http_header;
 # (c) same "internet domain" for primary library server(s) for home servers' domains              if ($login_host ne '') {
 #                  my $protocol = $Apache::lonnet::protocol{$login_host};
                     my $suprim = &Apache::lonnet::domain($sudom,'primary');                  $protocol = 'http' if ($protocol ne 'https');
                     my $suintdom = &Apache::lonnet::internet_dom($suprim);                  my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';
                     unless ($sudom eq $form{'udom'}) {                  $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').
                         my $uprim = &Apache::lonnet::domain($form{'udom'},'primary');                            '<h3>'.&mt('Account creation').'</h3>'.
                         my $uintdom = &Apache::lonnet::internet_dom($uprim);                            &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
                         unless ($suprim eq $uprim) {                            '<p>'.&mt('You will be able to create one by logging into a LON-CAPA server within the [_1] domain.',$domdesc).'</p>'.
                             unless ($suintdom eq $uintdom) {                            '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').
                                 &Apache::lonnet::logthis('Attempted switch user '                            &Apache::loncommon::end_page());
                                    .'to user with different "internet domain".');              } else {
                                 $noprivswitch = 1;                  $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').
                             }                            '<h3>'.&mt('Account creation unavailable').'</h3>'.
                         }                            &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
                     }                            '<p>'.&mt('Currently a LON-CAPA server is not available within the [_1] domain for you to log-in to, to create an account.',$domdesc).'</p>'.
                             &Apache::loncommon::end_page());
                     unless ($noprivswitch) {              }
 #          } else {
 # server where log-in occurs must have same "internet domain" as su-user's home              &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,
 # server                       $form);
 #              my ($otherserver) = &Apache::lonnet::choose_server($udom);
                         my $lonhost = $r->dir_config('lonHostID');              $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);
                         my $hostintdom = &Apache::lonnet::internet_dom($lonhost);          }
                         if ($hostintdom ne $suintdom) {      }
                             &Apache::lonnet::logthis('Attempted switch user on a '      return $canhost;
                                 .'server with a different "internet domain".');  }
                         } else {  
   sub noswitch {
 # -------------------------------------------------------- actually switch users      my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').
                    '<h3>'.&mt('Session unavailable').'</h3>'.
     &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.                   &mt('This LON-CAPA server is unable to host your session.').'<br />'.
  $form{'udom'}.' logging in as '.$suname.':'.$sudom);                   '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.
     $form{'uname'}=$suname;                   &Apache::loncommon::end_page();
                             if ($form{'udom'} ne $sudom) {      return $result;
                                 $form{'udom'}=$sudom;  }
                             }  
                         }  sub loginhelpdisplay {
                     }      my ($authdomain) = @_;
  }      my $login_help = 1;
     }      my $lang = &Apache::lonlocal::current_language();
  } else {      if ($login_help) {
     &Apache::lonnet::logthis('Non-privileged user attempting switch user');          my $dom = $authdomain;
  }          if ($dom eq '') {
     }              $dom = &Apache::lonnet::default_login_domain();
           }
     if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {          my %domconfhash = &Apache::loncommon::get_domainconf($dom);
         if (($form{'linkprot'}) && ($form{'linkprotuser'} ne '')) {          my $loginhelp_url;
             unless($form{'linkprotuser'} eq $form{'uname'}.':'.$form{'udom'}) {          if ($lang) {
                 delete($form{'udom'});              $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};
                 delete($form{'uname'});              if ($loginhelp_url ne '') {
                 &failed($r,'Username and/or domain are different to that expected for the link you followed from another system',                  return $loginhelp_url;
                         \%form,$authhost);              }
                 return OK;          }
             }          $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};
         }          if ($loginhelp_url ne '') {
     }              return $loginhelp_url;
           } else {
     my ($is_balancer,$otherserver);              return '/adm/loginproblems.html';
           }
     unless ($hosthere) {      }
         ($is_balancer,$otherserver) =      return;
             &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');  }
         if ($is_balancer) {  
             # Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer)  1;
             my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r);  __END__
             if (($found_server) && ($balancer_cookie =~ /^\Q$env{'user.domain'}\E_\Q$env{'user.name'}\E_/)) {  
                 $otherserver = $found_server;  
             }  
             if ($otherserver eq '') {  
                 my $lowest_load;  
                 ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});  
                 if ($lowest_load > 100) {  
                     $otherserver = &Apache::lonnet::spareserver($r,$lowest_load,$lowest_load,1,$form{'udom'});  
                 }  
             }  
             if ($otherserver ne '') {  
                 my @hosts = &Apache::lonnet::current_machine_ids();  
                 if (grep(/^\Q$otherserver\E$/,@hosts)) {  
                     $hosthere = $otherserver;  
                 }  
             }  
         }  
     }  
   
     if (($is_balancer) && (!$hosthere)) {  
         if ($otherserver) {  
             &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,  
                      \%form);  
             my $switchto = '/adm/switchserver?otherserver='.$otherserver;  
             if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {  
                 $switchto .= '&origurl='.$firsturl;  
             }  
             if ($form{'role'}) {  
                 $switchto .= '&role='.$form{'role'};  
             }  
             if ($form{'symb'}) {  
                 $switchto .= '&symb='.$form{'symb'};  
             }  
             if ($form{'linkprot'}) {  
                 $env{'request.linkprot'} = $form{'linkprot'};  
                 foreach my $item ('linkprotuser','linkprotexit') {  
                     if ($form{$item}) {  
                         $env{'request.'.$item} = $form{$item};  
                     }  
                 }  
             } elsif ($form{'linkkey'} ne '') {  
                 $env{'request.linkkey'} = $form{'linkkey'};  
             }  
             if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {  
                 &set_deeplink_login(%form);  
             } elsif ($firsturl eq '/adm/email') {  
                 if ($form{'display'} && ($form{'mailrecip'} eq "$form{'uname'}:$form{'udom'}")) {  
                     $env{'request.display'} = $form{'display'};  
                     $env{'request.mailrecip'} = $form{'mailrecip'};  
                 }  
             }  
             $r->internal_redirect($switchto);  
         } else {  
             &Apache::loncommon::content_type($r,'text/html');  
             $r->send_http_header;  
             $r->print(&noswitch());  
         }  
         return OK;  
     } else {  
         if (!&check_can_host($r,\%form,$authhost)) {  
             my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});  
             if ($otherserver) {  
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,  
                          \%form);  
                 my $switchto = '/adm/switchserver?otherserver='.$otherserver;  
                 if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {  
                     $switchto .= '&origurl='.$firsturl;  
                 }  
                 if ($form{'role'}) {  
                     $switchto .= '&role='.$form{'role'};  
                 }  
                 if ($form{'symb'}) {  
                     $switchto .= '&symb='.$form{'symb'};  
                 }  
                 if ($form{'linkprot'}) {  
                     $env{'request.linkprot'} = $form{'linkprot'};  
                     foreach my $item ('linkprotuser','linkprotexit') {  
                         if ($form{$item}) {  
                             $env{'request.'.$item} = $form{$item};  
                         }  
                     }  
                 } elsif ($form{'linkkey'} ne '') {  
                     $env{'request.linkkey'} = $form{'linkkey'};  
                 }  
                 if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {  
                     &set_deeplink_login(%form);  
                 } elsif ($firsturl eq '/adm/email') {  
                     if ($form{'display'} && ($form{'mailrecip'} eq "$form{'uname'}:$form{'udom'}")) {  
                         $env{'request.display'} = $form{'display'};  
                         $env{'request.mailrecip'} = $form{'mailrecip'};  
                     }  
                 }  
                 $r->internal_redirect($switchto);  
             } else {  
                 &Apache::loncommon::content_type($r,'text/html');  
                 $r->send_http_header;  
                 $r->print(&noswitch());  
             }  
             return OK;  
         }  
   
 # ------------------------------------------------------- Do the load balancing  
   
 # ---------------------------------------------------------- Determine own load  
         my $loadlim = $r->dir_config('lonLoadLim');  
         my $loadavg;  
         {  
             my $loadfile=Apache::File->new('/proc/loadavg');  
             $loadavg=<$loadfile>;  
         }  
         $loadavg =~ s/\s.*//g;  
         my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);  
         my $userloadpercent=&Apache::lonnet::userload();  
   
 # ---------------------------------------------------------- Are we overloaded?  
         if ((($userloadpercent>100.0)||($loadpercent>100.0))) {  
             my $unloaded=Apache::lonnet::spareserver($r,$loadpercent,$userloadpercent,1,$form{'udom'});  
             if (!$unloaded) {  
                 ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});  
             }  
             if ($unloaded) {  
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',  
                          undef,\%form);  
                 if ($form{'linkprot'}) {  
                     $env{'request.linkprot'} = $form{'linkprot'};  
                 } elsif ($form{'linkkey'} ne '') {  
                     $env{'request.linkkey'} = $form{'linkkey'};  
                 }  
                 if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {  
                     &set_deeplink_login(%form);  
                 } elsif ($firsturl eq '/adm/email') {  
                     if ($form{'display'} && ($form{'mailrecip'} eq "$form{'uname'}:$form{'udom'}")) {  
                         $env{'request.display'} = $form{'display'};  
                         $env{'request.mailrecip'} = $form{'mailrecip'};  
                     }  
                 }  
                 $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);  
                 return OK;  
             }  
         }  
         if (($is_balancer) && ($hosthere)) {  
             $form{'noloadbalance'} = $hosthere;  
         }  
         my $extra_env;  
         if (($hosthere) && ($sessiondata{'sessionserver'} ne '')) {  
             if ($sessiondata{'origurl'} ne '') {  
                 $firsturl = $sessiondata{'origurl'};  
                 $form{'firsturl'} = $sessiondata{'origurl'};  
                 my @names = ('role','symb','linkprot','linkkey');  
                 foreach my $item (@names) {  
                     if ($sessiondata{$item} ne '') {  
                         $form{$item} = $sessiondata{$item};  
                     }  
                 }  
                 if ($sessiondata{'origurl'} eq '/adm/email') {  
                     if (($sessiondata{'display'}) && ($sessiondata{'mailrecip'})) {  
                         if (&unescape($sessiondata{'mailrecip'}) eq "$form{'uname'}:$form{'udom'}") {  
                             $form{'display'} = &unescape($sessiondata{'display'});  
                             $form{'mailrecip'} = &unescape($sessiondata{'mailrecip'});  
                         }  
                     }  
                 }  
             }  
         }  
         if ($form{'linkprot'}) {  
             my ($linkprotector,$uri) = split(/:/,$form{'linkprot'},2);  
             if ($linkprotector) {  
                 $extra_env = {'user.linkprotector' => $linkprotector,  
                               'user.linkproturi'   => $uri};  
             }  
         } elsif ($form{'linkkey'} ne '') {  
             $extra_env = {'user.deeplinkkey'  => $form{'linkkey'},  
                           'user.keyedlinkuri' => $form{'firsturl'}};  
         }  
         if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {  
             &set_deeplink_login(%form);  
             if ($form{'linkprot'}) {  
                 if (ref($extra_env) eq 'HASH') {  
                     %{$extra_env} = ( %{$extra_env}, 'request.linkprot' => $form{'linkprot'} );  
                 } else {  
                     $extra_env = {'request.linkprot' => $form{'linkprot'}};  
                 }  
                 if ($form{'linkprotexit'}) {  
                     $extra_env->{'request.linkprotexit'} = $form{'linkprotexit'};  
                 }  
             } elsif ($form{'linkkey'} ne '') {  
                 if (ref($extra_env) eq 'HASH') {  
                     %{$extra_env} = ( %{$extra_env}, 'request.linkkey' => $form{'linkkey'} );  
                 } else {  
                     $extra_env = {'request.linkkey' => $form{'linkkey'}};  
                 }  
             }  
             if ($env{'request.deeplink.login'}) {  
                 if (ref($extra_env) eq 'HASH') {  
                     %{$extra_env} = ( %{$extra_env}, 'request.deeplink.login' => $form{'firsturl'} );  
                 } else {  
                     $extra_env = {'request.deeplink.login' => $form{'firsturl'}};  
                 }  
             }  
         }  
         &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,$extra_env,  
                  \%form);  
         return OK;  
     }  
 }  
   
 sub get_form_items {  
     my ($r) = @_;  
     my $buffer;  
     if ($r->header_in('Content-length') > 0) {  
         $r->read($buffer,$r->header_in('Content-length'),0);  
     }  
     my %form;  
     foreach my $pair (split(/&/,$buffer)) {  
        my ($name,$value) = split(/=/,$pair);  
        $value =~ tr/+/ /;  
        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;  
        $form{$name}=$value;  
     }  
     return %form;  
 }  
   
 sub set_deeplink_login {  
     my (%form) = @_;  
     my $disallow;  
     if ($form{'firsturl'} =~ m{^/tiny/($match_domain)/\w+$}) {  
         my $cdom = $1;  
         my ($cnum,$symb) = &Apache::loncommon::symb_from_tinyurl($form{'firsturl'},'',$cdom);  
         if ($symb) {  
             if ($env{'request.course.id'} eq $cdom.'_'.$cnum) {  
                 my $deeplink;  
                 if ($symb =~ /\.(page|sequence)$/) {  
                     my $mapname = &Apache::lonnet::deversion((&Apache::lonnet::decode_symb($symb))[2]);  
                     my $navmap = Apache::lonnavmaps::navmap->new();  
                     if (ref($navmap)) {  
                         $deeplink = $navmap->get_mapparam(undef,$mapname,'0.deeplink');  
                     }  
                 } else {  
                     $deeplink = &Apache::lonnet::EXT('resource.0.deeplink',$symb);  
                 }  
                 if ($deeplink ne '') {  
                     my ($state,$others,$listed,$scope,$protect) = split(/,/,$deeplink);  
                     if (($protect ne 'none') && ($protect ne '')) {  
                         my ($acctype,$item) = split(/:/,$protect);  
                         if ($acctype =~ /lti(c|d)$/) {  
                             unless ($form{'linkprot'} eq $item.$1.':'.$env{'request.deeplink.login'}) {  
                                 $disallow = 1;  
                             }  
                         } elsif ($acctype eq 'key') {  
                             unless ($form{'linkkey'} eq $item) {  
                                 $disallow = 1;  
                             }  
                         }  
                     }  
                 }  
                 unless ($disallow) {  
                     $env{'request.deeplink.login'} = $form{'firsturl'};  
                 }  
             } else {  
                 $env{'request.deeplink.login'} = $form{'firsturl'};  
             }  
         }  
     }  
     if ($disallow) {  
         return;  
     }  
     return 'ok';  
 }  
   
 sub set_retry_token {  
     my ($form,$lonhost,$querystr) = @_;  
     if (ref($form) eq 'HASH') {  
         my ($firsturl,$token,$extras,@names);  
         @names = ('role','symb','linkprotuser','linkprotexit','linkprot','linkkey','iptoken');  
         foreach my $name (@names) {  
             if ($form->{$name} ne '') {  
                 $extras .= '&'.$name.'='.&escape($form->{$name});  
                 last if ($name eq 'linkprot');  
             }  
         }  
         my $firsturl = $form->{'firsturl'};  
         if (($firsturl ne '') || ($extras ne '')) {  
             $extras .= ':retry';  
             $token = &Apache::lonnet::reply('tmpput:'.&escape($firsturl).  
                                             $extras,$lonhost);  
             if (($token eq 'con_lost') || ($token eq 'no_such_host')) {  
                 return 'fail';  
             } else {  
                 if (ref($querystr)) {  
                     $$querystr = 'retry='.$token;  
                 }  
                 return 'ok';  
             }  
         }  
     }  
     return;  
 }  
   
 sub check_can_host {  
     my ($r,$form,$authhost,$domdesc) = @_;  
     return unless (ref($form) eq 'HASH');  
     my $canhost = 1;  
     my $lonhost = $r->dir_config('lonHostID');  
     my $udom = $form->{'udom'};  
     my @intdoms;  
     my $internet_names = &Apache::lonnet::get_internet_names($lonhost);  
     if (ref($internet_names) eq 'ARRAY') {  
         @intdoms = @{$internet_names};  
     }  
     my $uprimary_id = &Apache::lonnet::domain($udom,'primary');  
     my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);  
     unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {  
         my $machine_dom = &Apache::lonnet::host_domain($lonhost);  
         my $hostname = &Apache::lonnet::hostname($lonhost);  
         my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);  
         my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);  
         my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);  
         my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);  
         my $loncaparev;  
         if ($authhost eq 'no_account_on_host') {  
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);  
         } else {  
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);  
         }  
         $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,  
                                                      $udomdefaults{'remotesessions'},  
                                                      $defdomdefaults{'hostedsessions'});  
     }  
     unless ($canhost) {  
         if ($authhost eq 'no_account_on_host') {  
             my $checkloginvia = 1;  
             my ($login_host,$hostname) =   
                 &Apache::lonnet::choose_server($udom,$checkloginvia);  
             &Apache::loncommon::content_type($r,'text/html');  
             $r->send_http_header;  
             if ($login_host ne '') {  
                 my $protocol = $Apache::lonnet::protocol{$login_host};  
                 $protocol = 'http' if ($protocol ne 'https');  
                 my $alias = &Apache::lonnet::use_proxy_alias($r,$login_host);  
                 $hostname = $alias if ($alias ne '');  
                 my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';  
 #FIXME Should preserve where user was going and linkprot by setting ltoken at $login_host  
                 $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').  
                           '<h3>'.&mt('Account creation').'</h3>'.  
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.  
                           '<p>'.&mt('You will be able to create one by logging into a LON-CAPA server within the [_1] domain.',$domdesc).'</p>'.  
                           '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').  
                           &Apache::loncommon::end_page());  
             } else {  
                 $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').  
                           '<h3>'.&mt('Account creation unavailable').'</h3>'.  
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.  
                           '<p>'.&mt('Currently a LON-CAPA server is not available within the [_1] domain for you to log-in to, to create an account.',$domdesc).'</p>'.  
                           &Apache::loncommon::end_page());  
             }  
         } else {  
             &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,  
                      $form);  
             if ($form->{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {  
                 $env{'request.deeplink.login'} = $form->{'firsturl'};  
             } elsif ($form->{'firsturl'} eq '/adm/email') {  
                 if ($form->{'display'} && ($form->{'mailrecip'} eq $form->{'uname'}.':'.$form->{'udom'})) {  
                     $env{'request.display'} = $form->{'mailrecip'};  
                     $env{'request.mailrecip'} = $form->{'mailrecip'};  
                 }  
             }  
             if ($form->{'linkprot'}) {  
                 $env{'request.linkprot'} = $form->{'linkprot'};  
             } elsif ($form->{'linkkey'} ne '') {  
                 $env{'request.linkkey'} = $form->{'linkkey'};  
             }  
             my ($otherserver) = &Apache::lonnet::choose_server($udom);  
             $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);  
         }  
     }  
     return $canhost;  
 }  
   
 sub noswitch {  
     my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').  
                  '<h3>'.&mt('Session unavailable').'</h3>'.  
                  &mt('This LON-CAPA server is unable to host your session.').'<br />'.  
                  '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.  
                  &Apache::loncommon::end_page();  
     return $result;  
 }  
   
 sub loginhelpdisplay {  
     my ($authdomain) = @_;  
     my $login_help = 1;  
     my $lang = &Apache::lonlocal::current_language();  
     if ($login_help) {  
         my $dom = $authdomain;  
         if ($dom eq '') {  
             $dom = &Apache::lonnet::default_login_domain();  
         }  
         my %domconfhash = &Apache::loncommon::get_domainconf($dom);  
         my $loginhelp_url;  
         if ($lang) {  
             $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};  
             if ($loginhelp_url ne '') {  
                 return $loginhelp_url;  
             }  
         }  
         $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};  
         if ($loginhelp_url ne '') {  
             return $loginhelp_url;  
         } else {  
             return '/adm/loginproblems.html';  
         }  
     }  
     return;  
 }  
   
 sub alternate_unames_check {  
     my ($uname,$udom) = @_;  
     my %possunames;  
     my %domdefs = &Apache::lonnet::get_domain_defaults($udom);  
     if (ref($domdefs{'unamemap_rule'}) eq 'ARRAY') {  
         if (@{$domdefs{'unamemap_rule'}} > 0) {  
             %possunames =  
                 &Apache::lonnet::inst_rulecheck($udom,$uname,undef,  
                                                 'unamemap',$domdefs{'unamemap_rule'});  
         }  
     }  
     return %possunames;  
 }  
   
 1;  
 __END__  
   
   

Removed from v.1.121.2.24.2.6  
changed lines
  Added in v.1.145


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