Diff for /loncom/auth/lonauth.pm between versions 1.121.2.27 and 1.174

version 1.121.2.27, 2024/10/09 17:56:24 version 1.174, 2022/06/18 02:10:18
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 qw(:DEFAULT :match);  use LONCAPA qw(:DEFAULT :match);
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common);
 use CGI qw(:standard);  use CGI qw(:standard);
 use Apache::loncommon();  use Apache::loncommon();
 use Apache::lonnet;  use Apache::lonnet;
 use Apache::lonmenu();  use Apache::lonmenu();
 use Apache::createaccount;  use Apache::createaccount;
 use Fcntl qw(:flock);  use Apache::ltiauth;
 use Apache::lonlocal;  use Fcntl qw(:flock);
 use Apache::File();  use Apache::lonlocal;
 use HTML::Entities;  use Apache::File();
 use Digest::MD5;  use HTML::Entities;
 use CGI::Cookie();  use Digest::MD5;
    use CGI::Cookie();
 # ------------------------------------------------------------ Successful login   
 sub success {  # ------------------------------------------------------------ Successful login
     my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,  sub success {
  $form,$cid,$expirepub) = @_;      my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,
    $form,$skipcritical,$cid,$expirepub) = @_;
 # ------------------------------------------------------------ Get cookie ready  
     my $cookie =  # ------------------------------------------------------------ Get cookie ready
  &Apache::loncommon::init_user_environment($r, $username, $domain,      my $cookie =
   $authhost, $form,   &Apache::loncommon::init_user_environment($r, $username, $domain,
   {'extra_env' => $extra_env,});    $authhost, $form,
     {'extra_env' => $extra_env,});
     my $public=($username eq 'public' && $domain eq 'public');  
       my $public=($username eq 'public' && $domain eq 'public');
     if ($public or $lowerurl eq 'noredirect') { return $cookie; }  
       if ($public or $lowerurl eq 'noredirect') { return $cookie; }
 # -------------------------------------------------------------------- Log this  
   # -------------------------------------------------------------------- Log this
     my $ip = &Apache::lonnet::get_requestor_ip();  
     &Apache::lonnet::log($domain,$username,$authhost,      my $ip = &Apache::lonnet::get_requestor_ip();
                          "Login $ip");      &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 cookies ready          }
     my ($securecookie,$defaultcookie);      }
     my $ssl = $r->subprocess_env('https');  
     if ($ssl) {  # ----------------------------------------------------------- Get cookies ready
         $securecookie="lonSID=$cookie; path=/; HttpOnly; secure";      my ($securecookie,$defaultcookie);
         my $lonidsdir=$r->dir_config('lonIDsDir');      my $ssl = $r->subprocess_env('https');
         if (($lonidsdir) && (-e "$lonidsdir/$cookie.id")) {      if ($ssl) {
             my $linkname=substr(Digest::MD5::md5_hex(Digest::MD5::md5_hex(time(). {}. rand(). $$)), 0, 32).'_linked';          $securecookie="lonSID=$cookie; path=/; HttpOnly; secure";
             if (-e "$lonidsdir/$linkname.id") {          my $lonidsdir=$r->dir_config('lonIDsDir');
                 unlink("$lonidsdir/$linkname.id");          if (($lonidsdir) && (-e "$lonidsdir/$cookie.id")) {
             }              my $linkname=substr(Digest::MD5::md5_hex(Digest::MD5::md5_hex(time(). {}. rand(). $$)), 0, 32).'_linked';
             my $made_symlink = eval { symlink("$lonidsdir/$cookie.id",              if (-e "$lonidsdir/$linkname.id") {
                                               "$lonidsdir/$linkname.id"); 1 };                  unlink("$lonidsdir/$linkname.id");
             if ($made_symlink) {              }
                 $defaultcookie = "lonLinkID=$linkname; path=/; HttpOnly;";              my $made_symlink = eval { symlink("$lonidsdir/$cookie.id",
                 &Apache::lonnet::appenv({'user.linkedenv' => $linkname});                                                "$lonidsdir/$linkname.id"); 1 };
             }              if ($made_symlink) {
         }                  $defaultcookie = "lonLinkID=$linkname; path=/; HttpOnly;";
     } else {                  &Apache::lonnet::appenv({'user.linkedenv' => $linkname});
         $defaultcookie = "lonID=$cookie; path=/; HttpOnly;";              }
     }          }
 # -------------------------------------------------------- Menu script and info      } else {
     my $destination = $lowerurl;          $defaultcookie = "lonID=$cookie; path=/; HttpOnly;";
       }
     if (defined($form->{role})) {  # -------------------------------------------------------- Menu script and info
         my $envkey = 'user.role.'.$form->{role};      my $destination = $lowerurl;
         my $now=time;      if ($env{'request.lti.login'}) {
         my $then=$env{'user.login.time'};          if (($env{'request.lti.reqcrs'}) && ($env{'request.lti.reqrole'} eq 'cc')) {
         my $refresh=$env{'user.refresh.time'};              &Apache::loncommon::content_type($r,'text/html');
         my $update=$env{'user.update.time'};              if ($securecookie) {
         if (!$update) {                  $r->headers_out->add('Set-cookie' => $securecookie);
             $update = $then;              }
         }              if ($defaultcookie) {
         if (exists($env{$envkey})) {                  $r->headers_out->add('Set-cookie' => $defaultcookie);
             my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus);              }
             &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,              $r->send_http_header;
                                          \$trolecode,\$tstatus,\$tstart,\$tend);              if (ref($form) eq 'HASH') {
             if ($tstatus eq 'is') {                  $form->{'lti.login'} = $env{'request.lti.login'};
                 $destination  .= ($destination =~ /\?/) ? '&' : '?';                  $form->{'lti.reqcrs'} = $env{'request.lti.reqcrs'};
                 my $newrole = &HTML::Entities::encode($form->{role},'"<>&');                  $form->{'lti.reqrole'} = $env{'request.lti.reqrole'};
                 $destination .= 'selectrole=1&'.$newrole.'=1';                  $form->{'lti.sourcecrs'} = $env{'request.lti.sourcecrs'};
             }              }
         }              &Apache::ltiauth::lti_reqcrs($r,$domain,$form,$username,$domain);
     }              return;
     if (defined($form->{symb})) {          }
         my $destsymb = $form->{symb};          if ($env{'request.lti.selfenrollrole'}) {
         my $encrypted;              if (&Apache::ltiauth::lti_enroll($username,$domain,
         if ($destsymb =~ m{^/enc/}) {                                               $env{'request.lti.selfenrollrole'}) eq 'ok') {
             $encrypted = 1;                  $form->{'role'} = $env{'request.lti.selfenrollrole'};
             if ($cid) {                  &Apache::lonnet::delenv('request.lti.selfenrollrole');
                 $destsymb = &Apache::lonenc::unencrypted($destsymb,$cid);              } else {
             }                  &Apache::ltiauth::invalid_request($r,24);
         }              }
         $destination  .= ($destination =~ /\?/) ? '&' : '?';          }
         if ($destsymb =~ /___/) {      }
             my ($map,$resid,$desturl)=split(/___/,$destsymb);      if (defined($form->{role})) {
             $desturl = &Apache::lonnet::clutter($desturl);          my $envkey = 'user.role.'.$form->{role};
             if ($encrypted) {          my $now=time;
                 $desturl = &Apache::lonenc::encrypted($desturl,1,$cid);          my $then=$env{'user.login.time'};
                 $destsymb = $form->{symb};          my $refresh=$env{'user.refresh.time'};
             }          my $update=$env{'user.update.time'};
             $desturl = &HTML::Entities::encode($desturl,'"<>&');          if (!$update) {
             $destsymb = &HTML::Entities::encode($destsymb,'"<>&');              $update = $then;
             $destination .= 'destinationurl='.$desturl.          }
                             '&destsymb='.$destsymb;          if (exists($env{$envkey})) {
         } elsif (!$encrypted) {              my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus);
             $destsymb = &HTML::Entities::encode($destsymb,'"<>&');              &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,
             $destination .= 'destinationurl='.$destsymb;                                           \$trolecode,\$tstatus,\$tstart,\$tend);
         }              if ($tstatus eq 'is') {
     }                  $destination  .= ($destination =~ /\?/) ? '&' : '?';
     if ($destination =~ m{^/adm/roles}) {                  my $newrole = &HTML::Entities::encode($form->{role},'"<>&');
         $destination  .= ($destination =~ /\?/) ? '&' : '?';                  $destination .= 'selectrole=1&'.$newrole.'=1';
         $destination .= 'source=login';              }
     }          }
       }
     my $windowinfo=&Apache::lonmenu::open($env{'browser.os'});      if (defined($form->{symb})) {
     if ($env{'environment.remote'} eq 'on') {          my $destsymb = $form->{symb};
         my $checkexempt;          my $encrypted;
         if ($env{'user.loadbalexempt'} eq $r->dir_config('lonHostID')) {          if ($destsymb =~ m{^/enc/}) {
             if ($env{'user.loadbalcheck.time'} + 600 > time) {              $encrypted = 1;
                 $checkexempt = 1;              if ($cid) {
             }                  $destsymb = &Apache::lonenc::unencrypted($destsymb,$cid);
         }              }
         if ($env{'user.noloadbalance'} eq $r->dir_config('lonHostID')) {          }
             $checkexempt = 1;          $destination  .= ($destination =~ /\?/) ? '&' : '?';
         }          if ($destsymb =~ /___/) {
         unless (($checkexempt) ||               my ($map,$resid,$desturl)=split(/___/,$destsymb);
                 (($destination =~ m{^/adm/switchserver}) && (!$r->is_initial_req()))) {              $desturl = &Apache::lonnet::clutter($desturl);
             my ($is_balancer,$otherserver) =              if ($encrypted) {
                 &Apache::lonnet::check_loadbalancing($env{'user.name'},                  $desturl = &Apache::lonenc::encrypted($desturl,1,$cid);
                                                      $env{'user.domain'});                  $destsymb = $form->{symb};
             if (($is_balancer) && ($otherserver ne '') &&               }
                 ($otherserver ne $r->dir_config('lonHostID'))) {              $desturl = &HTML::Entities::encode($desturl,'"<>&');
                 $env{'environment.remote'} = 'off';              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
             }              $destination .= 'destinationurl='.$desturl.
         }                              '&destsymb='.$destsymb;
     }          } elsif (!$encrypted) {
     my $startupremote=&Apache::lonmenu::startupremote($destination);              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
     my $remoteinfo=&Apache::lonmenu::load_remote_msg($lowerurl);              $destination .= 'destinationurl='.$destsymb;
     my $setflags=&Apache::lonmenu::setflags();          }
     my $maincall=&Apache::lonmenu::maincall();      }
     my $brcrum = [{'href' => '',      if ($destination =~ m{^/adm/roles}) {
                    'text' => 'Successful Login'},];          $destination  .= ($destination =~ /\?/) ? '&' : '?';
     my $start_page=&Apache::loncommon::start_page('Successful Login',          $destination .= 'source=login';
                                                   $startupremote,      }
                                                   {'no_inline_link' => 1,  
                                                    'bread_crumbs' => $brcrum,});      if (($env{'request.deeplink.login'} eq $lowerurl) &&
     my $end_page  =&Apache::loncommon::end_page();          (($env{'request.linkprot'}) || ($env{'request.linkkey'} ne ''))) {
           my %info;
     my $continuelink;          if ($env{'request.linkprot'}) {
     if ($env{'environment.remote'} eq 'off') {              $info{'linkprot'} = $env{'request.linkprot'};
  $continuelink='<a href="'.$destination.'">'.&mt('Continue').'</a>';          } elsif ($env{'request.linkkey'} ne '') {
     }              $info{'linkkey'} = $env{'request.linkkey'};
 # ------------------------------------------------- Output for successful login          }
           $info{'origurl'} = $lowerurl;
     &Apache::loncommon::content_type($r,'text/html');          my $token = &Apache::lonnet::tmpput(\%info,$r->dir_config('lonHostID'),'link');
     if ($securecookie) {          unless (($token eq 'con_lost') || ($token eq 'refused') ||
         $r->headers_out->add('Set-cookie' => $securecookie);                  ($token eq 'unknown_cmd') || ($token eq 'no_such_host')) {
     }              $destination .= (($destination =~ /\?/) ? '&' : '?') . 'ttoken='.$token;
     if ($defaultcookie) {          }
         $r->headers_out->add('Set-cookie' => $defaultcookie);      }
     }  
     if ($expirepub) {      my $windowname = 'loncapaclient';
         my $c = new CGI::Cookie(-name    => 'lonPubID',      if ($env{'request.lti.login'}) {
                                 -value   => '',          $windowname .= 'lti';
                                 -expires => '-10y',);      }
         $r->headers_out->add('Set-cookie' => $c);      my $windowinfo = Apache::lonhtmlcommon::scripttag('self.name="'.$windowname.'";');
     }      my $brcrum = [{'href' => '',
     $r->send_http_header;                     'text' => 'Successful Login'},];
       my $args = {'bread_crumbs' => $brcrum,};
     my %lt=&Apache::lonlocal::texthash(      unless ((defined($form->{role})) || (defined($form->{symb}))) {
        'wel' => 'Welcome',          my $update=$env{'user.update.time'};
        'pro' => 'Login problems?',          if (!$update) {
        );              $update = $env{'user.login.time'};
     my $loginhelp = &loginhelpdisplay($domain);          }
     if ($loginhelp) {          my %roles_in_env;
         $loginhelp = '<p><a href="'.$loginhelp.'">'.$lt{'pro'}.'</a></p>';          my $showcount = &Apache::lonroles::roles_from_env(\%roles_in_env,$update);
     }          if ($showcount == 1) {
               foreach my $rolecode (keys(%roles_in_env)) {
     my $welcome = &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');                   my ($cid) = ($rolecode =~ m{^\Quser.role.st./\E($match_domain/$match_courseid)(?:/|$)});
     $r->print(<<ENDSUCCESS);                  if ($cid) {
 $start_page                      my %coursedescription =
 $setflags                          &Apache::lonnet::coursedescription($cid,{'one_time' => '1'});
 $windowinfo                      if ($coursedescription{'type'} eq 'Placement') {
 <h1>$lt{'wel'}</h1>                          $args->{'crstype'} = 'Placement';
 $welcome                      }
 $loginhelp                      last;
 $remoteinfo                  }
 $maincall              }
 $continuelink          }
 $end_page      }
 ENDSUCCESS  
     return;  # ------------------------------------------------- Output for successful login
 }  
       &Apache::loncommon::content_type($r,'text/html');
 # --------------------------------------------------------------- Failed login!      if ($securecookie) {
           $r->headers_out->add('Set-cookie' => $securecookie);
 sub failed {      }
     my ($r,$message,$form,$authhost) = @_;      if ($defaultcookie) {
     (undef,undef,undef,my $clientmathml,my $clientunicode) =          $r->headers_out->add('Set-cookie' => $defaultcookie);
         &Apache::loncommon::decode_user_agent();      }
     my $args = {};      if ($expirepub) {
     if ($clientunicode && !$clientmathml) {          my $c = new CGI::Cookie(-name    => 'lonPubID',
         $args = {'browser.unicode' => 1};                                  -value   => '',
     }                                  -expires => '-10y',);
           $r->headers_out->add('Set-cookie' => $c);
     my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,$args);      }
     my $uname = &Apache::loncommon::cleanup_html($form->{'uname'});      $r->send_http_header;
     my $udom = &Apache::loncommon::cleanup_html($form->{'udom'});  
     if (&Apache::lonnet::domain($udom,'description') eq '') {      my ($start_page,$js,$pagebody,$end_page);
         undef($udom);      if ($env{'request.lti.login'}) {
     }          $args = {'only_body' => 1};
     my $retry = '/adm/login';          if ($env{'request.lti.target'} eq '') {
     if ($uname eq $form->{'uname'}) {              my $ltitarget = (($destination =~ /\?/) ? '&' : '?').
         $retry .= '?username='.$uname;                              'ltitarget=iframe';
     }              &js_escape(\$destination);
     if ($udom) {              $js = <<"ENDJS";
         $retry .= (($retry=~/\?/)?'&amp;':'?').'domain='.$udom;  
     }  <script type="text/javascript">
     my $lonhost = $r->dir_config('lonHostID');  // <![CDATA[
     my $querystr;  function setLTItarget() {
     my $result = &set_retry_token($form,$lonhost,\$querystr);      var newloc = '$destination';
     if ($result eq 'fail') {      if (parent !== window) {
         if (exists($form->{role})) {          newloc += '$ltitarget';
             my $role = &Apache::loncommon::cleanup_html($form->{role});      }
             if ($role ne '') {      window.location.href=newloc;
                 $retry .= (($retry=~/\?/)?'&amp;':'?').'role='.$role;  }
             }  // ]]>
         }  </script>
         if (exists($form->{symb})) {  
             my $symb = &Apache::loncommon::cleanup_html($form->{symb});  ENDJS
             if ($symb ne '') {              $args->{'add_entries'} = {'onload' => "javascript:setLTItarget();"};
                 $retry .= (($retry=~/\?/)?'&amp;':'?').'symb='.$symb;              $pagebody =  '<noscript><span class="LC_warning">'
             }                          .&mt('Use of LON-CAPA requires Javascript to be enabled in your web browser.')
         }                          .'</span></noscript>';
         if (exists($form->{firsturl})) {          } else {
             my $firsturl = &Apache::loncommon::cleanup_html($form->{firsturl});              $args->{'redirect'} = [0,$destination,1];
             if ($firsturl ne '') {          }
                 $retry .= (($retry=~/\?/)?'&amp;':'?').'firsturl='.$firsturl;          $start_page=&Apache::loncommon::start_page('',$js,$args);
             }      } else {
         }          $args->{'redirect'} = [0,$destination];
     } elsif ($querystr ne '') {          $start_page=&Apache::loncommon::start_page('Successful Login',
         $retry .= (($retry=~/\?/)?'&amp;':'?').$querystr;                                                     $js,$args);
     }  
     my $end_page = &Apache::loncommon::end_page();          my %lt=&Apache::lonlocal::texthash(
     &Apache::loncommon::content_type($r,'text/html');             'wel' => 'Welcome',
     $r->send_http_header;             'pro' => 'Login problems?',
     my @actions =            );
          (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));          $pagebody = "<h1>$lt{'wel'}</h1>\n".
     my $loginhelp = &loginhelpdisplay($udom);                      &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');
     if ($loginhelp) {          my $loginhelp = &loginhelpdisplay($domain);
         push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');          if ($loginhelp) {
     }              $pagebody .= '<p><a href="'.$loginhelp.'">'.$lt{'pro'}.'</a></p>';
     #FIXME: link to helpdesk might be added here          }
       }
     $r->print(      $end_page = &Apache::loncommon::end_page();
        $start_page      $r->print(<<ENDSUCCESS);
       .'<h2>'.&mt('Sorry ...').'</h2>'  $start_page
       .&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />'  $windowinfo
       .&Apache::lonhtmlcommon::actionbox(\@actions)  $pagebody
       .$end_page  $end_page
     );  ENDSUCCESS
  }      return;
   }
 # ------------------------------------------------------------------ Rerouting!  
   # --------------------------------------------------------------- Failed login!
 sub reroute {  
     my ($r) = @_;  sub failed {
     &Apache::loncommon::content_type($r,'text/html');      my ($r,$message,$form,$authhost) = @_;
     $r->send_http_header;      (undef,undef,undef,my $clientmathml,my $clientunicode) =
     my $msg='<b>'.&mt('Sorry ...').'</b><br />'          &Apache::loncommon::decode_user_agent();
            .&mt('Please [_1]log in again[_2].');      my $args = {};
     &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});      if ($clientunicode && !$clientmathml) {
 }          $args = {'browser.unicode' => 1};
       }
 # ---------------------------------------------------------------- Main handler      if ($form->{firsturl} =~ m{^/tiny/$match_domain/\w+$}) {
           if ($form->{linkprot}) {
 sub handler {              $args->{only_body} = 1;
     my $r = shift;          }
     my $londocroot = $r->dir_config('lonDocRoot');      }
 # Are we re-routing?  
     if (-e "$londocroot/lon-status/reroute.txt") {      my @actions;
  &reroute($r);      my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,$args);
  return OK;      my $uname = &Apache::loncommon::cleanup_html($form->{'uname'});
     }      my $udom = &Apache::loncommon::cleanup_html($form->{'udom'});
       if (&Apache::lonnet::domain($udom,'description') eq '') {
     &Apache::lonlocal::get_language_handle($r);          undef($udom);
       }
 # -------------------------------- Prevent users from attempting to login twice      my $authtype;
     my $handle = &Apache::lonnet::check_for_valid_session($r);      if (($udom ne '') && ($uname ne '') && ($authhost eq 'no_host')) {
     if ($handle ne '') {          $authtype = &Apache::lonnet::queryauthenticate($uname,$udom);
         my $lonidsdir=$r->dir_config('lonIDsDir');      }
         if ($handle=~/^publicuser\_/) {      my $retry = '/adm/login';
 # For "public user" - remove it, we apparently really want to login      if (($uname eq $form->{'uname'}) && ($authtype !~ /^lti:/)) {
             unlink($r->dir_config('lonIDsDir')."/$handle.id");          $retry .= '?username='.$uname;
         } else {      }
 # Indeed, a valid token is found      if ($udom) {
             &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);          $retry .= (($retry=~/\?/)?'&amp;':'?').'domain='.$udom;
     &Apache::loncommon::content_type($r,'text/html');      }
     $r->send_http_header;      my $lonhost = $r->dir_config('lonHostID');
     my $start_page =       my $querystr;
         &Apache::loncommon::start_page('Already logged in');      my $result = &set_retry_token($form,$lonhost,\$querystr);
     my $end_page =       if ($result eq 'fail') {
         &Apache::loncommon::end_page();          if (exists($form->{role})) {
             my $dest = '/adm/roles';              my $role = &Apache::loncommon::cleanup_html($form->{role});
             my %form = &get_form_items($r);              if ($role ne '') {
             if ($form{'logtoken'}) {                  $retry .= (($retry=~/\?/)?'&amp;':'?').'role='.$role;
                 my $tmpinfo = &Apache::lonnet::reply('tmpget:'.$form{'logtoken'},              }
                                                      $form{'serverid'});          }
                 unless (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||          if (exists($form->{symb})) {
                         ($tmpinfo eq 'no_such_host')) {              my $symb = &Apache::loncommon::cleanup_html($form->{symb});
                     my ($des_key,$firsturl,@rest)=split(/&/,$tmpinfo);              if ($symb ne '') {
                     $firsturl = &unescape($firsturl);                  $retry .= (($retry=~/\?/)?'&amp;':'?').'symb='.$symb;
                     my %info;              }
                     foreach my $item (@rest) {          }
                         my ($key,$value) = split(/=/,$item);          if (exists($form->{firsturl})) {
                         $info{$key} = &unescape($value);              my $firsturl = &Apache::loncommon::cleanup_html($form->{firsturl});
                     }              if ($firsturl ne '') {
                     if ($firsturl ne '') {                  $retry .= (($retry=~/\?/)?'&amp;':'?').'firsturl='.$firsturl;
                         $info{'firsturl'} = $firsturl;                  if ($form->{firsturl} =~ m{^/tiny/$match_domain/\w+$}) {
                         $dest = $firsturl;                      unless (exists($form->{linkprot})) {
                     }                          if (exists($form->{linkkey})) {
                 }                              $retry .= 'linkkey='.$form->{linkkey};
             }                          }
             $r->print(                      }
                $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].'          }
                     ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')          if (exists($form->{linkprot})) {
               .'</p>'              my %info = (
               .$end_page                           'linkprot' => $form->{'linkprot'},
             );                         );
             return OK;              if ($form->{linkprotuser} ne '') {
         }                  $info{'linkprotuser'} = $form->{linkprotuser};
     }              }
               my $ltoken = &Apache::lonnet::tmpput(\%info,
 # ---------------------------------------------------- No valid token, continue                                                   $r->dir_config('lonHostID'),'retry');
               if ($ltoken) {
     my %form = &get_form_items($r);                  $retry .= (($retry =~ /\?/) ? '&' : '?').'ltoken='.$ltoken;
     if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {              }
  &failed($r,'Username, password and domain need to be specified.',          }
  \%form);      } elsif ($querystr ne '') {
         return OK;          $retry .= (($retry=~/\?/)?'&amp;':'?').$querystr;
     }      }
       my $end_page = &Apache::loncommon::end_page();
 # 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'});      if ($authtype =~ /^lti:/) {
     $form{'uname'} = &LONCAPA::clean_username($form{'uname'});          $message = &mt('Direct login is not supported with the username you entered.').
     $form{'suname'}= &LONCAPA::clean_username($form{'suname'});                     '<br /><br />'.
     $form{'udom'}  = &LONCAPA::clean_domain($form{'udom'});                     &mt('You likely need to launch LON-CAPA from within a course in a different Learning Management System.').
     $form{'sudom'} = &LONCAPA::clean_domain($form{'sudom'});                     '<br />'.
                      &mt('You can also try to log in with a different username.');
     my $role   = $r->dir_config('lonRole');          @actions =
     my $domain = $r->dir_config('lonDefDomain');              (&mt('Try your [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));
     my $prodir = $r->dir_config('lonUsersDir');      } else {
     my $contact_name = &mt('LON-CAPA helpdesk');          $message = &mt($message);
           @actions =
 # ---------------------------------------- Get the information from login token              (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));
       }
     my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},      my $loginhelp = &loginhelpdisplay($udom);
                                       $form{'serverid'});      if ($loginhelp) {
           push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');
     if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||       }
         ($tmpinfo eq 'no_such_host')) {      #FIXME: link to helpdesk might be added here
  &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);      $r->print(
         return OK;         $start_page
     } else {        .'<h2>'.&mt('Sorry ...').'</h2>'
  my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},        .&Apache::lonhtmlcommon::confirm_success($message,1).'<br /><br />'
    $form{'serverid'});        .&Apache::lonhtmlcommon::actionbox(\@actions)
         if ( $reply ne 'ok' ) {        .$end_page
             &failed($r,'Session could not be opened.',\%form);      );
     &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");   }
     return OK;  
  }  # ------------------------------------------------------------------ Rerouting!
     }  
   sub reroute {
     if (!&Apache::lonnet::domain($form{'udom'})) {      my ($r) = @_;
         &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);      &Apache::loncommon::content_type($r,'text/html');
         return OK;      $r->send_http_header;
     }      my $msg='<b>'.&mt('Sorry ...').'</b><br />'
              .&mt('Please [_1]log in again[_2].');
     my ($des_key,$firsturl,@rest)=split(/&/,$tmpinfo);      &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});
     $firsturl = &unescape($firsturl);  }
     foreach my $item (@rest) {  
         my ($key,$value) = split(/=/,$item);  # ---------------------------------------------------------------- Main handler
         $form{$key} = &unescape($value);  
     }  sub handler {
     my $upass = &Apache::loncommon::des_decrypt($des_key,$form{'upass0'});      my $r = shift;
       my $londocroot = $r->dir_config('lonDocRoot');
 # ---------------------------------------------------------------- Authenticate  # Are we re-routing?
       if (-e "$londocroot/lon-status/reroute.txt") {
     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});   &reroute($r);
     my ($cancreate,$statustocreate) =   return OK;
         &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});      }
     my $defaultauth;  
     if (ref($cancreate) eq 'ARRAY') {      &Apache::lonlocal::get_language_handle($r);
         if (grep(/^login$/,@{$cancreate})) {  
             $defaultauth = 1;  # -------------------------------- Prevent users from attempting to login twice
         }      my $handle = &Apache::lonnet::check_for_valid_session($r);
     }      if ($handle ne '') {
     my $clientcancheckhost = 1;          my $lonidsdir=$r->dir_config('lonIDsDir');
     my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,          if ($handle=~/^publicuser\_/) {
                                               $form{'udom'},$defaultauth,  # For "public user" - remove it, we apparently really want to login
                                               $clientcancheckhost);              unlink($r->dir_config('lonIDsDir')."/$handle.id");
               } else {
 # --------------------------------------------------------------------- Failed?  # Indeed, a valid token is found
               &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
     if ($authhost eq 'no_host') {      &Apache::loncommon::content_type($r,'text/html');
         my $pwdverify;      $r->send_http_header;
         if (&Apache::lonnet::homeserver($form{'uname'},$form{'udom'}) eq 'no_host') {      my $start_page =
             my %possunames = &alternate_unames_check($form{'uname'},$form{'udom'});          &Apache::loncommon::start_page('Already logged in');
             if (keys(%possunames) > 0) {      my $end_page =
                 foreach my $rulematch (keys(%possunames)) {          &Apache::loncommon::end_page();
                     my $possuname = $possunames{$rulematch};              my $dest = '/adm/roles';
                     if (($possuname ne '') && ($possuname =~ /^$match_username$/)) {              my %form = &get_form_items($r);
                         $authhost=Apache::lonnet::authenticate($possuname,$upass,              if ($form{'logtoken'}) {
                                                                $form{'udom'},undef,                  my $tmpinfo = &Apache::lonnet::reply('tmpget:'.$form{'logtoken'},
                                                                $clientcancheckhost);                                                       $form{'serverid'});
                         if (($authhost eq 'no_host') || ($authhost eq 'no_account_on_host')) {                  unless (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||
                             next;                          ($tmpinfo eq 'no_such_host')) {
                         } elsif (($authhost ne '') && (&Apache::lonnet::hostname($authhost) ne '')) {                      my ($des_key,$firsturl,@rest)=split(/&/,$tmpinfo);
                             $pwdverify = 1;                      $firsturl = &unescape($firsturl);
                             &Apache::lonnet::logthis("Authenticated user: $possuname was submitted as: $form{'uname'}");                      my %info;
                             $form{'uname'} = $possuname;                      foreach my $item (@rest) {
                             last;                          my ($key,$value) = split(/=/,$item);
                         }                          $info{$key} = &unescape($value);
                     }                      }
                 }                      if ($firsturl ne '') {
             }                          $info{'firsturl'} = $firsturl;
         }                          $dest = $firsturl;
         unless ($pwdverify) {                          my $relogin;
             &failed($r,'Username and/or password could not be authenticated.',                          if ($dest =~ m{^/tiny/$match_domain/\w+$}) {
                     \%form);                              if ($env{'request.course.id'}) {
             return OK;                                  my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
         }                                  my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
     } elsif ($authhost eq 'no_account_on_host') {                                  my $symb = &Apache::loncommon::symb_from_tinyurl($dest,$cnum,$cdom);
         if ($defaultauth) {                                  if ($symb) {
             my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');                                      unless (&set_deeplink_login(%info) eq 'ok') {
             unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {                                          $relogin = 1;
                 return OK;                                      }
             }                                  }
             my $start_page =                               }
                 &Apache::loncommon::start_page('Create a user account in LON-CAPA',                              if ($relogin) {
                                                '',{'no_inline_link'   => 1,});                                  $r->print(
             my $lonhost = $r->dir_config('lonHostID');                                        $start_page
             my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};                                       .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
             my $contacts =                                        .'<p>'.&mt('Please [_1]log out[_2] first, and then try your access again',
                 &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',                                                  '<a href="/adm/logout">','</a>')
                                                         $form{'udom'},$origmail);                                       .'</p>'
             my ($contact_email) = split(',',$contacts);                                        .$end_page);
             my $output =                               } else {
                 &Apache::createaccount::username_check($form{'uname'},$form{'udom'},                                  if (($info{'linkprot'}) || ($info{'linkkey'} ne '')) {
                                                        $domdesc,'',$lonhost,                                      if (($info{'linkprot'}) && ($info{'linkprotuser'} ne '')) {
                                                        $contact_email,$contact_name,                                          unless ($info{'linkprotuser'} eq $env{'user.name'}.':'.$env{'user.domain'}) {
                                                        undef,$statustocreate);                                              $r->print(
             &Apache::loncommon::content_type($r,'text/html');                                                        $start_page
             $r->send_http_header;                                                        .'<p class="LC_warning">'.&mt('You are already logged in, but as a different user from the one expected for the link you followed from another system').'</p>'
             &Apache::createaccount::print_header($r,$start_page);                                                        .'<p>'.&mt('Please [_1]log out[_2] first, and then try following the link again from the other system',
             $r->print('<h3>'.&mt('Account creation').'</h3>'.                                                                   '<a href="/adm/logout">','</a>')
                       &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.  
                       $output.&Apache::loncommon::end_page());                                                        .'</p>'
             return OK;                                                        .$end_page);
         } else {                                              return OK;
             &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 $token = &Apache::lonnet::tmpput(\%info,$r->dir_config('lonHostID'),'link');
     }                                      unless (($token eq 'con_lost') || ($token eq 'refused') ||
                                               ($token eq 'unknown_cmd') || ($token eq 'no_such_host')) {
     if (($firsturl eq '') ||                                           $dest .= (($dest =~ /\?/) ? '&' : '?') . 'ttoken='.$token;
  ($firsturl=~/^\/adm\/(logout|remote)/)) {                                      }
  $firsturl='/adm/roles';                                  }
     }                                  $r->print(
                                         $start_page
     my ($hosthere,%sessiondata);                                       .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
     if ($form{'iptoken'}) {                                       .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4] first, and then try your access again',
         %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});                                                  '<a href="'.$dest.'">','</a>',
         my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});                                                  '<a href="/adm/logout">','</a>')
         if (($sessiondata{'domain'} eq $form{'udom'}) &&                                       .'</p>'
             ($sessiondata{'username'} eq $form{'uname'})) {                                       .$end_page);
             $hosthere = 1;                              }
         }                              return OK;
     }                          }
                       }
 # --------------------------------- Are we attempting to login as somebody else?                  }
     if ($form{'suname'}) {              }
         my ($suname,$sudom,$sudomref);              $r->print(
         $suname = $form{'suname'};                    $start_page
         $sudom = $form{'udom'};                   .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
         if ($form{'sudom'}) {                   .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'
             unless ($sudom eq $form{'sudom'}) {                            ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')
                 if (&Apache::lonnet::domain($form{'sudom'})) {                   .'</p>'
                     $sudomref = [$form{'sudom'}];                   .$end_page
                     $sudom = $form{'sudom'};              );
                 }              return OK;
             }          }
         }      }
 # ------------ see if the original user has enough privileges to pull this stunt  
  if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {  # ---------------------------------------------------- No valid token, continue
 # ---------------------------------------------------- see if the su-user exists  
     unless (&Apache::lonnet::homeserver($suname,$sudom) eq 'no_host') {      my %form = &get_form_items($r);
 # ------------------------------ see if the su-user is not too highly privileged      if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {
  if (&Apache::lonnet::privileged($suname,$sudom)) {   &failed($r,'Username, password and domain need to be specified.',
                     &Apache::lonnet::logthis('Attempted switch user to privileged user');   \%form);
                 } else {          return OK;
                     my $noprivswitch;      }
 #  
 # su-user's home server and user's home server must have one of:  # split user logging in and "su"-user
 # (a) same domain  
 # (b) same primary library server for the two domains      ($form{'uname'},$form{'suname'},$form{'sudom'})=split(/\:/,$form{'uname'});
 # (c) same "internet domain" for primary library server(s) for home servers' domains      $form{'uname'} = &LONCAPA::clean_username($form{'uname'});
 #      $form{'suname'}= &LONCAPA::clean_username($form{'suname'});
                     my $suprim = &Apache::lonnet::domain($sudom,'primary');      $form{'udom'}  = &LONCAPA::clean_domain($form{'udom'});
                     my $suintdom = &Apache::lonnet::internet_dom($suprim);      $form{'sudom'} = &LONCAPA::clean_domain($form{'sudom'});
                     unless ($sudom eq $form{'udom'}) {  
                         my $uprim = &Apache::lonnet::domain($form{'udom'},'primary');      my $role   = $r->dir_config('lonRole');
                         my $uintdom = &Apache::lonnet::internet_dom($uprim);      my $domain = $r->dir_config('lonDefDomain');
                         unless ($suprim eq $uprim) {      my $prodir = $r->dir_config('lonUsersDir');
                             unless ($suintdom eq $uintdom) {      my $contact_name = &mt('LON-CAPA helpdesk');
                                 &Apache::lonnet::logthis('Attempted switch user '  
                                    .'to user with different "internet domain".');  # ---------------------------------------- Get the information from login token
                                 $noprivswitch = 1;  
                             }      my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},
                         }                                        $form{'serverid'});
                     }  
       if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||
                     unless ($noprivswitch) {          ($tmpinfo eq 'no_such_host')) {
 #   &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);
 # server where log-in occurs must have same "internet domain" as su-user's home          return OK;
 # server      } else {
 #   my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},
                         my $lonhost = $r->dir_config('lonHostID');     $form{'serverid'});
                         my $hostintdom = &Apache::lonnet::internet_dom($lonhost);          if ( $reply ne 'ok' ) {
                         if ($hostintdom ne $suintdom) {              &failed($r,'Session could not be opened.',\%form);
                             &Apache::lonnet::logthis('Attempted switch user on a '      &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");
                                 .'server with a different "internet domain".');      return OK;
                         } else {   }
       }
 # -------------------------------------------------------- actually switch users  
       if (!&Apache::lonnet::domain($form{'udom'})) {
     &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.          &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);
  $form{'udom'}.' logging in as '.$suname.':'.$sudom);          return OK;
     $form{'uname'}=$suname;      }
                             if ($form{'udom'} ne $sudom) {  
                                 $form{'udom'}=$sudom;      my ($des_key,$firsturl,@rest)=split(/&/,$tmpinfo);
                             }      $firsturl = &unescape($firsturl);
                         }      foreach my $item (@rest) {
                     }          my ($key,$value) = split(/=/,$item);
  }          $form{$key} = &unescape($value);
     }      }
  } else {      if ($firsturl =~ m{^/tiny/$match_domain/\w+$}) {
     &Apache::lonnet::logthis('Non-privileged user attempting switch user');          $form{'firsturl'} = $firsturl;
  }      }
     }      my $upass = $ENV{HTTPS} ? $form{'upass0'}
           : &Apache::loncommon::des_decrypt($des_key,$form{'upass0'});
     my ($is_balancer,$otherserver);  
   # ---------------------------------------------------------------- Authenticate
     unless ($hosthere) {  
         ($is_balancer,$otherserver) =      my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});
             &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');      my ($cancreate,$statustocreate) =
         if ($is_balancer) {          &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});
             # Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer)      my $defaultauth;
             my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r);      if (ref($cancreate) eq 'ARRAY') {
             if (($found_server) && ($balancer_cookie =~ /^\Q$env{'user.domain'}\E_\Q$env{'user.name'}\E_/)) {          if (grep(/^login$/,@{$cancreate})) {
                 $otherserver = $found_server;              $defaultauth = 1;
             }          }
             if ($otherserver eq '') {      }
                 my $lowest_load;      my $clientcancheckhost = 1;
                 ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});      my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,
                 if ($lowest_load > 100) {                                                $form{'udom'},$defaultauth,
                     $otherserver = &Apache::lonnet::spareserver($r,$lowest_load,$lowest_load,1,$form{'udom'});                                                $clientcancheckhost);
                 }  
             }  # --------------------------------------------------------------------- Failed?
             if ($otherserver ne '') {  
                 my @hosts = &Apache::lonnet::current_machine_ids();      if ($authhost eq 'no_host') {
                 if (grep(/^\Q$otherserver\E$/,@hosts)) {          my $pwdverify;
                     $hosthere = $otherserver;          if (&Apache::lonnet::homeserver($form{'uname'},$form{'udom'}) eq 'no_host') {
                 }              my %possunames = &alternate_unames_check($form{'uname'},$form{'udom'});
             }              if (keys(%possunames) > 0) {
         }                  foreach my $rulematch (keys(%possunames)) {
     }                      my $possuname = $possunames{$rulematch};
                       if (($possuname ne '') && ($possuname =~ /^$match_username$/)) {
     if (($is_balancer) && (!$hosthere)) {                          $authhost=Apache::lonnet::authenticate($possuname,$upass,
         if ($otherserver) {                                                                 $form{'udom'},undef,
             &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,                                                                 $clientcancheckhost);
                      \%form);                          if (($authhost eq 'no_host') || ($authhost eq 'no_account_on_host')) {
             my $switchto = '/adm/switchserver?otherserver='.$otherserver;                              next;
             if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {                          } elsif (($authhost ne '') && (&Apache::lonnet::hostname($authhost) ne '')) {
                 $switchto .= '&origurl='.$firsturl;                              $pwdverify = 1;
             }                              &Apache::lonnet::logthis("Authenticated user: $possuname was submitted as: $form{'uname'}");
             if ($form{'role'}) {                              $form{'uname'} = $possuname;
                 $switchto .= '&role='.$form{'role'};                              last;
             }                          }
             if ($form{'symb'}) {                      }
                 $switchto .= '&symb='.$form{'symb'};                  }
             }              }
             $r->internal_redirect($switchto);          }
         } else {          unless ($pwdverify) {
             &Apache::loncommon::content_type($r,'text/html');              &failed($r,'Username and/or password could not be authenticated.',
             $r->send_http_header;                      \%form,$authhost);
             $r->print(&noswitch());              return OK;
         }          }
         return OK;      } elsif ($authhost eq 'no_account_on_host') {
     } else {          if ($defaultauth) {
         if (!&check_can_host($r,\%form,$authhost)) {              my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');
             my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});              unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {
             if ($otherserver) {                  return OK;
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,              }
                          \%form);              my $start_page =
                 my $switchto = '/adm/switchserver?otherserver='.$otherserver;                  &Apache::loncommon::start_page('Create a user account in LON-CAPA',
                 if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {                                                 '',{'no_inline_link'   => 1,});
                     $switchto .= '&origurl='.$firsturl;              my $lonhost = $r->dir_config('lonHostID');
                 }              my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
                 if ($form{'role'}) {              my $contacts =
                     $switchto .= '&role='.$form{'role'};                  &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
                 }                                                          $form{'udom'},$origmail);
                 if ($form{'symb'}) {              my ($contact_email) = split(',',$contacts);
                     $switchto .= '&symb='.$form{'symb'};              my $output =
                 }                  &Apache::createaccount::username_check($form{'uname'},$form{'udom'},
                 $r->internal_redirect($switchto);                                                         $domdesc,'',$lonhost,
             } else {                                                         $contact_email,$contact_name,
                 &Apache::loncommon::content_type($r,'text/html');                                                         undef,$statustocreate);
                 $r->send_http_header;              &Apache::loncommon::content_type($r,'text/html');
                 $r->print(&noswitch());              $r->send_http_header;
             }              &Apache::createaccount::print_header($r,$start_page);
             return OK;              $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 />'.
                         $output.&Apache::loncommon::end_page());
 # ------------------------------------------------------- Do the load balancing              return OK;
           } else {
 # ---------------------------------------------------------- Determine own load              &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 $loadlim = $r->dir_config('lonLoadLim');              return OK;
         my $loadavg;          }
         {      }
             my $loadfile=Apache::File->new('/proc/loadavg');  
             $loadavg=<$loadfile>;      if (($firsturl eq '') ||
         }   ($firsturl=~/^\/adm\/(logout|remote)/)) {
         $loadavg =~ s/\s.*//g;   $firsturl='/adm/roles';
         my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);      }
         my $userloadpercent=&Apache::lonnet::userload();  
       my ($hosthere,%sessiondata);
 # ---------------------------------------------------------- Are we overloaded?      if ($form{'iptoken'}) {
         if ((($userloadpercent>100.0)||($loadpercent>100.0))) {          %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});
             my $unloaded=Apache::lonnet::spareserver($r,$loadpercent,$userloadpercent,1,$form{'udom'});          my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});
             if (!$unloaded) {          if (($sessiondata{'domain'} eq $form{'udom'}) &&
                 ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});              ($sessiondata{'username'} eq $form{'uname'})) {
             }              $hosthere = 1;
             if ($unloaded) {          }
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',      }
                          undef,\%form);  
                 $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);  # --------------------------------- Are we attempting to login as somebody else?
                 return OK;      if ($form{'suname'}) {
             }          my ($suname,$sudom,$sudomref);
         }          $suname = $form{'suname'};
         if (($is_balancer) && ($hosthere)) {          $sudom = $form{'udom'};
             $form{'noloadbalance'} = $hosthere;          if ($form{'sudom'}) {
         }              unless ($sudom eq $form{'sudom'}) {
         my $extra_env;                  if (&Apache::lonnet::domain($form{'sudom'})) {
         if (($hosthere) && ($sessiondata{'sessionserver'} ne '')) {                      $sudomref = [$form{'sudom'}];
             if ($sessiondata{'origurl'} ne '') {                      $sudom = $form{'sudom'};
                 $firsturl = $sessiondata{'origurl'};                  }
                 $form{'firsturl'} = $sessiondata{'origurl'};              }
                 my @names = ('role','symb','linkprot','linkkey');          }
                 foreach my $item (@names) {  # ------------ see if the original user has enough privileges to pull this stunt
                     if ($sessiondata{$item} ne '') {   if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {
                         $form{$item} = $sessiondata{$item};  # ---------------------------------------------------- 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');
         &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,                  } else {
                  \%form);                      my $noprivswitch;
         return OK;  #
     }  # su-user's home server and user's home server must have one of:
 }  # (a) same domain
   # (b) same primary library server for the two domains
 sub get_form_items {  # (c) same "internet domain" for primary library server(s) for home servers' domains
     my ($r) = @_;  #
     my $buffer;                      my $suprim = &Apache::lonnet::domain($sudom,'primary');
     if ($r->header_in('Content-length') > 0) {                      my $suintdom = &Apache::lonnet::internet_dom($suprim);
         $r->read($buffer,$r->header_in('Content-length'),0);                      unless ($sudom eq $form{'udom'}) {
     }                          my $uprim = &Apache::lonnet::domain($form{'udom'},'primary');
     my %form;                          my $uintdom = &Apache::lonnet::internet_dom($uprim);
     foreach my $pair (split(/&/,$buffer)) {                          unless ($suprim eq $uprim) {
        my ($name,$value) = split(/=/,$pair);                              unless ($suintdom eq $uintdom) {
        $value =~ tr/+/ /;                                  &Apache::lonnet::logthis('Attempted switch user '
        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;                                     .'to user with different "internet domain".');
        $form{$name}=$value;                                  $noprivswitch = 1;
     }                              }
     return %form;                          }
 }                      }
   
 sub set_retry_token {                      unless ($noprivswitch) {
     my ($form,$lonhost,$querystr) = @_;  #
     if (ref($form) eq 'HASH') {  # server where log-in occurs must have same "internet domain" as su-user's home
         my ($firsturl,$token,$extras,@names);  # server
         @names = ('role','symb','iptoken');  #
         foreach my $name (@names) {                          my $lonhost = $r->dir_config('lonHostID');
             if ($form->{$name} ne '') {                          my $hostintdom = &Apache::lonnet::internet_dom($lonhost);
                 $extras .= '&'.$name.'='.&escape($form->{$name});                          if ($hostintdom ne $suintdom) {
                 last if ($name eq 'linkprot');                              &Apache::lonnet::logthis('Attempted switch user on a '
             }                                  .'server with a different "internet domain".');
         }                          } else {
         my $firsturl = $form->{'firsturl'};  
         if (($firsturl ne '') || ($extras ne '')) {  # -------------------------------------------------------- actually switch users
             $extras .= ':retry';  
             $token = &Apache::lonnet::reply('tmpput:'.&escape($firsturl).              &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.
                                             $extras,$lonhost);                                $form{'udom'}.' logging in as '.$suname.':'.$sudom);
             if (($token eq 'con_lost') || ($token eq 'no_such_host')) {              $form{'uname'}=$suname;
                 return 'fail';                              if ($form{'udom'} ne $sudom) {
             } else {                                  $form{'udom'}=$sudom;
                 if (ref($querystr)) {                              }
                     $$querystr = 'retry='.$token;                          }
                 }                      }
                 return 'ok';   }
             }      }
         }   } else {
     }      &Apache::lonnet::logthis('Non-privileged user attempting switch user');
     return;   }
 }      }
   
 sub check_can_host {      if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
     my ($r,$form,$authhost,$domdesc) = @_;          if (($form{'linkprot'}) && ($form{'linkprotuser'} ne '')) {
     return unless (ref($form) eq 'HASH');              unless($form{'linkprotuser'} eq $form{'uname'}.':'.$form{'udom'}) {
     my $canhost = 1;                  delete($form{'udom'});
     my $lonhost = $r->dir_config('lonHostID');                  delete($form{'uname'});
     my $udom = $form->{'udom'};                  &failed($r,'Username and/or domain are different to that expected for the link you followed from another system',
     my @intdoms;                          \%form,$authhost);
     my $internet_names = &Apache::lonnet::get_internet_names($lonhost);                  return OK;
     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);      my ($is_balancer,$otherserver);
     unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {  
         my $machine_dom = &Apache::lonnet::host_domain($lonhost);      unless ($hosthere) {
         my $hostname = &Apache::lonnet::hostname($lonhost);          ($is_balancer,$otherserver) =
         my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);              &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');
         my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);          if ($is_balancer) {
         my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);              # Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer)
         my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);              my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r);
         my $loncaparev;              if (($found_server) && ($balancer_cookie =~ /^\Q$env{'user.domain'}\E_\Q$env{'user.name'}\E_/)) {
         if ($authhost eq 'no_account_on_host') {                  $otherserver = $found_server;
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);              }
         } else {              if ($otherserver eq '') {
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);                  my $lowest_load;
         }                  ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});
         $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,                  if ($lowest_load > 100) {
                                                      $udomdefaults{'remotesessions'},                      $otherserver = &Apache::lonnet::spareserver($r,$lowest_load,$lowest_load,1,$form{'udom'});
                                                      $defdomdefaults{'hostedsessions'});                  }
     }              }
     unless ($canhost) {              if ($otherserver ne '') {
         if ($authhost eq 'no_account_on_host') {                  my @hosts = &Apache::lonnet::current_machine_ids();
             my $checkloginvia = 1;                  if (grep(/^\Q$otherserver\E$/,@hosts)) {
             my ($login_host,$hostname) =                       $hosthere = $otherserver;
                 &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');      if (($is_balancer) && (!$hosthere)) {
                 my $alias = &Apache::lonnet::use_proxy_alias($r,$login_host);          if ($otherserver) {
                 $hostname = $alias if ($alias ne '');              &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
                 my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';                       \%form);
                 $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').              my $switchto = '/adm/switchserver?otherserver='.$otherserver;
                           '<h3>'.&mt('Account creation').'</h3>'.              if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.                  $switchto .= '&origurl='.$firsturl;
                           '<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>').              if ($form{'role'}) {
                           &Apache::loncommon::end_page());                  $switchto .= '&role='.$form{'role'};
             } else {              }
                 $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').              if ($form{'symb'}) {
                           '<h3>'.&mt('Account creation unavailable').'</h3>'.                  $switchto .= '&symb='.$form{'symb'};
                           &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>'.              if ($form{'linkprot'}) {
                           &Apache::loncommon::end_page());                  $env{'request.linkprot'} = $form{'linkprot'};
             }              } elsif ($form{'linkkey'} ne '') {
         } else {                  $env{'request.linkkey'} = $form{'linkkey'};
             &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,              }
                      $form);              if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
             my ($otherserver) = &Apache::lonnet::choose_server($udom);                  &set_deeplink_login(%form);
             $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);              }
         }              $r->internal_redirect($switchto);
     }          } else {
     return $canhost;              &Apache::loncommon::content_type($r,'text/html');
 }              $r->send_http_header;
               $r->print(&noswitch());
 sub noswitch {          }
     my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').          return OK;
                  '<h3>'.&mt('Session unavailable').'</h3>'.      } else {
                  &mt('This LON-CAPA server is unable to host your session.').'<br />'.          if (!&check_can_host($r,\%form,$authhost)) {
                  '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.              my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});
                  &Apache::loncommon::end_page();              if ($otherserver) {
     return $result;                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
 }                           \%form);
                   my $switchto = '/adm/switchserver?otherserver='.$otherserver;
 sub loginhelpdisplay {                  if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
     my ($authdomain) = @_;                      $switchto .= '&origurl='.$firsturl;
     my $login_help = 1;                  }
     my $lang = &Apache::lonlocal::current_language();                  if ($form{'role'}) {
     if ($login_help) {                      $switchto .= '&role='.$form{'role'};
         my $dom = $authdomain;                  }
         if ($dom eq '') {                  if ($form{'symb'}) {
             $dom = &Apache::lonnet::default_login_domain();                      $switchto .= '&symb='.$form{'symb'};
         }                  }
         my %domconfhash = &Apache::loncommon::get_domainconf($dom);                  if ($form{'linkprot'}) {
         my $loginhelp_url;                      $env{'request.linkprot'} = $form{'linkprot'};
         if ($lang) {                  } elsif ($form{'linkkey'} ne '') {
             $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};                      $env{'request.linkkey'} = $form{'linkkey'};
             if ($loginhelp_url ne '') {                  }
                 return $loginhelp_url;                  if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
             }                      &set_deeplink_login(%form);
         }                  }
         $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};                  $r->internal_redirect($switchto);
         if ($loginhelp_url ne '') {              } else {
             return $loginhelp_url;                  &Apache::loncommon::content_type($r,'text/html');
         } else {                  $r->send_http_header;
             return '/adm/loginproblems.html';                  $r->print(&noswitch());
         }              }
     }              return OK;
     return;          }
 }  
   # ------------------------------------------------------- Do the load balancing
 sub alternate_unames_check {  
     my ($uname,$udom) = @_;  # ---------------------------------------------------------- Determine own load
     my %possunames;          my $loadlim = $r->dir_config('lonLoadLim');
     my %domdefs = &Apache::lonnet::get_domain_defaults($udom);          my $loadavg;
     if (ref($domdefs{'unamemap_rule'}) eq 'ARRAY') {          {
         if (@{$domdefs{'unamemap_rule'}} > 0) {              my $loadfile=Apache::File->new('/proc/loadavg');
             %possunames =              $loadavg=<$loadfile>;
                 &Apache::lonnet::inst_rulecheck($udom,$uname,undef,          }
                                                 'unamemap',$domdefs{'unamemap_rule'});          $loadavg =~ s/\s.*//g;
         }          my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
     }          my $userloadpercent=&Apache::lonnet::userload();
     return %possunames;  
 }  # ---------------------------------------------------------- Are we overloaded?
           if ((($userloadpercent>100.0)||($loadpercent>100.0))) {
 1;              my $unloaded=Apache::lonnet::spareserver($r,$loadpercent,$userloadpercent,1,$form{'udom'});
 __END__              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'} ne '') {
                       $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 (($hosthere) && ($sessiondata{'sessionserver'} ne '')) {
               if ($sessiondata{'origurl'} ne '') {
                   $firsturl = $sessiondata{'origurl'};
                   $form{'firsturl'} = $sessiondata{'origurl'};
                   my @names = ('role','symb','linkprot','linkkey');
                   foreach my $item (@names) {
                       if ($sessiondata{$item} ne '') {
                           $form{$item} = $sessiondata{$item};
                       }
                   }
               }
           }
           if ($form{'linkprot'}) {
               my ($linkprotector,$uri) = split(/:/,$form{'linkprot'},2);
               if ($linkprotector) {
                   $extra_env = {'user.linkprotector' => $linkprotector,
                                 'user.linkproturi'   => $uri};
               }
           } elsif ($form{'linkkey'} ne '') {
               $extra_env = {'user.deeplinkkey'  => $form{'linkkey'},
                             'user.keyedlinkuri' => $form{'firsturl'}};
           }
           if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
               &set_deeplink_login(%form);
               if ($form{'linkprot'}) {
                   if (ref($extra_env) eq 'HASH') {
                       %{$extra_env} = ( %{$extra_env}, 'request.linkprot' => $form{'linkprot'} );
                   } else {
                       $extra_env = {'request.linkprot' => $form{'linkprot'}};
                   }
               } elsif ($form{'linkkey'} ne '') {
                   if (ref($extra_env) eq 'HASH') {
                       %{$extra_env} = ( %{$extra_env}, 'request.linkkey' => $form{'linkkey'} );
                   } else {
                       $extra_env = {'request.linkkey' => $form{'linkkey'}};
                   }
               }
               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 get_form_items {
       my ($r) = @_;
       my $buffer;
       if ($r->header_in('Content-length') > 0) {
           $r->read($buffer,$r->header_in('Content-length'),0);
       }
       my %form;
       foreach my $pair (split(/&/,$buffer)) {
          my ($name,$value) = split(/=/,$pair);
          $value =~ tr/+/ /;
          $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
          $form{$name}=$value;
       }
       return %form;
   }
   
   sub set_deeplink_login {
       my (%form) = @_;
       my $disallow;
       if ($form{'firsturl'} =~ m{^/tiny/($match_domain)/\w+$}) {
           my $cdom = $1;
           my ($cnum,$symb) = &Apache::loncommon::symb_from_tinyurl($form{'firsturl'},'',$cdom);
           if ($symb) {
               if ($env{'request.course.id'} eq $cdom.'_'.$cnum) {
                   my $deeplink;
                   if ($symb =~ /\.(page|sequence)$/) {
                       my $mapname = &Apache::lonnet::deversion((&Apache::lonnet::decode_symb($symb))[2]);
                       my $navmap = Apache::lonnavmaps::navmap->new();
                       if (ref($navmap)) {
                           $deeplink = $navmap->get_mapparam(undef,$mapname,'0.deeplink');
                       }
                   } else {
                       $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 =~ /lti(c|d)$/) {
                               unless ($form{'linkprot'} eq $item.$1.':'.$env{'request.deeplink.login'}) {
                                   $disallow = 1;
                               }
                           } elsif ($acctype eq 'key') {
                               unless ($form{'linkkey'} eq $item) {
                                   $disallow = 1;
                               }
                           }
                       }
                   }
                   unless ($disallow) {
                       $env{'request.deeplink.login'} = $form{'firsturl'};
                   }
               } else {
                   $env{'request.deeplink.login'} = $form{'firsturl'};
               }
           }
       }
       if ($disallow) {
           return;
       }
       return 'ok';
   }
   
   sub set_retry_token {
       my ($form,$lonhost,$querystr) = @_;
       if (ref($form) eq 'HASH') {
           my ($firsturl,$token,$extras,@names);
           @names = ('role','symb','linkprotuser','linkprot','linkkey','iptoken');
           foreach my $name (@names) {
               if ($form->{$name} ne '') {
                   $extras .= '&'.$name.'='.&escape($form->{$name});
                   last if ($name eq 'linkprot');
               }
           }
           my $firsturl = $form->{'firsturl'};
           if (($firsturl ne '') || ($extras ne '')) {
               $extras .= ':retry';
               $token = &Apache::lonnet::reply('tmpput:'.&escape($firsturl).
                                               $extras,$lonhost);
               if (($token eq 'con_lost') || ($token eq 'no_such_host')) {
                   return 'fail';
               } else {
                   if (ref($querystr)) {
                       $$querystr = 'retry='.$token;
                   }
                   return 'ok';
               }
           }
       }
       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->{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
                   $env{'request.deeplink.login'} = $form->{'firsturl'};
               }
               if ($form->{'linkprot'}) {
                   $env{'request.linkprot'} = $form->{'linkprot'};
               } elsif ($form->{'linkkey'} ne '') {
                   $env{'request.linkkey'} = $form->{'linkkey'};
               }
               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;
   }
   
   sub alternate_unames_check {
       my ($uname,$udom) = @_;
       my %possunames;
       my %domdefs = &Apache::lonnet::get_domain_defaults($udom);
       if (ref($domdefs{'unamemap_rule'}) eq 'ARRAY') {
           if (@{$domdefs{'unamemap_rule'}} > 0) {
               %possunames =
                   &Apache::lonnet::inst_rulecheck($udom,$uname,undef,
                                                   'unamemap',$domdefs{'unamemap_rule'});
           }
       }
       return %possunames;
   }
   
   1;
   __END__
   
   

Removed from v.1.121.2.27  
changed lines
  Added in v.1.174


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