Diff for /loncom/auth/lonauth.pm between versions 1.135 and 1.164

version 1.135, 2014/10/04 02:59:32 version 1.164, 2021/08/07 20:49:10
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 DynaLoader; # for Crypt::DES version  use Apache::loncommon();
 use Crypt::DES;  use Apache::lonnet;
 use Apache::loncommon();  use Apache::lonmenu();
 use Apache::lonnet;  use Apache::createaccount;
 use Apache::lonmenu();  use Apache::ltiauth;
 use Apache::createaccount;  use Fcntl qw(:flock);
 use Fcntl qw(:flock);  use Apache::lonlocal;
 use Apache::lonlocal;  use Apache::File();
 use Apache::File();  use HTML::Entities;
 use HTML::Entities;  use Digest::MD5;
     
 # ------------------------------------------------------------ Successful login  # ------------------------------------------------------------ Successful login
 sub success {  sub success {
     my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,      my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,
  $form) = @_;   $form,$skipcritical,$cid) = @_;
   
 # ------------------------------------------------------------ Get cookie ready  # ------------------------------------------------------------ Get cookie ready
     my $cookie =      my $cookie =
  &Apache::loncommon::init_user_environment($r, $username, $domain,   &Apache::loncommon::init_user_environment($r, $username, $domain,
   $authhost, $form,    $authhost, $form,
   {'extra_env' => $extra_env,});    {'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,      my $ip = &Apache::lonnet::get_requestor_ip();
                          "Login $ENV{'REMOTE_ADDR'}");      &Apache::lonnet::log($domain,$username,$authhost,
                            "Login $ip");
 # ------------------------------------------------- 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 cookie ready          }
     $cookie="lonID=$cookie; path=/";      }
 # -------------------------------------------------------- Menu script and info  
     my $destination = $lowerurl;  # ----------------------------------------------------------- Get cookies ready
       my ($securecookie,$defaultcookie);
     if (defined($form->{role})) {      my $ssl = $r->subprocess_env('https');
         my $envkey = 'user.role.'.$form->{role};      if ($ssl) {
         my $now=time;          $securecookie="lonSID=$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' => $linkname});
                 $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);
             unless ($desturl=~/^(adm|editupload|public)/) {              }
                 $desturl = &Apache::lonnet::clutter($desturl);              if ($defaultcookie) {
             }                  $r->headers_out->add('Set-cookie' => $defaultcookie);
             $desturl = &HTML::Entities::encode($desturl,'"<>&');              }
             $destsymb = &HTML::Entities::encode($destsymb,'"<>&');              $r->send_http_header;
             $destination .= 'destinationurl='.$desturl.              if (ref($form) eq 'HASH') {
                             '&destsymb='.$destsymb;                  $form->{'lti.login'} = $env{'request.lti.login'};
         } else {                  $form->{'lti.reqcrs'} = $env{'request.lti.reqcrs'};
             $destsymb = &HTML::Entities::encode($destsymb,'"<>&');                  $form->{'lti.reqrole'} = $env{'request.lti.reqrole'};
             $destination .= 'destinationurl='.$destsymb;                  $form->{'lti.sourcecrs'} = $env{'request.lti.sourcecrs'};
         }              }
     }              &Apache::ltiauth::lti_reqcrs($r,$domain,$form,$username,$domain);
     if ($destination =~ m{^/adm/roles}) {              return;
         $destination  .= ($destination =~ /\?/) ? '&' : '?';          }
         $destination .= 'source=login';          if ($env{'request.lti.selfenrollrole'}) {
     }              if (&Apache::ltiauth::lti_enroll($username,$domain,
                                                $env{'request.lti.selfenrollrole'}) eq 'ok') {
     my $windowinfo = Apache::lonhtmlcommon::scripttag('self.name="loncapaclient";');                  $form->{'role'} = $env{'request.lti.selfenrollrole'};
     my $header = '<meta HTTP-EQUIV="Refresh" CONTENT="0; url='.$destination.'" />';                  &Apache::lonnet::delenv('request.lti.selfenrollrole');
     my $brcrum = [{'href' => '',              } else {
                    'text' => 'Successful Login'},];                  &Apache::ltiauth::invalid_request($r,24);
     my $start_page=&Apache::loncommon::start_page('Successful Login',              }
                                                   $header,          }
                                                   {'bread_crumbs' => $brcrum,});      }
     my $end_page  =&Apache::loncommon::end_page();      if (defined($form->{role})) {
           my $envkey = 'user.role.'.$form->{role};
  my $continuelink='<a href="'.$destination.'">'.&mt('Continue').'</a>';          my $now=time;
 # ------------------------------------------------- Output for successful login          my $then=$env{'user.login.time'};
           my $refresh=$env{'user.refresh.time'};
     &Apache::loncommon::content_type($r,'text/html');          my $update=$env{'user.update.time'};
     $r->header_out('Set-cookie' => $cookie);          if (!$update) {
     $r->send_http_header;              $update = $then;
           }
     my %lt=&Apache::lonlocal::texthash(          if (exists($env{$envkey})) {
        'wel' => 'Welcome',              my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus);
        'pro' => 'Login problems?',              &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,
        );                                           \$trolecode,\$tstatus,\$tstart,\$tend);
     my $loginhelp = &loginhelpdisplay($domain);              if ($tstatus eq 'is') {
     if ($loginhelp) {                  $destination  .= ($destination =~ /\?/) ? '&' : '?';
         $loginhelp = '<p><a href="'.$loginhelp.'">'.$lt{'pro'}.'</a></p>';                  my $newrole = &HTML::Entities::encode($form->{role},'"<>&');
     }                  $destination .= 'selectrole=1&'.$newrole.'=1';
               }
     my $welcome = &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');           }
     $r->print(<<ENDSUCCESS);      }
 $start_page      if (defined($form->{symb})) {
 $windowinfo          my $destsymb = $form->{symb};
 <h1>$lt{'wel'}</h1>          my $encrypted;
 $welcome          if ($destsymb =~ m{^/enc/}) {
 $loginhelp              $encrypted = 1;
 $continuelink              if ($cid) {
 $end_page                  $destsymb = &Apache::lonenc::unencrypted($destsymb,$cid);
 ENDSUCCESS              }
     return;          }
 }          $destination  .= ($destination =~ /\?/) ? '&' : '?';
           if ($destsymb =~ /___/) {
 # --------------------------------------------------------------- Failed login!              my ($map,$resid,$desturl)=split(/___/,$destsymb);
               $desturl = &Apache::lonnet::clutter($desturl);
 sub failed {              if ($encrypted) {
     my ($r,$message,$form) = @_;                  $desturl = &Apache::lonenc::encrypted($desturl,1,$cid);
     (undef,undef,undef,my $clientmathml,my $clientunicode) =                  $destsymb = $form->{symb};
         &Apache::loncommon::decode_user_agent();              }
     my $args = {};              $desturl = &HTML::Entities::encode($desturl,'"<>&');
     if ($clientunicode && !$clientmathml) {              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
         $args = {'browser.unicode' => 1};              $destination .= 'destinationurl='.$desturl.
     }                              '&destsymb='.$destsymb;
           } elsif (!$encrypted) {
     my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,$args);              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
     my $uname = &Apache::loncommon::cleanup_html($form->{'uname'});              $destination .= 'destinationurl='.$destsymb;
     my $udom = &Apache::loncommon::cleanup_html($form->{'udom'});          }
     if (&Apache::lonnet::domain($udom,'description') eq '') {      }
         undef($udom);      if ($destination =~ m{^/adm/roles}) {
     }          $destination  .= ($destination =~ /\?/) ? '&' : '?';
     my $retry = '/adm/login';          $destination .= 'source=login';
     if ($uname eq $form->{'uname'}) {      }
         $retry .= '?username='.$uname;  
     }      my $windowname = 'loncapaclient';
     if ($udom) {      if ($env{'request.lti.login'}) {
         $retry .= (($retry=~/\?/)?'&amp;':'?').'domain='.$udom;          $windowname .= 'lti';
     }      }
     if (exists($form->{role})) {      my $windowinfo = Apache::lonhtmlcommon::scripttag('self.name="'.$windowname.'";');
         my $role = &Apache::loncommon::cleanup_html($form->{role});      my $brcrum = [{'href' => '',
         if ($role ne '') {                     'text' => 'Successful Login'},];
             $retry .= (($retry=~/\?/)?'&amp;':'?').'role='.$role;      my $args = {'bread_crumbs' => $brcrum,};
         }      unless ((defined($form->{role})) || (defined($form->{symb}))) {
     }          my $update=$env{'user.update.time'};
     if (exists($form->{symb})) {          if (!$update) {
         my $symb = &Apache::loncommon::cleanup_html($form->{symb});              $update = $env{'user.login.time'};
         if ($symb ne '') {          }
             $retry .= (($retry=~/\?/)?'&amp;':'?').'symb='.$symb;          my %roles_in_env;
         }          my $showcount = &Apache::lonroles::roles_from_env(\%roles_in_env,$update);
     }          if ($showcount == 1) {
     my $end_page = &Apache::loncommon::end_page();              foreach my $rolecode (keys(%roles_in_env)) {
     &Apache::loncommon::content_type($r,'text/html');                  my ($cid) = ($rolecode =~ m{^\Quser.role.st./\E($match_domain/$match_courseid)(?:/|$)});
     $r->send_http_header;                  if ($cid) {
     my @actions =                      my %coursedescription =
          (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));                          &Apache::lonnet::coursedescription($cid,{'one_time' => '1'});
     my $loginhelp = &loginhelpdisplay($udom);                      if ($coursedescription{'type'} eq 'Placement') {
     if ($loginhelp) {                          $args->{'crstype'} = 'Placement';
         push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');                      }
     }                      last;
     #FIXME: link to helpdesk might be added here                  }
               }
     $r->print(          }
        $start_page      }
       .'<h2>'.&mt('Sorry ...').'</h2>'  
       .&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />'  # ------------------------------------------------- Output for successful login
       .&Apache::lonhtmlcommon::actionbox(\@actions)  
       .$end_page      &Apache::loncommon::content_type($r,'text/html');
     );      if ($securecookie) {
  }          $r->headers_out->add('Set-cookie' => $securecookie);
       }
 # ------------------------------------------------------------------ Rerouting!      if ($defaultcookie) {
           $r->headers_out->add('Set-cookie' => $defaultcookie);
 sub reroute {      }
     my ($r) = @_;      $r->send_http_header;
     &Apache::loncommon::content_type($r,'text/html');  
     $r->send_http_header;      my ($start_page,$js,$pagebody,$end_page);
     my $msg='<b>'.&mt('Sorry ...').'</b><br />'      if ($env{'request.lti.login'}) {
            .&mt('Please [_1]log in again[_2].');          $args = {'only_body' => 1};
     &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});          if ($env{'request.lti.target'} eq '') {
 }              my $ltitarget = (($destination =~ /\?/) ? '&' : '?').
                               'ltitarget=iframe';
 # ---------------------------------------------------------------- Main handler              $js = <<"ENDJS";
   
 sub handler {  <script type="text/javascript">
     my $r = shift;  // <![CDATA[
     my $londocroot = $r->dir_config('lonDocRoot');  function setLTItarget() {
     my $form;      var newloc = '$destination';
 # Are we re-routing?      if (parent !== window) {
     if (-e "$londocroot/lon-status/reroute.txt") {          newloc += '$ltitarget';
  &reroute($r);      }
  return OK;      window.location.href=newloc;
     }  }
   // ]]>
     &Apache::lonlocal::get_language_handle($r);  </script>
   
 # -------------------------------- Prevent users from attempting to login twice  ENDJS
     my $handle = &Apache::lonnet::check_for_valid_session($r);              $args->{'add_entries'} = {'onload' => "javascript:setLTItarget();"};
     if ($handle ne '') {              $pagebody =  '<noscript><span class="LC_warning">'
         my $lonidsdir=$r->dir_config('lonIDsDir');                          .&mt('Use of LON-CAPA requires Javascript to be enabled in your web browser.')
         if ($handle=~/^publicuser\_/) {                          .'</span></noscript>';
 # For "public user" - remove it, we apparently really want to login          } else {
             unlink($r->dir_config('lonIDsDir')."/$handle.id");              $args->{'redirect'} = [0,$destination,1];
         } else {          }
 # Indeed, a valid token is found          $start_page=&Apache::loncommon::start_page('',$js,$args);
             &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);      } else {
     &Apache::loncommon::content_type($r,'text/html');          $args->{'redirect'} = [0,$destination];
     $r->send_http_header;          $start_page=&Apache::loncommon::start_page('Successful Login',
     my $start_page =                                                      $js,$args);
         &Apache::loncommon::start_page('Already logged in');  
     my $end_page =           my %lt=&Apache::lonlocal::texthash(
         &Apache::loncommon::end_page();             'wel' => 'Welcome',
             my $dest = '/adm/roles';             'pro' => 'Login problems?',
             if ($env{'form.firsturl'} ne '') {            );
                 $dest = $env{'form.firsturl'};          $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>');
             $r->print(          my $loginhelp = &loginhelpdisplay($domain);
                $start_page          if ($loginhelp) {
               .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'              $pagebody .= '<p><a href="'.$loginhelp.'">'.$lt{'pro'}.'</a></p>';
               .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'          }
                     ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')      }
               .'</p>'      $end_page = &Apache::loncommon::end_page();
               .$end_page      $r->print(<<ENDSUCCESS);
             );  $start_page
             return OK;  $windowinfo
         }  $pagebody
     }  $end_page
   ENDSUCCESS
 # ---------------------------------------------------- No valid token, continue      return;
   }
   
     my $buffer;  # --------------------------------------------------------------- Failed login!
     if ($r->header_in('Content-length') > 0) {  
  $r->read($buffer,$r->header_in('Content-length'),0);  sub failed {
     }      my ($r,$message,$form) = @_;
     my %form;      (undef,undef,undef,my $clientmathml,my $clientunicode) =
     foreach my $pair (split(/&/,$buffer)) {          &Apache::loncommon::decode_user_agent();
        my ($name,$value) = split(/=/,$pair);      my $args = {};
        $value =~ tr/+/ /;      if ($clientunicode && !$clientmathml) {
        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;          $args = {'browser.unicode' => 1};
        $form{$name}=$value;      }
     }  
       my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,$args);
     if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {      my $uname = &Apache::loncommon::cleanup_html($form->{'uname'});
  &failed($r,'Username, password and domain need to be specified.',      my $udom = &Apache::loncommon::cleanup_html($form->{'udom'});
  \%form);      if (&Apache::lonnet::domain($udom,'description') eq '') {
         return OK;          undef($udom);
     }      }
       my $retry = '/adm/login';
 # split user logging in and "su"-user      if ($uname eq $form->{'uname'}) {
           $retry .= '?username='.$uname;
     ($form{'uname'},$form{'suname'})=split(/\:/,$form{'uname'});      }
     $form{'uname'} = &LONCAPA::clean_username($form{'uname'});      if ($udom) {
     $form{'suname'}= &LONCAPA::clean_username($form{'suname'});          $retry .= (($retry=~/\?/)?'&amp;':'?').'domain='.$udom;
     $form{'udom'}  = &LONCAPA::clean_domain(  $form{'udom'});      }
       if (exists($form->{role})) {
     my $role   = $r->dir_config('lonRole');          my $role = &Apache::loncommon::cleanup_html($form->{role});
     my $domain = $r->dir_config('lonDefDomain');          if ($role ne '') {
     my $prodir = $r->dir_config('lonUsersDir');              $retry .= (($retry=~/\?/)?'&amp;':'?').'role='.$role;
     my $contact_name = &mt('LON-CAPA helpdesk');          }
       }
 # ---------------------------------------- Get the information from login token      if (exists($form->{symb})) {
           my $symb = &Apache::loncommon::cleanup_html($form->{symb});
     my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},          if ($symb ne '') {
                                       $form{'serverid'});              $retry .= (($retry=~/\?/)?'&amp;':'?').'symb='.$symb;
           }
     if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||       }
         ($tmpinfo eq 'no_such_host')) {      if (exists($form->{firsturl})) {
  &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);          my $firsturl = &Apache::loncommon::cleanup_html($form->{firsturl});
         return OK;          if ($firsturl ne '') {
     } else {              $retry .= (($retry=~/\?/)?'&amp;':'?').'firsturl='.$firsturl;
  my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},              if ($firsturl =~ m{^/tiny/$match_domain/\w+$}) {
    $form{'serverid'});                  unless (exists($form->{linkprot})) {
         if ( $reply ne 'ok' ) {                      if (exists($form->{linkkey})) {
             &failed($r,'Session could not be opened.',\%form);                          $retry .= 'linkkey='.$form->{linkkey};
     &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");                      }
     return OK;                  }
  }              }
     }          }
       }
     if (!&Apache::lonnet::domain($form{'udom'})) {      if (exists($form->{linkprot})) {
         &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);          my $ltoken = &Apache::lonnet::tmpput({linkprot => $form->{'linkprot'}},
         return OK;                                               $r->dir_config('lonHostID'));
     }          if ($ltoken) {
               $retry .= (($retry =~ /\?/) ? '&' : '?').'ltoken='.$ltoken;
     my ($key,$firsturl,$rolestr,$symbstr,$iptokenstr)=split(/&/,$tmpinfo);          }
     if ($rolestr) {      }
         $rolestr = &unescape($rolestr);      my $end_page = &Apache::loncommon::end_page();
     }      &Apache::loncommon::content_type($r,'text/html');
     if ($symbstr) {      $r->send_http_header;
         $symbstr= &unescape($symbstr);      my @actions =
     }           (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));
     if ($iptokenstr) {      my $loginhelp = &loginhelpdisplay($udom);
         $iptokenstr = &unescape($iptokenstr);      if ($loginhelp) {
     }          push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');
     if ($rolestr =~ /^role=/) {      }
         (undef,$form{'role'}) = split('=',$rolestr);      #FIXME: link to helpdesk might be added here
     }  
     if ($symbstr =~ /^symb=/) {       $r->print(
         (undef,$form{'symb'}) = split('=',$symbstr);         $start_page
     }        .'<h2>'.&mt('Sorry ...').'</h2>'
     if ($iptokenstr =~ /^iptoken=/) {        .&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />'
         (undef,$form{'iptoken'}) = split('=',$iptokenstr);        .&Apache::lonhtmlcommon::actionbox(\@actions)
     }        .$end_page
       );
     my $keybin=pack("H16",$key);   }
   
     my $cipher;  # ------------------------------------------------------------------ Rerouting!
     if ($Crypt::DES::VERSION>=2.03) {  
  $cipher=new Crypt::DES $keybin;  sub reroute {
     }      my ($r) = @_;
     else {      &Apache::loncommon::content_type($r,'text/html');
  $cipher=new DES $keybin;      $r->send_http_header;
     }      my $msg='<b>'.&mt('Sorry ...').'</b><br />'
     my $upass='';             .&mt('Please [_1]log in again[_2].');
     for (my $i=0;$i<=2;$i++) {      &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});
  my $chunk=  }
     $cipher->decrypt(unpack("a8",pack("H16",substr($form{'upass'.$i},0,16))));  
   # ---------------------------------------------------------------- Main handler
  $chunk.=  
     $cipher->decrypt(unpack("a8",pack("H16",substr($form{'upass'.$i},16,16))));  sub handler {
       my $r = shift;
  $chunk=substr($chunk,1,ord(substr($chunk,0,1)));      my $londocroot = $r->dir_config('lonDocRoot');
  $upass.=$chunk;  # Are we re-routing?
     }      if (-e "$londocroot/lon-status/reroute.txt") {
    &reroute($r);
 # ---------------------------------------------------------------- Authenticate   return OK;
       }
     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});  
     my ($cancreate,$statustocreate) =      &Apache::lonlocal::get_language_handle($r);
         &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});  
     my $defaultauth;  # -------------------------------- Prevent users from attempting to login twice
     if (ref($cancreate) eq 'ARRAY') {      my $handle = &Apache::lonnet::check_for_valid_session($r);
         if (grep(/^login$/,@{$cancreate})) {      if ($handle ne '') {
             $defaultauth = 1;          my $lonidsdir=$r->dir_config('lonIDsDir');
         }          if ($handle=~/^publicuser\_/) {
     }  # For "public user" - remove it, we apparently really want to login
     my $clientcancheckhost = 1;              unlink($r->dir_config('lonIDsDir')."/$handle.id");
     my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,          } else {
                                               $form{'udom'},$defaultauth,  # Indeed, a valid token is found
                                               $clientcancheckhost);              &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
           &Apache::loncommon::content_type($r,'text/html');
 # --------------------------------------------------------------------- Failed?      $r->send_http_header;
       my $start_page =
     if ($authhost eq 'no_host') {          &Apache::loncommon::start_page('Already logged in');
  &failed($r,'Username and/or password could not be authenticated.',      my $end_page =
  \%form);          &Apache::loncommon::end_page();
         return OK;              my $dest = '/adm/roles';
     } elsif ($authhost eq 'no_account_on_host') {              if ($env{'form.firsturl'} ne '') {
         if ($defaultauth) {                  $dest = $env{'form.firsturl'};
             my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');                  if (($env{'form.firsturl'} =~ m{^/tiny/$match_domain/\w+$}) &&
             unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {                      ($env{'request.course.id'})) {
                 return OK;                      my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
             }                      my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
             my $start_page =                       my $symb = &Apache::loncommon::symb_from_tinyurl($env{'form.firsturl'},$cnum,$cdom);
                 &Apache::loncommon::start_page('Create a user account in LON-CAPA');                      if ($symb) {
             my $lonhost = $r->dir_config('lonHostID');                          my $buffer;
             my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};                          if ($r->header_in('Content-length') > 0) {
             my $contacts =                               $r->read($buffer,$r->header_in('Content-length'),0);
                 &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',                          }
                                                         $form{'udom'},$origmail);                          my %form;
             my ($contact_email) = split(',',$contacts);                           foreach my $pair (split(/&/,$buffer)) {
             my $output =                               my ($name,$value) = split(/=/,$pair);
                 &Apache::createaccount::username_check($form{'uname'},$form{'udom'},                              $value =~ tr/+/ /;
                                                        $domdesc,'',$lonhost,                              $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
                                                        $contact_email,$contact_name,                              $form{$name}=$value;
                                                        undef,$statustocreate);                          }
             &Apache::loncommon::content_type($r,'text/html');                          &set_deeplink_login(%form);
             $r->send_http_header;                      } else {
             &Apache::createaccount::print_header($r,$start_page);                          $r->print(
             $r->print('<h3>'.&mt('Account creation').'</h3>'.                                    $start_page
                       &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.                                   .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
                       $output.&Apache::loncommon::end_page());                                   .'<p>'.&mt('Please [_1]log out[_2] first, and then try your access again',
             return OK;                                              '<a href="/adm/logout">','</a>')
         } else {                                   .'</p>'
             &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);                                   .$end_page);
             return OK;                          return OK;
         }                      }
     }                  }
               }
     if (($firsturl eq '') ||               $r->print(
  ($firsturl=~/^\/adm\/(logout|remote)/)) {                 $start_page
  $firsturl='/adm/roles';                .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
     }                .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'
                       ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')
     my $hosthere;                .'</p>'
     if ($form{'iptoken'}) {                .$end_page
         my %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});              );
         my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});              return OK;
         if (($sessiondata{'domain'} eq $form{'udom'}) &&          }
             ($sessiondata{'username'} eq $form{'uname'})) {      }
             $hosthere = 1;  
         }  # ---------------------------------------------------- No valid token, continue
     }  
   
 # --------------------------------- Are we attempting to login as somebody else?      my $buffer;
     if ($form{'suname'}) {      if ($r->header_in('Content-length') > 0) {
 # ------------ see if the original user has enough privileges to pull this stunt   $r->read($buffer,$r->header_in('Content-length'),0);
  if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'})) {      }
 # ---------------------------------------------------- see if the su-user exists      my %form;
     unless (&Apache::lonnet::homeserver($form{'suname'},$form{'udom'})      foreach my $pair (split(/&/,$buffer)) {
  eq 'no_host') {         my ($name,$value) = split(/=/,$pair);
  &Apache::lonnet::logthis(&Apache::lonnet::homeserver($form{'suname'},$form{'udom'}));         $value =~ tr/+/ /;
 # ------------------------------ see if the su-user is not too highly privileged         $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
  unless (&Apache::lonnet::privileged($form{'suname'},$form{'udom'})) {         $form{$name}=$value;
 # -------------------------------------------------------- actually switch users      }
     &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.$form{'udom'}.  
  ' logging in as '.$form{'suname'});      if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {
     $form{'uname'}=$form{'suname'};   &failed($r,'Username, password and domain need to be specified.',
  } else {   \%form);
     &Apache::lonnet::logthis('Attempted switch user to privileged user');          return OK;
  }      }
     }  
  } else {  # split user logging in and "su"-user
     &Apache::lonnet::logthis('Non-privileged user attempting switch user');  
  }      ($form{'uname'},$form{'suname'},$form{'sudom'})=split(/\:/,$form{'uname'});
     }      $form{'uname'} = &LONCAPA::clean_username($form{'uname'});
       $form{'suname'}= &LONCAPA::clean_username($form{'suname'});
     my ($is_balancer,$otherserver);      $form{'udom'}  = &LONCAPA::clean_domain($form{'udom'});
       $form{'sudom'} = &LONCAPA::clean_domain($form{'sudom'});
     unless ($hosthere) {  
         ($is_balancer,$otherserver) =      my $role   = $r->dir_config('lonRole');
             &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'});      my $domain = $r->dir_config('lonDefDomain');
     }      my $prodir = $r->dir_config('lonUsersDir');
       my $contact_name = &mt('LON-CAPA helpdesk');
     if ($is_balancer) {  
         if (!$otherserver) {   # ---------------------------------------- Get the information from login token
             ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});  
         }      my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},
         if ($otherserver) {                                        $form{'serverid'});
             &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,  
                      \%form);      if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||
             my $switchto = '/adm/switchserver?otherserver='.$otherserver;          ($tmpinfo eq 'no_such_host')) {
             if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {   &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);
                 $switchto .= '&origurl='.$firsturl;          return OK;
             }      } else {
             if ($form{'role'}) {   my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},
                 $switchto .= '&role='.$form{'role'};     $form{'serverid'});
             }          if ( $reply ne 'ok' ) {
             if ($form{'symb'}) {              &failed($r,'Session could not be opened.',\%form);
                 $switchto .= '&symb='.$form{'symb'};      &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");
             }      return OK;
             $r->internal_redirect($switchto);   }
         } else {      }
             $r->print(&noswitch());  
         }      if (!&Apache::lonnet::domain($form{'udom'})) {
         return OK;          &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);
     } else {          return OK;
         if (!&check_can_host($r,\%form,$authhost)) {      }
             my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});  
             if ($otherserver) {      my ($key,$firsturl,$rolestr,$symbstr,$iptokenstr,$linkstr)=split(/&/,$tmpinfo);
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,      if ($rolestr) {
                          \%form);          $rolestr = &unescape($rolestr);
                 my $switchto = '/adm/switchserver?otherserver='.$otherserver;      }
                 if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {      if ($symbstr) {
                     $switchto .= '&origurl='.$firsturl;          $symbstr= &unescape($symbstr);
                 }      }
                 if ($form{'role'}) {      if ($iptokenstr) {
                     $switchto .= '&role='.$form{'role'};          $iptokenstr = &unescape($iptokenstr);
                 }      }
                 if ($form{'symb'}) {      if ($linkstr) {
                     $switchto .= '&symb='.$form{'symb'};          $linkstr = &unescape($linkstr);
                 }      }
                 $r->internal_redirect($switchto);      if ($firsturl =~ m{^/tiny/$match_domain/\w+$}) {
             } else {          $form{'firsturl'} = $firsturl;
                 $r->print(&noswitch());      }
             }      if ($rolestr =~ /^role=/) {
             return OK;          (undef,$form{'role'}) = split('=',$rolestr);
         }      }
       if ($symbstr =~ /^symb=/) {
 # ------------------------------------------------------- Do the load balancing          (undef,$form{'symb'}) = split('=',$symbstr);
       }
 # ---------------------------------------------------------- Determine own load      if ($iptokenstr =~ /^iptoken=/) {
         my $loadlim = $r->dir_config('lonLoadLim');          (undef,$form{'iptoken'}) = split('=',$iptokenstr);
         my $loadavg;      }
         {      if ($linkstr =~ /^linkprot=/) {
             my $loadfile=Apache::File->new('/proc/loadavg');          (undef,$form{'linkprot'}) = split('=',$linkstr);
             $loadavg=<$loadfile>;      } elsif ($linkstr =~ /^linkkey=/) {
         }          (undef,$form{'linkkey'}) = split('=',$linkstr);
         $loadavg =~ s/\s.*//g;      }
         my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);  
         my $userloadpercent=&Apache::lonnet::userload();      my $upass = $ENV{HTTPS} ? $form{'upass0'}
           : &Apache::loncommon::des_decrypt($key,$form{'upass0'});
 # ---------------------------------------------------------- Are we overloaded?  
         if ((($userloadpercent>100.0)||($loadpercent>100.0))) {  # ---------------------------------------------------------------- Authenticate
             my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'});  
             if (!$unloaded) {      my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});
                 ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});      my ($cancreate,$statustocreate) =
             }          &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});
             if ($unloaded) {      my $defaultauth;
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',      if (ref($cancreate) eq 'ARRAY') {
                          undef,\%form);          if (grep(/^login$/,@{$cancreate})) {
                 $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);              $defaultauth = 1;
                 return OK;          }
             }      }
         }      my $clientcancheckhost = 1;
         &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,      my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,
                  \%form);                                                $form{'udom'},$defaultauth,
         return OK;                                                $clientcancheckhost);
     }  
 }  # --------------------------------------------------------------------- Failed?
   
 sub check_can_host {      if ($authhost eq 'no_host') {
     my ($r,$form,$authhost,$domdesc) = @_;   &failed($r,'Username and/or password could not be authenticated.',
     return unless (ref($form) eq 'HASH');   \%form);
     my $canhost = 1;          return OK;
     my $lonhost = $r->dir_config('lonHostID');      } elsif ($authhost eq 'no_account_on_host') {
     my $udom = $form->{'udom'};          if ($defaultauth) {
     my @intdoms;              my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');
     my $internet_names = &Apache::lonnet::get_internet_names($lonhost);              unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {
     if (ref($internet_names) eq 'ARRAY') {                  return OK;
         @intdoms = @{$internet_names};              }
     }              my $start_page =
     my $uprimary_id = &Apache::lonnet::domain($udom,'primary');                  &Apache::loncommon::start_page('Create a user account in LON-CAPA');
     my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);              my $lonhost = $r->dir_config('lonHostID');
     unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {              my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
         my $machine_dom = &Apache::lonnet::host_domain($lonhost);              my $contacts =
         my $hostname = &Apache::lonnet::hostname($lonhost);                  &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
         my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);                                                          $form{'udom'},$origmail);
         my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);              my ($contact_email) = split(',',$contacts);
         my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);              my $output =
         my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);                  &Apache::createaccount::username_check($form{'uname'},$form{'udom'},
         my $loncaparev;                                                         $domdesc,'',$lonhost,
         if ($authhost eq 'no_account_on_host') {                                                         $contact_email,$contact_name,
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);                                                         undef,$statustocreate);
         } else {              &Apache::loncommon::content_type($r,'text/html');
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);              $r->send_http_header;
         }              &Apache::createaccount::print_header($r,$start_page);
         $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,              $r->print('<h3>'.&mt('Account creation').'</h3>'.
                                                      $udomdefaults{'remotesessions'},                        &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.
                                                      $defdomdefaults{'hostedsessions'});                        $output.&Apache::loncommon::end_page());
     }              return OK;
     unless ($canhost) {          } else {
         if ($authhost eq 'no_account_on_host') {              &failed($r,'Although your username and password were authenticated, you do not currently have a LON-CAPA account in this domain, and you are not permitted to create one.',\%form);
             my $checkloginvia = 1;              return OK;
             my ($login_host,$hostname) =           }
                 &Apache::lonnet::choose_server($udom,$checkloginvia);      }
             &Apache::loncommon::content_type($r,'text/html');  
             $r->send_http_header;      if (($firsturl eq '') ||
             if ($login_host ne '') {   ($firsturl=~/^\/adm\/(logout|remote)/)) {
                 my $protocol = $Apache::lonnet::protocol{$login_host};   $firsturl='/adm/roles';
                 $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').      my $hosthere;
                           '<h3>'.&mt('Account creation').'</h3>'.      if ($form{'iptoken'}) {
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.          my %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});
                           '<p>'.&mt('You will be able to create one by logging into a LON-CAPA server within the [_1] domain.',$domdesc).'</p>'.          my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});
                           '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').          if (($sessiondata{'domain'} eq $form{'udom'}) &&
                           &Apache::loncommon::end_page());              ($sessiondata{'username'} eq $form{'uname'})) {
             } else {              $hosthere = 1;
                 $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>'.  # --------------------------------- Are we attempting to login as somebody else?
                           &Apache::loncommon::end_page());      if ($form{'suname'}) {
             }          my ($suname,$sudom,$sudomref);
         } else {          $suname = $form{'suname'};
             &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,          $sudom = $form{'udom'};
                      $form);          if ($form{'sudom'}) {
             my ($otherserver) = &Apache::lonnet::choose_server($udom);              unless ($sudom eq $form{'sudom'}) {
             $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);                  if (&Apache::lonnet::domain($form{'sudom'})) {
         }                      $sudomref = [$form{'sudom'}];
     }                      $sudom = $form{'sudom'};
     return $canhost;                  }
 }              }
           }
 sub noswitch {  # ------------ see if the original user has enough privileges to pull this stunt
     my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').   if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {
                  '<h3>'.&mt('Session unavailable').'</h3>'.  # ---------------------------------------------------- see if the su-user exists
                  &mt('This LON-CAPA server is unable to host your session.').'<br />'.      unless (&Apache::lonnet::homeserver($suname,$sudom) eq 'no_host') {
                  '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.  # ------------------------------ see if the su-user is not too highly privileged
                  &Apache::loncommon::end_page();   if (&Apache::lonnet::privileged($suname,$sudom)) {
     return $result;                      &Apache::lonnet::logthis('Attempted switch user to privileged user');
 }                  } else {
                       my $noprivswitch;
 sub loginhelpdisplay {  #
     my ($authdomain) = @_;  # su-user's home server and user's home server must have one of:
     my $login_help = 1;  # (a) same domain
     my $lang = &Apache::lonlocal::current_language();  # (b) same primary library server for the two domains
     if ($login_help) {  # (c) same "internet domain" for primary library server(s) for home servers' domains
         my $dom = $authdomain;  #
         if ($dom eq '') {                      my $suprim = &Apache::lonnet::domain($sudom,'primary');
             $dom = &Apache::lonnet::default_login_domain();                      my $suintdom = &Apache::lonnet::internet_dom($suprim);
         }                      unless ($sudom eq $form{'udom'}) {
         my %domconfhash = &Apache::loncommon::get_domainconf($dom);                          my $uprim = &Apache::lonnet::domain($form{'udom'},'primary');
         my $loginhelp_url;                          my $uintdom = &Apache::lonnet::internet_dom($uprim);
         if ($lang) {                          unless ($suprim eq $uprim) {
             $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};                              unless ($suintdom eq $uintdom) {
             if ($loginhelp_url ne '') {                                  &Apache::lonnet::logthis('Attempted switch user '
                 return $loginhelp_url;                                     .'to user with different "internet domain".');                        
             }                                  $noprivswitch = 1;
         }                              }
         $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};                          }
         if ($loginhelp_url ne '') {                      }
             return $loginhelp_url;  
         } else {                      unless ($noprivswitch) {
             return '/adm/loginproblems.html';  #
         }  # server where log-in occurs must have same "internet domain" as su-user's home
     }  # server
     return;  #
 }                          my $lonhost = $r->dir_config('lonHostID');
                           my $hostintdom = &Apache::lonnet::internet_dom($lonhost);
 1;                          if ($hostintdom ne $suintdom) {
 __END__                              &Apache::lonnet::logthis('Attempted switch user on a '
                                   .'server with a different "internet domain".');
                           } else {
   
   # -------------------------------------------------------- actually switch users
   
               &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.
                                 $form{'udom'}.' logging in as '.$suname.':'.$sudom);
               $form{'uname'}=$suname;
                               if ($form{'udom'} ne $sudom) {
                                   $form{'udom'}=$sudom;
                               }
                           }
                       }
    }
       }
    } else {
       &Apache::lonnet::logthis('Non-privileged user attempting switch user');
    }
       }
   
       my ($is_balancer,$otherserver);
   
       unless ($hosthere) {
           ($is_balancer,$otherserver) =
               &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');
           if ($is_balancer) {
               # Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer)
               my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r);
               if (($found_server) && ($balancer_cookie =~ /^\Q$env{'user.domain'}\E_\Q$env{'user.name'}\E_/)) {
                   $otherserver = $found_server;
               }
               if ($otherserver eq '') {
                   my $lowest_load;
                   ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});
                   if ($lowest_load > 100) {
                       $otherserver = &Apache::lonnet::spareserver($r,$lowest_load,$lowest_load,1,$form{'udom'});
                   }
               }
               if ($otherserver ne '') {
                   my @hosts = &Apache::lonnet::current_machine_ids();
                   if (grep(/^\Q$otherserver\E$/,@hosts)) {
                       $hosthere = $otherserver;
                   }
               }
           }
       }
   
       if (($is_balancer) && (!$hosthere)) {
           if ($otherserver) {
               &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
                        \%form);
               my $switchto = '/adm/switchserver?otherserver='.$otherserver;
               if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
                   $switchto .= '&origurl='.$firsturl; #should escape
               }
               if ($form{'role'}) {
                   $switchto .= '&role='.$form{'role'};
               }
               if ($form{'symb'}) {
                   $switchto .= '&symb='.$form{'symb'};
               }
               if ($form{'linkprot'}) {
                   $env{'request.linkprot'} = $form{'linkprot'};
               } elsif ($form{'linkkey'}) {
                   $env{'request.linkkey'} = $form{'linkkey'};
               }
               if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
                   &set_deeplink_login(%form);
               }
               $r->internal_redirect($switchto);
           } else {
               &Apache::loncommon::content_type($r,'text/html');
               $r->send_http_header;
               $r->print(&noswitch());
           }
           return OK;
       } else {
           if (!&check_can_host($r,\%form,$authhost)) {
               my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});
               if ($otherserver) {
                   &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
                            \%form);
                   my $switchto = '/adm/switchserver?otherserver='.$otherserver;
                   if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
                       $switchto .= '&origurl='.$firsturl; #should escape
                   }
                   if ($form{'role'}) {
                       $switchto .= '&role='.$form{'role'};
                   }
                   if ($form{'symb'}) {
                       $switchto .= '&symb='.$form{'symb'};
                   }
                   if ($form{'linkprot'}) {
                       $env{'request.linkprot'} = $form{'linkprot'};
                   } elsif ($form{'linkkey'}) {
                       $env{'request.linkkey'} = $form{'linkkey'};
                   }
                   if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
                       &set_deeplink_login(%form);
                   }
                   $r->internal_redirect($switchto);
               } else {
                   &Apache::loncommon::content_type($r,'text/html');
                   $r->send_http_header;
                   $r->print(&noswitch());
               }
               return OK;
           }
   
   # ------------------------------------------------------- Do the load balancing
   
   # ---------------------------------------------------------- Determine own load
           my $loadlim = $r->dir_config('lonLoadLim');
           my $loadavg;
           {
               my $loadfile=Apache::File->new('/proc/loadavg');
               $loadavg=<$loadfile>;
           }
           $loadavg =~ s/\s.*//g;
           my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
           my $userloadpercent=&Apache::lonnet::userload();
   
   # ---------------------------------------------------------- Are we overloaded?
           if ((($userloadpercent>100.0)||($loadpercent>100.0))) {
               my $unloaded=Apache::lonnet::spareserver($r,$loadpercent,$userloadpercent,1,$form{'udom'});
               if (!$unloaded) {
                   ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});
               }
               if ($unloaded) {
                   &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',
                            undef,\%form);
                   if ($form{'linkprot'}) {
                       $env{'request.linkprot'} = $form{'linkprot'};
                   } elsif ($form{'linkkey'}) {
                       $env{'request.linkkey'} = $form{'linkkey'};
                   }
                   if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
                       &set_deeplink_login(%form);
                   }
                   $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);
                   return OK;
               }
           }
           if (($is_balancer) && ($hosthere)) {
               $form{'noloadbalance'} = $hosthere;
           }
           my $extra_env;
           if ($form{'linkprot'}) {
               my ($linkprotector,$uri) = split(/:/,$form{'linkprot'},2);
               if ($linkprotector) {
                   $extra_env = {'user.linkprotector' => $linkprotector,
                                 'user.linkproturi'   => $uri};
               }
           } elsif ($form{'linkkey'}) {
               $extra_env = {'user.deeplinkkey' => $form{'linkkey'},
                             'user.keyedlinkuri' => $form{'firsturl'}};
           }
           if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
               &set_deeplink_login(%form);
               if ($env{'request.deeplink.login'}) {
                   if (ref($extra_env) eq 'HASH') {
                       %{$extra_env} = ( %{$extra_env}, 'request.deeplink.login' => $form{'firsturl'} );
                   } else {
                       $extra_env = {'request.deeplink.login' => $form{'firsturl'}};
                   }
               }
           }
           &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,$extra_env,
                    \%form);
           return OK;
       }
   }
   
   sub set_deeplink_login {
       my (%form) = @_;
       if ($form{'firsturl'} =~ m{^/tiny/($match_domain)/\w+$}) {
           my $cdom = $1;
           my ($cnum,$symb) = &Apache::loncommon::symb_from_tinyurl($form{'firsturl'},'',$cdom);
           if ($symb) {
               my $disallow;
               my $deeplink = &Apache::lonnet::EXT("resource.0.deeplink",$symb);
               if ($deeplink ne '') {
                   my ($state,$others,$listed,$scope,$protect) = split(/,/,$deeplink);
                   if (($protect ne 'none') && ($protect ne '')) {
                       my ($acctype,$item) = split(/:/,$protect);
                       if (($acctype eq 'ltic') || ($acctype eq 'ltid')) {
                            unless ($form{'linkprot'} eq $protect) {
                                $disallow = 1;
                            }
                       } elsif ($acctype eq 'key') {
                           unless (form{'linkkey'} eq $item) {
                               $disallow = 1;
                           }
                       }
                   }
               }
               unless ($disallow) {
                   $env{'request.deeplink.login'} = $form{'firsturl'};
               }
           }
       }
       return;
   }
   
   sub check_can_host {
       my ($r,$form,$authhost,$domdesc) = @_;
       return unless (ref($form) eq 'HASH');
       my $canhost = 1;
       my $lonhost = $r->dir_config('lonHostID');
       my $udom = $form->{'udom'};
       my @intdoms;
       my $internet_names = &Apache::lonnet::get_internet_names($lonhost);
       if (ref($internet_names) eq 'ARRAY') {
           @intdoms = @{$internet_names};
       }
       my $uprimary_id = &Apache::lonnet::domain($udom,'primary');
       my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
       unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {
           my $machine_dom = &Apache::lonnet::host_domain($lonhost);
           my $hostname = &Apache::lonnet::hostname($lonhost);
           my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);
           my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);
           my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);
           my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);
           my $loncaparev;
           if ($authhost eq 'no_account_on_host') {
               $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);
           } else {
               $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);
           }
           $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,
                                                        $udomdefaults{'remotesessions'},
                                                        $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 $alias = &Apache::lonnet::use_proxy_alias($r,$login_host);
                   $hostname = $alias if ($alias ne '');
                   my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';
   #FIXME Should preserve where user was going and linkprot by setting ltoken at $login_host
                   $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);
               if ($form->{'linkprot'}) {
                   $env{'request.linkprot'} = $form->{'linkprot'};
               } elsif ($form->{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
                   if ($form->{'linkkey'}) {
                       $env{'request.linkkey'} = $form->{'linkkey'};
                   }
                   $env{'request.deeplink.login'} = $form->{'firsturl'};
               }
               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.135  
changed lines
  Added in v.1.164


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