Diff for /loncom/auth/lonauth.pm between versions 1.121.2.27 and 1.138

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

Removed from v.1.121.2.27  
changed lines
  Added in v.1.138


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