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

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


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