Diff for /loncom/auth/lonauth.pm between versions 1.121.2.27 and 1.158

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

Removed from v.1.121.2.27  
changed lines
  Added in v.1.158


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