Diff for /loncom/auth/lonauth.pm between versions 1.121.2.24.2.2 and 1.175

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

Removed from v.1.121.2.24.2.2  
changed lines
  Added in v.1.175


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