Diff for /loncom/auth/lonauth.pm between versions 1.101.8.9.2.1 and 1.153

version 1.101.8.9.2.1, 2012/02/06 03:27:59 version 1.153, 2018/07/01 00:03:42
Line 1 Line 1
 # The LearningOnline Network  # The LearningOnline Network
 # User Authentication Module  # User Authentication Module
 #  #
 # $Id$  # $Id$
 #  #
 # Copyright Michigan State University Board of Trustees  # Copyright Michigan State University Board of Trustees
 #  #
 # This file is part of the LearningOnline Network with CAPA (LON-CAPA).  # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
 #  #
 # LON-CAPA is free software; you can redistribute it and/or modify  # LON-CAPA is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by  # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or  # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.  # (at your option) any later version.
 #  #
 # LON-CAPA is distributed in the hope that it will be useful,  # LON-CAPA is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of  # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.  # GNU General Public License for more details.
 #  #
 # You should have received a copy of the GNU General Public License  # You should have received a copy of the GNU General Public License
 # along with LON-CAPA; if not, write to the Free Software  # along with LON-CAPA; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 #  #
 # /home/httpd/html/adm/gpl.txt  # /home/httpd/html/adm/gpl.txt
 #  #
 # http://www.lon-capa.org/  # http://www.lon-capa.org/
 #  #
   
 package Apache::lonauth;  package Apache::lonauth;
   
 use strict;  use strict;
 use LONCAPA;  use LONCAPA qw(:DEFAULT :match);
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common);
 use CGI qw(:standard);  use CGI qw(:standard);
 use DynaLoader; # for Crypt::DES version  use Apache::loncommon();
 use Crypt::DES;  use Apache::lonnet;
 use Apache::loncommon();  use Apache::lonmenu();
 use Apache::lonnet;  use Apache::createaccount;
 use Apache::lonmenu();  use Apache::ltiauth;
 use Apache::createaccount;  use Fcntl qw(:flock);
 use Fcntl qw(:flock);  use Apache::lonlocal;
 use Apache::lonlocal;  use Apache::File();
 use Apache::File();  use HTML::Entities;
 use HTML::Entities;  use Digest::MD5;
     
 # ------------------------------------------------------------ Successful login  # ------------------------------------------------------------ Successful login
 sub success {  sub success {
     my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,      my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,
  $form) = @_;   $form,$skipcritical) = @_;
   
 # ------------------------------------------------------------ Get cookie ready  # ------------------------------------------------------------ Get cookie ready
     my $cookie =      my $cookie =
  &Apache::loncommon::init_user_environment($r, $username, $domain,   &Apache::loncommon::init_user_environment($r, $username, $domain,
   $authhost, $form,    $authhost, $form,
   {'extra_env' => $extra_env,});    {'extra_env' => $extra_env,});
   
     my $public=($username eq 'public' && $domain eq 'public');      my $public=($username eq 'public' && $domain eq 'public');
   
     if ($public or $lowerurl eq 'noredirect') { return $cookie; }      if ($public or $lowerurl eq 'noredirect') { return $cookie; }
   
 # -------------------------------------------------------------------- Log this  # -------------------------------------------------------------------- Log this
   
     &Apache::lonnet::log($domain,$username,$authhost,      &Apache::lonnet::log($domain,$username,$authhost,
                          "Login $ENV{'REMOTE_ADDR'}");                           "Login $ENV{'REMOTE_ADDR'}");
   
 # ------------------------------------------------- Check for critical messages  # ------------------------------------------------- Check for critical messages
   
     my @what=&Apache::lonnet::dump('critical',$domain,$username);      unless ($skipcritical) {
     if ($what[0]) {          my @what=&Apache::lonnet::dump('critical',$domain,$username);
  if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {          if ($what[0]) {
     $lowerurl='/adm/email?critical=display';      if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {
         }          $lowerurl='/adm/email?critical=display';
     }              }
           }
 # ------------------------------------------------------------ Get cookie ready      }
     $cookie="lonID=$cookie; path=/";  
 # -------------------------------------------------------- Menu script and info  # ----------------------------------------------------------- Get cookies ready
     my $destination = $lowerurl;      my ($securecookie,$defaultcookie);
       if ($ENV{'SERVER_PORT'} == 443) {
     if (defined($form->{role})) {          $securecookie="lonID=$cookie; path=/; HttpOnly; secure";
         my $envkey = 'user.role.'.$form->{role};          my $lonidsdir=$r->dir_config('lonIDsDir');
         my $now=time;          if (($lonidsdir) && (-e "$lonidsdir/$cookie.id")) {
         my $then=$env{'user.login.time'};              my $linkname=substr(Digest::MD5::md5_hex(Digest::MD5::md5_hex(time(). {}. rand(). $$)), 0, 32).'_linked';
         my $refresh=$env{'user.refresh.time'};              if (-e "$lonidsdir/$linkname.id") {
         if (exists($env{$envkey})) {                  unlink("$lonidsdir/$linkname.id");
             my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus);              }
             &Apache::lonnet::role_status($envkey,$then,$refresh,$now,\$role,\$where,              my $made_symlink = eval { symlink("$lonidsdir/$cookie.id",
                                          \$trolecode,\$tstatus,\$tstart,\$tend);                                                "$lonidsdir/$linkname.id"); 1 };
             if ($tstatus eq 'is') {              if ($made_symlink) {
                 $destination  .= ($destination =~ /\?/) ? '&' : '?';                  $defaultcookie = "lonLinkID=$linkname; path=/; HttpOnly;";
                 my $newrole = &HTML::Entities::encode($form->{role},'"<>&');                  &Apache::lonnet::appenv({'user.linkedenv' => "$lonidsdir/$linkname.id"});
                 $destination .= 'selectrole=1&'.$newrole.'=1';              }
             }          }
         }      } else {
     }          $defaultcookie = "lonID=$cookie; path=/; HttpOnly;";
     if (defined($form->{symb})) {      }
         my $destsymb = $form->{symb};  # -------------------------------------------------------- Menu script and info
         $destination  .= ($destination =~ /\?/) ? '&' : '?';      my $destination = $lowerurl;
         if ($destsymb =~ /___/) {      if ($env{'request.lti.login'}) {
             # FIXME Need to deal with encrypted symbs and urls as needed.          if (($env{'request.lti.reqcrs'}) && ($env{'request.lti.reqrole'} eq 'cc')) {
             my ($map,$resid,$desturl)=split(/___/,$destsymb);              &Apache::loncommon::content_type($r,'text/html');
             unless ($desturl=~/^(adm|uploaded|editupload|public)/) {              if ($securecookie) {
                 $desturl = &Apache::lonnet::clutter($desturl);                  $r->headers_out->add('Set-cookie' => $securecookie);
             }              }
             $desturl = &HTML::Entities::encode($desturl,'"<>&');              if ($defaultcookie) {
             $destsymb = &HTML::Entities::encode($destsymb,'"<>&');                  $r->headers_out->add('Set-cookie' => $defaultcookie);
             $destination .= '&destinationurl='.$desturl.              }
                             '&destsymb='.$destsymb;              $r->send_http_header;
         } else {              if (ref($form) eq 'HASH') {
             $destsymb = &HTML::Entities::encode($destsymb,'"<>&');                  $form->{'lti.reqcrs'} = $env{'request.lti.reqcrs'};
             $destination .= '&destinationurl='.$destsymb;                  $form->{'lti.reqrole'} = $env{'request.lti.reqrole'};
         }                  $form->{'lti.sourcecrs'} = $env{'request.lti.sourcecrs'};
     }              }
               &Apache::ltiauth::lti_reqcrs($r,$domain,$form,$username,$domain);
     my $windowinfo=&Apache::lonmenu::open($env{'browser.os'});              return;
     my $startupremote=&Apache::lonmenu::startupremote($destination);          }
     my $remoteinfo=&Apache::lonmenu::load_remote_msg($lowerurl);          if ($env{'request.lti.selfenrollrole'}) {
     my $setflags=&Apache::lonmenu::setflags();              if (&Apache::ltiauth::lti_enroll($username,$domain,
     my $maincall=&Apache::lonmenu::maincall();                                               $env{'request.lti.selfenrollrole'}) eq 'ok') {
     my $brcrum = [{'href' => '',                  $form->{'role'} = $env{'request.lti.selfenrollrole'};
                    'text' => 'Successful Login'},];                  &Apache::lonnet::delenv('request.lti.selfenrollrole');
     my $start_page=&Apache::loncommon::start_page('Successful Login',              } else {
                                                   $startupremote,                  &Apache::ltiauth::invalid_request($r,24);
                                                   {'no_inline_link' => 1,              }
                                                    'bread_crumbs' => $brcrum,});          }
     my $end_page  =&Apache::loncommon::end_page();      }
       if (defined($form->{role})) {
     my $continuelink;          my $envkey = 'user.role.'.$form->{role};
     if ($env{'environment.remote'} eq 'off') {          my $now=time;
  $continuelink='<a href="'.$destination.'">'.&mt('Continue').'</a>';          my $then=$env{'user.login.time'};
     }          my $refresh=$env{'user.refresh.time'};
 # ------------------------------------------------- Output for successful login          my $update=$env{'user.update.time'};
           if (!$update) {
     &Apache::loncommon::content_type($r,'text/html');              $update = $then;
     $r->header_out('Set-cookie' => $cookie);          }
     $r->send_http_header;          if (exists($env{$envkey})) {
               my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus);
     my %lt=&Apache::lonlocal::texthash(              &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,
        'wel' => 'Welcome',                                           \$trolecode,\$tstatus,\$tstart,\$tend);
        'pro' => 'Login problems?',              if ($tstatus eq 'is') {
        'log' => 'loginproblems.html',                  $destination  .= ($destination =~ /\?/) ? '&' : '?';
        );                  my $newrole = &HTML::Entities::encode($form->{role},'"<>&');
     my $welcome = &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');                  $destination .= 'selectrole=1&'.$newrole.'=1';
     $r->print(<<ENDSUCCESS);              }
 $start_page          }
 $setflags      }
 $windowinfo      if (defined($form->{symb})) {
 <h1>$lt{'wel'}</h1>          my $destsymb = $form->{symb};
 $welcome<p>          $destination  .= ($destination =~ /\?/) ? '&' : '?';
 <a href="/adm/$lt{'log'}">$lt{'pro'}</a></p>          if ($destsymb =~ /___/) {
 $remoteinfo              # FIXME Need to deal with encrypted symbs and urls as needed.
 $maincall              my ($map,$resid,$desturl)=split(/___/,$destsymb);
 $continuelink              $desturl = &Apache::lonnet::clutter($desturl);
 $end_page              $desturl = &HTML::Entities::encode($desturl,'"<>&');
 ENDSUCCESS              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
 }              $destination .= 'destinationurl='.$desturl.
                               '&destsymb='.$destsymb;
 # --------------------------------------------------------------- Failed login!          } else {
               $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
 sub failed {              $destination .= 'destinationurl='.$destsymb;
     my ($r,$message,$form) = @_;          }
     my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,      }
     {'no_inline_link' => 1,});      if ($destination =~ m{^/adm/roles}) {
     my $retry = '/adm/login?username='.$form->{'uname'}.          $destination  .= ($destination =~ /\?/) ? '&' : '?';
                 '&domain='.$form->{'udom'};          $destination .= 'source=login';
     if (exists($form->{role})) {      }
         $retry .= '&role='.$form->{role};  
     }      my $windowname = 'loncapaclient';
     if (exists($form->{symb})) {      if ($env{'request.lti.login'}) {
         $retry .= '&symb='.$form->{symb};          $windowname .= 'lti';
     }      }
     my $end_page   = &Apache::loncommon::end_page();      my $windowinfo = Apache::lonhtmlcommon::scripttag('self.name="'.$windowname.'";');
     &Apache::loncommon::content_type($r,'text/html');      my $brcrum = [{'href' => '',
     $r->send_http_header;                     'text' => 'Successful Login'},];
     $r->print(      my $args = {'bread_crumbs' => $brcrum,};
        $start_page      unless ((defined($form->{role})) || (defined($form->{symb}))) {
       .'<h1>'.&mt('Sorry ...').'</h1>'          my $update=$env{'user.update.time'};
       .'<p class="LC_warning">'.&mt($message).'</p>'          if (!$update) {
       .'<p>'.&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>')              $update = $env{'user.login.time'};
       .'</p>'          }
       .'<p><a href="/adm/loginproblems.html">'.&mt('Login problems?').'</a></p>'          my %roles_in_env;
       .$end_page          my $showcount = &Apache::lonroles::roles_from_env(\%roles_in_env,$update);
     );          if ($showcount == 1) {
  }              foreach my $rolecode (keys(%roles_in_env)) {
                   my ($cid) = ($rolecode =~ m{^\Quser.role.st./\E($match_domain/$match_courseid)(?:/|$)});
 # ------------------------------------------------------------------ Rerouting!                  if ($cid) {
                       my %coursedescription =
 sub reroute {                          &Apache::lonnet::coursedescription($cid,{'one_time' => '1'});
     my ($r) = @_;                      if ($coursedescription{'type'} eq 'Placement') {
     &Apache::loncommon::content_type($r,'text/html');                          $args->{'crstype'} = 'Placement';
     $r->send_http_header;                      }
     my $msg='<h1>'.&mt('Sorry ...').'</h1>'                      last;
            .&mt('Please [_1]log in again[_2].');                  }
     &Apache::loncommon::simple_error_page($r,'Rerouting',$msg);              }
 }          }
       }
 # ---------------------------------------------------------------- Main handler  
   # ------------------------------------------------- Output for successful login
 sub handler {  
     my $r = shift;      &Apache::loncommon::content_type($r,'text/html');
     my $form;      if ($securecookie) {
 # Are we re-routing?          $r->headers_out->add('Set-cookie' => $securecookie);
     if (-e '/home/httpd/html/lon-status/reroute.txt') {      }
  &reroute($r);      if ($defaultcookie) {
  return OK;          $r->headers_out->add('Set-cookie' => $defaultcookie);
     }      }
       $r->send_http_header;
     &Apache::lonlocal::get_language_handle($r);  
       my ($start_page,$js,$pagebody,$end_page);
 # -------------------------------- Prevent users from attempting to login twice      if ($env{'request.lti.login'}) {
     my $handle = &Apache::lonnet::check_for_valid_session($r);          $args = {'only_body' => 1};
     if ($handle ne '') {          if ($env{'request.lti.target'} eq '') {
         my $lonidsdir=$r->dir_config('lonIDsDir');              my $ltitarget = (($destination =~ /\?/) ? '&' : '?').
         if ($handle=~/^publicuser\_/) {                              'ltitarget=iframe';
 # For "public user" - remove it, we apparently really want to login              $js = <<"ENDJS";
             unlink($r->dir_config('lonIDsDir')."/$handle.id");  
         } else {  <script type="text/javascript">
 # Indeed, a valid token is found  // <![CDATA[
             &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);  function setLTItarget() {
             &Apache::loncommon::content_type($r,'text/html');      var newloc = '$destination';
             $r->send_http_header;      if (parent !== window) {
             my $start_page =          newloc += '$ltitarget';
                 &Apache::loncommon::start_page('Already logged in');      }
             my $end_page =      window.location.href=newloc;
                 &Apache::loncommon::end_page();  }
             my $dest = '/adm/roles';  // ]]>
             if ($env{'form.firsturl'} ne '') {  </script>
                 $dest = $env{'form.firsturl'};  
             }  ENDJS
             $r->print(              $args->{'add_entries'} = {'onload' => "javascript:setLTItarget();"};
                $start_page              $pagebody =  '<noscript><span class="LC_warning">'
               .'<h1>'.&mt('You are already logged in!').'</h1>'                          .&mt('Use of LON-CAPA requires Javascript to be enabled in your web browser.')
               .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'                          .'</span></noscript>';
                     ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')          } else {
               .'</p>'              $args->{'redirect'} = [0,$destination,1];
               .$end_page          }
             );          $start_page=&Apache::loncommon::start_page('',$js,$args);
             return OK;      } else {
         }          $args->{'redirect'} = [0,$destination];
     }          $start_page=&Apache::loncommon::start_page('Successful Login',
                                                      $js,$args);
 # ---------------------------------------------------- No valid token, continue  
           my %lt=&Apache::lonlocal::texthash(
              'wel' => 'Welcome',
     my $buffer;             'pro' => 'Login problems?',
     if ($r->header_in('Content-length') > 0) {            );
  $r->read($buffer,$r->header_in('Content-length'),0);          $pagebody = "<h1>$lt{'wel'}</h1>\n".
     }                      &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');
     my %form;          my $loginhelp = &loginhelpdisplay($domain);
     foreach my $pair (split(/&/,$buffer)) {          if ($loginhelp) {
        my ($name,$value) = split(/=/,$pair);              $pagebody .= '<p><a href="'.$loginhelp.'">'.$lt{'pro'}.'</a></p>';
        $value =~ tr/+/ /;          }
        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;      }
        $form{$name}=$value;      $end_page = &Apache::loncommon::end_page();
     }       $r->print(<<ENDSUCCESS);
   $start_page
     if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {  $windowinfo
  &failed($r,'Username, password and domain need to be specified.',  $pagebody
  \%form);  $end_page
         return OK;  ENDSUCCESS
     }      return;
   }
 # split user logging in and "su"-user  
   # --------------------------------------------------------------- Failed login!
     ($form{'uname'},$form{'suname'})=split(/\:/,$form{'uname'});  
     $form{'uname'} = &LONCAPA::clean_username($form{'uname'});  sub failed {
     $form{'suname'}= &LONCAPA::clean_username($form{'suname'});      my ($r,$message,$form) = @_;
     $form{'udom'}  = &LONCAPA::clean_domain(  $form{'udom'});      (undef,undef,undef,my $clientmathml,my $clientunicode) =
           &Apache::loncommon::decode_user_agent();
     my $role   = $r->dir_config('lonRole');      my $args = {};
     my $domain = $r->dir_config('lonDefDomain');      if ($clientunicode && !$clientmathml) {
     my $prodir = $r->dir_config('lonUsersDir');          $args = {'browser.unicode' => 1};
     my $contact_name = &mt('LON-CAPA helpdesk');      }
   
 # ---------------------------------------- Get the information from login token      my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,$args);
       my $uname = &Apache::loncommon::cleanup_html($form->{'uname'});
     my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},      my $udom = &Apache::loncommon::cleanup_html($form->{'udom'});
                                       $form{'serverid'});      if (&Apache::lonnet::domain($udom,'description') eq '') {
           undef($udom);
     if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||      }
        ($tmpinfo eq 'no_such_host')) {      my $retry = '/adm/login';
  &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);      if ($uname eq $form->{'uname'}) {
         return OK;          $retry .= '?username='.$uname;
     } else {      }
  my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},      if ($udom) {
    $form{'serverid'});          $retry .= (($retry=~/\?/)?'&amp;':'?').'domain='.$udom;
         if ( $reply ne 'ok' ) {      }
             &failed($r,'Session could not be opened.',\%form);      if (exists($form->{role})) {
     &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");          my $role = &Apache::loncommon::cleanup_html($form->{role});
     return OK;          if ($role ne '') {
  }              $retry .= (($retry=~/\?/)?'&amp;':'?').'role='.$role;
     }          }
       }
     if (!&Apache::lonnet::domain($form{'udom'})) {      if (exists($form->{symb})) {
         &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);          my $symb = &Apache::loncommon::cleanup_html($form->{symb});
         return OK;          if ($symb ne '') {
     }              $retry .= (($retry=~/\?/)?'&amp;':'?').'symb='.$symb;
           }
     my ($key,$firsturl,$rolestr,$symbstr)=split(/&/,$tmpinfo);      }
     if ($rolestr) {      my $end_page = &Apache::loncommon::end_page();
         $rolestr = &unescape($rolestr);      &Apache::loncommon::content_type($r,'text/html');
     }      $r->send_http_header;
     if ($symbstr) {      my @actions =
         $symbstr= &unescape($symbstr);           (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));
     }      my $loginhelp = &loginhelpdisplay($udom);
     if ($rolestr =~ /^role=/) {      if ($loginhelp) {
         (undef,$form{'role'}) = split('=',$rolestr);          push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');
     }      }
     if ($symbstr =~ /^symb=/) {       #FIXME: link to helpdesk might be added here
         (undef,$form{'symb'}) = split('=',$symbstr);  
     }      $r->print(
          $start_page
     my $keybin=pack("H16",$key);        .'<h2>'.&mt('Sorry ...').'</h2>'
         .&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />'
     my $cipher;        .&Apache::lonhtmlcommon::actionbox(\@actions)
     if ($Crypt::DES::VERSION>=2.03) {        .$end_page
  $cipher=new Crypt::DES $keybin;      );
     }   }
     else {  
  $cipher=new DES $keybin;  # ------------------------------------------------------------------ Rerouting!
     }  
     my $upass='';  sub reroute {
     for (my $i=0;$i<=2;$i++) {      my ($r) = @_;
  my $chunk=      &Apache::loncommon::content_type($r,'text/html');
     $cipher->decrypt(unpack("a8",pack("H16",substr($form{'upass'.$i},0,16))));      $r->send_http_header;
       my $msg='<b>'.&mt('Sorry ...').'</b><br />'
  $chunk.=             .&mt('Please [_1]log in again[_2].');
     $cipher->decrypt(unpack("a8",pack("H16",substr($form{'upass'.$i},16,16))));      &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});
   }
  $chunk=substr($chunk,1,ord(substr($chunk,0,1)));  
  $upass.=$chunk;  # ---------------------------------------------------------------- Main handler
     }  
   sub handler {
 # ---------------------------------------------------------------- Authenticate      my $r = shift;
       my $londocroot = $r->dir_config('lonDocRoot');
     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});  # Are we re-routing?
     my ($cancreate,$statustocreate) =      if (-e "$londocroot/lon-status/reroute.txt") {
         &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});   &reroute($r);
     my $defaultauth;   return OK;
     if (ref($cancreate) eq 'ARRAY') {      }
         if (grep(/^login$/,@{$cancreate})) {  
             $defaultauth = 1;      &Apache::lonlocal::get_language_handle($r);
         }  
     }  # -------------------------------- Prevent users from attempting to login twice
     my $clientcancheckhost = 1;      my $handle = &Apache::lonnet::check_for_valid_session($r);
     my $uname = $form{'uname'};      if ($handle ne '') {
     my $authhost=Apache::lonnet::authenticate($uname,$upass,          my $lonidsdir=$r->dir_config('lonIDsDir');
                                               $form{'udom'},$defaultauth,          if ($handle=~/^publicuser\_/) {
                                               $clientcancheckhost);  # For "public user" - remove it, we apparently really want to login
                   unlink($r->dir_config('lonIDsDir')."/$handle.id");
 # --------------------------------------------------------------------- Failed?          } else {
   # Indeed, a valid token is found
     if ($authhost eq 'no_host') {              &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
         my $lc_uname = lc($uname);      &Apache::loncommon::content_type($r,'text/html');
         if ($uname eq $lc_uname) {      $r->send_http_header;
             &failed($r,'Username and/or password could not be authenticated.',      my $start_page =
                     \%form);          &Apache::loncommon::start_page('Already logged in');
             return OK;      my $end_page =
         } else {          &Apache::loncommon::end_page();
             $authhost=Apache::lonnet::authenticate($lc_uname,$upass,              my $dest = '/adm/roles';
                                                    $form{'udom'},$defaultauth);              if ($env{'form.firsturl'} ne '') {
             if ($authhost eq 'no_host') {                  $dest = $env{'form.firsturl'};
                 &failed($r,'Username (in lower case) and/or password could not be authenticated.',              }
                         \%form);              $r->print(
                 return OK;                 $start_page
             } elsif ($authhost eq 'no_account_on_host') {                .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
                 &create_account($r,\%form,\@cancreate,$lc_uname,$contact_name);                .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'
                 return OK;                      ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')
             } else {                .'</p>'
                 $form{'uname'} = $lc_uname;                .$end_page
             }              );
         }              return OK;
     } elsif ($authhost eq 'no_account_on_host') {          }
         &create_account($r,\%form,\@cancreate,$uname,$contact_name);      }
         return OK;  
     }  # ---------------------------------------------------- No valid token, continue
   
     if (($firsturl eq '') ||   
  ($firsturl=~/^\/adm\/(logout|remote)/)) {      my $buffer;
  $firsturl='/adm/roles';      if ($r->header_in('Content-length') > 0) {
     }   $r->read($buffer,$r->header_in('Content-length'),0);
 # --------------------------------- Are we attempting to login as somebody else?      }
     if ($form{'suname'}) {      my %form;
 # ------------ see if the original user has enough privileges to pull this stunt      foreach my $pair (split(/&/,$buffer)) {
  if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'})) {         my ($name,$value) = split(/=/,$pair);
 # ---------------------------------------------------- see if the su-user exists         $value =~ tr/+/ /;
     unless (&Apache::lonnet::homeserver($form{'suname'},$form{'udom'})         $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
  eq 'no_host') {         $form{$name}=$value;
  &Apache::lonnet::logthis(&Apache::lonnet::homeserver($form{'suname'},$form{'udom'}));      }
 # ------------------------------ see if the su-user is not too highly privileged  
  unless (&Apache::lonnet::privileged($form{'suname'},$form{'udom'})) {      if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {
 # -------------------------------------------------------- actually switch users   &failed($r,'Username, password and domain need to be specified.',
     &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.$form{'udom'}.   \%form);
  ' logging in as '.$form{'suname'});          return OK;
     $form{'uname'}=$form{'suname'};      }
  } else {  
     &Apache::lonnet::logthis('Attempted switch user to privileged user');  # split user logging in and "su"-user
  }  
     }      ($form{'uname'},$form{'suname'},$form{'sudom'})=split(/\:/,$form{'uname'});
  } else {      $form{'uname'} = &LONCAPA::clean_username($form{'uname'});
     &Apache::lonnet::logthis('Non-privileged user attempting switch user');      $form{'suname'}= &LONCAPA::clean_username($form{'suname'});
  }      $form{'udom'}  = &LONCAPA::clean_domain($form{'udom'});
     }      $form{'sudom'} = &LONCAPA::clean_domain($form{'sudom'});
   
     if ($r->dir_config("lonBalancer") eq 'yes') {      my $role   = $r->dir_config('lonRole');
         my $otherserver = &Apache::lonnet::spareserver(30000,undef,1,$form{'udom'});      my $domain = $r->dir_config('lonDefDomain');
         if (!$otherserver) {      my $prodir = $r->dir_config('lonUsersDir');
             ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});      my $contact_name = &mt('LON-CAPA helpdesk');
         }  
         if ($otherserver) {  # ---------------------------------------- Get the information from login token
             &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,  
                      \%form);      my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},
             $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver.'&origurl='.$firsturl);                                        $form{'serverid'});
         } else {  
             $r->print(&noswitch());      if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||
         }          ($tmpinfo eq 'no_such_host')) {
         return OK;   &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);
     } else {          return OK;
         if (!&check_can_host($r,\%form,$authhost)) {      } else {
             my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});   my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},
             if ($otherserver) {     $form{'serverid'});
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,          if ( $reply ne 'ok' ) {
                          \%form);              &failed($r,'Session could not be opened.',\%form);
                 $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver.'&origurl='.$firsturl);      &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");
             } else {      return OK;
                 $r->print(&noswitch());   }
             }      }
             return OK;  
         }      if (!&Apache::lonnet::domain($form{'udom'})) {
 # ------------------------------------------------------- Do the load balancing          &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);
           return OK;
 # ---------------------------------------------------------- Determine own load      }
         my $loadlim = $r->dir_config('lonLoadLim');  
         my $loadavg;      my ($key,$firsturl,$rolestr,$symbstr,$iptokenstr)=split(/&/,$tmpinfo);
         {      if ($rolestr) {
             my $loadfile=Apache::File->new('/proc/loadavg');          $rolestr = &unescape($rolestr);
             $loadavg=<$loadfile>;      }
         }      if ($symbstr) {
         $loadavg =~ s/\s.*//g;          $symbstr= &unescape($symbstr);
         my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);      }
         my $userloadpercent=&Apache::lonnet::userload();      if ($iptokenstr) {
           $iptokenstr = &unescape($iptokenstr);
 # ---------------------------------------------------------- Are we overloaded?      }
         if ((($userloadpercent>100.0)||($loadpercent>100.0))) {      if ($rolestr =~ /^role=/) {
             my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'});          (undef,$form{'role'}) = split('=',$rolestr);
             if (!$unloaded) {      }
                 ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});      if ($symbstr =~ /^symb=/) {
             }          (undef,$form{'symb'}) = split('=',$symbstr);
             if ($unloaded) {      }
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',      if ($iptokenstr =~ /^iptoken=/) {
                          undef,\%form);          (undef,$form{'iptoken'}) = split('=',$iptokenstr);
                 $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);      }
                 return OK;  
             }      my $upass = $ENV{HTTPS} ? $form{'upass0'}
         }          : &Apache::loncommon::des_decrypt($key,$form{'upass0'});
         &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,  
                  \%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'});
 sub check_can_host {      my $defaultauth;
     my ($r,$form,$authhost,$domdesc) = @_;      if (ref($cancreate) eq 'ARRAY') {
     return unless (ref($form) eq 'HASH');          if (grep(/^login$/,@{$cancreate})) {
     my $canhost = 1;              $defaultauth = 1;
     my $lonhost = $r->dir_config('lonHostID');          }
     my $udom = $form->{'udom'};      }
     my @intdoms;      my $clientcancheckhost = 1;
     my $internet_names = &Apache::lonnet::get_internet_names($lonhost);      my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,
     if (ref($internet_names) eq 'ARRAY') {                                                $form{'udom'},$defaultauth,
         @intdoms = @{$internet_names};                                                $clientcancheckhost);
     }  
     my $uprimary_id = &Apache::lonnet::domain($udom,'primary');  # --------------------------------------------------------------------- Failed?
     my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);  
     unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {      if ($authhost eq 'no_host') {
         my $machine_dom = &Apache::lonnet::host_domain($lonhost);   &failed($r,'Username and/or password could not be authenticated.',
         my $hostname = &Apache::lonnet::hostname($lonhost);   \%form);
         my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);          return OK;
         my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);      } elsif ($authhost eq 'no_account_on_host') {
         my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);          if ($defaultauth) {
         my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);              my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');
         my $loncaparev;              unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {
         if ($authhost eq 'no_account_on_host') {                  return OK;
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);              }
         } else {              my $start_page =
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);                  &Apache::loncommon::start_page('Create a user account in LON-CAPA');
         }              my $lonhost = $r->dir_config('lonHostID');
         $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,              my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
                                                      $udomdefaults{'remotesessions'},              my $contacts =
                                                      $defdomdefaults{'hostedsessions'});                  &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
     }                                                          $form{'udom'},$origmail);
     unless ($canhost) {              my ($contact_email) = split(',',$contacts);
         if ($authhost eq 'no_account_on_host') {              my $output =
             my $checkloginvia = 1;                  &Apache::createaccount::username_check($form{'uname'},$form{'udom'},
             my ($login_host,$hostname) =                                                         $domdesc,'',$lonhost,
                 &Apache::lonnet::choose_server($udom,$checkloginvia);                                                         $contact_email,$contact_name,
             &Apache::loncommon::content_type($r,'text/html');                                                         undef,$statustocreate);
             $r->send_http_header;              &Apache::loncommon::content_type($r,'text/html');
             if ($login_host ne '') {              $r->send_http_header;
                 my $protocol = $Apache::lonnet::protocol{$login_host};              &Apache::createaccount::print_header($r,$start_page);
                 $protocol = 'http' if ($protocol ne 'https');              $r->print('<h3>'.&mt('Account creation').'</h3>'.
                 my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';                        &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.
                 $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').                        $output.&Apache::loncommon::end_page());
                           '<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>'.              &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);
                           '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').              return OK;
                           &Apache::loncommon::end_page());          }
             } else {      }
                 $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').  
                           '<h3>'.&mt('Account creation unavailable').'</h3>'.      if (($firsturl eq '') ||
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.   ($firsturl=~/^\/adm\/(logout|remote)/)) {
                           '<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>'.   $firsturl='/adm/roles';
                           &Apache::loncommon::end_page());      }
             }  
         } else {      my $hosthere;
             &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,      if ($form{'iptoken'}) {
                      $form);          my %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});
             my ($otherserver) = &Apache::lonnet::choose_server($udom);          my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});
             $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);          if (($sessiondata{'domain'} eq $form{'udom'}) &&
         }              ($sessiondata{'username'} eq $form{'uname'})) {
     }              $hosthere = 1;
     return $canhost;          }
 }      }
   
 sub noswitch {  # --------------------------------- Are we attempting to login as somebody else?
     my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').      if ($form{'suname'}) {
                  '<h3>'.&mt('Session unavailable').'</h3>'.          my ($suname,$sudom,$sudomref);
                  &mt('This LON-CAPA server is unable to host your session.').'<br />'.          $suname = $form{'suname'};
                  '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.          $sudom = $form{'udom'};
                  &Apache::loncommon::end_page();          if ($form{'sudom'}) {
     return $result;              unless ($sudom eq $form{'sudom'}) {
 }                  if (&Apache::lonnet::domain($form{'sudom'})) {
                       $sudomref = [$form{'sudom'}];
 sub create_account {                      $sudom = $form{'sudom'};
     my ($r,$form,$cancreate,$uname,$contact_name) = @_;                  }
     return unless((ref($form) eq 'HASH') && (ref($cancreate) eq 'ARRAY'));              }
     my %domconfig =          }
         &Apache::lonnet::get_dom('configuration',['usercreation'],$form->{'udom'});  # ------------ see if the original user has enough privileges to pull this stunt
     if (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {   if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {
         my $start_page =  # ---------------------------------------------------- see if the su-user exists
             &Apache::loncommon::start_page('Create a user account in LON-CAPA',      unless (&Apache::lonnet::homeserver($suname,$sudom) eq 'no_host') {
                                            '',{'no_inline_link'   => 1,});  # ------------------------------ see if the su-user is not too highly privileged
         my $domdesc = &Apache::lonnet::domain($form->{'udom'},'description');   if (&Apache::lonnet::privileged($suname,$sudom)) {
         my $lonhost = $r->dir_config('lonHostID');                      &Apache::lonnet::logthis('Attempted switch user to privileged user');
         my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};                  } else {
         my $contacts =                      my $noprivswitch;
             &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',  #
                                                     $form->{'udom'},$origmail);  # su-user's home server and user's home server must have one of:
         my ($contact_email) = split(',',$contacts);  # (a) same domain
         my $output =  # (b) same primary library server for the two domains
             &Apache::createaccount::username_check($uname,$form->{'udom'},  # (c) same "internet domain" for primary library server(s) for home servers' domains
                                                    $domdesc,'',$lonhost,  #
                                                    $contact_email,$contact_name);                      my $suprim = &Apache::lonnet::domain($sudom,'primary');
         &Apache::loncommon::content_type($r,'text/html');                      my $suintdom = &Apache::lonnet::internet_dom($suprim);
         $r->send_http_header;                      unless ($sudom eq $form{'udom'}) {
         &Apache::createaccount::print_header($r,$start_page);                          my $uprim = &Apache::lonnet::domain($form{'udom'},'primary');
         $r->print('<h3>'.&mt('Account creation').'</h3>'.                          my $uintdom = &Apache::lonnet::internet_dom($uprim);
                   &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.                          unless ($suprim eq $uprim) {
                   $output.&Apache::loncommon::end_page());                              unless ($suintdom eq $uintdom) {
     } else {                                  &Apache::lonnet::logthis('Attempted switch user '
         &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);                                     .'to user with different "internet domain".');                        
     }                                  $noprivswitch = 1;
     return;                              }
 }                          }
                       }
 1;  
 __END__                      unless ($noprivswitch) {
   #
   # server where log-in occurs must have same "internet domain" as su-user's home
   # server
   #
                           my $lonhost = $r->dir_config('lonHostID');
                           my $hostintdom = &Apache::lonnet::internet_dom($lonhost);
                           if ($hostintdom ne $suintdom) {
                               &Apache::lonnet::logthis('Attempted switch user on a '
                                   .'server with a different "internet domain".');
                           } else {
   
   # -------------------------------------------------------- actually switch users
   
               &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.
                                 $form{'udom'}.' logging in as '.$suname.':'.$sudom);
               $form{'uname'}=$suname;
                               if ($form{'udom'} ne $sudom) {
                                   $form{'udom'}=$sudom;
                               }
                           }
                       }
    }
       }
    } else {
       &Apache::lonnet::logthis('Non-privileged user attempting switch user');
    }
       }
   
       my ($is_balancer,$otherserver);
   
       unless ($hosthere) {
           ($is_balancer,$otherserver) =
               &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');
           if ($is_balancer) {
               if ($otherserver eq '') {
                   my $lowest_load;
                   ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});
                   if ($lowest_load > 100) {
                       $otherserver = &Apache::lonnet::spareserver($lowest_load,$lowest_load,1,$form{'udom'});
                   }
               }
               if ($otherserver ne '') {
                   my @hosts = &Apache::lonnet::current_machine_ids();
                   if (grep(/^\Q$otherserver\E$/,@hosts)) {
                       $hosthere = $otherserver;
                   }
               }
           }
       }
   
       if (($is_balancer) && (!$hosthere)) {
           if ($otherserver) {
               &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')) {
                   $switchto .= '&origurl='.$firsturl;
               }
               if ($form{'role'}) {
                   $switchto .= '&role='.$form{'role'};
               }
               if ($form{'symb'}) {
                   $switchto .= '&symb='.$form{'symb'};
               }
               $r->internal_redirect($switchto);
           } else {
               $r->print(&noswitch());
           }
           return OK;
       } else {
           if (!&check_can_host($r,\%form,$authhost)) {
               my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});
               if ($otherserver) {
                   &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')) {
                       $switchto .= '&origurl='.$firsturl;
                   }
                   if ($form{'role'}) {
                       $switchto .= '&role='.$form{'role'};
                   }
                   if ($form{'symb'}) {
                       $switchto .= '&symb='.$form{'symb'};
                   }
                   $r->internal_redirect($switchto);
               } else {
                   $r->print(&noswitch());
               }
               return OK;
           }
   
   # ------------------------------------------------------- Do the load balancing
   
   # ---------------------------------------------------------- Determine own load
           my $loadlim = $r->dir_config('lonLoadLim');
           my $loadavg;
           {
               my $loadfile=Apache::File->new('/proc/loadavg');
               $loadavg=<$loadfile>;
           }
           $loadavg =~ s/\s.*//g;
           my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
           my $userloadpercent=&Apache::lonnet::userload();
   
   # ---------------------------------------------------------- Are we overloaded?
           if ((($userloadpercent>100.0)||($loadpercent>100.0))) {
               my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'});
               if (!$unloaded) {
                   ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});
               }
               if ($unloaded) {
                   &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',
                            undef,\%form);
                   $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);
                   return OK;
               }
           }
           if (($is_balancer) && ($hosthere)) {
               $form{'noloadbalance'} = $hosthere;
           }
           &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,
                    \%form);
           return OK;
       }
   }
   
   sub check_can_host {
       my ($r,$form,$authhost,$domdesc) = @_;
       return unless (ref($form) eq 'HASH');
       my $canhost = 1;
       my $lonhost = $r->dir_config('lonHostID');
       my $udom = $form->{'udom'};
       my @intdoms;
       my $internet_names = &Apache::lonnet::get_internet_names($lonhost);
       if (ref($internet_names) eq 'ARRAY') {
           @intdoms = @{$internet_names};
       }
       my $uprimary_id = &Apache::lonnet::domain($udom,'primary');
       my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
       unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {
           my $machine_dom = &Apache::lonnet::host_domain($lonhost);
           my $hostname = &Apache::lonnet::hostname($lonhost);
           my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);
           my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);
           my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);
           my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);
           my $loncaparev;
           if ($authhost eq 'no_account_on_host') {
               $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);
           } else {
               $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);
           }
           $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,
                                                        $udomdefaults{'remotesessions'},
                                                        $defdomdefaults{'hostedsessions'});
       }
       unless ($canhost) {
           if ($authhost eq 'no_account_on_host') {
               my $checkloginvia = 1;
               my ($login_host,$hostname) =
                   &Apache::lonnet::choose_server($udom,$checkloginvia);
               &Apache::loncommon::content_type($r,'text/html');
               $r->send_http_header;
               if ($login_host ne '') {
                   my $protocol = $Apache::lonnet::protocol{$login_host};
                   $protocol = 'http' if ($protocol ne 'https');
                   my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';
                   $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').
                             '<h3>'.&mt('Account creation').'</h3>'.
                             &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
                             '<p>'.&mt('You will be able to create one by logging into a LON-CAPA server within the [_1] domain.',$domdesc).'</p>'.
                             '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').
                             &Apache::loncommon::end_page());
               } else {
                   $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').
                             '<h3>'.&mt('Account creation unavailable').'</h3>'.
                             &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
                             '<p>'.&mt('Currently a LON-CAPA server is not available within the [_1] domain for you to log-in to, to create an account.',$domdesc).'</p>'.
                             &Apache::loncommon::end_page());
               }
           } else {
               &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,
                        $form);
               my ($otherserver) = &Apache::lonnet::choose_server($udom);
               $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);
           }
       }
       return $canhost;
   }
   
   sub noswitch {
       my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').
                    '<h3>'.&mt('Session unavailable').'</h3>'.
                    &mt('This LON-CAPA server is unable to host your session.').'<br />'.
                    '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.
                    &Apache::loncommon::end_page();
       return $result;
   }
   
   sub loginhelpdisplay {
       my ($authdomain) = @_;
       my $login_help = 1;
       my $lang = &Apache::lonlocal::current_language();
       if ($login_help) {
           my $dom = $authdomain;
           if ($dom eq '') {
               $dom = &Apache::lonnet::default_login_domain();
           }
           my %domconfhash = &Apache::loncommon::get_domainconf($dom);
           my $loginhelp_url;
           if ($lang) {
               $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};
               if ($loginhelp_url ne '') {
                   return $loginhelp_url;
               }
           }
           $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};
           if ($loginhelp_url ne '') {
               return $loginhelp_url;
           } else {
               return '/adm/loginproblems.html';
           }
       }
       return;
   }
   
   1;
   __END__
   
   

Removed from v.1.101.8.9.2.1  
changed lines
  Added in v.1.153


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