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

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

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


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