Diff for /loncom/auth/lonauth.pm between versions 1.121.2.17 and 1.156

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


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