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

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


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