Diff for /loncom/auth/lonauth.pm between versions 1.121.2.21 and 1.149

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


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