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

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

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


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