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

version 1.121.2.24.2.3, 2022/02/27 02:57:35 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',
         my $pwdverify;                                                                   '<a href="/adm/logout">','</a>')
         if (&Apache::lonnet::homeserver($form{'uname'},$form{'udom'}) eq 'no_host') {  
             my %possunames = &alternate_unames_check($form{'uname'},$form{'udom'});                                                        .'</p>'
             if (keys(%possunames) > 0) {                                                        .$end_page);
                 foreach my $rulematch (keys(%possunames)) {                                              return OK;
                     my $possuname = $possunames{$rulematch};                                          }
                     if (($possuname ne '') && ($possuname =~ /^$match_username$/)) {                                      }
                         $authhost=Apache::lonnet::authenticate($possuname,$upass,                                      my $token = &Apache::lonnet::tmpput(\%info,$r->dir_config('lonHostID'),'link');
                                                                $form{'udom'},undef,                                      unless (($token eq 'con_lost') || ($token eq 'refused') ||
                                                                $clientcancheckhost);                                              ($token eq 'unknown_cmd') || ($token eq 'no_such_host')) {
                         if (($authhost eq 'no_host') || ($authhost eq 'no_account_on_host')) {                                          $dest .= (($dest =~ /\?/) ? '&' : '?') . 'ttoken='.$token;
                             next;                                      }
                         } elsif (($authhost ne '') && (&Apache::lonnet::hostname($authhost) ne '')) {                                  }
                             $pwdverify = 1;                                  $r->print(
                             &Apache::lonnet::logthis("Authenticated user: $possuname was submitted as: $form{'uname'}");                                        $start_page
                             $form{'uname'} = $possuname;                                       .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
                             last;                                       .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4] first, and then try your access again',
                         }                                                  '<a href="'.$dest.'">','</a>',
                     }                                                  '<a href="/adm/logout">','</a>')
                 }                                       .'</p>'
             }                                       .$end_page);
         }                              }
         unless ($pwdverify) {                              return OK;
             &failed($r,'Username and/or password could not be authenticated.',                          }
                     \%form);                      }
             return OK;                  }
         }              }
     } elsif ($authhost eq 'no_account_on_host') {              $r->print(
         if ($defaultauth) {                    $start_page
             my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');                   .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
             unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {                   .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'
                 return OK;                            ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')
             }                   .'</p>'
             my $start_page =                    .$end_page
                 &Apache::loncommon::start_page('Create a user account in LON-CAPA',              );
                                                '',{'no_inline_link'   => 1,});              return OK;
             my $lonhost = $r->dir_config('lonHostID');          }
             my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};      }
             my $contacts =   
                 &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',  # ---------------------------------------------------- No valid token, continue
                                                         $form{'udom'},$origmail);  
             my ($contact_email) = split(',',$contacts);       my %form = &get_form_items($r);
             my $output =       if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {
                 &Apache::createaccount::username_check($form{'uname'},$form{'udom'},   &failed($r,'Username, password and domain need to be specified.',
                                                        $domdesc,'',$lonhost,   \%form);
                                                        $contact_email,$contact_name,          return OK;
                                                        undef,$statustocreate);      }
             &Apache::loncommon::content_type($r,'text/html');  
             $r->send_http_header;  # split user logging in and "su"-user
             &Apache::createaccount::print_header($r,$start_page);  
             $r->print('<h3>'.&mt('Account creation').'</h3>'.      ($form{'uname'},$form{'suname'},$form{'sudom'})=split(/\:/,$form{'uname'});
                       &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.      $form{'uname'} = &LONCAPA::clean_username($form{'uname'});
                       $output.&Apache::loncommon::end_page());      $form{'suname'}= &LONCAPA::clean_username($form{'suname'});
             return OK;      $form{'udom'}  = &LONCAPA::clean_domain($form{'udom'});
         } else {      $form{'sudom'} = &LONCAPA::clean_domain($form{'sudom'});
             &failed($r,'Although your username and password were authenticated, you do not currently have a LON-CAPA account in this domain, and you are not permitted to create one.',\%form);  
             return OK;      my $role   = $r->dir_config('lonRole');
         }      my $domain = $r->dir_config('lonDefDomain');
     }      my $prodir = $r->dir_config('lonUsersDir');
       my $contact_name = &mt('LON-CAPA helpdesk');
     if (($firsturl eq '') ||   
  ($firsturl=~/^\/adm\/(logout|remote)/)) {  # ---------------------------------------- Get the information from login token
  $firsturl='/adm/roles';  
     }      my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},
                                         $form{'serverid'});
     my ($hosthere,%sessiondata);  
     if ($form{'iptoken'}) {      if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||
         %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});          ($tmpinfo eq 'no_such_host')) {
         my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});   &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);
         if (($sessiondata{'domain'} eq $form{'udom'}) &&          return OK;
             ($sessiondata{'username'} eq $form{'uname'})) {      } else {
             $hosthere = 1;   my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},
         }     $form{'serverid'});
     }          if ( $reply ne 'ok' ) {
               &failed($r,'Session could not be opened.',\%form);
 # --------------------------------- Are we attempting to login as somebody else?      &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");
     if ($form{'suname'}) {      return OK;
         my ($suname,$sudom,$sudomref);   }
         $suname = $form{'suname'};      }
         $sudom = $form{'udom'};  
         if ($form{'sudom'}) {      if (!&Apache::lonnet::domain($form{'udom'})) {
             unless ($sudom eq $form{'sudom'}) {          &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);
                 if (&Apache::lonnet::domain($form{'sudom'})) {          return OK;
                     $sudomref = [$form{'sudom'}];      }
                     $sudom = $form{'sudom'};  
                 }      my ($des_key,$firsturl,@rest)=split(/&/,$tmpinfo);
             }      $firsturl = &unescape($firsturl);
         }      foreach my $item (@rest) {
 # ------------ see if the original user has enough privileges to pull this stunt          my ($key,$value) = split(/=/,$item);
  if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {          $form{$key} = &unescape($value);
 # ---------------------------------------------------- see if the su-user exists      }
     unless (&Apache::lonnet::homeserver($suname,$sudom) eq 'no_host') {      if ($firsturl =~ m{^/tiny/$match_domain/\w+$}) {
 # ------------------------------ see if the su-user is not too highly privileged          $form{'firsturl'} = $firsturl;
  if (&Apache::lonnet::privileged($suname,$sudom)) {      }
                     &Apache::lonnet::logthis('Attempted switch user to privileged user');      my $upass = $ENV{HTTPS} ? $form{'upass0'}
                 } else {          : &Apache::loncommon::des_decrypt($des_key,$form{'upass0'});
                     my $noprivswitch;  
 #  # ---------------------------------------------------------------- Authenticate
 # su-user's home server and user's home server must have one of:  
 # (a) same domain      my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});
 # (b) same primary library server for the two domains      my ($cancreate,$statustocreate) =
 # (c) same "internet domain" for primary library server(s) for home servers' domains          &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});
 #      my $defaultauth;
                     my $suprim = &Apache::lonnet::domain($sudom,'primary');      if (ref($cancreate) eq 'ARRAY') {
                     my $suintdom = &Apache::lonnet::internet_dom($suprim);          if (grep(/^login$/,@{$cancreate})) {
                     unless ($sudom eq $form{'udom'}) {              $defaultauth = 1;
                         my $uprim = &Apache::lonnet::domain($form{'udom'},'primary');          }
                         my $uintdom = &Apache::lonnet::internet_dom($uprim);      }
                         unless ($suprim eq $uprim) {      my $clientcancheckhost = 1;
                             unless ($suintdom eq $uintdom) {      my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,
                                 &Apache::lonnet::logthis('Attempted switch user '                                                $form{'udom'},$defaultauth,
                                    .'to user with different "internet domain".');                                                $clientcancheckhost);
                                 $noprivswitch = 1;  
                             }  # --------------------------------------------------------------------- Failed?
                         }  
                     }      if ($authhost eq 'no_host') {
           my $pwdverify;
                     unless ($noprivswitch) {          if (&Apache::lonnet::homeserver($form{'uname'},$form{'udom'}) eq 'no_host') {
 #              my %possunames = &alternate_unames_check($form{'uname'},$form{'udom'});
 # server where log-in occurs must have same "internet domain" as su-user's home              if (keys(%possunames) > 0) {
 # server                  foreach my $rulematch (keys(%possunames)) {
 #                      my $possuname = $possunames{$rulematch};
                         my $lonhost = $r->dir_config('lonHostID');                      if (($possuname ne '') && ($possuname =~ /^$match_username$/)) {
                         my $hostintdom = &Apache::lonnet::internet_dom($lonhost);                          $authhost=Apache::lonnet::authenticate($possuname,$upass,
                         if ($hostintdom ne $suintdom) {                                                                 $form{'udom'},undef,
                             &Apache::lonnet::logthis('Attempted switch user on a '                                                                 $clientcancheckhost);
                                 .'server with a different "internet domain".');                          if (($authhost eq 'no_host') || ($authhost eq 'no_account_on_host')) {
                         } else {                              next;
                           } elsif (($authhost ne '') && (&Apache::lonnet::hostname($authhost) ne '')) {
 # -------------------------------------------------------- actually switch users                              $pwdverify = 1;
                               &Apache::lonnet::logthis("Authenticated user: $possuname was submitted as: $form{'uname'}");
     &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.                              $form{'uname'} = $possuname;
  $form{'udom'}.' logging in as '.$suname.':'.$sudom);                              last;
     $form{'uname'}=$suname;                          }
                             if ($form{'udom'} ne $sudom) {                      }
                                 $form{'udom'}=$sudom;                  }
                             }              }
                         }          }
                     }          unless ($pwdverify) {
  }              &failed($r,'Username and/or password could not be authenticated.',
     }                      \%form,$authhost);
  } else {              return OK;
     &Apache::lonnet::logthis('Non-privileged user attempting switch user');          }
  }      } elsif ($authhost eq 'no_account_on_host') {
     }          if ($defaultauth) {
               my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');
     my ($is_balancer,$otherserver);              unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {
                   return OK;
     unless ($hosthere) {              }
         ($is_balancer,$otherserver) =              my $start_page =
             &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');                  &Apache::loncommon::start_page('Create a user account in LON-CAPA',
         if ($is_balancer) {                                                 '',{'no_inline_link'   => 1,});
             # Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer)              my $lonhost = $r->dir_config('lonHostID');
             my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r);              my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
             if (($found_server) && ($balancer_cookie =~ /^\Q$env{'user.domain'}\E_\Q$env{'user.name'}\E_/)) {              my $contacts =
                 $otherserver = $found_server;                  &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
             }                                                          $form{'udom'},$origmail);
             if ($otherserver eq '') {              my ($contact_email) = split(',',$contacts);
                 my $lowest_load;              my $output =
                 ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});                  &Apache::createaccount::username_check($form{'uname'},$form{'udom'},
                 if ($lowest_load > 100) {                                                         $domdesc,'',$lonhost,
                     $otherserver = &Apache::lonnet::spareserver($r,$lowest_load,$lowest_load,1,$form{'udom'});                                                         $contact_email,$contact_name,
                 }                                                         undef,$statustocreate);
             }              &Apache::loncommon::content_type($r,'text/html');
             if ($otherserver ne '') {              $r->send_http_header;
                 my @hosts = &Apache::lonnet::current_machine_ids();              &Apache::createaccount::print_header($r,$start_page);
                 if (grep(/^\Q$otherserver\E$/,@hosts)) {              $r->print('<h3>'.&mt('Account creation').'</h3>'.
                     $hosthere = $otherserver;                        &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.
                 }                        $output.&Apache::loncommon::end_page());
             }              return OK;
         }          } else {
     }              &failed($r,'Although your username and password were authenticated, you do not currently have a LON-CAPA account in this domain, and you are not permitted to create one.',\%form);
               return OK;
     if (($is_balancer) && (!$hosthere)) {          }
         if ($otherserver) {      }
             &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,  
                      \%form);      if (($firsturl eq '') ||
             my $switchto = '/adm/switchserver?otherserver='.$otherserver;   ($firsturl=~/^\/adm\/(logout|remote)/)) {
             if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {   $firsturl='/adm/roles';
                 $switchto .= '&origurl='.$firsturl;      }
             }  
             if ($form{'role'}) {      my ($hosthere,%sessiondata);
                 $switchto .= '&role='.$form{'role'};      if ($form{'iptoken'}) {
             }          %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});
             if ($form{'symb'}) {          my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});
                 $switchto .= '&symb='.$form{'symb'};          if (($sessiondata{'domain'} eq $form{'udom'}) &&
             }              ($sessiondata{'username'} eq $form{'uname'})) {
             if ($form{'linkprot'}) {              $hosthere = 1;
                 $env{'request.linkprot'} = $form{'linkprot'};          }
             } elsif ($form{'linkkey'} ne '') {      }
                 $env{'request.linkkey'} = $form{'linkkey'};  
             }  # --------------------------------- Are we attempting to login as somebody else?
             if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {      if ($form{'suname'}) {
                 &set_deeplink_login(%form);          my ($suname,$sudom,$sudomref);
             }          $suname = $form{'suname'};
             $r->internal_redirect($switchto);          $sudom = $form{'udom'};
         } else {          if ($form{'sudom'}) {
             &Apache::loncommon::content_type($r,'text/html');              unless ($sudom eq $form{'sudom'}) {
             $r->send_http_header;                  if (&Apache::lonnet::domain($form{'sudom'})) {
             $r->print(&noswitch());                      $sudomref = [$form{'sudom'}];
         }                      $sudom = $form{'sudom'};
         return OK;                  }
     } else {              }
         if (!&check_can_host($r,\%form,$authhost)) {          }
             my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});  # ------------ see if the original user has enough privileges to pull this stunt
             if ($otherserver) {   if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,  # ---------------------------------------------------- see if the su-user exists
                          \%form);      unless (&Apache::lonnet::homeserver($suname,$sudom) eq 'no_host') {
                 my $switchto = '/adm/switchserver?otherserver='.$otherserver;  # ------------------------------ see if the su-user is not too highly privileged
                 if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {   if (&Apache::lonnet::privileged($suname,$sudom)) {
                     $switchto .= '&origurl='.$firsturl;                      &Apache::lonnet::logthis('Attempted switch user to privileged user');
                 }                  } else {
                 if ($form{'role'}) {                      my $noprivswitch;
                     $switchto .= '&role='.$form{'role'};  #
                 }  # su-user's home server and user's home server must have one of:
                 if ($form{'symb'}) {  # (a) same domain
                     $switchto .= '&symb='.$form{'symb'};  # (b) same primary library server for the two domains
                 }  # (c) same "internet domain" for primary library server(s) for home servers' domains
                 if ($form{'linkprot'}) {  #
                     $env{'request.linkprot'} = $form{'linkprot'};                      my $suprim = &Apache::lonnet::domain($sudom,'primary');
                 } elsif ($form{'linkkey'} ne '') {                      my $suintdom = &Apache::lonnet::internet_dom($suprim);
                     $env{'request.linkkey'} = $form{'linkkey'};                      unless ($sudom eq $form{'udom'}) {
                 }                          my $uprim = &Apache::lonnet::domain($form{'udom'},'primary');
                 if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {                          my $uintdom = &Apache::lonnet::internet_dom($uprim);
                     &set_deeplink_login(%form);                          unless ($suprim eq $uprim) {
                 }                              unless ($suintdom eq $uintdom) {
                 $r->internal_redirect($switchto);                                  &Apache::lonnet::logthis('Attempted switch user '
             } else {                                     .'to user with different "internet domain".');
                 &Apache::loncommon::content_type($r,'text/html');                                  $noprivswitch = 1;
                 $r->send_http_header;                              }
                 $r->print(&noswitch());                          }
             }                      }
             return OK;  
         }                      unless ($noprivswitch) {
   #
 # ------------------------------------------------------- Do the load balancing  # server where log-in occurs must have same "internet domain" as su-user's home
   # server
 # ---------------------------------------------------------- Determine own load  #
         my $loadlim = $r->dir_config('lonLoadLim');                          my $lonhost = $r->dir_config('lonHostID');
         my $loadavg;                          my $hostintdom = &Apache::lonnet::internet_dom($lonhost);
         {                          if ($hostintdom ne $suintdom) {
             my $loadfile=Apache::File->new('/proc/loadavg');                              &Apache::lonnet::logthis('Attempted switch user on a '
             $loadavg=<$loadfile>;                                  .'server with a different "internet domain".');
         }                          } else {
         $loadavg =~ s/\s.*//g;  
         my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);  # -------------------------------------------------------- actually switch users
         my $userloadpercent=&Apache::lonnet::userload();  
               &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.
 # ---------------------------------------------------------- Are we overloaded?                                $form{'udom'}.' logging in as '.$suname.':'.$sudom);
         if ((($userloadpercent>100.0)||($loadpercent>100.0))) {              $form{'uname'}=$suname;
             my $unloaded=Apache::lonnet::spareserver($r,$loadpercent,$userloadpercent,1,$form{'udom'});                              if ($form{'udom'} ne $sudom) {
             if (!$unloaded) {                                  $form{'udom'}=$sudom;
                 ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});                              }
             }                          }
             if ($unloaded) {                      }
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',   }
                          undef,\%form);      }
                 if ($form{'linkprot'}) {   } else {
                     $env{'request.linkprot'} = $form{'linkprot'};      &Apache::lonnet::logthis('Non-privileged user attempting switch user');
                 } elsif ($form{'linkkey'} ne '') {   }
                     $env{'request.linkkey'} = $form{'linkkey'};      }
                 }  
                 if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {      if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
                     &set_deeplink_login(%form);          if (($form{'linkprot'}) && ($form{'linkprotuser'} ne '')) {
                 }              unless($form{'linkprotuser'} eq $form{'uname'}.':'.$form{'udom'}) {
                 $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);                  delete($form{'udom'});
                 return OK;                  delete($form{'uname'});
             }                  &failed($r,'Username and/or domain are different to that expected for the link you followed from another system',
         }                          \%form,$authhost);
         if (($is_balancer) && ($hosthere)) {                  return OK;
             $form{'noloadbalance'} = $hosthere;              }
         }          }
         my $extra_env;      }
         if (($hosthere) && ($sessiondata{'sessionserver'} ne '')) {  
             if ($sessiondata{'origurl'} ne '') {      my ($is_balancer,$otherserver);
                 $firsturl = $sessiondata{'origurl'};  
                 $form{'firsturl'} = $sessiondata{'origurl'};      unless ($hosthere) {
                 my @names = ('role','symb','linkprot','linkkey');          ($is_balancer,$otherserver) =
                 foreach my $item (@names) {              &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');
                     if ($sessiondata{$item} ne '') {          if ($is_balancer) {
                         $form{$item} = $sessiondata{$item};              # Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer)
                     }              my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r);
                 }              if (($found_server) && ($balancer_cookie =~ /^\Q$env{'user.domain'}\E_\Q$env{'user.name'}\E_/)) {
             }                  $otherserver = $found_server;
         }              }
         if ($form{'linkprot'}) {              if ($otherserver eq '') {
             my ($linkprotector,$uri) = split(/:/,$form{'linkprot'},2);                  my $lowest_load;
             if ($linkprotector) {                  ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});
                 $extra_env = {'user.linkprotector' => $linkprotector,                  if ($lowest_load > 100) {
                               'user.linkproturi'   => $uri};                      $otherserver = &Apache::lonnet::spareserver($r,$lowest_load,$lowest_load,1,$form{'udom'});
             }                  }
         } elsif ($form{'linkkey'} ne '') {              }
             $extra_env = {'user.deeplinkkey'  => $form{'linkkey'},              if ($otherserver ne '') {
                           'user.keyedlinkuri' => $form{'firsturl'}};                  my @hosts = &Apache::lonnet::current_machine_ids();
         }                  if (grep(/^\Q$otherserver\E$/,@hosts)) {
         if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {                      $hosthere = $otherserver;
             &set_deeplink_login(%form);                  }
             if ($form{'linkprot'}) {              }
                 if (ref($extra_env) eq 'HASH') {          }
                     %{$extra_env} = ( %{$extra_env}, 'request.linkprot' => $form{'linkprot'} );      }
                 } else {  
                     $extra_env = {'request.linkprot' => $form{'linkprot'}};      if (($is_balancer) && (!$hosthere)) {
                 }          if ($otherserver) {
             } elsif ($form{'linkkey'} ne '') {              &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
                 if (ref($extra_env) eq 'HASH') {                       \%form);
                     %{$extra_env} = ( %{$extra_env}, 'request.linkkey' => $form{'linkkey'} );              my $switchto = '/adm/switchserver?otherserver='.$otherserver;
                 } else {              if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
                     $extra_env = {'request.linkkey' => $form{'linkkey'}};                  $switchto .= '&origurl='.$firsturl;
                 }              }
             }              if ($form{'role'}) {
             if ($env{'request.deeplink.login'}) {                  $switchto .= '&role='.$form{'role'};
                 if (ref($extra_env) eq 'HASH') {              }
                     %{$extra_env} = ( %{$extra_env}, 'request.deeplink.login' => $form{'firsturl'} );              if ($form{'symb'}) {
                 } else {                  $switchto .= '&symb='.$form{'symb'};
                     $extra_env = {'request.deeplink.login' => $form{'firsturl'}};              }
                 }              if ($form{'linkprot'}) {
             }                  $env{'request.linkprot'} = $form{'linkprot'};
         }                  if ($form{'linkprotuser'}) {
         &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,$extra_env,                      $env{'request.linkprotuser'} = $form{'linkprotuser'};
                  \%form);                  }
         return OK;              } elsif ($form{'linkkey'} ne '') {
     }                  $env{'request.linkkey'} = $form{'linkkey'};
 }              }
               if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
 sub get_form_items {                  &set_deeplink_login(%form);
     my ($r) = @_;              }
     my $buffer;              $r->internal_redirect($switchto);
     if ($r->header_in('Content-length') > 0) {          } else {
         $r->read($buffer,$r->header_in('Content-length'),0);              &Apache::loncommon::content_type($r,'text/html');
     }              $r->send_http_header;
     my %form;              $r->print(&noswitch());
     foreach my $pair (split(/&/,$buffer)) {          }
        my ($name,$value) = split(/=/,$pair);          return OK;
        $value =~ tr/+/ /;      } else {
        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;          if (!&check_can_host($r,\%form,$authhost)) {
        $form{$name}=$value;              my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});
     }              if ($otherserver) {
     return %form;                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
 }                           \%form);
                   my $switchto = '/adm/switchserver?otherserver='.$otherserver;
 sub set_deeplink_login {                  if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
     my (%form) = @_;                      $switchto .= '&origurl='.$firsturl;
     my $disallow;                  }
     if ($form{'firsturl'} =~ m{^/tiny/($match_domain)/\w+$}) {                  if ($form{'role'}) {
         my $cdom = $1;                      $switchto .= '&role='.$form{'role'};
         my ($cnum,$symb) = &Apache::loncommon::symb_from_tinyurl($form{'firsturl'},'',$cdom);                  }
         if ($symb) {                  if ($form{'symb'}) {
             if ($env{'request.course.id'} eq $cdom.'_'.$cnum) {                      $switchto .= '&symb='.$form{'symb'};
                 my $deeplink;                  }
                 if ($symb =~ /\.(page|sequence)$/) {                  if ($form{'linkprot'}) {
                     my $mapname = &Apache::lonnet::deversion((&Apache::lonnet::decode_symb($symb))[2]);                      $env{'request.linkprot'} = $form{'linkprot'};
                     my $navmap = Apache::lonnavmaps::navmap->new();                      if ($form{'linkprotuser'}) {
                     if (ref($navmap)) {                          $env{'request.linkprotuser'} = $form{'linkprotuser'};
                         $deeplink = $navmap->get_mapparam(undef,$mapname,'0.deeplink');                      }
                     }                  } elsif ($form{'linkkey'} ne '') {
                 } else {                      $env{'request.linkkey'} = $form{'linkkey'};
                     $deeplink = &Apache::lonnet::EXT('resource.0.deeplink',$symb);                  }
                 }                  if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
                 if ($deeplink ne '') {                      &set_deeplink_login(%form);
                     my ($state,$others,$listed,$scope,$protect) = split(/,/,$deeplink);                  }
                     if (($protect ne 'none') && ($protect ne '')) {                  $r->internal_redirect($switchto);
                         my ($acctype,$item) = split(/:/,$protect);              } else {
                         if ($acctype =~ /lti(c|d)$/) {                  &Apache::loncommon::content_type($r,'text/html');
                             unless ($form{'linkprot'} eq $item.$1.':'.$env{'request.deeplink.login'}) {                  $r->send_http_header;
                                 $disallow = 1;                  $r->print(&noswitch());
                             }              }
                         } elsif ($acctype eq 'key') {              return OK;
                             unless ($form{'linkkey'} eq $item) {          }
                                 $disallow = 1;  
                             }  # ------------------------------------------------------- Do the load balancing
                         }  
                     }  # ---------------------------------------------------------- Determine own load
                 }          my $loadlim = $r->dir_config('lonLoadLim');
                 unless ($disallow) {          my $loadavg;
                     $env{'request.deeplink.login'} = $form{'firsturl'};          {
                 }              my $loadfile=Apache::File->new('/proc/loadavg');
             } else {              $loadavg=<$loadfile>;
                 $env{'request.deeplink.login'} = $form{'firsturl'};          }
             }          $loadavg =~ s/\s.*//g;
         }          my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
     }          my $userloadpercent=&Apache::lonnet::userload();
     if ($disallow) {  
         return;  # ---------------------------------------------------------- Are we overloaded?
     }          if ((($userloadpercent>100.0)||($loadpercent>100.0))) {
     return 'ok';              my $unloaded=Apache::lonnet::spareserver($r,$loadpercent,$userloadpercent,1,$form{'udom'});
 }              if (!$unloaded) {
                   ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});
 sub set_retry_token {              }
     my ($form,$lonhost,$querystr) = @_;              if ($unloaded) {
     if (ref($form) eq 'HASH') {                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',
         my ($firsturl,$token,$extras,@names);                           undef,\%form);
         @names = ('role','symb','linkprot','linkkey','iptoken');                  if ($form{'linkprot'}) {
         foreach my $name (@names) {                      $env{'request.linkprot'} = $form{'linkprot'};
             if ($form->{$name} ne '') {                  } elsif ($form{'linkkey'} ne '') {
                 $extras .= '&'.$name.'='.&escape($form->{$name});                      $env{'request.linkkey'} = $form{'linkkey'};
                 last if ($name eq 'linkprot');                  }
             }                  if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
         }                      &set_deeplink_login(%form);
         my $firsturl = $form->{'firsturl'};                  }
         if (($firsturl ne '') || ($extras ne '')) {                  $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);
             $extras .= ':retry';                  return OK;
             $token = &Apache::lonnet::reply('tmpput:'.&escape($firsturl).              }
                                             $extras,$lonhost);          }
             if (($token eq 'con_lost') || ($token eq 'no_such_host')) {          if (($is_balancer) && ($hosthere)) {
                 return 'fail';              $form{'noloadbalance'} = $hosthere;
             } else {          }
                 if (ref($querystr)) {          my $extra_env;
                     $$querystr = 'retry='.$token;          if (($hosthere) && ($sessiondata{'sessionserver'} ne '')) {
                 }              if ($sessiondata{'origurl'} ne '') {
                 return 'ok';                  $firsturl = $sessiondata{'origurl'};
             }                  $form{'firsturl'} = $sessiondata{'origurl'};
         }                  my @names = ('role','symb','linkprot','linkkey');
     }                  foreach my $item (@names) {
     return;                      if ($sessiondata{$item} ne '') {
 }                          $form{$item} = $sessiondata{$item};
                       }
 sub check_can_host {                  }
     my ($r,$form,$authhost,$domdesc) = @_;              }
     return unless (ref($form) eq 'HASH');          }
     my $canhost = 1;          if ($form{'linkprot'}) {
     my $lonhost = $r->dir_config('lonHostID');              my ($linkprotector,$uri) = split(/:/,$form{'linkprot'},2);
     my $udom = $form->{'udom'};              if ($linkprotector) {
     my @intdoms;                  $extra_env = {'user.linkprotector' => $linkprotector,
     my $internet_names = &Apache::lonnet::get_internet_names($lonhost);                                'user.linkproturi'   => $uri};
     if (ref($internet_names) eq 'ARRAY') {              }
         @intdoms = @{$internet_names};          } elsif ($form{'linkkey'} ne '') {
     }              $extra_env = {'user.deeplinkkey'  => $form{'linkkey'},
     my $uprimary_id = &Apache::lonnet::domain($udom,'primary');                            'user.keyedlinkuri' => $form{'firsturl'}};
     my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);          }
     unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {          if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
         my $machine_dom = &Apache::lonnet::host_domain($lonhost);              &set_deeplink_login(%form);
         my $hostname = &Apache::lonnet::hostname($lonhost);              if ($form{'linkprot'}) {
         my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);                  if (ref($extra_env) eq 'HASH') {
         my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);                      %{$extra_env} = ( %{$extra_env}, 'request.linkprot' => $form{'linkprot'} );
         my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);                  } else {
         my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);                      $extra_env = {'request.linkprot' => $form{'linkprot'}};
         my $loncaparev;                  }
         if ($authhost eq 'no_account_on_host') {              } elsif ($form{'linkkey'} ne '') {
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);                  if (ref($extra_env) eq 'HASH') {
         } else {                      %{$extra_env} = ( %{$extra_env}, 'request.linkkey' => $form{'linkkey'} );
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);                  } else {
         }                      $extra_env = {'request.linkkey' => $form{'linkkey'}};
         $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,                  }
                                                      $udomdefaults{'remotesessions'},              }
                                                      $defdomdefaults{'hostedsessions'});              if ($env{'request.deeplink.login'}) {
     }                  if (ref($extra_env) eq 'HASH') {
     unless ($canhost) {                      %{$extra_env} = ( %{$extra_env}, 'request.deeplink.login' => $form{'firsturl'} );
         if ($authhost eq 'no_account_on_host') {                  } else {
             my $checkloginvia = 1;                      $extra_env = {'request.deeplink.login' => $form{'firsturl'}};
             my ($login_host,$hostname) =                   }
                 &Apache::lonnet::choose_server($udom,$checkloginvia);              }
             &Apache::loncommon::content_type($r,'text/html');          }
             $r->send_http_header;          &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,$extra_env,
             if ($login_host ne '') {                   \%form);
                 my $protocol = $Apache::lonnet::protocol{$login_host};          return OK;
                 $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';  sub get_form_items {
 #FIXME Should preserve where user was going and linkprot by setting ltoken at $login_host      my ($r) = @_;
                 $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').      my $buffer;
                           '<h3>'.&mt('Account creation').'</h3>'.      if ($r->header_in('Content-length') > 0) {
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.          $r->read($buffer,$r->header_in('Content-length'),0);
                           '<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>').      my %form;
                           &Apache::loncommon::end_page());      foreach my $pair (split(/&/,$buffer)) {
             } else {         my ($name,$value) = split(/=/,$pair);
                 $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').         $value =~ tr/+/ /;
                           '<h3>'.&mt('Account creation unavailable').'</h3>'.         $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.         $form{$name}=$value;
                           '<p>'.&mt('Currently a LON-CAPA server is not available within the [_1] domain for you to log-in to, to create an account.',$domdesc).'</p>'.      }
                           &Apache::loncommon::end_page());      return %form;
             }  }
         } else {  
             &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,  sub set_deeplink_login {
                      $form);      my (%form) = @_;
             if ($form->{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {      my $disallow;
                 $env{'request.deeplink.login'} = $form->{'firsturl'};      if ($form{'firsturl'} =~ m{^/tiny/($match_domain)/\w+$}) {
             }          my $cdom = $1;
             if ($form->{'linkprot'}) {          my ($cnum,$symb) = &Apache::loncommon::symb_from_tinyurl($form{'firsturl'},'',$cdom);
                 $env{'request.linkprot'} = $form->{'linkprot'};          if ($symb) {
             } elsif ($form->{'linkkey'} ne '') {              if ($env{'request.course.id'} eq $cdom.'_'.$cnum) {
                 $env{'request.linkkey'} = $form->{'linkkey'};                  my $deeplink;
             }                  if ($symb =~ /\.(page|sequence)$/) {
             my ($otherserver) = &Apache::lonnet::choose_server($udom);                      my $mapname = &Apache::lonnet::deversion((&Apache::lonnet::decode_symb($symb))[2]);
             $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);                      my $navmap = Apache::lonnavmaps::navmap->new();
         }                      if (ref($navmap)) {
     }                          $deeplink = $navmap->get_mapparam(undef,$mapname,'0.deeplink');
     return $canhost;                      }
 }                  } else {
                       $deeplink = &Apache::lonnet::EXT('resource.0.deeplink',$symb);
 sub noswitch {                  }
     my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').                  if ($deeplink ne '') {
                  '<h3>'.&mt('Session unavailable').'</h3>'.                      my ($state,$others,$listed,$scope,$protect) = split(/,/,$deeplink);
                  &mt('This LON-CAPA server is unable to host your session.').'<br />'.                      if (($protect ne 'none') && ($protect ne '')) {
                  '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.                          my ($acctype,$item) = split(/:/,$protect);
                  &Apache::loncommon::end_page();                          if ($acctype =~ /lti(c|d)$/) {
     return $result;                              unless ($form{'linkprot'} eq $item.$1.':'.$env{'request.deeplink.login'}) {
 }                                  $disallow = 1;
                               }
 sub loginhelpdisplay {                          } elsif ($acctype eq 'key') {
     my ($authdomain) = @_;                              unless ($form{'linkkey'} eq $item) {
     my $login_help = 1;                                  $disallow = 1;
     my $lang = &Apache::lonlocal::current_language();                              }
     if ($login_help) {                          }
         my $dom = $authdomain;                      }
         if ($dom eq '') {                  }
             $dom = &Apache::lonnet::default_login_domain();                  unless ($disallow) {
         }                      $env{'request.deeplink.login'} = $form{'firsturl'};
         my %domconfhash = &Apache::loncommon::get_domainconf($dom);                  }
         my $loginhelp_url;              } else {
         if ($lang) {                  $env{'request.deeplink.login'} = $form{'firsturl'};
             $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};              }
             if ($loginhelp_url ne '') {          }
                 return $loginhelp_url;      }
             }      if ($disallow) {
         }          return;
         $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};      }
         if ($loginhelp_url ne '') {      return 'ok';
             return $loginhelp_url;  }
         } else {  
             return '/adm/loginproblems.html';  sub set_retry_token {
         }      my ($form,$lonhost,$querystr) = @_;
     }      if (ref($form) eq 'HASH') {
     return;          my ($firsturl,$token,$extras,@names);
 }          @names = ('role','symb','linkprotuser','linkprot','linkkey','iptoken');
           foreach my $name (@names) {
 sub alternate_unames_check {              if ($form->{$name} ne '') {
     my ($uname,$udom) = @_;                  $extras .= '&'.$name.'='.&escape($form->{$name});
     my %possunames;                  last if ($name eq 'linkprot');
     my %domdefs = &Apache::lonnet::get_domain_defaults($udom);              }
     if (ref($domdefs{'unamemap_rule'}) eq 'ARRAY') {          }
         if (@{$domdefs{'unamemap_rule'}} > 0) {          my $firsturl = $form->{'firsturl'};
             %possunames =          if (($firsturl ne '') || ($extras ne '')) {
                 &Apache::lonnet::inst_rulecheck($udom,$uname,undef,              $extras .= ':retry';
                                                 'unamemap',$domdefs{'unamemap_rule'});              $token = &Apache::lonnet::reply('tmpput:'.&escape($firsturl).
         }                                              $extras,$lonhost);
     }              if (($token eq 'con_lost') || ($token eq 'no_such_host')) {
     return %possunames;                  return 'fail';
 }              } else {
                   if (ref($querystr)) {
 1;                      $$querystr = 'retry='.$token;
 __END__                  }
                   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.3  
changed lines
  Added in v.1.175


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