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

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


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