Diff for /loncom/auth/lonauth.pm between versions 1.121.2.24.2.8 and 1.178

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

Removed from v.1.121.2.24.2.8  
changed lines
  Added in v.1.178


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