Diff for /loncom/auth/lonauth.pm between versions 1.121.2.25 and 1.157

version 1.121.2.25, 2022/02/27 02:06:20 version 1.157, 2019/01/27 16:02:43
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 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.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;          }
             }      }
         }      $end_page = &Apache::loncommon::end_page();
     } elsif ($querystr ne '') {      $r->print(<<ENDSUCCESS);
         $retry .= (($retry=~/\?/)?'&amp;':'?').$querystr;  $start_page
     }  $windowinfo
     my $end_page = &Apache::loncommon::end_page();  $pagebody
     &Apache::loncommon::content_type($r,'text/html');  $end_page
     $r->send_http_header;  ENDSUCCESS
     my @actions =      return;
          (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));  }
     my $loginhelp = &loginhelpdisplay($udom);  
     if ($loginhelp) {  # --------------------------------------------------------------- Failed login!
         push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');  
     }  sub failed {
     #FIXME: link to helpdesk might be added here      my ($r,$message,$form) = @_;
       (undef,undef,undef,my $clientmathml,my $clientunicode) =
     $r->print(          &Apache::loncommon::decode_user_agent();
        $start_page      my $args = {};
       .'<h2>'.&mt('Sorry ...').'</h2>'      if ($clientunicode && !$clientmathml) {
       .&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />'          $args = {'browser.unicode' => 1};
       .&Apache::lonhtmlcommon::actionbox(\@actions)      }
       .$end_page  
     );      my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,$args);
  }      my $uname = &Apache::loncommon::cleanup_html($form->{'uname'});
       my $udom = &Apache::loncommon::cleanup_html($form->{'udom'});
 # ------------------------------------------------------------------ Rerouting!      if (&Apache::lonnet::domain($udom,'description') eq '') {
           undef($udom);
 sub reroute {      }
     my ($r) = @_;      my $retry = '/adm/login';
     &Apache::loncommon::content_type($r,'text/html');      if ($uname eq $form->{'uname'}) {
     $r->send_http_header;          $retry .= '?username='.$uname;
     my $msg='<b>'.&mt('Sorry ...').'</b><br />'      }
            .&mt('Please [_1]log in again[_2].');      if ($udom) {
     &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});          $retry .= (($retry=~/\?/)?'&amp;':'?').'domain='.$udom;
 }      }
       if (exists($form->{role})) {
 # ---------------------------------------------------------------- Main handler          my $role = &Apache::loncommon::cleanup_html($form->{role});
           if ($role ne '') {
 sub handler {              $retry .= (($retry=~/\?/)?'&amp;':'?').'role='.$role;
     my $r = shift;          }
     my $londocroot = $r->dir_config('lonDocRoot');      }
 # Are we re-routing?      if (exists($form->{symb})) {
     if (-e "$londocroot/lon-status/reroute.txt") {          my $symb = &Apache::loncommon::cleanup_html($form->{symb});
  &reroute($r);          if ($symb ne '') {
  return OK;              $retry .= (($retry=~/\?/)?'&amp;':'?').'symb='.$symb;
     }          }
       }
     &Apache::lonlocal::get_language_handle($r);      if (exists($form->{firsturl})) {
           my $firsturl = &Apache::loncommon::cleanup_html($form->{firsturl});
 # -------------------------------- Prevent users from attempting to login twice          if ($firsturl ne '') {
     my $handle = &Apache::lonnet::check_for_valid_session($r);              $retry .= (($retry=~/\?/)?'&amp;':'?').'firsturl='.$firsturl;
     if ($handle ne '') {              if ($firsturl =~ m{^/tiny/$match_domain/\w+$}) {
         my $lonidsdir=$r->dir_config('lonIDsDir');                  unless (exists($form->{linkprot})) {
         if ($handle=~/^publicuser\_/) {                      if (exists($form->{linkkey})) {
 # For "public user" - remove it, we apparently really want to login                          $retry .= 'linkkey='.$form->{linkkey};
             unlink($r->dir_config('lonIDsDir')."/$handle.id");                      }
         } else {                  }
 # 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;      if (exists($form->{linkprot})) {
     my $start_page =           my $ltoken = &Apache::lonnet::tmpput({linkprot => $form->{'linkprot'}},
         &Apache::loncommon::start_page('Already logged in');                                               $r->dir_config('lonHostID'));
     my $end_page =           if ($ltoken) {
         &Apache::loncommon::end_page();              $retry .= (($retry =~ /\?/) ? '&' : '?').'ltoken='.$ltoken;
             my $dest = '/adm/roles';          }
             my %form = &get_form_items($r);      }
             if ($form{'logtoken'}) {      my $end_page = &Apache::loncommon::end_page();
                 my $tmpinfo = &Apache::lonnet::reply('tmpget:'.$form{'logtoken'},      &Apache::loncommon::content_type($r,'text/html');
                                                      $form{'serverid'});      $r->send_http_header;
                 unless (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||      my @actions =
                         ($tmpinfo eq 'no_such_host')) {           (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));
                     my ($des_key,$firsturl,@rest)=split(/&/,$tmpinfo);      my $loginhelp = &loginhelpdisplay($udom);
                     $firsturl = &unescape($firsturl);      if ($loginhelp) {
                     my %info;          push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');
                     foreach my $item (@rest) {      }
                         my ($key,$value) = split(/=/,$item);      #FIXME: link to helpdesk might be added here
                         $info{$key} = &unescape($value);  
                     }      $r->print(
                     if ($firsturl ne '') {         $start_page
                         $info{'firsturl'} = $firsturl;        .'<h2>'.&mt('Sorry ...').'</h2>'
                         $dest = $firsturl;        .&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />'
                     }        .&Apache::lonhtmlcommon::actionbox(\@actions)
                 }        .$end_page
             }      );
             $r->print(   }
                $start_page  
               .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'  # ------------------------------------------------------------------ Rerouting!
               .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'  
                     ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')  sub reroute {
               .'</p>'      my ($r) = @_;
               .$end_page      &Apache::loncommon::content_type($r,'text/html');
             );      $r->send_http_header;
             return OK;      my $msg='<b>'.&mt('Sorry ...').'</b><br />'
         }             .&mt('Please [_1]log in again[_2].');
     }      &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});
   }
 # ---------------------------------------------------- No valid token, continue  
   # ---------------------------------------------------------------- Main handler
     my %form = &get_form_items($r);  
     if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {  sub handler {
  &failed($r,'Username, password and domain need to be specified.',      my $r = shift;
  \%form);      my $londocroot = $r->dir_config('lonDocRoot');
         return OK;  # Are we re-routing?
     }      if (-e "$londocroot/lon-status/reroute.txt") {
    &reroute($r);
 # split user logging in and "su"-user   return OK;
       }
     ($form{'uname'},$form{'suname'},$form{'sudom'})=split(/\:/,$form{'uname'});  
     $form{'uname'} = &LONCAPA::clean_username($form{'uname'});      &Apache::lonlocal::get_language_handle($r);
     $form{'suname'}= &LONCAPA::clean_username($form{'suname'});  
     $form{'udom'}  = &LONCAPA::clean_domain($form{'udom'});  # -------------------------------- Prevent users from attempting to login twice
     $form{'sudom'} = &LONCAPA::clean_domain($form{'sudom'});      my $handle = &Apache::lonnet::check_for_valid_session($r);
       if ($handle ne '') {
     my $role   = $r->dir_config('lonRole');          my $lonidsdir=$r->dir_config('lonIDsDir');
     my $domain = $r->dir_config('lonDefDomain');          if ($handle=~/^publicuser\_/) {
     my $prodir = $r->dir_config('lonUsersDir');  # For "public user" - remove it, we apparently really want to login
     my $contact_name = &mt('LON-CAPA helpdesk');              unlink($r->dir_config('lonIDsDir')."/$handle.id");
           } else {
 # ---------------------------------------- Get the information from login token  # Indeed, a valid token is found
               &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
     my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},      &Apache::loncommon::content_type($r,'text/html');
                                       $form{'serverid'});      $r->send_http_header;
       my $start_page =
     if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||           &Apache::loncommon::start_page('Already logged in');
         ($tmpinfo eq 'no_such_host')) {      my $end_page =
  &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);          &Apache::loncommon::end_page();
         return OK;              my $dest = '/adm/roles';
     } else {              if ($env{'form.firsturl'} ne '') {
  my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},                  $dest = $env{'form.firsturl'};
    $form{'serverid'});                  if ($env{'form.firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
         if ( $reply ne 'ok' ) {                      &Apache::lonnet::appenv({'request.deeplink.login' => $env{'form.firsturl'}});
             &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");              }
     return OK;              $r->print(
  }                 $start_page
     }                .'<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].'
     if (!&Apache::lonnet::domain($form{'udom'})) {                      ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')
         &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);                .'</p>'
         return OK;                .$end_page
     }              );
               return OK;
     my ($des_key,$firsturl,@rest)=split(/&/,$tmpinfo);          }
     $firsturl = &unescape($firsturl);      }
     foreach my $item (@rest) {  
         my ($key,$value) = split(/=/,$item);  # ---------------------------------------------------- No valid token, continue
         $form{$key} = &unescape($value);  
     }  
     my $upass = &Apache::loncommon::des_decrypt($des_key,$form{'upass0'});      my $buffer;
       if ($r->header_in('Content-length') > 0) {
 # ---------------------------------------------------------------- Authenticate   $r->read($buffer,$r->header_in('Content-length'),0);
       }
     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});      my %form;
     my ($cancreate,$statustocreate) =      foreach my $pair (split(/&/,$buffer)) {
         &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});         my ($name,$value) = split(/=/,$pair);
     my $defaultauth;         $value =~ tr/+/ /;
     if (ref($cancreate) eq 'ARRAY') {         $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
         if (grep(/^login$/,@{$cancreate})) {         $form{$name}=$value;
             $defaultauth = 1;      }
         }  
     }      if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {
     my $clientcancheckhost = 1;   &failed($r,'Username, password and domain need to be specified.',
     my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,   \%form);
                                               $form{'udom'},$defaultauth,          return OK;
                                               $clientcancheckhost);      }
       
 # --------------------------------------------------------------------- Failed?  # split user logging in and "su"-user
   
     if ($authhost eq 'no_host') {      ($form{'uname'},$form{'suname'},$form{'sudom'})=split(/\:/,$form{'uname'});
         my $pwdverify;      $form{'uname'} = &LONCAPA::clean_username($form{'uname'});
         if (&Apache::lonnet::homeserver($form{'uname'},$form{'udom'}) eq 'no_host') {      $form{'suname'}= &LONCAPA::clean_username($form{'suname'});
             my %possunames = &alternate_unames_check($form{'uname'},$form{'udom'});      $form{'udom'}  = &LONCAPA::clean_domain($form{'udom'});
             if (keys(%possunames) > 0) {      $form{'sudom'} = &LONCAPA::clean_domain($form{'sudom'});
                 foreach my $rulematch (keys(%possunames)) {  
                     my $possuname = $possunames{$rulematch};      my $role   = $r->dir_config('lonRole');
                     if (($possuname ne '') && ($possuname =~ /^$match_username$/)) {      my $domain = $r->dir_config('lonDefDomain');
                         $authhost=Apache::lonnet::authenticate($possuname,$upass,      my $prodir = $r->dir_config('lonUsersDir');
                                                                $form{'udom'},undef,      my $contact_name = &mt('LON-CAPA helpdesk');
                                                                $clientcancheckhost);  
                         if (($authhost eq 'no_host') || ($authhost eq 'no_account_on_host')) {  # ---------------------------------------- Get the information from login token
                             next;  
                         } elsif (($authhost ne '') && (&Apache::lonnet::hostname($authhost) ne '')) {      my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},
                             $pwdverify = 1;                                        $form{'serverid'});
                             &Apache::lonnet::logthis("Authenticated user: $possuname was submitted as: $form{'uname'}");  
                             $form{'uname'} = $possuname;      if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||
                             last;          ($tmpinfo eq 'no_such_host')) {
                         }   &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);
                     }          return OK;
                 }      } else {
             }   my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},
         }     $form{'serverid'});
         unless ($pwdverify) {          if ( $reply ne 'ok' ) {
             &failed($r,'Username and/or password could not be authenticated.',              &failed($r,'Session could not be opened.',\%form);
                     \%form);      &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");
             return OK;      return OK;
         }   }
     } elsif ($authhost eq 'no_account_on_host') {      }
         if ($defaultauth) {  
             my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');      if (!&Apache::lonnet::domain($form{'udom'})) {
             unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {          &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);
                 return OK;          return OK;
             }      }
             my $start_page =   
                 &Apache::loncommon::start_page('Create a user account in LON-CAPA',      my ($key,$firsturl,$rolestr,$symbstr,$iptokenstr,$linkstr)=split(/&/,$tmpinfo);
                                                '',{'no_inline_link'   => 1,});      if ($rolestr) {
             my $lonhost = $r->dir_config('lonHostID');          $rolestr = &unescape($rolestr);
             my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};      }
             my $contacts =       if ($symbstr) {
                 &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',          $symbstr= &unescape($symbstr);
                                                         $form{'udom'},$origmail);      }
             my ($contact_email) = split(',',$contacts);       if ($iptokenstr) {
             my $output =           $iptokenstr = &unescape($iptokenstr);
                 &Apache::createaccount::username_check($form{'uname'},$form{'udom'},      }
                                                        $domdesc,'',$lonhost,      if ($linkstr) {
                                                        $contact_email,$contact_name,          $linkstr = &unescape($linkstr);
                                                        undef,$statustocreate);      }
             &Apache::loncommon::content_type($r,'text/html');      if ($firsturl =~ m{^/tiny/$match_domain/\w+$}) {
             $r->send_http_header;          $form{'firsturl'} = $firsturl;
             &Apache::createaccount::print_header($r,$start_page);      }
             $r->print('<h3>'.&mt('Account creation').'</h3>'.      if ($rolestr =~ /^role=/) {
                       &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.          (undef,$form{'role'}) = split('=',$rolestr);
                       $output.&Apache::loncommon::end_page());      }
             return OK;      if ($symbstr =~ /^symb=/) {
         } else {          (undef,$form{'symb'}) = split('=',$symbstr);
             &failed($r,'Although your username and password were authenticated, you do not currently have a LON-CAPA account in this domain, and you are not permitted to create one.',\%form);      }
             return OK;      if ($iptokenstr =~ /^iptoken=/) {
         }          (undef,$form{'iptoken'}) = split('=',$iptokenstr);
     }      }
       if ($linkstr =~ /^linkprot=/) {
     if (($firsturl eq '') ||           (undef,$form{'linkprot'}) = split('=',$linkstr);
  ($firsturl=~/^\/adm\/(logout|remote)/)) {      } elsif ($linkstr =~ /^linkkey=/) {
  $firsturl='/adm/roles';          (undef,$form{'linkkey'}) = split('=',$linkstr);
     }      }
   
     my ($hosthere,%sessiondata);      my $upass = $ENV{HTTPS} ? $form{'upass0'}
     if ($form{'iptoken'}) {          : &Apache::loncommon::des_decrypt($key,$form{'upass0'});
         %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});  
         my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});  # ---------------------------------------------------------------- Authenticate
         if (($sessiondata{'domain'} eq $form{'udom'}) &&  
             ($sessiondata{'username'} eq $form{'uname'})) {      my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});
             $hosthere = 1;      my ($cancreate,$statustocreate) =
         }          &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});
     }      my $defaultauth;
       if (ref($cancreate) eq 'ARRAY') {
 # --------------------------------- Are we attempting to login as somebody else?          if (grep(/^login$/,@{$cancreate})) {
     if ($form{'suname'}) {              $defaultauth = 1;
         my ($suname,$sudom,$sudomref);          }
         $suname = $form{'suname'};      }
         $sudom = $form{'udom'};      my $clientcancheckhost = 1;
         if ($form{'sudom'}) {      my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,
             unless ($sudom eq $form{'sudom'}) {                                                $form{'udom'},$defaultauth,
                 if (&Apache::lonnet::domain($form{'sudom'})) {                                                $clientcancheckhost);
                     $sudomref = [$form{'sudom'}];  
                     $sudom = $form{'sudom'};  # --------------------------------------------------------------------- Failed?
                 }  
             }      if ($authhost eq 'no_host') {
         }   &failed($r,'Username and/or password could not be authenticated.',
 # ------------ see if the original user has enough privileges to pull this stunt   \%form);
  if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {          return OK;
 # ---------------------------------------------------- see if the su-user exists      } elsif ($authhost eq 'no_account_on_host') {
     unless (&Apache::lonnet::homeserver($suname,$sudom) eq 'no_host') {          if ($defaultauth) {
 # ------------------------------ see if the su-user is not too highly privileged              my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');
  if (&Apache::lonnet::privileged($suname,$sudom)) {              unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {
                     &Apache::lonnet::logthis('Attempted switch user to privileged user');                  return OK;
                 } else {              }
                     my $noprivswitch;              my $start_page =
 #                  &Apache::loncommon::start_page('Create a user account in LON-CAPA');
 # su-user's home server and user's home server must have one of:              my $lonhost = $r->dir_config('lonHostID');
 # (a) same domain              my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
 # (b) same primary library server for the two domains              my $contacts =
 # (c) same "internet domain" for primary library server(s) for home servers' domains                  &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
 #                                                          $form{'udom'},$origmail);
                     my $suprim = &Apache::lonnet::domain($sudom,'primary');              my ($contact_email) = split(',',$contacts);
                     my $suintdom = &Apache::lonnet::internet_dom($suprim);              my $output =
                     unless ($sudom eq $form{'udom'}) {                  &Apache::createaccount::username_check($form{'uname'},$form{'udom'},
                         my $uprim = &Apache::lonnet::domain($form{'udom'},'primary');                                                         $domdesc,'',$lonhost,
                         my $uintdom = &Apache::lonnet::internet_dom($uprim);                                                         $contact_email,$contact_name,
                         unless ($suprim eq $uprim) {                                                         undef,$statustocreate);
                             unless ($suintdom eq $uintdom) {              &Apache::loncommon::content_type($r,'text/html');
                                 &Apache::lonnet::logthis('Attempted switch user '              $r->send_http_header;
                                    .'to user with different "internet domain".');              &Apache::createaccount::print_header($r,$start_page);
                                 $noprivswitch = 1;              $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 />'.
                         }                        $output.&Apache::loncommon::end_page());
                     }              return OK;
           } else {
                     unless ($noprivswitch) {              &failed($r,'Although your username and password were authenticated, you do not currently have a LON-CAPA account in this domain, and you are not permitted to create one.',\%form);
 #              return OK;
 # server where log-in occurs must have same "internet domain" as su-user's home          }
 # server      }
 #  
                         my $lonhost = $r->dir_config('lonHostID');      if (($firsturl eq '') ||
                         my $hostintdom = &Apache::lonnet::internet_dom($lonhost);   ($firsturl=~/^\/adm\/(logout|remote)/)) {
                         if ($hostintdom ne $suintdom) {   $firsturl='/adm/roles';
                             &Apache::lonnet::logthis('Attempted switch user on a '      }
                                 .'server with a different "internet domain".');  
                         } else {      my $hosthere;
       if ($form{'iptoken'}) {
 # -------------------------------------------------------- actually switch users          my %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});
           my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});
     &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.          if (($sessiondata{'domain'} eq $form{'udom'}) &&
  $form{'udom'}.' logging in as '.$suname.':'.$sudom);              ($sessiondata{'username'} eq $form{'uname'})) {
     $form{'uname'}=$suname;              $hosthere = 1;
                             if ($form{'udom'} ne $sudom) {          }
                                 $form{'udom'}=$sudom;      }
                             }  
                         }  # --------------------------------- Are we attempting to login as somebody else?
                     }      if ($form{'suname'}) {
  }          my ($suname,$sudom,$sudomref);
     }          $suname = $form{'suname'};
  } else {          $sudom = $form{'udom'};
     &Apache::lonnet::logthis('Non-privileged user attempting switch user');          if ($form{'sudom'}) {
  }              unless ($sudom eq $form{'sudom'}) {
     }                  if (&Apache::lonnet::domain($form{'sudom'})) {
                       $sudomref = [$form{'sudom'}];
     my ($is_balancer,$otherserver);                      $sudom = $form{'sudom'};
                   }
     unless ($hosthere) {              }
         ($is_balancer,$otherserver) =          }
             &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');  # ------------ see if the original user has enough privileges to pull this stunt
         if ($is_balancer) {   if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {
             # Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer)  # ---------------------------------------------------- see if the su-user exists
             my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r);      unless (&Apache::lonnet::homeserver($suname,$sudom) eq 'no_host') {
             if (($found_server) && ($balancer_cookie =~ /^\Q$env{'user.domain'}\E_\Q$env{'user.name'}\E_/)) {  # ------------------------------ see if the su-user is not too highly privileged
                 $otherserver = $found_server;   if (&Apache::lonnet::privileged($suname,$sudom)) {
             }                      &Apache::lonnet::logthis('Attempted switch user to privileged user');
             if ($otherserver eq '') {                  } else {
                 my $lowest_load;                      my $noprivswitch;
                 ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});  #
                 if ($lowest_load > 100) {  # su-user's home server and user's home server must have one of:
                     $otherserver = &Apache::lonnet::spareserver($r,$lowest_load,$lowest_load,1,$form{'udom'});  # (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 ($otherserver ne '') {  #
                 my @hosts = &Apache::lonnet::current_machine_ids();                      my $suprim = &Apache::lonnet::domain($sudom,'primary');
                 if (grep(/^\Q$otherserver\E$/,@hosts)) {                      my $suintdom = &Apache::lonnet::internet_dom($suprim);
                     $hosthere = $otherserver;                      unless ($sudom eq $form{'udom'}) {
                 }                          my $uprim = &Apache::lonnet::domain($form{'udom'},'primary');
             }                          my $uintdom = &Apache::lonnet::internet_dom($uprim);
         }                          unless ($suprim eq $uprim) {
     }                              unless ($suintdom eq $uintdom) {
                                   &Apache::lonnet::logthis('Attempted switch user '
     if (($is_balancer) && (!$hosthere)) {                                     .'to user with different "internet domain".');                        
         if ($otherserver) {                                  $noprivswitch = 1;
             &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,                              }
                      \%form);                          }
             my $switchto = '/adm/switchserver?otherserver='.$otherserver;                      }
             if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {  
                 $switchto .= '&origurl='.$firsturl;                      unless ($noprivswitch) {
             }  #
             if ($form{'role'}) {  # server where log-in occurs must have same "internet domain" as su-user's home
                 $switchto .= '&role='.$form{'role'};  # server
             }  #
             if ($form{'symb'}) {                          my $lonhost = $r->dir_config('lonHostID');
                 $switchto .= '&symb='.$form{'symb'};                          my $hostintdom = &Apache::lonnet::internet_dom($lonhost);
             }                          if ($hostintdom ne $suintdom) {
             $r->internal_redirect($switchto);                              &Apache::lonnet::logthis('Attempted switch user on a '
         } else {                                  .'server with a different "internet domain".');
             &Apache::loncommon::content_type($r,'text/html');                          } else {
             $r->send_http_header;  
             $r->print(&noswitch());  # -------------------------------------------------------- actually switch users
         }  
         return OK;              &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.
     } else {                                $form{'udom'}.' logging in as '.$suname.':'.$sudom);
         if (!&check_can_host($r,\%form,$authhost)) {              $form{'uname'}=$suname;
             my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});                              if ($form{'udom'} ne $sudom) {
             if ($otherserver) {                                  $form{'udom'}=$sudom;
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,                              }
                          \%form);                          }
                 my $switchto = '/adm/switchserver?otherserver='.$otherserver;                      }
                 if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {   }
                     $switchto .= '&origurl='.$firsturl;      }
                 }   } else {
                 if ($form{'role'}) {      &Apache::lonnet::logthis('Non-privileged user attempting switch user');
                     $switchto .= '&role='.$form{'role'};   }
                 }      }
                 if ($form{'symb'}) {  
                     $switchto .= '&symb='.$form{'symb'};      my ($is_balancer,$otherserver);
                 }  
                 $r->internal_redirect($switchto);      unless ($hosthere) {
             } else {          ($is_balancer,$otherserver) =
                 &Apache::loncommon::content_type($r,'text/html');              &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');
                 $r->send_http_header;          if ($is_balancer) {
                 $r->print(&noswitch());              if ($otherserver eq '') {
             }                  my $lowest_load;
             return OK;                  ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});
         }                  if ($lowest_load > 100) {
                       $otherserver = &Apache::lonnet::spareserver($lowest_load,$lowest_load,1,$form{'udom'});
 # ------------------------------------------------------- Do the load balancing                  }
               }
 # ---------------------------------------------------------- Determine own load              if ($otherserver ne '') {
         my $loadlim = $r->dir_config('lonLoadLim');                  my @hosts = &Apache::lonnet::current_machine_ids();
         my $loadavg;                  if (grep(/^\Q$otherserver\E$/,@hosts)) {
         {                      $hosthere = $otherserver;
             my $loadfile=Apache::File->new('/proc/loadavg');                  }
             $loadavg=<$loadfile>;              }
         }          }
         $loadavg =~ s/\s.*//g;      }
         my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);  
         my $userloadpercent=&Apache::lonnet::userload();      if (($is_balancer) && (!$hosthere)) {
           if ($otherserver) {
 # ---------------------------------------------------------- Are we overloaded?              &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
         if ((($userloadpercent>100.0)||($loadpercent>100.0))) {                       \%form);
             my $unloaded=Apache::lonnet::spareserver($r,$loadpercent,$userloadpercent,1,$form{'udom'});              my $switchto = '/adm/switchserver?otherserver='.$otherserver;
             if (!$unloaded) {              if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
                 ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});                  $switchto .= '&origurl='.$firsturl; #should escape
             }              }
             if ($unloaded) {              if ($form{'role'}) {
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',                  $switchto .= '&role='.$form{'role'};
                          undef,\%form);              }
                 $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);              if ($form{'symb'}) {
                 return OK;                  $switchto .= '&symb='.$form{'symb'};
             }              }
         }              if ($form{'linkprot'}) {
         if (($is_balancer) && ($hosthere)) {                  $env{'request.linkprot'} = $form{'linkprot'};
             $form{'noloadbalance'} = $hosthere;              } elsif ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
         }                  if ($form{'linkkey'}) {
         my $extra_env;                      $env{'request.linkkey'} = $form{'linkkey'};
         if (($hosthere) && ($sessiondata{'sessionserver'} ne '')) {                  }
             if ($sessiondata{'origurl'} ne '') {                  $env{'request.deeplink.login'} = $form{'firsturl'};
                 $firsturl = $sessiondata{'origurl'};              }
                 $form{'firsturl'} = $sessiondata{'origurl'};              $r->internal_redirect($switchto);
                 my @names = ('role','symb','linkprot','linkkey');          } else {
                 foreach my $item (@names) {              $r->print(&noswitch());
                     if ($sessiondata{$item} ne '') {          }
                         $form{$item} = $sessiondata{$item};          return OK;
                     }      } else {
                 }          if (!&check_can_host($r,\%form,$authhost)) {
             }              my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});
         }              if ($otherserver) {
         &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
                  \%form);                           \%form);
         return OK;                  my $switchto = '/adm/switchserver?otherserver='.$otherserver;
     }                  if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
 }                      $switchto .= '&origurl='.$firsturl; #should escape
                   }
 sub get_form_items {                  if ($form{'role'}) {
     my ($r) = @_;                      $switchto .= '&role='.$form{'role'};
     my $buffer;                  }
     if ($r->header_in('Content-length') > 0) {                  if ($form{'symb'}) {
         $r->read($buffer,$r->header_in('Content-length'),0);                      $switchto .= '&symb='.$form{'symb'};
     }                  }
     my %form;                  if ($form{'linkprot'}) {
     foreach my $pair (split(/&/,$buffer)) {                      $env{'request.linkprot'} = $form{'linkprot'};
        my ($name,$value) = split(/=/,$pair);                  } elsif ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
        $value =~ tr/+/ /;                      if ($form{'linkkey'}) {
        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;                          $env{'request.linkkey'} = $form{'linkkey'};
        $form{$name}=$value;                      }
     }                      $env{'request.deeplink.login'} = $form{'firsturl'};
     return %form;  
 }                  }
                   $r->internal_redirect($switchto);
 sub set_retry_token {              } else {
     my ($form,$lonhost,$querystr) = @_;                  $r->print(&noswitch());
     if (ref($form) eq 'HASH') {              }
         my ($firsturl,$token,$extras,@names);              return OK;
         @names = ('role','symb','iptoken');          }
         foreach my $name (@names) {  
             if ($form->{$name} ne '') {  # ------------------------------------------------------- Do the load balancing
                 $extras .= '&'.$name.'='.&escape($form->{$name});  
                 last if ($name eq 'linkprot');  # ---------------------------------------------------------- Determine own load
             }          my $loadlim = $r->dir_config('lonLoadLim');
         }          my $loadavg;
         my $firsturl = $form->{'firsturl'};          {
         if (($firsturl ne '') || ($extras ne '')) {              my $loadfile=Apache::File->new('/proc/loadavg');
             $extras .= ':retry';              $loadavg=<$loadfile>;
             $token = &Apache::lonnet::reply('tmpput:'.&escape($firsturl).          }
                                             $extras,$lonhost);          $loadavg =~ s/\s.*//g;
             if (($token eq 'con_lost') || ($token eq 'no_such_host')) {          my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
                 return 'fail';          my $userloadpercent=&Apache::lonnet::userload();
             } else {  
                 if (ref($querystr)) {  # ---------------------------------------------------------- Are we overloaded?
                     $$querystr = 'retry='.$token;          if ((($userloadpercent>100.0)||($loadpercent>100.0))) {
                 }              my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'});
                 return 'ok';              if (!$unloaded) {
             }                  ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});
         }              }
     }              if ($unloaded) {
     return;                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',
 }                           undef,\%form);
                   if ($form{'linkprot'}) {
 sub check_can_host {                      $env{'request.linkprot'} = $form{'linkprot'};
     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;                          $env{'request.linkkey'} = $form{'linkkey'};
     my $lonhost = $r->dir_config('lonHostID');                      }
     my $udom = $form->{'udom'};                      $env{'request.deeplink.login'} = $form{'firsturl'};
     my @intdoms;                  }
     my $internet_names = &Apache::lonnet::get_internet_names($lonhost);                  $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);
     if (ref($internet_names) eq 'ARRAY') {                  return OK;
         @intdoms = @{$internet_names};              }
     }          }
     my $uprimary_id = &Apache::lonnet::domain($udom,'primary');          if (($is_balancer) && ($hosthere)) {
     my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);              $form{'noloadbalance'} = $hosthere;
     unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {          }
         my $machine_dom = &Apache::lonnet::host_domain($lonhost);          my $extra_env;
         my $hostname = &Apache::lonnet::hostname($lonhost);          if ($form{'linkprot'}) {
         my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);              my ($linkprotector,$uri) = split(/:/,$form{'linkprot'},2);
         my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);              if ($linkprotector) {
         my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);                  $extra_env = {'user.linkprotector' => $linkprotector,
         my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);                                'user.linkproturi'   => $uri,};
         my $loncaparev;              }
         if ($authhost eq 'no_account_on_host') {          } elsif ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);              if ($form{'linkkey'}) {
         } else {                  $extra_env = {'user.deeplinkkey' => $form{'linkkey'},
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);                                'user.keyedlinkuri' => $form{'firsturl'},
         }                                'request.deeplink.login' => $form{'firsturl'}};
         $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,              } else {
                                                      $udomdefaults{'remotesessions'},                  $extra_env = {'request.deeplink.login' => $form{'firsturl'}};
                                                      $defdomdefaults{'hostedsessions'});              }
     }          }
     unless ($canhost) {          &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,$extra_env,
         if ($authhost eq 'no_account_on_host') {                   \%form);
             my $checkloginvia = 1;          return OK;
             my ($login_host,$hostname) =       }
                 &Apache::lonnet::choose_server($udom,$checkloginvia);  }
             &Apache::loncommon::content_type($r,'text/html');  
             $r->send_http_header;  sub check_can_host {
             if ($login_host ne '') {      my ($r,$form,$authhost,$domdesc) = @_;
                 my $protocol = $Apache::lonnet::protocol{$login_host};      return unless (ref($form) eq 'HASH');
                 $protocol = 'http' if ($protocol ne 'https');      my $canhost = 1;
                 my $alias = &Apache::lonnet::use_proxy_alias($r,$login_host);      my $lonhost = $r->dir_config('lonHostID');
                 $hostname = $alias if ($alias ne '');      my $udom = $form->{'udom'};
                 my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';      my @intdoms;
                 $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').      my $internet_names = &Apache::lonnet::get_internet_names($lonhost);
                           '<h3>'.&mt('Account creation').'</h3>'.      if (ref($internet_names) eq 'ARRAY') {
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.          @intdoms = @{$internet_names};
                           '<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>').      my $uprimary_id = &Apache::lonnet::domain($udom,'primary');
                           &Apache::loncommon::end_page());      my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
             } else {      unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {
                 $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').          my $machine_dom = &Apache::lonnet::host_domain($lonhost);
                           '<h3>'.&mt('Account creation unavailable').'</h3>'.          my $hostname = &Apache::lonnet::hostname($lonhost);
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.          my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);
                           '<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 $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);
                           &Apache::loncommon::end_page());          my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);
             }          my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);
         } else {          my $loncaparev;
             &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,          if ($authhost eq 'no_account_on_host') {
                      $form);              $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);
             my ($otherserver) = &Apache::lonnet::choose_server($udom);          } else {
             $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);              $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);
         }          }
     }          $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,
     return $canhost;                                                       $udomdefaults{'remotesessions'},
 }                                                       $defdomdefaults{'hostedsessions'});
       }
 sub noswitch {      unless ($canhost) {
     my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').          if ($authhost eq 'no_account_on_host') {
                  '<h3>'.&mt('Session unavailable').'</h3>'.              my $checkloginvia = 1;
                  &mt('This LON-CAPA server is unable to host your session.').'<br />'.              my ($login_host,$hostname) =
                  '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.                  &Apache::lonnet::choose_server($udom,$checkloginvia);
                  &Apache::loncommon::end_page();              &Apache::loncommon::content_type($r,'text/html');
     return $result;              $r->send_http_header;
 }              if ($login_host ne '') {
                   my $protocol = $Apache::lonnet::protocol{$login_host};
 sub loginhelpdisplay {                  $protocol = 'http' if ($protocol ne 'https');
     my ($authdomain) = @_;                  my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';
     my $login_help = 1;  #FIXME Should preserve where user was going and linkprot by setting ltoken at $login_host
     my $lang = &Apache::lonlocal::current_language();                  $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').
     if ($login_help) {                            '<h3>'.&mt('Account creation').'</h3>'.
         my $dom = $authdomain;                            &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
         if ($dom eq '') {                            '<p>'.&mt('You will be able to create one by logging into a LON-CAPA server within the [_1] domain.',$domdesc).'</p>'.
             $dom = &Apache::lonnet::default_login_domain();                            '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').
         }                            &Apache::loncommon::end_page());
         my %domconfhash = &Apache::loncommon::get_domainconf($dom);              } else {
         my $loginhelp_url;                  $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').
         if ($lang) {                            '<h3>'.&mt('Account creation unavailable').'</h3>'.
             $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};                            &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
             if ($loginhelp_url ne '') {                            '<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>'.
                 return $loginhelp_url;                            &Apache::loncommon::end_page());
             }              }
         }          } else {
         $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};              &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,
         if ($loginhelp_url ne '') {                       $form);
             return $loginhelp_url;              if ($form->{'linkprot'}) {
         } else {                  $env{'request.linkprot'} = $form->{'linkprot'};
             return '/adm/loginproblems.html';              } elsif ($form->{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
         }                  if ($form->{'linkkey'}) {
     }                      $env{'request.linkkey'} = $form->{'linkkey'};
     return;                  }
 }                  $env{'request.deeplink.login'} = $form->{'firsturl'};
               }
 sub alternate_unames_check {              my ($otherserver) = &Apache::lonnet::choose_server($udom);
     my ($uname,$udom) = @_;              $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);
     my %possunames;          }
     my %domdefs = &Apache::lonnet::get_domain_defaults($udom);      }
     if (ref($domdefs{'unamemap_rule'}) eq 'ARRAY') {      return $canhost;
         if (@{$domdefs{'unamemap_rule'}} > 0) {  }
             %possunames =  
                 &Apache::lonnet::inst_rulecheck($udom,$uname,undef,  sub noswitch {
                                                 'unamemap',$domdefs{'unamemap_rule'});      my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').
         }                   '<h3>'.&mt('Session unavailable').'</h3>'.
     }                   &mt('This LON-CAPA server is unable to host your session.').'<br />'.
     return %possunames;                   '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.
 }                   &Apache::loncommon::end_page();
       return $result;
 1;  }
 __END__  
   sub loginhelpdisplay {
       my ($authdomain) = @_;
       my $login_help = 1;
       my $lang = &Apache::lonlocal::current_language();
       if ($login_help) {
           my $dom = $authdomain;
           if ($dom eq '') {
               $dom = &Apache::lonnet::default_login_domain();
           }
           my %domconfhash = &Apache::loncommon::get_domainconf($dom);
           my $loginhelp_url;
           if ($lang) {
               $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};
               if ($loginhelp_url ne '') {
                   return $loginhelp_url;
               }
           }
           $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};
           if ($loginhelp_url ne '') {
               return $loginhelp_url;
           } else {
               return '/adm/loginproblems.html';
           }
       }
       return;
   }
   
   1;
   __END__
   
   

Removed from v.1.121.2.25  
changed lines
  Added in v.1.157


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