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

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

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


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