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

version 1.121.2.22, 2021/12/12 01:48:40 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');
                 if ($form->{firsturl} =~ m{^/tiny/$match_domain/\w+$}) {      $r->send_http_header;
                     unless (exists($form->{linkprot})) {      my $start_page =
                         if (exists($form->{linkkey})) {          &Apache::loncommon::start_page('Already logged in');
                             $retry .= 'linkkey='.$form->{linkkey};      my $end_page =
                         }          &Apache::loncommon::end_page();
                     }              my $dest = '/adm/roles';
                 }              if ($env{'form.firsturl'} ne '') {
             }                  $dest = $env{'form.firsturl'};
         }              }
     } elsif ($querystr ne '') {              $r->print(
         $retry .= (($retry=~/\?/)?'&amp;':'?').$querystr;                 $start_page
     }                .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
     my $end_page = &Apache::loncommon::end_page();                .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'
     &Apache::loncommon::content_type($r,'text/html');                      ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')
     $r->send_http_header;                .'</p>'
     my @actions =                .$end_page
          (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));              );
     my $loginhelp = &loginhelpdisplay($udom);              return OK;
     if ($loginhelp) {          }
         push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');      }
     }  
     #FIXME: link to helpdesk might be added here  # ---------------------------------------------------- No valid token, continue
   
     $r->print(  
        $start_page      my $buffer;
       .'<h2>'.&mt('Sorry ...').'</h2>'      if ($r->header_in('Content-length') > 0) {
       .&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />'   $r->read($buffer,$r->header_in('Content-length'),0);
       .&Apache::lonhtmlcommon::actionbox(\@actions)      }
       .$end_page      my %form;
     );      foreach my $pair (split(/&/,$buffer)) {
  }         my ($name,$value) = split(/=/,$pair);
          $value =~ tr/+/ /;
 # ------------------------------------------------------------------ Rerouting!         $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
          $form{$name}=$value;
 sub reroute {      }
     my ($r) = @_;  
     &Apache::loncommon::content_type($r,'text/html');      if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {
     $r->send_http_header;   &failed($r,'Username, password and domain need to be specified.',
     my $msg='<b>'.&mt('Sorry ...').'</b><br />'   \%form);
            .&mt('Please [_1]log in again[_2].');          return OK;
     &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});      }
 }  
   # split user logging in and "su"-user
 # ---------------------------------------------------------------- Main handler  
       ($form{'uname'},$form{'suname'})=split(/\:/,$form{'uname'});
 sub handler {      $form{'uname'} = &LONCAPA::clean_username($form{'uname'});
     my $r = shift;      $form{'suname'}= &LONCAPA::clean_username($form{'suname'});
     my $londocroot = $r->dir_config('lonDocRoot');      $form{'udom'}  = &LONCAPA::clean_domain(  $form{'udom'});
 # Are we re-routing?  
     if (-e "$londocroot/lon-status/reroute.txt") {      my $role   = $r->dir_config('lonRole');
  &reroute($r);      my $domain = $r->dir_config('lonDefDomain');
  return OK;      my $prodir = $r->dir_config('lonUsersDir');
     }      my $contact_name = &mt('LON-CAPA helpdesk');
   
     &Apache::lonlocal::get_language_handle($r);  # ---------------------------------------- Get the information from login token
   
 # -------------------------------- Prevent users from attempting to login twice      my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},
     my $handle = &Apache::lonnet::check_for_valid_session($r);                                        $form{'serverid'});
     if ($handle ne '') {  
         my $lonidsdir=$r->dir_config('lonIDsDir');      my %sessiondata;
         if ($handle=~/^publicuser\_/) {      if ($form{'iptoken'}) {
 # For "public user" - remove it, we apparently really want to login          %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});
             unlink($r->dir_config('lonIDsDir')."/$handle.id");          my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});
         } else {      }
 # Indeed, a valid token is found  
             &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);      if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||
     &Apache::loncommon::content_type($r,'text/html');          ($tmpinfo eq 'no_such_host')) {
     $r->send_http_header;   &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);
     my $start_page =           return OK;
         &Apache::loncommon::start_page('Already logged in');      } else {
     my $end_page =    my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},
         &Apache::loncommon::end_page();     $form{'serverid'});
             my $dest = '/adm/roles';          if ( $reply ne 'ok' ) {
             my %form = &get_form_items($r);              &failed($r,'Session could not be opened.',\%form);
             if ($form{'logtoken'}) {      &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");
                 my $tmpinfo = &Apache::lonnet::reply('tmpget:'.$form{'logtoken'},      return OK;
                                                      $form{'serverid'});   }
                 unless (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||      }
                         ($tmpinfo eq 'no_such_host')) {  
                     my ($des_key,$firsturl,@rest)=split(/&/,$tmpinfo)l      if (!&Apache::lonnet::domain($form{'udom'})) {
                     $firsturl = &unescape($firsturl);          &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);
                     my %info;          return OK;
                     foreach my $item (@rest) {      }
                         my ($key,$value) = split(/=/,$item);  
                         $info{$key} = &unescape($value);      my ($key,$firsturl,$rolestr,$symbstr)=split(/&/,$tmpinfo);
                     }      if ($rolestr) {
                     if ($firsturl ne '') {          $rolestr = &unescape($rolestr);
                         $info{'firsturl'} = $firsturl;      }
                         $dest = $firsturl;      if ($symbstr) {
                     }          $symbstr= &unescape($symbstr);
                 }      }
             }      if ($rolestr =~ /^role=/) {
             $r->print(          (undef,$form{'role'}) = split('=',$rolestr);
                $start_page      }
               .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'      if ($symbstr =~ /^symb=/) {
               .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'          (undef,$form{'symb'}) = split('=',$symbstr);
                     ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')      }
               .'</p>'  
               .$end_page      my $upass = $ENV{HTTPS} ? join("", @form{qw(upass0 upass1 upass2)})
             );          : decrypt($key, @form{qw(upass0 upass1 upass2)});
             return OK;  
         }  # ---------------------------------------------------------------- Authenticate
     }  
       my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});
 # ---------------------------------------------------- No valid token, continue      my ($cancreate,$statustocreate) =
           &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});
     my %form = &get_form_items($r);      my $defaultauth;
     if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {      if (ref($cancreate) eq 'ARRAY') {
  &failed($r,'Username, password and domain need to be specified.',          if (grep(/^login$/,@{$cancreate})) {
  \%form);              $defaultauth = 1;
         return OK;          }
     }      }
       my $clientcancheckhost = 1;
 # split user logging in and "su"-user      my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,
                                                 $form{'udom'},$defaultauth,
     ($form{'uname'},$form{'suname'},$form{'sudom'})=split(/\:/,$form{'uname'});                                                $clientcancheckhost);
     $form{'uname'} = &LONCAPA::clean_username($form{'uname'});     
     $form{'suname'}= &LONCAPA::clean_username($form{'suname'});  # --------------------------------------------------------------------- Failed?
     $form{'udom'}  = &LONCAPA::clean_domain($form{'udom'});  
     $form{'sudom'} = &LONCAPA::clean_domain($form{'sudom'});      if ($authhost eq 'no_host') {
    &failed($r,'Username and/or password could not be authenticated.',
     my $role   = $r->dir_config('lonRole');   \%form);
     my $domain = $r->dir_config('lonDefDomain');          return OK;
     my $prodir = $r->dir_config('lonUsersDir');      } elsif ($authhost eq 'no_account_on_host') {
     my $contact_name = &mt('LON-CAPA helpdesk');          if ($defaultauth) {
               my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');
 # ---------------------------------------- Get the information from login token              unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {
                   return OK;
     my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},              }
                                       $form{'serverid'});              my $start_page =
                   &Apache::loncommon::start_page('Create a user account in LON-CAPA');
     if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||               my $lonhost = $r->dir_config('lonHostID');
         ($tmpinfo eq 'no_such_host')) {              my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
  &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);              my $contacts =
         return OK;                  &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
     } else {                                                          $form{'udom'},$origmail);
  my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},              my ($contact_email) = split(',',$contacts);
    $form{'serverid'});              my $output =
         if ( $reply ne 'ok' ) {                  &Apache::createaccount::username_check($form{'uname'},$form{'udom'},
             &failed($r,'Session could not be opened.',\%form);                                                         $domdesc,'',$lonhost,
     &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");                                                         $contact_email,$contact_name,
     return OK;                                                         undef,$statustocreate);
  }              &Apache::loncommon::content_type($r,'text/html');
     }              $r->send_http_header;
               &Apache::createaccount::print_header($r,$start_page);
     if (!&Apache::lonnet::domain($form{'udom'})) {              $r->print('<h3>'.&mt('Account creation').'</h3>'.
         &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);                        &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.
         return OK;                        $output.&Apache::loncommon::end_page());
     }              return OK;
           } else {
     my ($des_key,$firsturl,@rest)=split(/&/,$tmpinfo);              &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);
     $firsturl = &unescape($firsturl);              return OK;
     foreach my $item (@rest) {          }
         my ($key,$value) = split(/=/,$item);      }
         $form{$key} = &unescape($value);  
     }      if (($firsturl eq '') ||
     my $upass = &Apache::loncommon::des_decrypt($key,$form{'upass0'});   ($firsturl=~/^\/adm\/(logout|remote)/)) {
    $firsturl='/adm/roles';
 # ---------------------------------------------------------------- Authenticate      }
   
     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});      my $hosthere;
     my ($cancreate,$statustocreate) =      if ($form{'iptoken'}) {
         &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});          if (($sessiondata{'domain'} eq $form{'udom'}) &&
     my $defaultauth;              ($sessiondata{'username'} eq $form{'uname'})) {
     if (ref($cancreate) eq 'ARRAY') {              $hosthere = 1;
         if (grep(/^login$/,@{$cancreate})) {          }
             $defaultauth = 1;      }
         }  
     }  # --------------------------------- Are we attempting to login as somebody else?
     my $clientcancheckhost = 1;      if ($form{'suname'}) {
     my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,  # ------------ see if the original user has enough privileges to pull this stunt
                                               $form{'udom'},$defaultauth,   if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'})) {
                                               $clientcancheckhost);  # ---------------------------------------------------- see if the su-user exists
           unless (&Apache::lonnet::homeserver($form{'suname'},$form{'udom'})
 # --------------------------------------------------------------------- Failed?   eq 'no_host') {
    &Apache::lonnet::logthis(&Apache::lonnet::homeserver($form{'suname'},$form{'udom'}));
     if ($authhost eq 'no_host') {  # ------------------------------ see if the su-user is not too highly privileged
  &failed($r,'Username and/or password could not be authenticated.',   unless (&Apache::lonnet::privileged($form{'suname'},$form{'udom'})) {
  \%form);  # -------------------------------------------------------- actually switch users
         return OK;      &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.$form{'udom'}.
     } elsif ($authhost eq 'no_account_on_host') {   ' logging in as '.$form{'suname'});
         if ($defaultauth) {      $form{'uname'}=$form{'suname'};
             my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');   } else {
             unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {      &Apache::lonnet::logthis('Attempted switch user to privileged user');
                 return OK;   }
             }      }
             my $start_page =    } else {
                 &Apache::loncommon::start_page('Create a user account in LON-CAPA',      &Apache::lonnet::logthis('Non-privileged user attempting switch user');
                                                '',{'no_inline_link'   => 1,});   }
             my $lonhost = $r->dir_config('lonHostID');      }
             my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};  
             my $contacts =       my ($is_balancer,$otherserver);
                 &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',  
                                                         $form{'udom'},$origmail);      unless ($hosthere) {
             my ($contact_email) = split(',',$contacts);           ($is_balancer,$otherserver) =
             my $output =               &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'});
                 &Apache::createaccount::username_check($form{'uname'},$form{'udom'},      }
                                                        $domdesc,'',$lonhost,  
                                                        $contact_email,$contact_name,      if ($is_balancer) {
                                                        undef,$statustocreate);          if (!$otherserver) {
             &Apache::loncommon::content_type($r,'text/html');              ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});
             $r->send_http_header;          }
             &Apache::createaccount::print_header($r,$start_page);          if ($otherserver) {
             $r->print('<h3>'.&mt('Account creation').'</h3>'.              &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
                       &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.                       \%form);
                       $output.&Apache::loncommon::end_page());              my $switchto = '/adm/switchserver?otherserver='.$otherserver;
             return OK;              if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
         } else {                  $switchto .= '&origurl='.$firsturl;
             &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 ($form{'role'}) {
         }                  $switchto .= '&role='.$form{'role'};
     }              }
               if ($form{'symb'}) {
     if (($firsturl eq '') ||                   $switchto .= '&symb='.$form{'symb'};
  ($firsturl=~/^\/adm\/(logout|remote)/)) {              }
  $firsturl='/adm/roles';              $r->internal_redirect($switchto);
     }          } else {
               $r->print(&noswitch());
     my $hosthere;          }
     if ($form{'iptoken'}) {          return OK;
         my %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});      } else {
         my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});          if (!&check_can_host($r,\%form,$authhost)) {
         if (($sessiondata{'domain'} eq $form{'udom'}) &&              my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});
             ($sessiondata{'username'} eq $form{'uname'})) {              if ($otherserver) {
             $hosthere = 1;                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
         }                           \%form);
     }                  my $switchto = '/adm/switchserver?otherserver='.$otherserver;
                   if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
 # --------------------------------- Are we attempting to login as somebody else?                      $switchto .= '&origurl='.$firsturl;
     if ($form{'suname'}) {                  }
         my ($suname,$sudom,$sudomref);                  if ($form{'role'}) {
         $suname = $form{'suname'};                      $switchto .= '&role='.$form{'role'};
         $sudom = $form{'udom'};                  }
         if ($form{'sudom'}) {                  if ($form{'symb'}) {
             unless ($sudom eq $form{'sudom'}) {                      $switchto .= '&symb='.$form{'symb'};
                 if (&Apache::lonnet::domain($form{'sudom'})) {                  }
                     $sudomref = [$form{'sudom'}];                  $r->internal_redirect($switchto);
                     $sudom = $form{'sudom'};              } else {
                 }                  $r->print(&noswitch());
             }              }
         }              return OK;
 # ------------ see if the original user has enough privileges to pull this stunt          }
  if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {  
 # ---------------------------------------------------- see if the su-user exists  # ------------------------------------------------------- Do the load balancing
     unless (&Apache::lonnet::homeserver($suname,$sudom) eq 'no_host') {  
 # ------------------------------ see if the su-user is not too highly privileged  # ---------------------------------------------------------- Determine own load
  if (&Apache::lonnet::privileged($suname,$sudom)) {          my $loadlim = $r->dir_config('lonLoadLim');
                     &Apache::lonnet::logthis('Attempted switch user to privileged user');          my $loadavg;
                 } else {          {
                     my $noprivswitch;              my $loadfile=Apache::File->new('/proc/loadavg');
 #              $loadavg=<$loadfile>;
 # su-user's home server and user's home server must have one of:          }
 # (a) same domain          $loadavg =~ s/\s.*//g;
 # (b) same primary library server for the two domains          my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
 # (c) same "internet domain" for primary library server(s) for home servers' domains          my $userloadpercent=&Apache::lonnet::userload();
 #  
                     my $suprim = &Apache::lonnet::domain($sudom,'primary');  # ---------------------------------------------------------- Are we overloaded?
                     my $suintdom = &Apache::lonnet::internet_dom($suprim);          if ((($userloadpercent>100.0)||($loadpercent>100.0))) {
                     unless ($sudom eq $form{'udom'}) {              my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'});
                         my $uprim = &Apache::lonnet::domain($form{'udom'},'primary');              if (!$unloaded) {
                         my $uintdom = &Apache::lonnet::internet_dom($uprim);                  ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});
                         unless ($suprim eq $uprim) {              }
                             unless ($suintdom eq $uintdom) {              if ($unloaded) {
                                 &Apache::lonnet::logthis('Attempted switch user '                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',
                                    .'to user with different "internet domain".');                           undef,\%form);
                                 $noprivswitch = 1;                  $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);
                             }                  return OK;
                         }              }
                     }          }
           &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,
                     unless ($noprivswitch) {                   \%form);
 #          return OK;
 # server where log-in occurs must have same "internet domain" as su-user's home      }
 # server  }
 #  
                         my $lonhost = $r->dir_config('lonHostID');  sub decrypt {
                         my $hostintdom = &Apache::lonnet::internet_dom($lonhost);      my ($key, @chunks) = @_;
                         if ($hostintdom ne $suintdom) {  
                             &Apache::lonnet::logthis('Attempted switch user on a '      my $keybin = pack("H16",$key);
                                 .'server with a different "internet domain".');  
                         } else {      my $cipher;
       if ($Crypt::DES::VERSION >= 2.03) {
 # -------------------------------------------------------- actually switch users          $cipher = new Crypt::DES $keybin;
       } else {
     &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.          $cipher = new DES $keybin;
  $form{'udom'}.' logging in as '.$suname.':'.$sudom);      }
     $form{'uname'}=$suname;  
                             if ($form{'udom'} ne $sudom) {      my $upass='';
                                 $form{'udom'}=$sudom;      for (my $i=0;$i<=2;$i++) {
                             }          my $chunk =
                         }              $cipher->decrypt(
                     }                  unpack("a8",pack("H16",substr($chunks[$i],0,16))));
  }  
     }          $chunk .=
  } else {              $cipher->decrypt(
     &Apache::lonnet::logthis('Non-privileged user attempting switch user');                  unpack("a8",pack("H16",substr($chunks[$i],16,16))));
  }  
     }          $chunk = substr($chunk,1,ord(substr($chunk,0,1)));
           $upass .= $chunk;
     my ($is_balancer,$otherserver);      }
       return $upass;
     unless ($hosthere) {  }
         ($is_balancer,$otherserver) =  
             &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');  sub check_can_host {
         if ($is_balancer) {      my ($r,$form,$authhost,$domdesc) = @_;
             # Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer)      return unless (ref($form) eq 'HASH');
             my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r);      my $canhost = 1;
             if (($found_server) && ($balancer_cookie =~ /^\Q$env{'user.domain'}\E_\Q$env{'user.name'}\E_/)) {      my $lonhost = $r->dir_config('lonHostID');
                 $otherserver = $found_server;      my $udom = $form->{'udom'};
             }      my @intdoms;
             if ($otherserver eq '') {      my $internet_names = &Apache::lonnet::get_internet_names($lonhost);
                 my $lowest_load;      if (ref($internet_names) eq 'ARRAY') {
                 ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});          @intdoms = @{$internet_names};
                 if ($lowest_load > 100) {      }
                     $otherserver = &Apache::lonnet::spareserver($r,$lowest_load,$lowest_load,1,$form{'udom'});      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)) {
             if ($otherserver ne '') {          my $machine_dom = &Apache::lonnet::host_domain($lonhost);
                 my @hosts = &Apache::lonnet::current_machine_ids();          my $hostname = &Apache::lonnet::hostname($lonhost);
                 if (grep(/^\Q$otherserver\E$/,@hosts)) {          my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);
                     $hosthere = $otherserver;          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);
     if (($is_balancer) && (!$hosthere)) {          } else {
         if ($otherserver) {              $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);
             &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,          }
                      \%form);          $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,
             my $switchto = '/adm/switchserver?otherserver='.$otherserver;                                                       $udomdefaults{'remotesessions'},
             if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {                                                       $defdomdefaults{'hostedsessions'});
                 $switchto .= '&origurl='.$firsturl;      }
             }      unless ($canhost) {
             if ($form{'role'}) {          if ($authhost eq 'no_account_on_host') {
                 $switchto .= '&role='.$form{'role'};              my $checkloginvia = 1;
             }              my ($login_host,$hostname) =
             if ($form{'symb'}) {                  &Apache::lonnet::choose_server($udom,$checkloginvia);
                 $switchto .= '&symb='.$form{'symb'};              &Apache::loncommon::content_type($r,'text/html');
             }              $r->send_http_header;
             $r->internal_redirect($switchto);              if ($login_host ne '') {
         } else {                  my $protocol = $Apache::lonnet::protocol{$login_host};
             &Apache::loncommon::content_type($r,'text/html');                  $protocol = 'http' if ($protocol ne 'https');
             $r->send_http_header;                  my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';
             $r->print(&noswitch());                  $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').
         }                            '<h3>'.&mt('Account creation').'</h3>'.
         return OK;                            &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
     } else {                            '<p>'.&mt('You will be able to create one by logging into a LON-CAPA server within the [_1] domain.',$domdesc).'</p>'.
         if (!&check_can_host($r,\%form,$authhost)) {                            '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').
             my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});                            &Apache::loncommon::end_page());
             if ($otherserver) {              } else {
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,                  $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').
                          \%form);                            '<h3>'.&mt('Account creation unavailable').'</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('Currently a LON-CAPA server is not available within the [_1] domain for you to log-in to, to create an account.',$domdesc).'</p>'.
                     $switchto .= '&origurl='.$firsturl;                            &Apache::loncommon::end_page());
                 }              }
                 if ($form{'role'}) {          } else {
                     $switchto .= '&role='.$form{'role'};              &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,
                 }                       $form);
                 if ($form{'symb'}) {              my ($otherserver) = &Apache::lonnet::choose_server($udom);
                     $switchto .= '&symb='.$form{'symb'};              $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);
                 }          }
                 $r->internal_redirect($switchto);      }
             } else {      return $canhost;
                 &Apache::loncommon::content_type($r,'text/html');  }
                 $r->send_http_header;  
                 $r->print(&noswitch());  sub noswitch {
             }      my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').
             return OK;                   '<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>'.
 # ------------------------------------------------------- Do the load balancing                   &Apache::loncommon::end_page();
       return $result;
 # ---------------------------------------------------------- Determine own load  }
         my $loadlim = $r->dir_config('lonLoadLim');  
         my $loadavg;  sub loginhelpdisplay {
         {      my ($authdomain) = @_;
             my $loadfile=Apache::File->new('/proc/loadavg');      my $login_help = 1;
             $loadavg=<$loadfile>;      my $lang = &Apache::lonlocal::current_language();
         }      if ($login_help) {
         $loadavg =~ s/\s.*//g;          my $dom = $authdomain;
         my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);          if ($dom eq '') {
         my $userloadpercent=&Apache::lonnet::userload();              $dom = &Apache::lonnet::default_login_domain();
           }
 # ---------------------------------------------------------- Are we overloaded?          my %domconfhash = &Apache::loncommon::get_domainconf($dom);
         if ((($userloadpercent>100.0)||($loadpercent>100.0))) {          my $loginhelp_url;
             my $unloaded=Apache::lonnet::spareserver($r,$loadpercent,$userloadpercent,1,$form{'udom'});          if ($lang) {
             if (!$unloaded) {              $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};
                 ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});              if ($loginhelp_url ne '') {
             }                  return $loginhelp_url;
             if ($unloaded) {              }
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',          }
                          undef,\%form);          $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};
                 $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);          if ($loginhelp_url ne '') {
                 return OK;              return $loginhelp_url;
             }          } else {
         }              return '/adm/loginproblems.html';
         if (($is_balancer) && ($hosthere)) {          }
             $form{'noloadbalance'} = $hosthere;      }
         }      return;
         my $extra_env;  }
         if (($hosthere) && ($sessiondata{'sessionserver'} ne '')) {  
             if ($sessiondata{'origurl'} ne '') {  1;
                 $firsturl = $sessiondata{'origurl'};  __END__
                 $form{'firsturl'} = $sessiondata{'origurl'};  
                 my @names = ('role','symb','linkprot','linkkey');  
                 foreach my $item (@names) {  
                     if ($sessiondata{$item} ne '') {  
                         $form{$item} = $sessiondata{$item};  
                     }  
                 }  
             }  
         }  
         &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,  
                  \%form);  
         return OK;  
     }  
 }  
   
 sub get_form_items {  
     my ($r) = @_;  
     my $buffer;  
     if ($r->header_in('Content-length') > 0) {  
         $r->read($buffer,$r->header_in('Content-length'),0);  
     }  
     my %form;  
     foreach my $pair (split(/&/,$buffer)) {  
        my ($name,$value) = split(/=/,$pair);  
        $value =~ tr/+/ /;  
        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;  
        $form{$name}=$value;  
     }  
     return %form;  
 }  
   
 sub set_retry_token {  
     my ($form,$lonhost,$querystr) = @_;  
     if (ref($form) eq 'HASH') {  
         my ($firsturl,$token,$extras,@names);  
         @names = ('role','symb','iptoken');  
         foreach my $name (@names) {  
             if ($form->{$name} ne '') {  
                 $extras .= '&'.$name.'='.&escape($form->{$name});  
                 last if ($name eq 'linkprot');  
             }  
         }  
         my $firsturl = $form->{'firsturl'};  
         if (($firsturl ne '') || ($extras ne '')) {  
             $extras .= ':retry';  
             $token = &Apache::lonnet::reply('tmpput:'.&escape($firsturl).  
                                             $extras,$lonhost);  
             if (($token eq 'con_lost') || ($token eq 'no_such_host')) {  
                 return 'fail';  
             } else {  
                 if (ref($querystr)) {  
                     $$querystr = 'retry='.$token;  
                 }  
                 return 'ok';  
             }  
         }  
     }  
     return;  
 }  
   
 sub check_can_host {  
     my ($r,$form,$authhost,$domdesc) = @_;  
     return unless (ref($form) eq 'HASH');  
     my $canhost = 1;  
     my $lonhost = $r->dir_config('lonHostID');  
     my $udom = $form->{'udom'};  
     my @intdoms;  
     my $internet_names = &Apache::lonnet::get_internet_names($lonhost);  
     if (ref($internet_names) eq 'ARRAY') {  
         @intdoms = @{$internet_names};  
     }  
     my $uprimary_id = &Apache::lonnet::domain($udom,'primary');  
     my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);  
     unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {  
         my $machine_dom = &Apache::lonnet::host_domain($lonhost);  
         my $hostname = &Apache::lonnet::hostname($lonhost);  
         my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);  
         my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);  
         my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);  
         my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);  
         my $loncaparev;  
         if ($authhost eq 'no_account_on_host') {  
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);  
         } else {  
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);  
         }  
         $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,  
                                                      $udomdefaults{'remotesessions'},  
                                                      $defdomdefaults{'hostedsessions'});  
     }  
     unless ($canhost) {  
         if ($authhost eq 'no_account_on_host') {  
             my $checkloginvia = 1;  
             my ($login_host,$hostname) =   
                 &Apache::lonnet::choose_server($udom,$checkloginvia);  
             &Apache::loncommon::content_type($r,'text/html');  
             $r->send_http_header;  
             if ($login_host ne '') {  
                 my $protocol = $Apache::lonnet::protocol{$login_host};  
                 $protocol = 'http' if ($protocol ne 'https');  
                 my $alias = &Apache::lonnet::use_proxy_alias($r,$login_host);  
                 $hostname = $alias if ($alias ne '');  
                 my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';  
                 $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').  
                           '<h3>'.&mt('Account creation').'</h3>'.  
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.  
                           '<p>'.&mt('You will be able to create one by logging into a LON-CAPA server within the [_1] domain.',$domdesc).'</p>'.  
                           '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').  
                           &Apache::loncommon::end_page());  
             } else {  
                 $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').  
                           '<h3>'.&mt('Account creation unavailable').'</h3>'.  
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.  
                           '<p>'.&mt('Currently a LON-CAPA server is not available within the [_1] domain for you to log-in to, to create an account.',$domdesc).'</p>'.  
                           &Apache::loncommon::end_page());  
             }  
         } else {  
             &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,  
                      $form);  
             my ($otherserver) = &Apache::lonnet::choose_server($udom);  
             $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);  
         }  
     }  
     return $canhost;  
 }  
   
 sub noswitch {  
     my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').  
                  '<h3>'.&mt('Session unavailable').'</h3>'.  
                  &mt('This LON-CAPA server is unable to host your session.').'<br />'.  
                  '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.  
                  &Apache::loncommon::end_page();  
     return $result;  
 }  
   
 sub loginhelpdisplay {  
     my ($authdomain) = @_;  
     my $login_help = 1;  
     my $lang = &Apache::lonlocal::current_language();  
     if ($login_help) {  
         my $dom = $authdomain;  
         if ($dom eq '') {  
             $dom = &Apache::lonnet::default_login_domain();  
         }  
         my %domconfhash = &Apache::loncommon::get_domainconf($dom);  
         my $loginhelp_url;  
         if ($lang) {  
             $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};  
             if ($loginhelp_url ne '') {  
                 return $loginhelp_url;  
             }  
         }  
         $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};  
         if ($loginhelp_url ne '') {  
             return $loginhelp_url;  
         } else {  
             return '/adm/loginproblems.html';  
         }  
     }  
     return;  
 }  
   
 1;  
 __END__  
   
   

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


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