Diff for /loncom/auth/lonauth.pm between versions 1.121.2.21 and 1.152

version 1.121.2.21, 2021/01/04 03:48:29 version 1.152, 2018/05/08 15:44:11
Line 1 Line 1
 # The LearningOnline Network  # The LearningOnline Network
 # User Authentication Module  # User Authentication Module
 #  #
 # $Id$  # $Id$
 #  #
 # Copyright Michigan State University Board of Trustees  # Copyright Michigan State University Board of Trustees
 #  #
 # This file is part of the LearningOnline Network with CAPA (LON-CAPA).  # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
 #  #
 # LON-CAPA is free software; you can redistribute it and/or modify  # LON-CAPA is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by  # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or  # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.  # (at your option) any later version.
 #  #
 # LON-CAPA is distributed in the hope that it will be useful,  # LON-CAPA is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of  # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.  # GNU General Public License for more details.
 #  #
 # You should have received a copy of the GNU General Public License  # You should have received a copy of the GNU General Public License
 # along with LON-CAPA; if not, write to the Free Software  # along with LON-CAPA; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 #  #
 # /home/httpd/html/adm/gpl.txt  # /home/httpd/html/adm/gpl.txt
 #  #
 # http://www.lon-capa.org/  # http://www.lon-capa.org/
 #  #
   
 package Apache::lonauth;  package Apache::lonauth;
   
 use strict;  use strict;
 use LONCAPA;  use LONCAPA qw(:DEFAULT :match);
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common);
 use CGI qw(:standard);  use CGI qw(:standard);
 use Apache::loncommon();  use Apache::loncommon();
 use Apache::lonnet;  use Apache::lonnet;
 use Apache::lonmenu();  use Apache::lonmenu();
 use Apache::createaccount;  use Apache::createaccount;
 use Fcntl qw(:flock);  use Apache::ltiauth;
 use Apache::lonlocal;  use Fcntl qw(:flock);
 use Apache::File();  use Apache::lonlocal;
 use HTML::Entities;  use Apache::File();
 use Digest::MD5;  use HTML::Entities;
    use Digest::MD5;
 # ------------------------------------------------------------ Successful login   
 sub success {  # ------------------------------------------------------------ Successful login
     my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,  sub success {
  $form,$cid) = @_;      my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,
    $form,$skipcritical) = @_;
 # ------------------------------------------------------------ Get cookie ready  
     my $cookie =  # ------------------------------------------------------------ Get cookie ready
  &Apache::loncommon::init_user_environment($r, $username, $domain,      my $cookie =
   $authhost, $form,   &Apache::loncommon::init_user_environment($r, $username, $domain,
   {'extra_env' => $extra_env,});    $authhost, $form,
     {'extra_env' => $extra_env,});
     my $public=($username eq 'public' && $domain eq 'public');  
       my $public=($username eq 'public' && $domain eq 'public');
     if ($public or $lowerurl eq 'noredirect') { return $cookie; }  
       if ($public or $lowerurl eq 'noredirect') { return $cookie; }
 # -------------------------------------------------------------------- Log this  
   # -------------------------------------------------------------------- Log this
     my $ip = &Apache::lonnet::get_requestor_ip();  
     &Apache::lonnet::log($domain,$username,$authhost,      &Apache::lonnet::log($domain,$username,$authhost,
                          "Login $ip");                           "Login $ENV{'REMOTE_ADDR'}");
   
 # ------------------------------------------------- Check for critical messages  # ------------------------------------------------- Check for critical messages
   
     my @what=&Apache::lonnet::dump('critical',$domain,$username);      unless ($skipcritical) {
     if ($what[0]) {          my @what=&Apache::lonnet::dump('critical',$domain,$username);
  if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {          if ($what[0]) {
     $lowerurl='/adm/email?critical=display';      if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {
         }          $lowerurl='/adm/email?critical=display';
     }              }
           }
 # ------------------------------------------------------------ Get cookies ready      }
     my ($securecookie,$defaultcookie);  
     my $ssl = $r->subprocess_env('https');  # ----------------------------------------------------------- Get cookies ready
     if ($ssl) {      my ($securecookie,$defaultcookie);
         $securecookie="lonSID=$cookie; path=/; HttpOnly; secure";      if ($ENV{'SERVER_PORT'} == 443) {
         my $lonidsdir=$r->dir_config('lonIDsDir');          $securecookie="lonID=$cookie; path=/; HttpOnly; secure";
         if (($lonidsdir) && (-e "$lonidsdir/$cookie.id")) {          my $lonidsdir=$r->dir_config('lonIDsDir');
             my $linkname=substr(Digest::MD5::md5_hex(Digest::MD5::md5_hex(time(). {}. rand(). $$)), 0, 32).'_linked';          if (($lonidsdir) && (-e "$lonidsdir/$cookie.id")) {
             if (-e "$lonidsdir/$linkname.id") {              my $linkname=substr(Digest::MD5::md5_hex(Digest::MD5::md5_hex(time(). {}. rand(). $$)), 0, 32).'_linked';
                 unlink("$lonidsdir/$linkname.id");              if (-e "$lonidsdir/$linkname.id") {
             }                  unlink("$lonidsdir/$linkname.id");
             my $made_symlink = eval { symlink("$lonidsdir/$cookie.id",              }
                                               "$lonidsdir/$linkname.id"); 1 };              my $made_symlink = eval { symlink("$lonidsdir/$cookie.id",
             if ($made_symlink) {                                                "$lonidsdir/$linkname.id"); 1 };
                 $defaultcookie = "lonLinkID=$linkname; path=/; HttpOnly;";              if ($made_symlink) {
                 &Apache::lonnet::appenv({'user.linkedenv' => $linkname});                  $defaultcookie = "lonLinkID=$linkname; path=/; HttpOnly;";
             }                  &Apache::lonnet::appenv({'user.linkedenv' => "$lonidsdir/$linkname.id"});
         }              }
     } else {          }
         $defaultcookie = "lonID=$cookie; path=/; HttpOnly;";      } else {
     }          $defaultcookie = "lonID=$cookie; path=/; HttpOnly;";
 # -------------------------------------------------------- Menu script and info      }
     my $destination = $lowerurl;  # -------------------------------------------------------- Menu script and info
       my $destination = $lowerurl;
     if (defined($form->{role})) {      if ($env{'request.lti.login'}) {
         my $envkey = 'user.role.'.$form->{role};          if (($env{'request.lti.reqcrs'}) && ($env{'request.lti.reqrole'} eq 'cc')) {
         my $now=time;              &Apache::loncommon::content_type($r,'text/html');
         my $then=$env{'user.login.time'};              if ($securecookie) {
         my $refresh=$env{'user.refresh.time'};                  $r->headers_out->add('Set-cookie' => $securecookie);
         my $update=$env{'user.update.time'};              }
         if (!$update) {              if ($defaultcookie) {
             $update = $then;                  $r->headers_out->add('Set-cookie' => $defaultcookie);
         }              }
         if (exists($env{$envkey})) {              $r->send_http_header;
             my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus);              if (ref($form) eq 'HASH') {
             &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,                  $form->{'lti.reqcrs'} = $env{'request.lti.reqcrs'};
                                          \$trolecode,\$tstatus,\$tstart,\$tend);                  $form->{'lti.reqrole'} = $env{'request.lti.reqrole'};
             if ($tstatus eq 'is') {                  $form->{'lti.sourcecrs'} = $env{'request.lti.sourcecrs'};
                 $destination  .= ($destination =~ /\?/) ? '&' : '?';              }
                 my $newrole = &HTML::Entities::encode($form->{role},'"<>&');              &Apache::ltiauth::lti_reqcrs($r,$domain,$form,$username,$domain);
                 $destination .= 'selectrole=1&'.$newrole.'=1';              return;
             }          }
         }          if ($env{'request.lti.selfenrollrole'}) {
     }              if (&Apache::ltiauth::lti_enroll($username,$domain,
     if (defined($form->{symb})) {                                               $env{'request.lti.selfenrollrole'}) eq 'ok') {
         my $destsymb = $form->{symb};                  $form->{'role'} = $env{'request.lti.selfenrollrole'};
         my $encrypted;                  &Apache::lonnet::delenv('request.lti.selfenrollrole');
         if ($destsymb =~ m{^/enc/}) {              } else {
             $encrypted = 1;                  &Apache::ltiauth::invalid_request($r,24);
             if ($cid) {              }
                 $destsymb = &Apache::lonenc::unencrypted($destsymb,$cid);          }
             }      }
         }      if (defined($form->{role})) {
         $destination  .= ($destination =~ /\?/) ? '&' : '?';          my $envkey = 'user.role.'.$form->{role};
         if ($destsymb =~ /___/) {          my $now=time;
             my ($map,$resid,$desturl)=split(/___/,$destsymb);          my $then=$env{'user.login.time'};
             $desturl = &Apache::lonnet::clutter($desturl);          my $refresh=$env{'user.refresh.time'};
             if ($encrypted) {          my $update=$env{'user.update.time'};
                 $desturl = &Apache::lonenc::encrypted($desturl,1,$cid);          if (!$update) {
                 $destsymb = $form->{symb};              $update = $then;
             }          }
             $desturl = &HTML::Entities::encode($desturl,'"<>&');          if (exists($env{$envkey})) {
             $destsymb = &HTML::Entities::encode($destsymb,'"<>&');              my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus);
             $destination .= 'destinationurl='.$desturl.              &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,
                             '&destsymb='.$destsymb;                                           \$trolecode,\$tstatus,\$tstart,\$tend);
         } elsif (!$encrypted) {              if ($tstatus eq 'is') {
             $destsymb = &HTML::Entities::encode($destsymb,'"<>&');                  $destination  .= ($destination =~ /\?/) ? '&' : '?';
             $destination .= 'destinationurl='.$destsymb;                  my $newrole = &HTML::Entities::encode($form->{role},'"<>&');
         }                  $destination .= 'selectrole=1&'.$newrole.'=1';
     }              }
     if ($destination =~ m{^/adm/roles}) {          }
         $destination  .= ($destination =~ /\?/) ? '&' : '?';      }
         $destination .= 'source=login';      if (defined($form->{symb})) {
     }          my $destsymb = $form->{symb};
           $destination  .= ($destination =~ /\?/) ? '&' : '?';
     my $windowinfo=&Apache::lonmenu::open($env{'browser.os'});          if ($destsymb =~ /___/) {
     my $startupremote=&Apache::lonmenu::startupremote($destination);              # FIXME Need to deal with encrypted symbs and urls as needed.
     my $remoteinfo=&Apache::lonmenu::load_remote_msg($lowerurl);              my ($map,$resid,$desturl)=split(/___/,$destsymb);
     my $setflags=&Apache::lonmenu::setflags();              $desturl = &Apache::lonnet::clutter($desturl);
     my $maincall=&Apache::lonmenu::maincall();              $desturl = &HTML::Entities::encode($desturl,'"<>&');
     my $brcrum = [{'href' => '',              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
                    'text' => 'Successful Login'},];              $destination .= 'destinationurl='.$desturl.
     my $start_page=&Apache::loncommon::start_page('Successful Login',                              '&destsymb='.$destsymb;
                                                   $startupremote,          } else {
                                                   {'no_inline_link' => 1,              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
                                                    'bread_crumbs' => $brcrum,});              $destination .= 'destinationurl='.$destsymb;
     my $end_page  =&Apache::loncommon::end_page();          }
       }
     my $continuelink;      if ($destination =~ m{^/adm/roles}) {
     if ($env{'environment.remote'} eq 'off') {          $destination  .= ($destination =~ /\?/) ? '&' : '?';
  $continuelink='<a href="'.$destination.'">'.&mt('Continue').'</a>';          $destination .= 'source=login';
     }      }
 # ------------------------------------------------- Output for successful login  
       my $windowname = 'loncapaclient';
     &Apache::loncommon::content_type($r,'text/html');      if ($env{'request.lti.login'}) {
     if ($securecookie) {          $windowname .= 'lti';
         $r->headers_out->add('Set-cookie' => $securecookie);      }
     }      my $windowinfo = Apache::lonhtmlcommon::scripttag('self.name="'.$windowname.'";');
     if ($defaultcookie) {      my $header = '<meta HTTP-EQUIV="Refresh" CONTENT="0; url='.$destination.'" />';
         $r->headers_out->add('Set-cookie' => $defaultcookie);      my $brcrum = [{'href' => '',
     }                     'text' => 'Successful Login'},];
     $r->send_http_header;      my $args = {'bread_crumbs' => $brcrum,};
       unless ((defined($form->{role})) || (defined($form->{symb}))) {
     my %lt=&Apache::lonlocal::texthash(          my $update=$env{'user.update.time'};
        'wel' => 'Welcome',          if (!$update) {
        'pro' => 'Login problems?',              $update = $env{'user.login.time'};
        );          }
     my $loginhelp = &loginhelpdisplay($domain);          my %roles_in_env;
     if ($loginhelp) {          my $showcount = &Apache::lonroles::roles_from_env(\%roles_in_env,$update);
         $loginhelp = '<p><a href="'.$loginhelp.'">'.$lt{'pro'}.'</a></p>';          if ($showcount == 1) {
     }              foreach my $rolecode (keys(%roles_in_env)) {
                   my ($cid) = ($rolecode =~ m{^\Quser.role.st./\E($match_domain/$match_courseid)(?:/|$)});
     my $welcome = &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');                   if ($cid) {
     $r->print(<<ENDSUCCESS);                      my %coursedescription =
 $start_page                          &Apache::lonnet::coursedescription($cid,{'one_time' => '1'});
 $setflags                      if ($coursedescription{'type'} eq 'Placement') {
 $windowinfo                          $args->{'crstype'} = 'Placement';
 <h1>$lt{'wel'}</h1>                      }
 $welcome                      last;
 $loginhelp                  }
 $remoteinfo              }
 $maincall          }
 $continuelink      }
 $end_page  
 ENDSUCCESS  # ------------------------------------------------- Output for successful login
     return;  
 }      &Apache::loncommon::content_type($r,'text/html');
       if ($securecookie) {
 # --------------------------------------------------------------- Failed login!          $r->headers_out->add('Set-cookie' => $securecookie);
       }
 sub failed {      if ($defaultcookie) {
     my ($r,$message,$form) = @_;          $r->headers_out->add('Set-cookie' => $defaultcookie);
     (undef,undef,undef,my $clientmathml,my $clientunicode) =      }
         &Apache::loncommon::decode_user_agent();      $r->send_http_header;
     my $args = {};  
     if ($clientunicode && !$clientmathml) {      my $start_page;
         $args = {'browser.unicode' => 1};      if ($env{'request.lti.login'}) {
     }          $args = {'only_body' => 1,};
           $start_page=&Apache::loncommon::start_page('',$header,$args);
     my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,$args);      } else {
     my $uname = &Apache::loncommon::cleanup_html($form->{'uname'});          $start_page=&Apache::loncommon::start_page('Successful Login',
     my $udom = &Apache::loncommon::cleanup_html($form->{'udom'});                                                     $header,$args);
     if (&Apache::lonnet::domain($udom,'description') eq '') {      }
         undef($udom);      my $end_page  =&Apache::loncommon::end_page();
     }  
     my $retry = '/adm/login';      my $continuelink='<a href="'.$destination.'">'.&mt('Continue').'</a>';
     if ($uname eq $form->{'uname'}) {  
         $retry .= '?username='.$uname;      my $pagebody;
     }      unless ($env{'request.lti.login'}) {
     if ($udom) {          my %lt=&Apache::lonlocal::texthash(
         $retry .= (($retry=~/\?/)?'&amp;':'?').'domain='.$udom;             'wel' => 'Welcome',
     }             'pro' => 'Login problems?',
     if (exists($form->{role})) {            );
         my $role = &Apache::loncommon::cleanup_html($form->{role});          $pagebody = "<h1>$lt{'wel'}</h1>\n".
         if ($role ne '') {                      &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');
             $retry .= (($retry=~/\?/)?'&amp;':'?').'role='.$role;          my $loginhelp = &loginhelpdisplay($domain);
         }          if ($loginhelp) {
     }              $pagebody .= '<p><a href="'.$loginhelp.'">'.$lt{'pro'}.'</a></p>';
     if (exists($form->{symb})) {          }
         my $symb = &Apache::loncommon::cleanup_html($form->{symb});      }
         if ($symb ne '') {      $r->print(<<ENDSUCCESS);
             $retry .= (($retry=~/\?/)?'&amp;':'?').'symb='.$symb;  $start_page
         }  $windowinfo
     }  $pagebody
     my $end_page = &Apache::loncommon::end_page();  $continuelink
     &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);      my $end_page = &Apache::loncommon::end_page();
       &Apache::loncommon::content_type($r,'text/html');
 # -------------------------------- Prevent users from attempting to login twice      $r->send_http_header;
     my $handle = &Apache::lonnet::check_for_valid_session($r);      my @actions =
     if ($handle ne '') {           (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));
         my $lonidsdir=$r->dir_config('lonIDsDir');      my $loginhelp = &loginhelpdisplay($udom);
         if ($handle=~/^publicuser\_/) {      if ($loginhelp) {
 # For "public user" - remove it, we apparently really want to login          push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');
             unlink($r->dir_config('lonIDsDir')."/$handle.id");      }
         } else {      #FIXME: link to helpdesk might be added here
 # Indeed, a valid token is found  
             &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);      $r->print(
     &Apache::loncommon::content_type($r,'text/html');         $start_page
     $r->send_http_header;        .'<h2>'.&mt('Sorry ...').'</h2>'
     my $start_page =         .&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />'
         &Apache::loncommon::start_page('Already logged in');        .&Apache::lonhtmlcommon::actionbox(\@actions)
     my $end_page =         .$end_page
         &Apache::loncommon::end_page();      );
             my $dest = '/adm/roles';   }
             if ($env{'form.firsturl'} ne '') {  
                 $dest = $env{'form.firsturl'};  # ------------------------------------------------------------------ Rerouting!
             }  
             $r->print(  sub reroute {
                $start_page      my ($r) = @_;
               .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'      &Apache::loncommon::content_type($r,'text/html');
               .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'      $r->send_http_header;
                     ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')      my $msg='<b>'.&mt('Sorry ...').'</b><br />'
               .'</p>'             .&mt('Please [_1]log in again[_2].');
               .$end_page      &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});
             );  }
             return OK;  
         }  # ---------------------------------------------------------------- Main handler
     }  
   sub handler {
 # ---------------------------------------------------- No valid token, continue      my $r = shift;
       my $londocroot = $r->dir_config('lonDocRoot');
   # Are we re-routing?
     my $buffer;      if (-e "$londocroot/lon-status/reroute.txt") {
     if ($r->header_in('Content-length') > 0) {   &reroute($r);
  $r->read($buffer,$r->header_in('Content-length'),0);   return OK;
     }      }
     my %form;  
     foreach my $pair (split(/&/,$buffer)) {      &Apache::lonlocal::get_language_handle($r);
        my ($name,$value) = split(/=/,$pair);  
        $value =~ tr/+/ /;  # -------------------------------- Prevent users from attempting to login twice
        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;      my $handle = &Apache::lonnet::check_for_valid_session($r);
        $form{$name}=$value;      if ($handle ne '') {
     }          my $lonidsdir=$r->dir_config('lonIDsDir');
           if ($handle=~/^publicuser\_/) {
     if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {  # For "public user" - remove it, we apparently really want to login
  &failed($r,'Username, password and domain need to be specified.',              unlink($r->dir_config('lonIDsDir')."/$handle.id");
  \%form);          } else {
         return OK;  # Indeed, a valid token is found
     }              &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
       &Apache::loncommon::content_type($r,'text/html');
 # split user logging in and "su"-user      $r->send_http_header;
       my $start_page =
     ($form{'uname'},$form{'suname'},$form{'sudom'})=split(/\:/,$form{'uname'});          &Apache::loncommon::start_page('Already logged in');
     $form{'uname'} = &LONCAPA::clean_username($form{'uname'});      my $end_page =
     $form{'suname'}= &LONCAPA::clean_username($form{'suname'});          &Apache::loncommon::end_page();
     $form{'udom'}  = &LONCAPA::clean_domain($form{'udom'});              my $dest = '/adm/roles';
     $form{'sudom'} = &LONCAPA::clean_domain($form{'sudom'});              if ($env{'form.firsturl'} ne '') {
                   $dest = $env{'form.firsturl'};
     my $role   = $r->dir_config('lonRole');              }
     my $domain = $r->dir_config('lonDefDomain');              $r->print(
     my $prodir = $r->dir_config('lonUsersDir');                 $start_page
     my $contact_name = &mt('LON-CAPA helpdesk');                .'<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].'
 # ---------------------------------------- Get the information from login token                      ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')
                 .'</p>'
     my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},                .$end_page
                                       $form{'serverid'});              );
               return OK;
     if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||           }
         ($tmpinfo eq 'no_such_host')) {      }
  &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);  
         return OK;  # ---------------------------------------------------- No valid token, continue
     } else {  
  my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},  
    $form{'serverid'});      my $buffer;
         if ( $reply ne 'ok' ) {      if ($r->header_in('Content-length') > 0) {
             &failed($r,'Session could not be opened.',\%form);   $r->read($buffer,$r->header_in('Content-length'),0);
     &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");      }
     return OK;      my %form;
  }      foreach my $pair (split(/&/,$buffer)) {
     }         my ($name,$value) = split(/=/,$pair);
          $value =~ tr/+/ /;
     if (!&Apache::lonnet::domain($form{'udom'})) {         $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
         &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);         $form{$name}=$value;
         return OK;      }
     }  
       if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {
     my ($key,$firsturl,$rolestr,$symbstr,$iptokenstr)=split(/&/,$tmpinfo);   &failed($r,'Username, password and domain need to be specified.',
     if ($rolestr) {   \%form);
         $rolestr = &unescape($rolestr);          return OK;
     }      }
     if ($symbstr) {  
         $symbstr= &unescape($symbstr);  # split user logging in and "su"-user
     }  
     if ($iptokenstr) {      ($form{'uname'},$form{'suname'},$form{'sudom'})=split(/\:/,$form{'uname'});
         $iptokenstr = &unescape($iptokenstr);      $form{'uname'} = &LONCAPA::clean_username($form{'uname'});
     }      $form{'suname'}= &LONCAPA::clean_username($form{'suname'});
     if ($rolestr =~ /^role=/) {      $form{'udom'}  = &LONCAPA::clean_domain($form{'udom'});
         (undef,$form{'role'}) = split('=',$rolestr);      $form{'sudom'} = &LONCAPA::clean_domain($form{'sudom'});
     }  
     if ($symbstr =~ /^symb=/) {       my $role   = $r->dir_config('lonRole');
         (undef,$form{'symb'}) = split('=',$symbstr);      my $domain = $r->dir_config('lonDefDomain');
     }      my $prodir = $r->dir_config('lonUsersDir');
     if ($iptokenstr =~ /^iptoken=/) {      my $contact_name = &mt('LON-CAPA helpdesk');
         (undef,$form{'iptoken'}) = split('=',$iptokenstr);  
     }  # ---------------------------------------- Get the information from login token
   
     my $upass = &Apache::loncommon::des_decrypt($key,$form{'upass0'});      my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},
                                         $form{'serverid'});
 # ---------------------------------------------------------------- Authenticate  
       if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||
     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});          ($tmpinfo eq 'no_such_host')) {
     my ($cancreate,$statustocreate) =   &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);
         &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});          return OK;
     my $defaultauth;      } else {
     if (ref($cancreate) eq 'ARRAY') {   my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},
         if (grep(/^login$/,@{$cancreate})) {     $form{'serverid'});
             $defaultauth = 1;          if ( $reply ne 'ok' ) {
         }              &failed($r,'Session could not be opened.',\%form);
     }      &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");
     my $clientcancheckhost = 1;      return OK;
     my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,   }
                                               $form{'udom'},$defaultauth,      }
                                               $clientcancheckhost);  
           if (!&Apache::lonnet::domain($form{'udom'})) {
 # --------------------------------------------------------------------- Failed?          &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);
           return OK;
     if ($authhost eq 'no_host') {      }
  &failed($r,'Username and/or password could not be authenticated.',  
  \%form);      my ($key,$firsturl,$rolestr,$symbstr,$iptokenstr)=split(/&/,$tmpinfo);
         return OK;      if ($rolestr) {
     } elsif ($authhost eq 'no_account_on_host') {          $rolestr = &unescape($rolestr);
         if ($defaultauth) {      }
             my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');      if ($symbstr) {
             unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {          $symbstr= &unescape($symbstr);
                 return OK;      }
             }      if ($iptokenstr) {
             my $start_page =           $iptokenstr = &unescape($iptokenstr);
                 &Apache::loncommon::start_page('Create a user account in LON-CAPA',      }
                                                '',{'no_inline_link'   => 1,});      if ($rolestr =~ /^role=/) {
             my $lonhost = $r->dir_config('lonHostID');          (undef,$form{'role'}) = split('=',$rolestr);
             my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};      }
             my $contacts =       if ($symbstr =~ /^symb=/) {
                 &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',          (undef,$form{'symb'}) = split('=',$symbstr);
                                                         $form{'udom'},$origmail);      }
             my ($contact_email) = split(',',$contacts);       if ($iptokenstr =~ /^iptoken=/) {
             my $output =           (undef,$form{'iptoken'}) = split('=',$iptokenstr);
                 &Apache::createaccount::username_check($form{'uname'},$form{'udom'},      }
                                                        $domdesc,'',$lonhost,  
                                                        $contact_email,$contact_name,      my $upass = $ENV{HTTPS} ? $form{'upass0'}
                                                        undef,$statustocreate);          : &Apache::loncommon::des_decrypt($key,$form{'upass0'});
             &Apache::loncommon::content_type($r,'text/html');  
             $r->send_http_header;  # ---------------------------------------------------------------- Authenticate
             &Apache::createaccount::print_header($r,$start_page);  
             $r->print('<h3>'.&mt('Account creation').'</h3>'.      my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});
                       &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.      my ($cancreate,$statustocreate) =
                       $output.&Apache::loncommon::end_page());          &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});
             return OK;      my $defaultauth;
         } else {      if (ref($cancreate) eq 'ARRAY') {
             &failed($r,'Although your username and password were authenticated, you do not currently have a LON-CAPA account in this domain, and you are not permitted to create one.',\%form);          if (grep(/^login$/,@{$cancreate})) {
             return OK;              $defaultauth = 1;
         }          }
     }      }
       my $clientcancheckhost = 1;
     if (($firsturl eq '') ||       my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,
  ($firsturl=~/^\/adm\/(logout|remote)/)) {                                                $form{'udom'},$defaultauth,
  $firsturl='/adm/roles';                                                $clientcancheckhost);
     }  
   # --------------------------------------------------------------------- Failed?
     my $hosthere;  
     if ($form{'iptoken'}) {      if ($authhost eq 'no_host') {
         my %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});   &failed($r,'Username and/or password could not be authenticated.',
         my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});   \%form);
         if (($sessiondata{'domain'} eq $form{'udom'}) &&          return OK;
             ($sessiondata{'username'} eq $form{'uname'})) {      } elsif ($authhost eq 'no_account_on_host') {
             $hosthere = 1;          if ($defaultauth) {
         }              my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');
     }              unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {
                   return OK;
 # --------------------------------- Are we attempting to login as somebody else?              }
     if ($form{'suname'}) {              my $start_page =
         my ($suname,$sudom,$sudomref);                  &Apache::loncommon::start_page('Create a user account in LON-CAPA');
         $suname = $form{'suname'};              my $lonhost = $r->dir_config('lonHostID');
         $sudom = $form{'udom'};              my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
         if ($form{'sudom'}) {              my $contacts =
             unless ($sudom eq $form{'sudom'}) {                  &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
                 if (&Apache::lonnet::domain($form{'sudom'})) {                                                          $form{'udom'},$origmail);
                     $sudomref = [$form{'sudom'}];              my ($contact_email) = split(',',$contacts);
                     $sudom = $form{'sudom'};              my $output =
                 }                  &Apache::createaccount::username_check($form{'uname'},$form{'udom'},
             }                                                         $domdesc,'',$lonhost,
         }                                                         $contact_email,$contact_name,
 # ------------ see if the original user has enough privileges to pull this stunt                                                         undef,$statustocreate);
  if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {              &Apache::loncommon::content_type($r,'text/html');
 # ---------------------------------------------------- see if the su-user exists              $r->send_http_header;
     unless (&Apache::lonnet::homeserver($suname,$sudom) eq 'no_host') {              &Apache::createaccount::print_header($r,$start_page);
 # ------------------------------ see if the su-user is not too highly privileged              $r->print('<h3>'.&mt('Account creation').'</h3>'.
  if (&Apache::lonnet::privileged($suname,$sudom)) {                        &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.
                     &Apache::lonnet::logthis('Attempted switch user to privileged user');                        $output.&Apache::loncommon::end_page());
                 } else {              return OK;
                     my $noprivswitch;          } else {
 #              &failed($r,'Although your username and password were authenticated, you do not currently have a LON-CAPA account in this domain, and you are not permitted to create one.',\%form);
 # su-user's home server and user's home server must have one of:              return OK;
 # (a) same domain          }
 # (b) same primary library server for the two domains      }
 # (c) same "internet domain" for primary library server(s) for home servers' domains  
 #      if (($firsturl eq '') ||
                     my $suprim = &Apache::lonnet::domain($sudom,'primary');   ($firsturl=~/^\/adm\/(logout|remote)/)) {
                     my $suintdom = &Apache::lonnet::internet_dom($suprim);   $firsturl='/adm/roles';
                     unless ($sudom eq $form{'udom'}) {      }
                         my $uprim = &Apache::lonnet::domain($form{'udom'},'primary');  
                         my $uintdom = &Apache::lonnet::internet_dom($uprim);      my $hosthere;
                         unless ($suprim eq $uprim) {      if ($form{'iptoken'}) {
                             unless ($suintdom eq $uintdom) {          my %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});
                                 &Apache::lonnet::logthis('Attempted switch user '          my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});
                                    .'to user with different "internet domain".');          if (($sessiondata{'domain'} eq $form{'udom'}) &&
                                 $noprivswitch = 1;              ($sessiondata{'username'} eq $form{'uname'})) {
                             }              $hosthere = 1;
                         }          }
                     }      }
   
                     unless ($noprivswitch) {  # --------------------------------- Are we attempting to login as somebody else?
 #      if ($form{'suname'}) {
 # server where log-in occurs must have same "internet domain" as su-user's home          my ($suname,$sudom,$sudomref);
 # server          $suname = $form{'suname'};
 #          $sudom = $form{'udom'};
                         my $lonhost = $r->dir_config('lonHostID');          if ($form{'sudom'}) {
                         my $hostintdom = &Apache::lonnet::internet_dom($lonhost);              unless ($sudom eq $form{'sudom'}) {
                         if ($hostintdom ne $suintdom) {                  if (&Apache::lonnet::domain($form{'sudom'})) {
                             &Apache::lonnet::logthis('Attempted switch user on a '                      $sudomref = [$form{'sudom'}];
                                 .'server with a different "internet domain".');                      $sudom = $form{'sudom'};
                         } else {                  }
               }
 # -------------------------------------------------------- actually switch users          }
   # ------------ see if the original user has enough privileges to pull this stunt
     &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.   if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {
  $form{'udom'}.' logging in as '.$suname.':'.$sudom);  # ---------------------------------------------------- see if the su-user exists
     $form{'uname'}=$suname;      unless (&Apache::lonnet::homeserver($suname,$sudom) eq 'no_host') {
                             if ($form{'udom'} ne $sudom) {  # ------------------------------ see if the su-user is not too highly privileged
                                 $form{'udom'}=$sudom;   if (&Apache::lonnet::privileged($suname,$sudom)) {
                             }                      &Apache::lonnet::logthis('Attempted switch user to privileged user');
                         }                  } else {
                     }                      my $noprivswitch;
  }  #
     }  # su-user's home server and user's home server must have one of:
  } else {  # (a) same domain
     &Apache::lonnet::logthis('Non-privileged user attempting switch user');  # (b) same primary library server for the two domains
  }  # (c) same "internet domain" for primary library server(s) for home servers' domains
     }  #
                       my $suprim = &Apache::lonnet::domain($sudom,'primary');
     my ($is_balancer,$otherserver);                      my $suintdom = &Apache::lonnet::internet_dom($suprim);
                       unless ($sudom eq $form{'udom'}) {
     unless ($hosthere) {                          my $uprim = &Apache::lonnet::domain($form{'udom'},'primary');
         ($is_balancer,$otherserver) =                          my $uintdom = &Apache::lonnet::internet_dom($uprim);
             &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');                          unless ($suprim eq $uprim) {
         if ($is_balancer) {                              unless ($suintdom eq $uintdom) {
             # Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer)                                  &Apache::lonnet::logthis('Attempted switch user '
             my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r);                                     .'to user with different "internet domain".');                        
             if (($found_server) && ($balancer_cookie =~ /^\Q$env{'user.domain'}\E_\Q$env{'user.name'}\E_/)) {                                  $noprivswitch = 1;
                 $otherserver = $found_server;                              }
             }                          }
             if ($otherserver eq '') {                      }
                 my $lowest_load;  
                 ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});                      unless ($noprivswitch) {
                 if ($lowest_load > 100) {  #
                     $otherserver = &Apache::lonnet::spareserver($lowest_load,$lowest_load,1,$form{'udom'});  # server where log-in occurs must have same "internet domain" as su-user's home
                 }  # server
             }  #
             if ($otherserver ne '') {                          my $lonhost = $r->dir_config('lonHostID');
                 my @hosts = &Apache::lonnet::current_machine_ids();                          my $hostintdom = &Apache::lonnet::internet_dom($lonhost);
                 if (grep(/^\Q$otherserver\E$/,@hosts)) {                          if ($hostintdom ne $suintdom) {
                     $hosthere = $otherserver;                              &Apache::lonnet::logthis('Attempted switch user on a '
                 }                                  .'server with a different "internet domain".');
             }                          } else {
         }  
     }  # -------------------------------------------------------- actually switch users
   
     if (($is_balancer) && (!$hosthere)) {              &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.
         if ($otherserver) {                                $form{'udom'}.' logging in as '.$suname.':'.$sudom);
             &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,              $form{'uname'}=$suname;
                      \%form);                              if ($form{'udom'} ne $sudom) {
             my $switchto = '/adm/switchserver?otherserver='.$otherserver;                                  $form{'udom'}=$sudom;
             if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {                              }
                 $switchto .= '&origurl='.$firsturl;                          }
             }                      }
             if ($form{'role'}) {   }
                 $switchto .= '&role='.$form{'role'};      }
             }   } else {
             if ($form{'symb'}) {      &Apache::lonnet::logthis('Non-privileged user attempting switch user');
                 $switchto .= '&symb='.$form{'symb'};   }
             }      }
             $r->internal_redirect($switchto);  
         } else {      my ($is_balancer,$otherserver);
             &Apache::loncommon::content_type($r,'text/html');  
             $r->send_http_header;      unless ($hosthere) {
             $r->print(&noswitch());          ($is_balancer,$otherserver) =
         }              &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');
         return OK;          if ($is_balancer) {
     } else {              if ($otherserver eq '') {
         if (!&check_can_host($r,\%form,$authhost)) {                  my $lowest_load;
             my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});                  ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});
             if ($otherserver) {                  if ($lowest_load > 100) {
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,                      $otherserver = &Apache::lonnet::spareserver($lowest_load,$lowest_load,1,$form{'udom'});
                          \%form);                  }
                 my $switchto = '/adm/switchserver?otherserver='.$otherserver;              }
                 if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {              if ($otherserver ne '') {
                     $switchto .= '&origurl='.$firsturl;                  my @hosts = &Apache::lonnet::current_machine_ids();
                 }                  if (grep(/^\Q$otherserver\E$/,@hosts)) {
                 if ($form{'role'}) {                      $hosthere = $otherserver;
                     $switchto .= '&role='.$form{'role'};                  }
                 }              }
                 if ($form{'symb'}) {          }
                     $switchto .= '&symb='.$form{'symb'};      }
                 }  
                 $r->internal_redirect($switchto);      if (($is_balancer) && (!$hosthere)) {
             } else {          if ($otherserver) {
                 &Apache::loncommon::content_type($r,'text/html');              &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
                 $r->send_http_header;                       \%form);
                 $r->print(&noswitch());              my $switchto = '/adm/switchserver?otherserver='.$otherserver;
             }              if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
             return OK;                  $switchto .= '&origurl='.$firsturl;
         }              }
               if ($form{'role'}) {
 # ------------------------------------------------------- Do the load balancing                  $switchto .= '&role='.$form{'role'};
               }
 # ---------------------------------------------------------- Determine own load              if ($form{'symb'}) {
         my $loadlim = $r->dir_config('lonLoadLim');                  $switchto .= '&symb='.$form{'symb'};
         my $loadavg;              }
         {              $r->internal_redirect($switchto);
             my $loadfile=Apache::File->new('/proc/loadavg');          } else {
             $loadavg=<$loadfile>;              $r->print(&noswitch());
         }          }
         $loadavg =~ s/\s.*//g;          return OK;
         my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);      } else {
         my $userloadpercent=&Apache::lonnet::userload();          if (!&check_can_host($r,\%form,$authhost)) {
               my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});
 # ---------------------------------------------------------- Are we overloaded?              if ($otherserver) {
         if ((($userloadpercent>100.0)||($loadpercent>100.0))) {                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
             my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'});                           \%form);
             if (!$unloaded) {                  my $switchto = '/adm/switchserver?otherserver='.$otherserver;
                 ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});                  if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
             }                      $switchto .= '&origurl='.$firsturl;
             if ($unloaded) {                  }
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',                  if ($form{'role'}) {
                          undef,\%form);                      $switchto .= '&role='.$form{'role'};
                 $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);                  }
                 return OK;                  if ($form{'symb'}) {
             }                      $switchto .= '&symb='.$form{'symb'};
         }                  }
         if (($is_balancer) && ($hosthere)) {                  $r->internal_redirect($switchto);
             $form{'noloadbalance'} = $hosthere;              } else {
         }                  $r->print(&noswitch());
         &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,              }
                  \%form);              return OK;
         return OK;          }
     }  
 }  # ------------------------------------------------------- Do the load balancing
   
 sub check_can_host {  # ---------------------------------------------------------- Determine own load
     my ($r,$form,$authhost,$domdesc) = @_;          my $loadlim = $r->dir_config('lonLoadLim');
     return unless (ref($form) eq 'HASH');          my $loadavg;
     my $canhost = 1;          {
     my $lonhost = $r->dir_config('lonHostID');              my $loadfile=Apache::File->new('/proc/loadavg');
     my $udom = $form->{'udom'};              $loadavg=<$loadfile>;
     my @intdoms;          }
     my $internet_names = &Apache::lonnet::get_internet_names($lonhost);          $loadavg =~ s/\s.*//g;
     if (ref($internet_names) eq 'ARRAY') {          my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
         @intdoms = @{$internet_names};          my $userloadpercent=&Apache::lonnet::userload();
     }  
     my $uprimary_id = &Apache::lonnet::domain($udom,'primary');  # ---------------------------------------------------------- Are we overloaded?
     my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);          if ((($userloadpercent>100.0)||($loadpercent>100.0))) {
     unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {              my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'});
         my $machine_dom = &Apache::lonnet::host_domain($lonhost);              if (!$unloaded) {
         my $hostname = &Apache::lonnet::hostname($lonhost);                  ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});
         my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);              }
         my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);              if ($unloaded) {
         my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',
         my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);                           undef,\%form);
         my $loncaparev;                  $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);
         if ($authhost eq 'no_account_on_host') {                  return OK;
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);              }
         } else {          }
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);          if (($is_balancer) && ($hosthere)) {
         }              $form{'noloadbalance'} = $hosthere;
         $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,          }
                                                      $udomdefaults{'remotesessions'},          &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,
                                                      $defdomdefaults{'hostedsessions'});                   \%form);
     }          return OK;
     unless ($canhost) {      }
         if ($authhost eq 'no_account_on_host') {  }
             my $checkloginvia = 1;  
             my ($login_host,$hostname) =   sub check_can_host {
                 &Apache::lonnet::choose_server($udom,$checkloginvia);      my ($r,$form,$authhost,$domdesc) = @_;
             &Apache::loncommon::content_type($r,'text/html');      return unless (ref($form) eq 'HASH');
             $r->send_http_header;      my $canhost = 1;
             if ($login_host ne '') {      my $lonhost = $r->dir_config('lonHostID');
                 my $protocol = $Apache::lonnet::protocol{$login_host};      my $udom = $form->{'udom'};
                 $protocol = 'http' if ($protocol ne 'https');      my @intdoms;
                 my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';      my $internet_names = &Apache::lonnet::get_internet_names($lonhost);
                 $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').      if (ref($internet_names) eq 'ARRAY') {
                           '<h3>'.&mt('Account creation').'</h3>'.          @intdoms = @{$internet_names};
                           &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>'.      my $uprimary_id = &Apache::lonnet::domain($udom,'primary');
                           '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').      my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
                           &Apache::loncommon::end_page());      unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {
             } else {          my $machine_dom = &Apache::lonnet::host_domain($lonhost);
                 $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').          my $hostname = &Apache::lonnet::hostname($lonhost);
                           '<h3>'.&mt('Account creation unavailable').'</h3>'.          my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.          my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);
                           '<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 %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);
                           &Apache::loncommon::end_page());          my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);
             }          my $loncaparev;
         } else {          if ($authhost eq 'no_account_on_host') {
             &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,              $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);
                      $form);          } else {
             my ($otherserver) = &Apache::lonnet::choose_server($udom);              $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);
             $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);          }
         }          $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,
     }                                                       $udomdefaults{'remotesessions'},
     return $canhost;                                                       $defdomdefaults{'hostedsessions'});
 }      }
       unless ($canhost) {
 sub noswitch {          if ($authhost eq 'no_account_on_host') {
     my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').              my $checkloginvia = 1;
                  '<h3>'.&mt('Session unavailable').'</h3>'.              my ($login_host,$hostname) =
                  &mt('This LON-CAPA server is unable to host your session.').'<br />'.                  &Apache::lonnet::choose_server($udom,$checkloginvia);
                  '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.              &Apache::loncommon::content_type($r,'text/html');
                  &Apache::loncommon::end_page();              $r->send_http_header;
     return $result;              if ($login_host ne '') {
 }                  my $protocol = $Apache::lonnet::protocol{$login_host};
                   $protocol = 'http' if ($protocol ne 'https');
 sub loginhelpdisplay {                  my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';
     my ($authdomain) = @_;                  $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').
     my $login_help = 1;                            '<h3>'.&mt('Account creation').'</h3>'.
     my $lang = &Apache::lonlocal::current_language();                            &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
     if ($login_help) {                            '<p>'.&mt('You will be able to create one by logging into a LON-CAPA server within the [_1] domain.',$domdesc).'</p>'.
         my $dom = $authdomain;                            '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').
         if ($dom eq '') {                            &Apache::loncommon::end_page());
             $dom = &Apache::lonnet::default_login_domain();              } else {
         }                  $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').
         my %domconfhash = &Apache::loncommon::get_domainconf($dom);                            '<h3>'.&mt('Account creation unavailable').'</h3>'.
         my $loginhelp_url;                            &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
         if ($lang) {                            '<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>'.
             $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};                            &Apache::loncommon::end_page());
             if ($loginhelp_url ne '') {              }
                 return $loginhelp_url;          } else {
             }              &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,
         }                       $form);
         $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};              my ($otherserver) = &Apache::lonnet::choose_server($udom);
         if ($loginhelp_url ne '') {              $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);
             return $loginhelp_url;          }
         } else {      }
             return '/adm/loginproblems.html';      return $canhost;
         }  }
     }  
     return;  sub noswitch {
 }      my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').
                    '<h3>'.&mt('Session unavailable').'</h3>'.
 1;                   &mt('This LON-CAPA server is unable to host your session.').'<br />'.
 __END__                   '<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;
   }
   
   1;
   __END__
   
   

Removed from v.1.121.2.21  
changed lines
  Added in v.1.152


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