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

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

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


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