Diff for /loncom/auth/lonauth.pm between versions 1.121.2.18 and 1.138

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

Removed from v.1.121.2.18  
changed lines
  Added in v.1.138


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