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

version 1.121.2.17, 2019/08/01 00:42:34 version 1.143, 2017/02/25 20:00:36
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 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 {  use Digest::MD5;
     my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,   
  $form) = @_;  # ------------------------------------------------------------ Successful login
   sub success {
 # ------------------------------------------------------------ Get cookie ready      my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,
     my $cookie =   $form) = @_;
  &Apache::loncommon::init_user_environment($r, $username, $domain,  
   $authhost, $form,  # ------------------------------------------------------------ Get cookie ready
   {'extra_env' => $extra_env,});      my $cookie =
    &Apache::loncommon::init_user_environment($r, $username, $domain,
     my $public=($username eq 'public' && $domain eq 'public');    $authhost, $form,
     {'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,  
                          "Login $ENV{'REMOTE_ADDR'}");  # -------------------------------------------------------------------- Log this
   
 # ------------------------------------------------- Check for critical messages      &Apache::lonnet::log($domain,$username,$authhost,
                            "Login $ENV{'REMOTE_ADDR'}");
     my @what=&Apache::lonnet::dump('critical',$domain,$username);  
     if ($what[0]) {  # ------------------------------------------------- Check for critical messages
  if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {  
     $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
       my ($securecookie,$defaultcookie);
     if (defined($form->{role})) {      if ($ENV{'SERVER_PORT'} == 443) {
         my $envkey = 'user.role.'.$form->{role};          $securecookie="lonID=$cookie; path=/; HttpOnly; secure";
         my $now=time;          my $lonidsdir=$r->dir_config('lonIDsDir');
         my $then=$env{'user.login.time'};          if (($lonidsdir) && (-e "$lonidsdir/$cookie.id")) {
         my $refresh=$env{'user.refresh.time'};              my $linkname=substr(Digest::MD5::md5_hex(Digest::MD5::md5_hex(time(). {}. rand(). $$)), 0, 32).'_linked';
         my $update=$env{'user.update.time'};              if (-e "$lonidsdir/$linkname.id") {
         if (!$update) {                  unlink("$lonidsdir/$linkname.id");
             $update = $then;              }
         }              my $made_symlink = eval { symlink("$lonidsdir/$cookie.id",
         if (exists($env{$envkey})) {                                                "$lonidsdir/$linkname.id"); 1 };
             my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus);              if ($made_symlink) {
             &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,                  $defaultcookie = "lonLinkID=$linkname; path=/; HttpOnly;";
                                          \$trolecode,\$tstatus,\$tstart,\$tend);                  &Apache::lonnet::appenv({'user.linkedenv' => "$lonidsdir/$linkname.id"});
             if ($tstatus eq 'is') {              }
                 $destination  .= ($destination =~ /\?/) ? '&' : '?';          }
                 my $newrole = &HTML::Entities::encode($form->{role},'"<>&');      } else {
                 $destination .= 'selectrole=1&'.$newrole.'=1';          $defaultcookie = "lonID=$cookie; path=/; HttpOnly;";
             }      }
         }  # -------------------------------------------------------- Menu script and info
     }      my $destination = $lowerurl;
     if (defined($form->{symb})) {  
         my $destsymb = $form->{symb};      if (defined($form->{role})) {
         $destination  .= ($destination =~ /\?/) ? '&' : '?';          my $envkey = 'user.role.'.$form->{role};
         if ($destsymb =~ /___/) {          my $now=time;
             # FIXME Need to deal with encrypted symbs and urls as needed.          my $then=$env{'user.login.time'};
             my ($map,$resid,$desturl)=split(/___/,$destsymb);          my $refresh=$env{'user.refresh.time'};
             $desturl = &Apache::lonnet::clutter($desturl);          my $update=$env{'user.update.time'};
             $desturl = &HTML::Entities::encode($desturl,'"<>&');          if (!$update) {
             $destsymb = &HTML::Entities::encode($destsymb,'"<>&');              $update = $then;
             $destination .= 'destinationurl='.$desturl.          }
                             '&destsymb='.$destsymb;          if (exists($env{$envkey})) {
         } else {              my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus);
             $destsymb = &HTML::Entities::encode($destsymb,'"<>&');              &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,
             $destination .= 'destinationurl='.$destsymb;                                           \$trolecode,\$tstatus,\$tstart,\$tend);
         }              if ($tstatus eq 'is') {
     }                  $destination  .= ($destination =~ /\?/) ? '&' : '?';
     if ($destination =~ m{^/adm/roles}) {                  my $newrole = &HTML::Entities::encode($form->{role},'"<>&');
         $destination  .= ($destination =~ /\?/) ? '&' : '?';                  $destination .= 'selectrole=1&'.$newrole.'=1';
         $destination .= 'source=login';              }
     }          }
       }
     my $windowinfo=&Apache::lonmenu::open($env{'browser.os'});      if (defined($form->{symb})) {
     my $startupremote=&Apache::lonmenu::startupremote($destination);          my $destsymb = $form->{symb};
     my $remoteinfo=&Apache::lonmenu::load_remote_msg($lowerurl);          $destination  .= ($destination =~ /\?/) ? '&' : '?';
     my $setflags=&Apache::lonmenu::setflags();          if ($destsymb =~ /___/) {
     my $maincall=&Apache::lonmenu::maincall();              # FIXME Need to deal with encrypted symbs and urls as needed.
     my $brcrum = [{'href' => '',              my ($map,$resid,$desturl)=split(/___/,$destsymb);
                    'text' => 'Successful Login'},];              $desturl = &Apache::lonnet::clutter($desturl);
     my $start_page=&Apache::loncommon::start_page('Successful Login',              $desturl = &HTML::Entities::encode($desturl,'"<>&');
                                                   $startupremote,              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
                                                   {'no_inline_link' => 1,              $destination .= 'destinationurl='.$desturl.
                                                    'bread_crumbs' => $brcrum,});                              '&destsymb='.$destsymb;
     my $end_page  =&Apache::loncommon::end_page();          } else {
               $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
     my $continuelink;              $destination .= 'destinationurl='.$destsymb;
     if ($env{'environment.remote'} eq 'off') {          }
  $continuelink='<a href="'.$destination.'">'.&mt('Continue').'</a>';      }
     }      if ($destination =~ m{^/adm/roles}) {
 # ------------------------------------------------- Output for successful login          $destination  .= ($destination =~ /\?/) ? '&' : '?';
           $destination .= 'source=login';
     &Apache::loncommon::content_type($r,'text/html');      }
     $r->header_out('Set-cookie' => $cookie);  
     $r->send_http_header;      my $windowinfo = Apache::lonhtmlcommon::scripttag('self.name="loncapaclient";');
       my $header = '<meta HTTP-EQUIV="Refresh" CONTENT="0; url='.$destination.'" />';
     my %lt=&Apache::lonlocal::texthash(      my $brcrum = [{'href' => '',
        'wel' => 'Welcome',                     'text' => 'Successful Login'},];
        'pro' => 'Login problems?',      my $args = {'bread_crumbs' => $brcrum,};
        );      unless ((defined($form->{role})) || (defined($form->{symb}))) {
     my $loginhelp = &loginhelpdisplay($domain);          my $update=$env{'user.update.time'};
     if ($loginhelp) {          if (!$update) {
         $loginhelp = '<p><a href="'.$loginhelp.'">'.$lt{'pro'}.'</a></p>';              $update = $env{'user.login.time'};
     }          }
           my %roles_in_env;
     my $welcome = &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');           my $showcount = &Apache::lonroles::roles_from_env(\%roles_in_env,$update);
     $r->print(<<ENDSUCCESS);          if ($showcount == 1) {
 $start_page              foreach my $rolecode (keys(%roles_in_env)) {
 $setflags                  my ($cid) = ($rolecode =~ m{^\Quser.role.st./\E($match_domain/$match_courseid)(?:/|$)});
 $windowinfo                  if ($cid) {
 <h1>$lt{'wel'}</h1>                      my %coursedescription =
 $welcome                          &Apache::lonnet::coursedescription($cid,{'one_time' => '1'});
 $loginhelp                      if ($coursedescription{'type'} eq 'Placement') {
 $remoteinfo                          $args->{'crstype'} = 'Placement';
 $maincall                      }
 $continuelink                      last;
 $end_page                  }
 ENDSUCCESS              }
     return;          }
 }      }
       my $start_page=&Apache::loncommon::start_page('Successful Login',
 # --------------------------------------------------------------- Failed login!                                                    $header,$args);
       my $end_page  =&Apache::loncommon::end_page();
 sub failed {  
     my ($r,$message,$form) = @_;   my $continuelink='<a href="'.$destination.'">'.&mt('Continue').'</a>';
     (undef,undef,undef,my $clientmathml,my $clientunicode) =  # ------------------------------------------------- Output for successful login
         &Apache::loncommon::decode_user_agent();  
     my $args = {};      &Apache::loncommon::content_type($r,'text/html');
     if ($clientunicode && !$clientmathml) {      if ($securecookie) {
         $args = {'browser.unicode' => 1};          $r->headers_out->add('Set-cookie' => $securecookie);
     }      }
       if ($defaultcookie) {
     my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,$args);          $r->headers_out->add('Set-cookie' => $defaultcookie);
     my $uname = &Apache::loncommon::cleanup_html($form->{'uname'});      }
     my $udom = &Apache::loncommon::cleanup_html($form->{'udom'});      $r->send_http_header;
     if (&Apache::lonnet::domain($udom,'description') eq '') {  
         undef($udom);      my %lt=&Apache::lonlocal::texthash(
     }         'wel' => 'Welcome',
     my $retry = '/adm/login';         'pro' => 'Login problems?',
     if ($uname eq $form->{'uname'}) {         );
         $retry .= '?username='.$uname;      my $loginhelp = &loginhelpdisplay($domain);
     }      if ($loginhelp) {
     if ($udom) {          $loginhelp = '<p><a href="'.$loginhelp.'">'.$lt{'pro'}.'</a></p>';
         $retry .= (($retry=~/\?/)?'&amp;':'?').'domain='.$udom;      }
     }  
     if (exists($form->{role})) {      my $welcome = &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');
         my $role = &Apache::loncommon::cleanup_html($form->{role});      $r->print(<<ENDSUCCESS);
         if ($role ne '') {  $start_page
             $retry .= (($retry=~/\?/)?'&amp;':'?').'role='.$role;  $windowinfo
         }  <h1>$lt{'wel'}</h1>
     }  $welcome
     if (exists($form->{symb})) {  $loginhelp
         my $symb = &Apache::loncommon::cleanup_html($form->{symb});  $continuelink
         if ($symb ne '') {  $end_page
             $retry .= (($retry=~/\?/)?'&amp;':'?').'symb='.$symb;  ENDSUCCESS
         }      return;
     }  }
     my $end_page = &Apache::loncommon::end_page();  
     &Apache::loncommon::content_type($r,'text/html');  # --------------------------------------------------------------- Failed login!
     $r->send_http_header;  
     my @actions =  sub failed {
          (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));      my ($r,$message,$form) = @_;
     my $loginhelp = &loginhelpdisplay($udom);      (undef,undef,undef,my $clientmathml,my $clientunicode) =
     if ($loginhelp) {          &Apache::loncommon::decode_user_agent();
         push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');      my $args = {};
     }      if ($clientunicode && !$clientmathml) {
     #FIXME: link to helpdesk might be added here          $args = {'browser.unicode' => 1};
       }
     $r->print(  
        $start_page      my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,$args);
       .'<h2>'.&mt('Sorry ...').'</h2>'      my $uname = &Apache::loncommon::cleanup_html($form->{'uname'});
       .&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />'      my $udom = &Apache::loncommon::cleanup_html($form->{'udom'});
       .&Apache::lonhtmlcommon::actionbox(\@actions)      if (&Apache::lonnet::domain($udom,'description') eq '') {
       .$end_page          undef($udom);
     );      }
  }      my $retry = '/adm/login';
       if ($uname eq $form->{'uname'}) {
 # ------------------------------------------------------------------ Rerouting!          $retry .= '?username='.$uname;
       }
 sub reroute {      if ($udom) {
     my ($r) = @_;          $retry .= (($retry=~/\?/)?'&amp;':'?').'domain='.$udom;
     &Apache::loncommon::content_type($r,'text/html');      }
     $r->send_http_header;      if (exists($form->{role})) {
     my $msg='<b>'.&mt('Sorry ...').'</b><br />'          my $role = &Apache::loncommon::cleanup_html($form->{role});
            .&mt('Please [_1]log in again[_2].');          if ($role ne '') {
     &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});              $retry .= (($retry=~/\?/)?'&amp;':'?').'role='.$role;
 }          }
       }
 # ---------------------------------------------------------------- Main handler      if (exists($form->{symb})) {
           my $symb = &Apache::loncommon::cleanup_html($form->{symb});
 sub handler {          if ($symb ne '') {
     my $r = shift;              $retry .= (($retry=~/\?/)?'&amp;':'?').'symb='.$symb;
     my $londocroot = $r->dir_config('lonDocRoot');          }
 # Are we re-routing?      }
     if (-e "$londocroot/lon-status/reroute.txt") {      my $end_page = &Apache::loncommon::end_page();
  &reroute($r);      &Apache::loncommon::content_type($r,'text/html');
  return OK;      $r->send_http_header;
     }      my @actions =
            (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));
     &Apache::lonlocal::get_language_handle($r);      my $loginhelp = &loginhelpdisplay($udom);
       if ($loginhelp) {
 # -------------------------------- Prevent users from attempting to login twice          push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');
     my $handle = &Apache::lonnet::check_for_valid_session($r);      }
     if ($handle ne '') {      #FIXME: link to helpdesk might be added here
         my $lonidsdir=$r->dir_config('lonIDsDir');  
         if ($handle=~/^publicuser\_/) {      $r->print(
 # For "public user" - remove it, we apparently really want to login         $start_page
             unlink($r->dir_config('lonIDsDir')."/$handle.id");        .'<h2>'.&mt('Sorry ...').'</h2>'
         } else {        .&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />'
 # Indeed, a valid token is found        .&Apache::lonhtmlcommon::actionbox(\@actions)
             &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);        .$end_page
     &Apache::loncommon::content_type($r,'text/html');      );
     $r->send_http_header;   }
     my $start_page =   
         &Apache::loncommon::start_page('Already logged in');  # ------------------------------------------------------------------ Rerouting!
     my $end_page =   
         &Apache::loncommon::end_page();  sub reroute {
             my $dest = '/adm/roles';      my ($r) = @_;
             if ($env{'form.firsturl'} ne '') {      &Apache::loncommon::content_type($r,'text/html');
                 $dest = $env{'form.firsturl'};      $r->send_http_header;
             }      my $msg='<b>'.&mt('Sorry ...').'</b><br />'
             $r->print(             .&mt('Please [_1]log in again[_2].');
                $start_page      &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});
               .'<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>')  # ---------------------------------------------------------------- Main handler
               .'</p>'  
               .$end_page  sub handler {
             );      my $r = shift;
             return OK;      my $londocroot = $r->dir_config('lonDocRoot');
         }  # Are we re-routing?
     }      if (-e "$londocroot/lon-status/reroute.txt") {
    &reroute($r);
 # ---------------------------------------------------- No valid token, continue   return OK;
       }
   
     my $buffer;      &Apache::lonlocal::get_language_handle($r);
     if ($r->header_in('Content-length') > 0) {  
  $r->read($buffer,$r->header_in('Content-length'),0);  # -------------------------------- Prevent users from attempting to login twice
     }      my $handle = &Apache::lonnet::check_for_valid_session($r);
     my %form;      if ($handle ne '') {
     foreach my $pair (split(/&/,$buffer)) {          my $lonidsdir=$r->dir_config('lonIDsDir');
        my ($name,$value) = split(/=/,$pair);          if ($handle=~/^publicuser\_/) {
        $value =~ tr/+/ /;  # For "public user" - remove it, we apparently really want to login
        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;              unlink($r->dir_config('lonIDsDir')."/$handle.id");
        $form{$name}=$value;          } else {
     }  # Indeed, a valid token is found
               &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
     if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {      &Apache::loncommon::content_type($r,'text/html');
  &failed($r,'Username, password and domain need to be specified.',      $r->send_http_header;
  \%form);      my $start_page =
         return OK;          &Apache::loncommon::start_page('Already logged in');
     }      my $end_page =
           &Apache::loncommon::end_page();
 # split user logging in and "su"-user              my $dest = '/adm/roles';
               if ($env{'form.firsturl'} ne '') {
     ($form{'uname'},$form{'suname'},$form{'sudom'})=split(/\:/,$form{'uname'});                  $dest = $env{'form.firsturl'};
     $form{'uname'} = &LONCAPA::clean_username($form{'uname'});              }
     $form{'suname'}= &LONCAPA::clean_username($form{'suname'});              $r->print(
     $form{'udom'}  = &LONCAPA::clean_domain($form{'udom'});                 $start_page
     $form{'sudom'} = &LONCAPA::clean_domain($form{'sudom'});                .'<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].'
     my $role   = $r->dir_config('lonRole');                      ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')
     my $domain = $r->dir_config('lonDefDomain');                .'</p>'
     my $prodir = $r->dir_config('lonUsersDir');                .$end_page
     my $contact_name = &mt('LON-CAPA helpdesk');              );
               return OK;
 # ---------------------------------------- Get the information from login token          }
       }
     my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},  
                                       $form{'serverid'});  # ---------------------------------------------------- No valid token, continue
   
     if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||   
         ($tmpinfo eq 'no_such_host')) {      my $buffer;
  &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);      if ($r->header_in('Content-length') > 0) {
         return OK;   $r->read($buffer,$r->header_in('Content-length'),0);
     } else {      }
  my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},      my %form;
    $form{'serverid'});      foreach my $pair (split(/&/,$buffer)) {
         if ( $reply ne 'ok' ) {         my ($name,$value) = split(/=/,$pair);
             &failed($r,'Session could not be opened.',\%form);         $value =~ tr/+/ /;
     &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");         $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
     return OK;         $form{$name}=$value;
  }      }
     }  
       if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {
     if (!&Apache::lonnet::domain($form{'udom'})) {   &failed($r,'Username, password and domain need to be specified.',
         &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);   \%form);
         return OK;          return OK;
     }      }
   
     my ($key,$firsturl,$rolestr,$symbstr,$iptokenstr)=split(/&/,$tmpinfo);  # split user logging in and "su"-user
     if ($rolestr) {  
         $rolestr = &unescape($rolestr);      ($form{'uname'},$form{'suname'})=split(/\:/,$form{'uname'});
     }      $form{'uname'} = &LONCAPA::clean_username($form{'uname'});
     if ($symbstr) {      $form{'suname'}= &LONCAPA::clean_username($form{'suname'});
         $symbstr= &unescape($symbstr);      $form{'udom'}  = &LONCAPA::clean_domain(  $form{'udom'});
     }  
     if ($iptokenstr) {      my $role   = $r->dir_config('lonRole');
         $iptokenstr = &unescape($iptokenstr);      my $domain = $r->dir_config('lonDefDomain');
     }      my $prodir = $r->dir_config('lonUsersDir');
     if ($rolestr =~ /^role=/) {      my $contact_name = &mt('LON-CAPA helpdesk');
         (undef,$form{'role'}) = split('=',$rolestr);  
     }  # ---------------------------------------- Get the information from login token
     if ($symbstr =~ /^symb=/) {   
         (undef,$form{'symb'}) = split('=',$symbstr);      my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},
     }                                        $form{'serverid'});
     if ($iptokenstr =~ /^iptoken=/) {  
         (undef,$form{'iptoken'}) = split('=',$iptokenstr);      if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||
     }          ($tmpinfo eq 'no_such_host')) {
    &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);
     my $upass = &Apache::loncommon::des_decrypt($key,$form{'upass0'});          return OK;
       } else {
 # ---------------------------------------------------------------- Authenticate   my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},
      $form{'serverid'});
     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});          if ( $reply ne 'ok' ) {
     my ($cancreate,$statustocreate) =              &failed($r,'Session could not be opened.',\%form);
         &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});      &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");
     my $defaultauth;      return OK;
     if (ref($cancreate) eq 'ARRAY') {   }
         if (grep(/^login$/,@{$cancreate})) {      }
             $defaultauth = 1;  
         }      if (!&Apache::lonnet::domain($form{'udom'})) {
     }          &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);
     my $clientcancheckhost = 1;          return OK;
     my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,      }
                                               $form{'udom'},$defaultauth,  
                                               $clientcancheckhost);      my ($key,$firsturl,$rolestr,$symbstr,$iptokenstr)=split(/&/,$tmpinfo);
           if ($rolestr) {
 # --------------------------------------------------------------------- Failed?          $rolestr = &unescape($rolestr);
       }
     if ($authhost eq 'no_host') {      if ($symbstr) {
  &failed($r,'Username and/or password could not be authenticated.',          $symbstr= &unescape($symbstr);
  \%form);      }
         return OK;      if ($iptokenstr) {
     } elsif ($authhost eq 'no_account_on_host') {          $iptokenstr = &unescape($iptokenstr);
         if ($defaultauth) {      }
             my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');      if ($rolestr =~ /^role=/) {
             unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {          (undef,$form{'role'}) = split('=',$rolestr);
                 return OK;      }
             }      if ($symbstr =~ /^symb=/) {
             my $start_page =           (undef,$form{'symb'}) = split('=',$symbstr);
                 &Apache::loncommon::start_page('Create a user account in LON-CAPA',      }
                                                '',{'no_inline_link'   => 1,});      if ($iptokenstr =~ /^iptoken=/) {
             my $lonhost = $r->dir_config('lonHostID');          (undef,$form{'iptoken'}) = split('=',$iptokenstr);
             my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};      }
             my $contacts =   
                 &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',      my $upass = $ENV{HTTPS} ? $form{'upass0'}
                                                         $form{'udom'},$origmail);          : &Apache::loncommon::des_decrypt($key,$form{'upass0'});
             my ($contact_email) = split(',',$contacts);   
             my $output =   # ---------------------------------------------------------------- Authenticate
                 &Apache::createaccount::username_check($form{'uname'},$form{'udom'},  
                                                        $domdesc,'',$lonhost,      my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});
                                                        $contact_email,$contact_name,      my ($cancreate,$statustocreate) =
                                                        undef,$statustocreate);          &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});
             &Apache::loncommon::content_type($r,'text/html');      my $defaultauth;
             $r->send_http_header;      if (ref($cancreate) eq 'ARRAY') {
             &Apache::createaccount::print_header($r,$start_page);          if (grep(/^login$/,@{$cancreate})) {
             $r->print('<h3>'.&mt('Account creation').'</h3>'.              $defaultauth = 1;
                       &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());      }
             return OK;      my $clientcancheckhost = 1;
         } else {      my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,
             &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);                                                $form{'udom'},$defaultauth,
             return OK;                                                $clientcancheckhost);
         }     
     }  # --------------------------------------------------------------------- Failed?
   
     if (($firsturl eq '') ||       if ($authhost eq 'no_host') {
  ($firsturl=~/^\/adm\/(logout|remote)/)) {   &failed($r,'Username and/or password could not be authenticated.',
  $firsturl='/adm/roles';   \%form);
     }          return OK;
       } elsif ($authhost eq 'no_account_on_host') {
     my $hosthere;          if ($defaultauth) {
     if ($form{'iptoken'}) {              my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');
         my %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});              unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {
         my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});                  return OK;
         if (($sessiondata{'domain'} eq $form{'udom'}) &&              }
             ($sessiondata{'username'} eq $form{'uname'})) {              my $start_page =
             $hosthere = 1;                  &Apache::loncommon::start_page('Create a user account in LON-CAPA');
         }              my $lonhost = $r->dir_config('lonHostID');
     }              my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
               my $contacts =
 # --------------------------------- Are we attempting to login as somebody else?                  &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
     if ($form{'suname'}) {                                                          $form{'udom'},$origmail);
         my ($suname,$sudom,$sudomref);              my ($contact_email) = split(',',$contacts);
         $suname = $form{'suname'};              my $output =
         $sudom = $form{'udom'};                  &Apache::createaccount::username_check($form{'uname'},$form{'udom'},
         if ($form{'sudom'}) {                                                         $domdesc,'',$lonhost,
             unless ($sudom eq $form{'sudom'}) {                                                         $contact_email,$contact_name,
                 if (&Apache::lonnet::domain($form{'sudom'})) {                                                         undef,$statustocreate);
                     $sudomref = [$form{'sudom'}];              &Apache::loncommon::content_type($r,'text/html');
                     $sudom = $form{'sudom'};              $r->send_http_header;
                 }              &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 />'.
 # ------------ see if the original user has enough privileges to pull this stunt                        $output.&Apache::loncommon::end_page());
  if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {              return OK;
 # ---------------------------------------------------- see if the su-user exists          } else {
     unless (&Apache::lonnet::homeserver($suname,$sudom) eq 'no_host') {              &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);
 # ------------------------------ see if the su-user is not too highly privileged              return OK;
  if (&Apache::lonnet::privileged($suname,$sudom)) {          }
                     &Apache::lonnet::logthis('Attempted switch user to privileged user');      }
                 } else {  
                     my $noprivswitch;      if (($firsturl eq '') ||
 #   ($firsturl=~/^\/adm\/(logout|remote)/)) {
 # su-user's home server and user's home server must have one of:   $firsturl='/adm/roles';
 # (a) same domain      }
 # (b) same primary library server for the two domains  
 # (c) same "internet domain" for primary library server(s) for home servers' domains      my $hosthere;
 #      if ($form{'iptoken'}) {
                     my $suprim = &Apache::lonnet::domain($sudom,'primary');          my %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});
                     my $suintdom = &Apache::lonnet::internet_dom($suprim);          my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});
                     unless ($sudom eq $form{'udom'}) {          if (($sessiondata{'domain'} eq $form{'udom'}) &&
                         my $uprim = &Apache::lonnet::domain($form{'udom'},'primary');              ($sessiondata{'username'} eq $form{'uname'})) {
                         my $uintdom = &Apache::lonnet::internet_dom($uprim);              $hosthere = 1;
                         unless ($suprim eq $uprim) {          }
                             unless ($suintdom eq $uintdom) {      }
                                 &Apache::lonnet::logthis('Attempted switch user '  
                                    .'to user with different "internet domain".');  # --------------------------------- Are we attempting to login as somebody else?
                                 $noprivswitch = 1;      if ($form{'suname'}) {
                             }  # ------------ see if the original user has enough privileges to pull this stunt
                         }   if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'})) {
                     }  # ---------------------------------------------------- see if the su-user exists
       unless (&Apache::lonnet::homeserver($form{'suname'},$form{'udom'})
                     unless ($noprivswitch) {   eq 'no_host') {
 #   &Apache::lonnet::logthis(&Apache::lonnet::homeserver($form{'suname'},$form{'udom'}));
 # server where log-in occurs must have same "internet domain" as su-user's home  # ------------------------------ see if the su-user is not too highly privileged
 # server   unless (&Apache::lonnet::privileged($form{'suname'},$form{'udom'})) {
 #  # -------------------------------------------------------- actually switch users
                         my $lonhost = $r->dir_config('lonHostID');      &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.$form{'udom'}.
                         my $hostintdom = &Apache::lonnet::internet_dom($lonhost);   ' logging in as '.$form{'suname'});
                         if ($hostintdom ne $suintdom) {      $form{'uname'}=$form{'suname'};
                             &Apache::lonnet::logthis('Attempted switch user on a '   } else {
                                 .'server with a different "internet domain".');      &Apache::lonnet::logthis('Attempted switch user to privileged user');
                         } else {   }
       }
 # -------------------------------------------------------- actually switch users   } else {
       &Apache::lonnet::logthis('Non-privileged user attempting switch user');
     &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.   }
  $form{'udom'}.' logging in as '.$suname.':'.$sudom);      }
     $form{'uname'}=$suname;  
                             if ($form{'udom'} ne $sudom) {      my ($is_balancer,$otherserver);
                                 $form{'udom'}=$sudom;  
                             }      unless ($hosthere) {
                         }          ($is_balancer,$otherserver) =
                     }              &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');
  }          if ($is_balancer) {
     }              if ($otherserver eq '') {
  } else {                  my $lowest_load;
     &Apache::lonnet::logthis('Non-privileged user attempting switch user');                  ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});
  }                  if ($lowest_load > 100) {
     }                      $otherserver = &Apache::lonnet::spareserver($lowest_load,$lowest_load,1,$form{'udom'});
                   }
     my ($is_balancer,$otherserver);              }
               if ($otherserver ne '') {
     unless ($hosthere) {                  my @hosts = &Apache::lonnet::current_machine_ids();
         ($is_balancer,$otherserver) =                  if (grep(/^\Q$otherserver\E$/,@hosts)) {
             &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');                      $hosthere = $otherserver;
         if ($is_balancer) {                  }
             if ($otherserver eq '') {              }
                 my $lowest_load;          }
                 ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});      }
                 if ($lowest_load > 100) {  
                     $otherserver = &Apache::lonnet::spareserver($lowest_load,$lowest_load,1,$form{'udom'});      if (($is_balancer) && (!$hosthere)) {
                 }          if ($otherserver) {
             }              &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
             if ($otherserver ne '') {                       \%form);
                 my @hosts = &Apache::lonnet::current_machine_ids();              my $switchto = '/adm/switchserver?otherserver='.$otherserver;
                 if (grep(/^\Q$otherserver\E$/,@hosts)) {              if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
                     $hosthere = $otherserver;                  $switchto .= '&origurl='.$firsturl;
                 }              }
             }              if ($form{'role'}) {
         }                  $switchto .= '&role='.$form{'role'};
     }              }
               if ($form{'symb'}) {
     if (($is_balancer) && (!$hosthere)) {                  $switchto .= '&symb='.$form{'symb'};
         if ($otherserver) {              }
             &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,              $r->internal_redirect($switchto);
                      \%form);          } else {
             my $switchto = '/adm/switchserver?otherserver='.$otherserver;              $r->print(&noswitch());
             if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {          }
                 $switchto .= '&origurl='.$firsturl;          return OK;
             }      } else {
             if ($form{'role'}) {          if (!&check_can_host($r,\%form,$authhost)) {
                 $switchto .= '&role='.$form{'role'};              my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});
             }              if ($otherserver) {
             if ($form{'symb'}) {                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
                 $switchto .= '&symb='.$form{'symb'};                           \%form);
             }                  my $switchto = '/adm/switchserver?otherserver='.$otherserver;
             $r->internal_redirect($switchto);                  if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
         } else {                      $switchto .= '&origurl='.$firsturl;
             $r->print(&noswitch());                  }
         }                  if ($form{'role'}) {
         return OK;                      $switchto .= '&role='.$form{'role'};
     } else {                  }
         if (!&check_can_host($r,\%form,$authhost)) {                  if ($form{'symb'}) {
             my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});                      $switchto .= '&symb='.$form{'symb'};
             if ($otherserver) {                  }
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,                  $r->internal_redirect($switchto);
                          \%form);              } else {
                 my $switchto = '/adm/switchserver?otherserver='.$otherserver;                  $r->print(&noswitch());
                 if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {              }
                     $switchto .= '&origurl='.$firsturl;              return OK;
                 }          }
                 if ($form{'role'}) {  
                     $switchto .= '&role='.$form{'role'};  # ------------------------------------------------------- Do the load balancing
                 }  
                 if ($form{'symb'}) {  # ---------------------------------------------------------- Determine own load
                     $switchto .= '&symb='.$form{'symb'};          my $loadlim = $r->dir_config('lonLoadLim');
                 }          my $loadavg;
                 $r->internal_redirect($switchto);          {
             } else {              my $loadfile=Apache::File->new('/proc/loadavg');
                 $r->print(&noswitch());              $loadavg=<$loadfile>;
             }          }
             return OK;          $loadavg =~ s/\s.*//g;
         }          my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
           my $userloadpercent=&Apache::lonnet::userload();
 # ------------------------------------------------------- Do the load balancing  
   # ---------------------------------------------------------- Are we overloaded?
 # ---------------------------------------------------------- Determine own load          if ((($userloadpercent>100.0)||($loadpercent>100.0))) {
         my $loadlim = $r->dir_config('lonLoadLim');              my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'});
         my $loadavg;              if (!$unloaded) {
         {                  ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});
             my $loadfile=Apache::File->new('/proc/loadavg');              }
             $loadavg=<$loadfile>;              if ($unloaded) {
         }                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',
         $loadavg =~ s/\s.*//g;                           undef,\%form);
         my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);                  $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);
         my $userloadpercent=&Apache::lonnet::userload();                  return OK;
               }
 # ---------------------------------------------------------- Are we overloaded?          }
         if ((($userloadpercent>100.0)||($loadpercent>100.0))) {          if (($is_balancer) && ($hosthere)) {
             my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'});              $form{'noloadbalance'} = $hosthere;
             if (!$unloaded) {          }
                 ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});          &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,
             }                   \%form);
             if ($unloaded) {          return OK;
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',      }
                          undef,\%form);  }
                 $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);  
                 return OK;  sub check_can_host {
             }      my ($r,$form,$authhost,$domdesc) = @_;
         }      return unless (ref($form) eq 'HASH');
         if (($is_balancer) && ($hosthere)) {      my $canhost = 1;
             $form{'noloadbalance'} = $hosthere;      my $lonhost = $r->dir_config('lonHostID');
         }      my $udom = $form->{'udom'};
         &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,      my @intdoms;
                  \%form);      my $internet_names = &Apache::lonnet::get_internet_names($lonhost);
         return OK;      if (ref($internet_names) eq 'ARRAY') {
     }          @intdoms = @{$internet_names};
 }      }
       my $uprimary_id = &Apache::lonnet::domain($udom,'primary');
 sub check_can_host {      my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
     my ($r,$form,$authhost,$domdesc) = @_;      unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {
     return unless (ref($form) eq 'HASH');          my $machine_dom = &Apache::lonnet::host_domain($lonhost);
     my $canhost = 1;          my $hostname = &Apache::lonnet::hostname($lonhost);
     my $lonhost = $r->dir_config('lonHostID');          my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);
     my $udom = $form->{'udom'};          my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);
     my @intdoms;          my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);
     my $internet_names = &Apache::lonnet::get_internet_names($lonhost);          my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);
     if (ref($internet_names) eq 'ARRAY') {          my $loncaparev;
         @intdoms = @{$internet_names};          if ($authhost eq 'no_account_on_host') {
     }              $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);
     my $uprimary_id = &Apache::lonnet::domain($udom,'primary');          } else {
     my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);              $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);
     unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {          }
         my $machine_dom = &Apache::lonnet::host_domain($lonhost);          $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,
         my $hostname = &Apache::lonnet::hostname($lonhost);                                                       $udomdefaults{'remotesessions'},
         my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);                                                       $defdomdefaults{'hostedsessions'});
         my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);      }
         my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);      unless ($canhost) {
         my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);          if ($authhost eq 'no_account_on_host') {
         my $loncaparev;              my $checkloginvia = 1;
         if ($authhost eq 'no_account_on_host') {              my ($login_host,$hostname) =
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);                  &Apache::lonnet::choose_server($udom,$checkloginvia);
         } else {              &Apache::loncommon::content_type($r,'text/html');
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);              $r->send_http_header;
         }              if ($login_host ne '') {
         $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,                  my $protocol = $Apache::lonnet::protocol{$login_host};
                                                      $udomdefaults{'remotesessions'},                  $protocol = 'http' if ($protocol ne 'https');
                                                      $defdomdefaults{'hostedsessions'});                  my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';
     }                  $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').
     unless ($canhost) {                            '<h3>'.&mt('Account creation').'</h3>'.
         if ($authhost eq 'no_account_on_host') {                            &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
             my $checkloginvia = 1;                            '<p>'.&mt('You will be able to create one by logging into a LON-CAPA server within the [_1] domain.',$domdesc).'</p>'.
             my ($login_host,$hostname) =                             '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').
                 &Apache::lonnet::choose_server($udom,$checkloginvia);                            &Apache::loncommon::end_page());
             &Apache::loncommon::content_type($r,'text/html');              } else {
             $r->send_http_header;                  $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').
             if ($login_host ne '') {                            '<h3>'.&mt('Account creation unavailable').'</h3>'.
                 my $protocol = $Apache::lonnet::protocol{$login_host};                            &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
                 $protocol = 'http' if ($protocol ne 'https');                            '<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>'.
                 my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';                            &Apache::loncommon::end_page());
                 $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').              }
                           '<h3>'.&mt('Account creation').'</h3>'.          } else {
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.              &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,
                           '<p>'.&mt('You will be able to create one by logging into a LON-CAPA server within the [_1] domain.',$domdesc).'</p>'.                       $form);
                           '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').              my ($otherserver) = &Apache::lonnet::choose_server($udom);
                           &Apache::loncommon::end_page());              $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);
             } else {          }
                 $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').      }
                           '<h3>'.&mt('Account creation unavailable').'</h3>'.      return $canhost;
                           &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());  sub noswitch {
             }      my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').
         } else {                   '<h3>'.&mt('Session unavailable').'</h3>'.
             &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,                   &mt('This LON-CAPA server is unable to host your session.').'<br />'.
                      $form);                   '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.
             my ($otherserver) = &Apache::lonnet::choose_server($udom);                   &Apache::loncommon::end_page();
             $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);      return $result;
         }  }
     }  
     return $canhost;  sub loginhelpdisplay {
 }      my ($authdomain) = @_;
       my $login_help = 1;
 sub noswitch {      my $lang = &Apache::lonlocal::current_language();
     my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').      if ($login_help) {
                  '<h3>'.&mt('Session unavailable').'</h3>'.          my $dom = $authdomain;
                  &mt('This LON-CAPA server is unable to host your session.').'<br />'.          if ($dom eq '') {
                  '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.              $dom = &Apache::lonnet::default_login_domain();
                  &Apache::loncommon::end_page();          }
     return $result;          my %domconfhash = &Apache::loncommon::get_domainconf($dom);
 }          my $loginhelp_url;
           if ($lang) {
 sub loginhelpdisplay {              $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};
     my ($authdomain) = @_;              if ($loginhelp_url ne '') {
     my $login_help = 1;                  return $loginhelp_url;
     my $lang = &Apache::lonlocal::current_language();              }
     if ($login_help) {          }
         my $dom = $authdomain;          $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};
         if ($dom eq '') {          if ($loginhelp_url ne '') {
             $dom = &Apache::lonnet::default_login_domain();              return $loginhelp_url;
         }          } else {
         my %domconfhash = &Apache::loncommon::get_domainconf($dom);              return '/adm/loginproblems.html';
         my $loginhelp_url;          }
         if ($lang) {      }
             $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};      return;
             if ($loginhelp_url ne '') {  }
                 return $loginhelp_url;  
             }  1;
         }  __END__
         $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.143


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