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

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

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


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