Diff for /loncom/auth/lonauth.pm between versions 1.121.2.23 and 1.136

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


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