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

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

Removed from v.1.121.2.17  
changed lines
  Added in v.1.151


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