Diff for /loncom/auth/lonauth.pm between versions 1.121.2.22 and 1.153

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

Removed from v.1.121.2.22  
changed lines
  Added in v.1.153


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