Diff for /loncom/auth/lonauth.pm between versions 1.121.2.24.2.1 and 1.173

version 1.121.2.24.2.1, 2021/12/30 06:00:16 version 1.173, 2022/05/21 05:16:43
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);
                   $destsymb = $form->{symb};
     my $windowinfo=&Apache::lonmenu::open($env{'browser.os'});              }
     my $startupremote=&Apache::lonmenu::startupremote($destination);              $desturl = &HTML::Entities::encode($desturl,'"<>&');
     my $remoteinfo=&Apache::lonmenu::load_remote_msg($lowerurl);              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
     my $setflags=&Apache::lonmenu::setflags();              $destination .= 'destinationurl='.$desturl.
     my $maincall=&Apache::lonmenu::maincall();                              '&destsymb='.$destsymb;
     my $brcrum = [{'href' => '',          } elsif (!$encrypted) {
                    'text' => 'Successful Login'},];              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
     my $start_page=&Apache::loncommon::start_page('Successful Login',              $destination .= 'destinationurl='.$destsymb;
                                                   $startupremote,          }
                                                   {'no_inline_link' => 1,      }
                                                    'bread_crumbs' => $brcrum,});      if ($destination =~ m{^/adm/roles}) {
     my $end_page  =&Apache::loncommon::end_page();          $destination  .= ($destination =~ /\?/) ? '&' : '?';
           $destination .= 'source=login';
     my $continuelink;      }
     if ($env{'environment.remote'} eq 'off') {  
  $continuelink='<a href="'.$destination.'">'.&mt('Continue').'</a>';      if (($env{'request.deeplink.login'} eq $lowerurl) &&
     }          (($env{'request.linkprot'}) || ($env{'request.linkkey'} ne ''))) {
 # ------------------------------------------------- Output for successful login          my %info;
           if ($env{'request.linkprot'}) {
     &Apache::loncommon::content_type($r,'text/html');              $info{'linkprot'} = $env{'request.linkprot'};
     if ($securecookie) {          } elsif ($env{'request.linkkey'} ne '') {
         $r->headers_out->add('Set-cookie' => $securecookie);              $info{'linkkey'} = $env{'request.linkkey'};
     }          }
     if ($defaultcookie) {          $info{'origurl'} = $lowerurl;
         $r->headers_out->add('Set-cookie' => $defaultcookie);          my $token = &Apache::lonnet::tmpput(\%info,$r->dir_config('lonHostID'),'link');
     }          unless (($token eq 'con_lost') || ($token eq 'refused') ||
     if ($expirepub) {                  ($token eq 'unknown_cmd') || ($token eq 'no_such_host')) {
         my $c = new CGI::Cookie(-name    => 'lonPubID',              $destination .= (($destination =~ /\?/) ? '&' : '?') . 'ttoken='.$token;
                                 -value   => '',          }
                                 -expires => '-10y',);      }
         $r->headers_out->add('Set-cookie' => $c);  
     }      my $windowname = 'loncapaclient';
     $r->send_http_header;      if ($env{'request.lti.login'}) {
           $windowname .= 'lti';
     my %lt=&Apache::lonlocal::texthash(      }
        'wel' => 'Welcome',      my $windowinfo = Apache::lonhtmlcommon::scripttag('self.name="'.$windowname.'";');
        'pro' => 'Login problems?',      my $brcrum = [{'href' => '',
        );                     'text' => 'Successful Login'},];
     my $loginhelp = &loginhelpdisplay($domain);      my $args = {'bread_crumbs' => $brcrum,};
     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})) {  
             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;      $end_page = &Apache::loncommon::end_page();
     my @actions =      $r->print(<<ENDSUCCESS);
          (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));  $start_page
     my $loginhelp = &loginhelpdisplay($udom);  $windowinfo
     if ($loginhelp) {  $pagebody
         push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');  $end_page
     }  ENDSUCCESS
     #FIXME: link to helpdesk might be added here      return;
   }
     $r->print(  
        $start_page  # --------------------------------------------------------------- Failed login!
       .'<h2>'.&mt('Sorry ...').'</h2>'  
       .&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />'  sub failed {
       .&Apache::lonhtmlcommon::actionbox(\@actions)      my ($r,$message,$form,$authhost) = @_;
       .$end_page      (undef,undef,undef,my $clientmathml,my $clientunicode) =
     );          &Apache::loncommon::decode_user_agent();
  }      my $args = {};
       if ($clientunicode && !$clientmathml) {
 # ------------------------------------------------------------------ Rerouting!          $args = {'browser.unicode' => 1};
       }
 sub reroute {  
     my ($r) = @_;      my @actions;
     &Apache::loncommon::content_type($r,'text/html');      my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,$args);
     $r->send_http_header;      my $uname = &Apache::loncommon::cleanup_html($form->{'uname'});
     my $msg='<b>'.&mt('Sorry ...').'</b><br />'      my $udom = &Apache::loncommon::cleanup_html($form->{'udom'});
            .&mt('Please [_1]log in again[_2].');      if (&Apache::lonnet::domain($udom,'description') eq '') {
     &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});          undef($udom);
 }      }
       my $authtype;
 # ---------------------------------------------------------------- Main handler      if (($udom ne '') && ($uname ne '') && ($authhost eq 'no_host')) {
           $authtype = &Apache::lonnet::queryauthenticate($uname,$udom);
 sub handler {      }
     my $r = shift;      my $retry = '/adm/login';
     my $londocroot = $r->dir_config('lonDocRoot');      if (($uname eq $form->{'uname'}) && ($authtype !~ /^lti:/)) {
 # Are we re-routing?          $retry .= '?username='.$uname;
     if (-e "$londocroot/lon-status/reroute.txt") {      }
  &reroute($r);      if ($udom) {
  return OK;          $retry .= (($retry=~/\?/)?'&amp;':'?').'domain='.$udom;
     }      }
       my $lonhost = $r->dir_config('lonHostID');
     &Apache::lonlocal::get_language_handle($r);      my $querystr;
       my $result = &set_retry_token($form,$lonhost,\$querystr);
 # -------------------------------- Prevent users from attempting to login twice      if ($result eq 'fail') {
     my $handle = &Apache::lonnet::check_for_valid_session($r);          if (exists($form->{role})) {
     if ($handle ne '') {              my $role = &Apache::loncommon::cleanup_html($form->{role});
         my $lonidsdir=$r->dir_config('lonIDsDir');              if ($role ne '') {
         if ($handle=~/^publicuser\_/) {                  $retry .= (($retry=~/\?/)?'&amp;':'?').'role='.$role;
 # For "public user" - remove it, we apparently really want to login              }
             unlink($r->dir_config('lonIDsDir')."/$handle.id");          }
         } else {          if (exists($form->{symb})) {
 # Indeed, a valid token is found              my $symb = &Apache::loncommon::cleanup_html($form->{symb});
             &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);              if ($symb ne '') {
     &Apache::loncommon::content_type($r,'text/html');                  $retry .= (($retry=~/\?/)?'&amp;':'?').'symb='.$symb;
     $r->send_http_header;              }
     my $start_page =           }
         &Apache::loncommon::start_page('Already logged in');          if (exists($form->{firsturl})) {
     my $end_page =               my $firsturl = &Apache::loncommon::cleanup_html($form->{firsturl});
         &Apache::loncommon::end_page();              if ($firsturl ne '') {
             my $dest = '/adm/roles';                  $retry .= (($retry=~/\?/)?'&amp;':'?').'firsturl='.$firsturl;
             my %form = &get_form_items($r);                  if ($form->{firsturl} =~ m{^/tiny/$match_domain/\w+$}) {
             if ($form{'logtoken'}) {                      unless (exists($form->{linkprot})) {
                 my $tmpinfo = &Apache::lonnet::reply('tmpget:'.$form{'logtoken'},                          if (exists($form->{linkkey})) {
                                                      $form{'serverid'});                              $retry .= 'linkkey='.$form->{linkkey};
                 unless (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||                          }
                         ($tmpinfo eq 'no_such_host')) {                      }
                     my ($des_key,$firsturl,@rest)=split(/&/,$tmpinfo);                  }
                     $firsturl = &unescape($firsturl);              }
                     my %info;          }
                     foreach my $item (@rest) {          if (exists($form->{linkprot})) {
                         my ($key,$value) = split(/=/,$item);              my $ltoken = &Apache::lonnet::tmpput({linkprot => $form->{'linkprot'}},
                         $info{$key} = &unescape($value);                                                   $r->dir_config('lonHostID'),'retry');
                     }              if ($ltoken) {
                     if ($firsturl ne '') {                  $retry .= (($retry =~ /\?/) ? '&' : '?').'ltoken='.$ltoken;
                         $info{'firsturl'} = $firsturl;              }
                         $dest = $firsturl;          }
                         my $relogin;      } elsif ($querystr ne '') {
                         if ($dest =~ m{^/tiny/$match_domain/\w+$}) {          $retry .= (($retry=~/\?/)?'&amp;':'?').$querystr;
                             if ($env{'request.course.id'}) {      }
                                 my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};      my $end_page = &Apache::loncommon::end_page();
                                 my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};      &Apache::loncommon::content_type($r,'text/html');
                                 my $symb = &Apache::loncommon::symb_from_tinyurl($dest,$cnum,$cdom);      $r->send_http_header;
                                 if ($symb) {      if ($authtype =~ /^lti:/) {
                                     unless (&set_deeplink_login(%info) eq 'ok') {          $message = &mt('Direct login is not supported with the username you entered.').
                                         $relogin = 1;                     '<br /><br />'.
                                     }                     &mt('You likely need to launch LON-CAPA from within a course in a different Learning Management System.').
                                 }                     '<br />'.
                             }                     &mt('You can also try to log in with a different username.');
                             if ($relogin) {          @actions =
                                 $r->print(              (&mt('Try your [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));
                                       $start_page      } else {
                                      .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'          $message = &mt($message);
                                      .'<p>'.&mt('Please [_1]log out[_2] first, and then try your access again',          @actions =
                                                 '<a href="/adm/logout">','</a>')              (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));
                                      .'</p>'      }
                                      .$end_page);      my $loginhelp = &loginhelpdisplay($udom);
                             } else {      if ($loginhelp) {
                                 if (($info{'linkprot'}) || ($info{'linkkey'} ne '')) {          push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');
                                     my $token = &Apache::lonnet::tmpput(\%info,$r->dir_config('lonHostID'),'link');      }
                                     unless (($token eq 'con_lost') || ($token eq 'refused') ||      #FIXME: link to helpdesk might be added here
                                             ($token eq 'unknown_cmd') || ($token eq 'no_such_host')) {      $r->print(
                                         $dest .= (($dest =~ /\?/) ? '&' : '?') . 'ttoken='.$token;         $start_page
                                     }        .'<h2>'.&mt('Sorry ...').'</h2>'
                                 }        .&Apache::lonhtmlcommon::confirm_success($message,1).'<br /><br />'
                                 $r->print(        .&Apache::lonhtmlcommon::actionbox(\@actions)
                                       $start_page        .$end_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] first, and then try your access again',   }
                                                 '<a href="'.$dest.'">','</a>',  
                                                 '<a href="/adm/logout">','</a>')  # ------------------------------------------------------------------ Rerouting!
                                      .'</p>'  
                                      .$end_page);  sub reroute {
                             }      my ($r) = @_;
                             return OK;      &Apache::loncommon::content_type($r,'text/html');
                         }      $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});
             $r->print(  }
                $start_page  
               .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'  # ---------------------------------------------------------------- Main handler
               .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'  
                     ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')  sub handler {
               .'</p>'      my $r = shift;
               .$end_page      my $londocroot = $r->dir_config('lonDocRoot');
             );  # Are we re-routing?
             return OK;      if (-e "$londocroot/lon-status/reroute.txt") {
         }   &reroute($r);
     }   return OK;
       }
 # ---------------------------------------------------- No valid token, continue  
       &Apache::lonlocal::get_language_handle($r);
     my %form = &get_form_items($r);  
     if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {  # -------------------------------- Prevent users from attempting to login twice
  &failed($r,'Username, password and domain need to be specified.',      my $handle = &Apache::lonnet::check_for_valid_session($r);
  \%form);      if ($handle ne '') {
         return OK;          my $lonidsdir=$r->dir_config('lonIDsDir');
     }          if ($handle=~/^publicuser\_/) {
   # For "public user" - remove it, we apparently really want to login
 # split user logging in and "su"-user              unlink($r->dir_config('lonIDsDir')."/$handle.id");
           } else {
     ($form{'uname'},$form{'suname'},$form{'sudom'})=split(/\:/,$form{'uname'});  # Indeed, a valid token is found
     $form{'uname'} = &LONCAPA::clean_username($form{'uname'});              &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
     $form{'suname'}= &LONCAPA::clean_username($form{'suname'});      &Apache::loncommon::content_type($r,'text/html');
     $form{'udom'}  = &LONCAPA::clean_domain($form{'udom'});      $r->send_http_header;
     $form{'sudom'} = &LONCAPA::clean_domain($form{'sudom'});      my $start_page =
           &Apache::loncommon::start_page('Already logged in');
     my $role   = $r->dir_config('lonRole');      my $end_page =
     my $domain = $r->dir_config('lonDefDomain');          &Apache::loncommon::end_page();
     my $prodir = $r->dir_config('lonUsersDir');              my $dest = '/adm/roles';
     my $contact_name = &mt('LON-CAPA helpdesk');              my %form = &get_form_items($r);
               if ($form{'logtoken'}) {
 # ---------------------------------------- Get the information from login token                  my $tmpinfo = &Apache::lonnet::reply('tmpget:'.$form{'logtoken'},
                                                        $form{'serverid'});
     my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},                  unless (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||
                                       $form{'serverid'});                          ($tmpinfo eq 'no_such_host')) {
                       my ($des_key,$firsturl,@rest)=split(/&/,$tmpinfo);
     if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||                       $firsturl = &unescape($firsturl);
         ($tmpinfo eq 'no_such_host')) {                      my %info;
  &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);                      foreach my $item (@rest) {
         return OK;                          my ($key,$value) = split(/=/,$item);
     } else {                          $info{$key} = &unescape($value);
  my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},                      }
    $form{'serverid'});                      if ($firsturl ne '') {
         if ( $reply ne 'ok' ) {                          $info{'firsturl'} = $firsturl;
             &failed($r,'Session could not be opened.',\%form);                          $dest = $firsturl;
     &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");                          my $relogin;
     return OK;                          if ($dest =~ m{^/tiny/$match_domain/\w+$}) {
  }                              if ($env{'request.course.id'}) {
     }                                  my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                                   my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
     if (!&Apache::lonnet::domain($form{'udom'})) {                                  my $symb = &Apache::loncommon::symb_from_tinyurl($dest,$cnum,$cdom);
         &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);                                  if ($symb) {
         return OK;                                      unless (&set_deeplink_login(%info) eq 'ok') {
     }                                          $relogin = 1;
                                       }
     my ($des_key,$firsturl,@rest)=split(/&/,$tmpinfo);                                  }
     $firsturl = &unescape($firsturl);                              }
     foreach my $item (@rest) {                              if ($relogin) {
         my ($key,$value) = split(/=/,$item);                                  $r->print(
         $form{$key} = &unescape($value);                                        $start_page
     }                                       .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
     if ($firsturl =~ m{^/tiny/$match_domain/\w+$}) {                                       .'<p>'.&mt('Please [_1]log out[_2] first, and then try your access again',
         $form{'firsturl'} = $firsturl;                                                  '<a href="/adm/logout">','</a>')
     }                                       .'</p>'
     my $upass = &Apache::loncommon::des_decrypt($des_key,$form{'upass0'});                                       .$end_page);
                               } else {
 # ---------------------------------------------------------------- Authenticate                                  if (($info{'linkprot'}) || ($info{'linkkey'} ne '')) {
                                       my $token = &Apache::lonnet::tmpput(\%info,$r->dir_config('lonHostID'),'link');
     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});                                      unless (($token eq 'con_lost') || ($token eq 'refused') ||
     my ($cancreate,$statustocreate) =                                              ($token eq 'unknown_cmd') || ($token eq 'no_such_host')) {
         &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});                                          $dest .= (($dest =~ /\?/) ? '&' : '?') . 'ttoken='.$token;
     my $defaultauth;                                      }
     if (ref($cancreate) eq 'ARRAY') {                                  }
         if (grep(/^login$/,@{$cancreate})) {                                  $r->print(
             $defaultauth = 1;                                        $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] first, and then try your access again',
     my $clientcancheckhost = 1;                                                  '<a href="'.$dest.'">','</a>',
     my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,                                                  '<a href="/adm/logout">','</a>')
                                               $form{'udom'},$defaultauth,                                       .'</p>'
                                               $clientcancheckhost);                                       .$end_page);
                                   }
 # --------------------------------------------------------------------- Failed?                              return OK;
                           }
     if ($authhost eq 'no_host') {                      }
  &failed($r,'Username and/or password could not be authenticated.',                  }
  \%form);              }
         return OK;              $r->print(
     } elsif ($authhost eq 'no_account_on_host') {                    $start_page
         if ($defaultauth) {                   .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
             my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');                   .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'
             unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {                            ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')
                 return OK;                   .'</p>'
             }                   .$end_page
             my $start_page =               );
                 &Apache::loncommon::start_page('Create a user account in LON-CAPA',              return OK;
                                                '',{'no_inline_link'   => 1,});          }
             my $lonhost = $r->dir_config('lonHostID');      }
             my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};  
             my $contacts =   # ---------------------------------------------------- No valid token, continue
                 &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',  
                                                         $form{'udom'},$origmail);      my %form = &get_form_items($r);
             my ($contact_email) = split(',',$contacts);       if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {
             my $output =    &failed($r,'Username, password and domain need to be specified.',
                 &Apache::createaccount::username_check($form{'uname'},$form{'udom'},   \%form);
                                                        $domdesc,'',$lonhost,          return OK;
                                                        $contact_email,$contact_name,      }
                                                        undef,$statustocreate);  
             &Apache::loncommon::content_type($r,'text/html');  # split user logging in and "su"-user
             $r->send_http_header;  
             &Apache::createaccount::print_header($r,$start_page);      ($form{'uname'},$form{'suname'},$form{'sudom'})=split(/\:/,$form{'uname'});
             $r->print('<h3>'.&mt('Account creation').'</h3>'.      $form{'uname'} = &LONCAPA::clean_username($form{'uname'});
                       &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.      $form{'suname'}= &LONCAPA::clean_username($form{'suname'});
                       $output.&Apache::loncommon::end_page());      $form{'udom'}  = &LONCAPA::clean_domain($form{'udom'});
             return OK;      $form{'sudom'} = &LONCAPA::clean_domain($form{'sudom'});
         } 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);      my $role   = $r->dir_config('lonRole');
             return OK;      my $domain = $r->dir_config('lonDefDomain');
         }      my $prodir = $r->dir_config('lonUsersDir');
     }      my $contact_name = &mt('LON-CAPA helpdesk');
   
     if (($firsturl eq '') ||   # ---------------------------------------- Get the information from login token
  ($firsturl=~/^\/adm\/(logout|remote)/)) {  
  $firsturl='/adm/roles';      my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},
     }                                        $form{'serverid'});
   
     my ($hosthere,%sessiondata);      if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||
     if ($form{'iptoken'}) {          ($tmpinfo eq 'no_such_host')) {
         %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});   &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);
         my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});          return OK;
         if (($sessiondata{'domain'} eq $form{'udom'}) &&      } else {
             ($sessiondata{'username'} eq $form{'uname'})) {   my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},
             $hosthere = 1;     $form{'serverid'});
         }          if ( $reply ne 'ok' ) {
     }              &failed($r,'Session could not be opened.',\%form);
       &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");
 # --------------------------------- Are we attempting to login as somebody else?      return OK;
     if ($form{'suname'}) {   }
         my ($suname,$sudom,$sudomref);      }
         $suname = $form{'suname'};  
         $sudom = $form{'udom'};      if (!&Apache::lonnet::domain($form{'udom'})) {
         if ($form{'sudom'}) {          &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);
             unless ($sudom eq $form{'sudom'}) {          return OK;
                 if (&Apache::lonnet::domain($form{'sudom'})) {      }
                     $sudomref = [$form{'sudom'}];  
                     $sudom = $form{'sudom'};      my ($des_key,$firsturl,@rest)=split(/&/,$tmpinfo);
                 }      $firsturl = &unescape($firsturl);
             }      foreach my $item (@rest) {
         }          my ($key,$value) = split(/=/,$item);
 # ------------ see if the original user has enough privileges to pull this stunt          $form{$key} = &unescape($value);
  if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {      }
 # ---------------------------------------------------- see if the su-user exists      if ($firsturl =~ m{^/tiny/$match_domain/\w+$}) {
     unless (&Apache::lonnet::homeserver($suname,$sudom) eq 'no_host') {          $form{'firsturl'} = $firsturl;
 # ------------------------------ see if the su-user is not too highly privileged      }
  if (&Apache::lonnet::privileged($suname,$sudom)) {      my $upass = $ENV{HTTPS} ? $form{'upass0'}
                     &Apache::lonnet::logthis('Attempted switch user to privileged user');          : &Apache::loncommon::des_decrypt($des_key,$form{'upass0'});
                 } else {  
                     my $noprivswitch;  # ---------------------------------------------------------------- Authenticate
 #  
 # su-user's home server and user's home server must have one of:      my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});
 # (a) same domain      my ($cancreate,$statustocreate) =
 # (b) same primary library server for the two domains          &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});
 # (c) same "internet domain" for primary library server(s) for home servers' domains      my $defaultauth;
 #      if (ref($cancreate) eq 'ARRAY') {
                     my $suprim = &Apache::lonnet::domain($sudom,'primary');          if (grep(/^login$/,@{$cancreate})) {
                     my $suintdom = &Apache::lonnet::internet_dom($suprim);              $defaultauth = 1;
                     unless ($sudom eq $form{'udom'}) {          }
                         my $uprim = &Apache::lonnet::domain($form{'udom'},'primary');      }
                         my $uintdom = &Apache::lonnet::internet_dom($uprim);      my $clientcancheckhost = 1;
                         unless ($suprim eq $uprim) {      my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,
                             unless ($suintdom eq $uintdom) {                                                $form{'udom'},$defaultauth,
                                 &Apache::lonnet::logthis('Attempted switch user '                                                $clientcancheckhost);
                                    .'to user with different "internet domain".');  
                                 $noprivswitch = 1;  # --------------------------------------------------------------------- Failed?
                             }  
                         }      if ($authhost eq 'no_host') {
                     }          my $pwdverify;
           if (&Apache::lonnet::homeserver($form{'uname'},$form{'udom'}) eq 'no_host') {
                     unless ($noprivswitch) {              my %possunames = &alternate_unames_check($form{'uname'},$form{'udom'});
 #              if (keys(%possunames) > 0) {
 # server where log-in occurs must have same "internet domain" as su-user's home                  foreach my $rulematch (keys(%possunames)) {
 # server                      my $possuname = $possunames{$rulematch};
 #                      if (($possuname ne '') && ($possuname =~ /^$match_username$/)) {
                         my $lonhost = $r->dir_config('lonHostID');                          $authhost=Apache::lonnet::authenticate($possuname,$upass,
                         my $hostintdom = &Apache::lonnet::internet_dom($lonhost);                                                                 $form{'udom'},undef,
                         if ($hostintdom ne $suintdom) {                                                                 $clientcancheckhost);
                             &Apache::lonnet::logthis('Attempted switch user on a '                          if (($authhost eq 'no_host') || ($authhost eq 'no_account_on_host')) {
                                 .'server with a different "internet domain".');                              next;
                         } else {                          } elsif (($authhost ne '') && (&Apache::lonnet::hostname($authhost) ne '')) {
                               $pwdverify = 1;
 # -------------------------------------------------------- actually switch users                              &Apache::lonnet::logthis("Authenticated user: $possuname was submitted as: $form{'uname'}");
                               $form{'uname'} = $possuname;
     &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.                              last;
  $form{'udom'}.' logging in as '.$suname.':'.$sudom);                          }
     $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);
     }              return OK;
  } else {          }
     &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');
               unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {
     my ($is_balancer,$otherserver);                  return OK;
               }
     unless ($hosthere) {              my $start_page =
         ($is_balancer,$otherserver) =                  &Apache::loncommon::start_page('Create a user account in LON-CAPA',
             &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');                                                 '',{'no_inline_link'   => 1,});
         if ($is_balancer) {              my $lonhost = $r->dir_config('lonHostID');
             # Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer)              my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
             my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r);              my $contacts =
             if (($found_server) && ($balancer_cookie =~ /^\Q$env{'user.domain'}\E_\Q$env{'user.name'}\E_/)) {                  &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
                 $otherserver = $found_server;                                                          $form{'udom'},$origmail);
             }              my ($contact_email) = split(',',$contacts);
             if ($otherserver eq '') {              my $output =
                 my $lowest_load;                  &Apache::createaccount::username_check($form{'uname'},$form{'udom'},
                 ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});                                                         $domdesc,'',$lonhost,
                 if ($lowest_load > 100) {                                                         $contact_email,$contact_name,
                     $otherserver = &Apache::lonnet::spareserver($r,$lowest_load,$lowest_load,1,$form{'udom'});                                                         undef,$statustocreate);
                 }              &Apache::loncommon::content_type($r,'text/html');
             }              $r->send_http_header;
             if ($otherserver ne '') {              &Apache::createaccount::print_header($r,$start_page);
                 my @hosts = &Apache::lonnet::current_machine_ids();              $r->print('<h3>'.&mt('Account creation').'</h3>'.
                 if (grep(/^\Q$otherserver\E$/,@hosts)) {                        &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.
                     $hosthere = $otherserver;                        $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,      if (($firsturl eq '') ||
                      \%form);   ($firsturl=~/^\/adm\/(logout|remote)/)) {
             my $switchto = '/adm/switchserver?otherserver='.$otherserver;   $firsturl='/adm/roles';
             if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {      }
                 $switchto .= '&origurl='.$firsturl;  
             }      my ($hosthere,%sessiondata);
             if ($form{'role'}) {      if ($form{'iptoken'}) {
                 $switchto .= '&role='.$form{'role'};          %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});
             }          my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});
             if ($form{'symb'}) {          if (($sessiondata{'domain'} eq $form{'udom'}) &&
                 $switchto .= '&symb='.$form{'symb'};              ($sessiondata{'username'} eq $form{'uname'})) {
             }              $hosthere = 1;
             if ($form{'linkprot'}) {          }
                 $env{'request.linkprot'} = $form{'linkprot'};      }
             } elsif ($form{'linkkey'} ne '') {  
                 $env{'request.linkkey'} = $form{'linkkey'};  # --------------------------------- Are we attempting to login as somebody else?
             }      if ($form{'suname'}) {
             if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {          my ($suname,$sudom,$sudomref);
                 &set_deeplink_login(%form);          $suname = $form{'suname'};
             }          $sudom = $form{'udom'};
             $r->internal_redirect($switchto);          if ($form{'sudom'}) {
         } else {              unless ($sudom eq $form{'sudom'}) {
             &Apache::loncommon::content_type($r,'text/html');                  if (&Apache::lonnet::domain($form{'sudom'})) {
             $r->send_http_header;                      $sudomref = [$form{'sudom'}];
             $r->print(&noswitch());                      $sudom = $form{'sudom'};
         }                  }
         return OK;              }
     } else {          }
         if (!&check_can_host($r,\%form,$authhost)) {  # ------------ see if the original user has enough privileges to pull this stunt
             my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});   if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {
             if ($otherserver) {  # ---------------------------------------------------- see if the su-user exists
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,      unless (&Apache::lonnet::homeserver($suname,$sudom) eq 'no_host') {
                          \%form);  # ------------------------------ see if the su-user is not too highly privileged
                 my $switchto = '/adm/switchserver?otherserver='.$otherserver;   if (&Apache::lonnet::privileged($suname,$sudom)) {
                 if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {                      &Apache::lonnet::logthis('Attempted switch user to privileged user');
                     $switchto .= '&origurl='.$firsturl;                  } else {
                 }                      my $noprivswitch;
                 if ($form{'role'}) {  #
                     $switchto .= '&role='.$form{'role'};  # su-user's home server and user's home server must have one of:
                 }  # (a) same domain
                 if ($form{'symb'}) {  # (b) same primary library server for the two domains
                     $switchto .= '&symb='.$form{'symb'};  # (c) same "internet domain" for primary library server(s) for home servers' domains
                 }  #
                 if ($form{'linkprot'}) {                      my $suprim = &Apache::lonnet::domain($sudom,'primary');
                     $env{'request.linkprot'} = $form{'linkprot'};                      my $suintdom = &Apache::lonnet::internet_dom($suprim);
                 } elsif ($form{'linkkey'} ne '') {                      unless ($sudom eq $form{'udom'}) {
                     $env{'request.linkkey'} = $form{'linkkey'};                          my $uprim = &Apache::lonnet::domain($form{'udom'},'primary');
                 }                          my $uintdom = &Apache::lonnet::internet_dom($uprim);
                 if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {                          unless ($suprim eq $uprim) {
                     &set_deeplink_login(%form);                              unless ($suintdom eq $uintdom) {
                 }                                  &Apache::lonnet::logthis('Attempted switch user '
                 $r->internal_redirect($switchto);                                     .'to user with different "internet domain".');
             } else {                                  $noprivswitch = 1;
                 &Apache::loncommon::content_type($r,'text/html');                              }
                 $r->send_http_header;                          }
                 $r->print(&noswitch());                      }
             }  
             return OK;                      unless ($noprivswitch) {
         }  #
   # server where log-in occurs must have same "internet domain" as su-user's home
 # ------------------------------------------------------- Do the load balancing  # server
   #
 # ---------------------------------------------------------- Determine own load                          my $lonhost = $r->dir_config('lonHostID');
         my $loadlim = $r->dir_config('lonLoadLim');                          my $hostintdom = &Apache::lonnet::internet_dom($lonhost);
         my $loadavg;                          if ($hostintdom ne $suintdom) {
         {                              &Apache::lonnet::logthis('Attempted switch user on a '
             my $loadfile=Apache::File->new('/proc/loadavg');                                  .'server with a different "internet domain".');
             $loadavg=<$loadfile>;                          } else {
         }  
         $loadavg =~ s/\s.*//g;  # -------------------------------------------------------- actually switch users
         my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);  
         my $userloadpercent=&Apache::lonnet::userload();              &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.
                                 $form{'udom'}.' logging in as '.$suname.':'.$sudom);
 # ---------------------------------------------------------- Are we overloaded?              $form{'uname'}=$suname;
         if ((($userloadpercent>100.0)||($loadpercent>100.0))) {                              if ($form{'udom'} ne $sudom) {
             my $unloaded=Apache::lonnet::spareserver($r,$loadpercent,$userloadpercent,1,$form{'udom'});                                  $form{'udom'}=$sudom;
             if (!$unloaded) {                              }
                 ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});                          }
             }                      }
             if ($unloaded) {   }
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',      }
                          undef,\%form);   } else {
                 if ($form{'linkprot'}) {      &Apache::lonnet::logthis('Non-privileged user attempting switch user');
                     $env{'request.linkprot'} = $form{'linkprot'};   }
                 } elsif ($form{'linkkey'} ne '') {      }
                     $env{'request.linkkey'} = $form{'linkkey'};  
                 }      my ($is_balancer,$otherserver);
                 if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {  
                     &set_deeplink_login(%form);      unless ($hosthere) {
                 }          ($is_balancer,$otherserver) =
                 $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);              &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');
                 return OK;          if ($is_balancer) {
             }              # Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer)
         }              my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r);
         if (($is_balancer) && ($hosthere)) {              if (($found_server) && ($balancer_cookie =~ /^\Q$env{'user.domain'}\E_\Q$env{'user.name'}\E_/)) {
             $form{'noloadbalance'} = $hosthere;                  $otherserver = $found_server;
         }              }
         my $extra_env;              if ($otherserver eq '') {
         if (($hosthere) && ($sessiondata{'sessionserver'} ne '')) {                  my $lowest_load;
             if ($sessiondata{'origurl'} ne '') {                  ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});
                 $firsturl = $sessiondata{'origurl'};                  if ($lowest_load > 100) {
                 $form{'firsturl'} = $sessiondata{'origurl'};                      $otherserver = &Apache::lonnet::spareserver($r,$lowest_load,$lowest_load,1,$form{'udom'});
                 my @names = ('role','symb','linkprot','linkkey');                  }
                 foreach my $item (@names) {              }
                     if ($sessiondata{$item} ne '') {              if ($otherserver ne '') {
                         $form{$item} = $sessiondata{$item};                  my @hosts = &Apache::lonnet::current_machine_ids();
                     }                  if (grep(/^\Q$otherserver\E$/,@hosts)) {
                 }                      $hosthere = $otherserver;
             }                  }
         }              }
         if ($form{'linkprot'}) {          }
             my ($linkprotector,$uri) = split(/:/,$form{'linkprot'},2);      }
             if ($linkprotector) {  
                 $extra_env = {'user.linkprotector' => $linkprotector,      if (($is_balancer) && (!$hosthere)) {
                               'user.linkproturi'   => $uri};          if ($otherserver) {
             }              &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
         } elsif ($form{'linkkey'} ne '') {                       \%form);
             $extra_env = {'user.deeplinkkey'  => $form{'linkkey'},              my $switchto = '/adm/switchserver?otherserver='.$otherserver;
                           'user.keyedlinkuri' => $form{'firsturl'}};              if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
         }                  $switchto .= '&origurl='.$firsturl;
         if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {              }
             &set_deeplink_login(%form);              if ($form{'role'}) {
             if ($form{'linkprot'}) {                  $switchto .= '&role='.$form{'role'};
                 if (ref($extra_env) eq 'HASH') {              }
                     %{$extra_env} = ( %{$extra_env}, 'request.linkprot' => $form{'linkprot'} );              if ($form{'symb'}) {
                 } else {                  $switchto .= '&symb='.$form{'symb'};
                     $extra_env = {'request.linkprot' => $form{'linkprot'}};              }
                 }              if ($form{'linkprot'}) {
             } elsif ($form{'linkkey'} ne '') {                  $env{'request.linkprot'} = $form{'linkprot'};
                 if (ref($extra_env) eq 'HASH') {              } elsif ($form{'linkkey'} ne '') {
                     %{$extra_env} = ( %{$extra_env}, 'request.linkkey' => $form{'linkkey'} );                  $env{'request.linkkey'} = $form{'linkkey'};
                 } else {              }
                     $extra_env = {'request.linkkey' => $form{'linkkey'}};              if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
                 }                  &set_deeplink_login(%form);
             }              }
             if ($env{'request.deeplink.login'}) {              $r->internal_redirect($switchto);
                 if (ref($extra_env) eq 'HASH') {          } else {
                     %{$extra_env} = ( %{$extra_env}, 'request.deeplink.login' => $form{'firsturl'} );              &Apache::loncommon::content_type($r,'text/html');
                 } else {              $r->send_http_header;
                     $extra_env = {'request.deeplink.login' => $form{'firsturl'}};              $r->print(&noswitch());
                 }          }
             }          return OK;
         }      } else {
         &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,$extra_env,          if (!&check_can_host($r,\%form,$authhost)) {
                  \%form);              my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});
         return OK;              if ($otherserver) {
     }                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
 }                           \%form);
                   my $switchto = '/adm/switchserver?otherserver='.$otherserver;
 sub get_form_items {                  if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
     my ($r) = @_;                      $switchto .= '&origurl='.$firsturl;
     my $buffer;                  }
     if ($r->header_in('Content-length') > 0) {                  if ($form{'role'}) {
         $r->read($buffer,$r->header_in('Content-length'),0);                      $switchto .= '&role='.$form{'role'};
     }                  }
     my %form;                  if ($form{'symb'}) {
     foreach my $pair (split(/&/,$buffer)) {                      $switchto .= '&symb='.$form{'symb'};
        my ($name,$value) = split(/=/,$pair);                  }
        $value =~ tr/+/ /;                  if ($form{'linkprot'}) {
        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;                      $env{'request.linkprot'} = $form{'linkprot'};
        $form{$name}=$value;                  } elsif ($form{'linkkey'} ne '') {
     }                      $env{'request.linkkey'} = $form{'linkkey'};
     return %form;                  }
 }                  if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
                       &set_deeplink_login(%form);
 sub set_deeplink_login {                  }
     my (%form) = @_;                  $r->internal_redirect($switchto);
     my $disallow;              } else {
     if ($form{'firsturl'} =~ m{^/tiny/($match_domain)/\w+$}) {                  &Apache::loncommon::content_type($r,'text/html');
         my $cdom = $1;                  $r->send_http_header;
         my ($cnum,$symb) = &Apache::loncommon::symb_from_tinyurl($form{'firsturl'},'',$cdom);                  $r->print(&noswitch());
         if ($symb) {              }
             if ($env{'request.course.id'} eq $cdom.'_'.$cnum) {              return OK;
                 my $deeplink;          }
                 if ($symb =~ /\.(page|sequence)$/) {  
                     my $mapname = &Apache::lonnet::deversion((&Apache::lonnet::decode_symb($symb))[2]);  # ------------------------------------------------------- Do the load balancing
                     my $navmap = Apache::lonnavmaps::navmap->new();  
                     if (ref($navmap)) {  # ---------------------------------------------------------- Determine own load
                         $deeplink = $navmap->get_mapparam(undef,$mapname,'0.deeplink');          my $loadlim = $r->dir_config('lonLoadLim');
                     }          my $loadavg;
                 } else {          {
                     $deeplink = &Apache::lonnet::EXT('resource.0.deeplink',$symb);              my $loadfile=Apache::File->new('/proc/loadavg');
                 }              $loadavg=<$loadfile>;
                 if ($deeplink ne '') {          }
                     my ($state,$others,$listed,$scope,$protect) = split(/,/,$deeplink);          $loadavg =~ s/\s.*//g;
                     if (($protect ne 'none') && ($protect ne '')) {          my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
                         my ($acctype,$item) = split(/:/,$protect);          my $userloadpercent=&Apache::lonnet::userload();
                         if ($acctype =~ /lti(c|d)$/) {  
                             unless ($form{'linkprot'} eq $item.$1.':'.$env{'request.deeplink.login'}) {  # ---------------------------------------------------------- Are we overloaded?
                                 $disallow = 1;          if ((($userloadpercent>100.0)||($loadpercent>100.0))) {
                             }              my $unloaded=Apache::lonnet::spareserver($r,$loadpercent,$userloadpercent,1,$form{'udom'});
                         } elsif ($acctype eq 'key') {              if (!$unloaded) {
                             unless ($form{'linkkey'} eq $item) {                  ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});
                                 $disallow = 1;              }
                             }              if ($unloaded) {
                         }                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',
                     }                           undef,\%form);
                 }                  if ($form{'linkprot'}) {
                 unless ($disallow) {                      $env{'request.linkprot'} = $form{'linkprot'};
                     $env{'request.deeplink.login'} = $form{'firsturl'};                  } elsif ($form{'linkkey'} ne '') {
                 }                      $env{'request.linkkey'} = $form{'linkkey'};
             } else {                  }
                 $env{'request.deeplink.login'} = $form{'firsturl'};                  if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
             }                      &set_deeplink_login(%form);
         }                  }
     }                  $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);
     if ($disallow) {                  return OK;
         return;              }
     }          }
     return 'ok';          if (($is_balancer) && ($hosthere)) {
 }              $form{'noloadbalance'} = $hosthere;
           }
 sub set_retry_token {          my $extra_env;
     my ($form,$lonhost,$querystr) = @_;          if (($hosthere) && ($sessiondata{'sessionserver'} ne '')) {
     if (ref($form) eq 'HASH') {              if ($sessiondata{'origurl'} ne '') {
         my ($firsturl,$token,$extras,@names);                  $firsturl = $sessiondata{'origurl'};
         @names = ('role','symb','linkprot','linkkey','iptoken');                  $form{'firsturl'} = $sessiondata{'origurl'};
         foreach my $name (@names) {                  my @names = ('role','symb','linkprot','linkkey');
             if ($form->{$name} ne '') {                  foreach my $item (@names) {
                 $extras .= '&'.$name.'='.&escape($form->{$name});                      if ($sessiondata{$item} ne '') {
                 last if ($name eq 'linkprot');                          $form{$item} = $sessiondata{$item};
             }                      }
         }                  }
         my $firsturl = $form->{'firsturl'};              }
         if (($firsturl ne '') || ($extras ne '')) {          }
             $extras .= ':retry';          if ($form{'linkprot'}) {
             $token = &Apache::lonnet::reply('tmpput:'.&escape($firsturl).              my ($linkprotector,$uri) = split(/:/,$form{'linkprot'},2);
                                             $extras,$lonhost);              if ($linkprotector) {
             if (($token eq 'con_lost') || ($token eq 'no_such_host')) {                  $extra_env = {'user.linkprotector' => $linkprotector,
                 return 'fail';                                'user.linkproturi'   => $uri};
             } else {              }
                 if (ref($querystr)) {          } elsif ($form{'linkkey'} ne '') {
                     $$querystr = 'retry='.$token;              $extra_env = {'user.deeplinkkey'  => $form{'linkkey'},
                 }                            'user.keyedlinkuri' => $form{'firsturl'}};
                 return 'ok';          }
             }          if ($form{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {
         }              &set_deeplink_login(%form);
     }              if ($form{'linkprot'}) {
     return;                  if (ref($extra_env) eq 'HASH') {
 }                      %{$extra_env} = ( %{$extra_env}, 'request.linkprot' => $form{'linkprot'} );
                   } else {
 sub check_can_host {                      $extra_env = {'request.linkprot' => $form{'linkprot'}};
     my ($r,$form,$authhost,$domdesc) = @_;                  }
     return unless (ref($form) eq 'HASH');              } elsif ($form{'linkkey'} ne '') {
     my $canhost = 1;                  if (ref($extra_env) eq 'HASH') {
     my $lonhost = $r->dir_config('lonHostID');                      %{$extra_env} = ( %{$extra_env}, 'request.linkkey' => $form{'linkkey'} );
     my $udom = $form->{'udom'};                  } else {
     my @intdoms;                      $extra_env = {'request.linkkey' => $form{'linkkey'}};
     my $internet_names = &Apache::lonnet::get_internet_names($lonhost);                  }
     if (ref($internet_names) eq 'ARRAY') {              }
         @intdoms = @{$internet_names};              if ($env{'request.deeplink.login'}) {
     }                  if (ref($extra_env) eq 'HASH') {
     my $uprimary_id = &Apache::lonnet::domain($udom,'primary');                      %{$extra_env} = ( %{$extra_env}, 'request.deeplink.login' => $form{'firsturl'} );
     my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);                  } else {
     unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {                      $extra_env = {'request.deeplink.login' => $form{'firsturl'}};
         my $machine_dom = &Apache::lonnet::host_domain($lonhost);                  }
         my $hostname = &Apache::lonnet::hostname($lonhost);              }
         my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);          }
         my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);          &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,$extra_env,
         my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);                   \%form);
         my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);          return OK;
         my $loncaparev;      }
         if ($authhost eq 'no_account_on_host') {  }
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);  
         } else {  sub get_form_items {
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);      my ($r) = @_;
         }      my $buffer;
         $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,      if ($r->header_in('Content-length') > 0) {
                                                      $udomdefaults{'remotesessions'},          $r->read($buffer,$r->header_in('Content-length'),0);
                                                      $defdomdefaults{'hostedsessions'});      }
     }      my %form;
     unless ($canhost) {      foreach my $pair (split(/&/,$buffer)) {
         if ($authhost eq 'no_account_on_host') {         my ($name,$value) = split(/=/,$pair);
             my $checkloginvia = 1;         $value =~ tr/+/ /;
             my ($login_host,$hostname) =          $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
                 &Apache::lonnet::choose_server($udom,$checkloginvia);         $form{$name}=$value;
             &Apache::loncommon::content_type($r,'text/html');      }
             $r->send_http_header;      return %form;
             if ($login_host ne '') {  }
                 my $protocol = $Apache::lonnet::protocol{$login_host};  
                 $protocol = 'http' if ($protocol ne 'https');  sub set_deeplink_login {
                 my $alias = &Apache::lonnet::use_proxy_alias($r,$login_host);      my (%form) = @_;
                 $hostname = $alias if ($alias ne '');      my $disallow;
                 my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';      if ($form{'firsturl'} =~ m{^/tiny/($match_domain)/\w+$}) {
 #FIXME Should preserve where user was going and linkprot by setting ltoken at $login_host          my $cdom = $1;
                 $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').          my ($cnum,$symb) = &Apache::loncommon::symb_from_tinyurl($form{'firsturl'},'',$cdom);
                           '<h3>'.&mt('Account creation').'</h3>'.          if ($symb) {
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.              if ($env{'request.course.id'} eq $cdom.'_'.$cnum) {
                           '<p>'.&mt('You will be able to create one by logging into a LON-CAPA server within the [_1] domain.',$domdesc).'</p>'.                  my $deeplink;
                           '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').                  if ($symb =~ /\.(page|sequence)$/) {
                           &Apache::loncommon::end_page());                      my $mapname = &Apache::lonnet::deversion((&Apache::lonnet::decode_symb($symb))[2]);
             } else {                      my $navmap = Apache::lonnavmaps::navmap->new();
                 $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').                      if (ref($navmap)) {
                           '<h3>'.&mt('Account creation unavailable').'</h3>'.                          $deeplink = $navmap->get_mapparam(undef,$mapname,'0.deeplink');
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.                      }
                           '<p>'.&mt('Currently a LON-CAPA server is not available within the [_1] domain for you to log-in to, to create an account.',$domdesc).'</p>'.                  } else {
                           &Apache::loncommon::end_page());                      $deeplink = &Apache::lonnet::EXT('resource.0.deeplink',$symb);
             }                  }
         } else {                  if ($deeplink ne '') {
             &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,                      my ($state,$others,$listed,$scope,$protect) = split(/,/,$deeplink);
                      $form);                      if (($protect ne 'none') && ($protect ne '')) {
             if ($form->{'firsturl'} =~ m{^/tiny/$match_domain/\w+$}) {                          my ($acctype,$item) = split(/:/,$protect);
                 $env{'request.deeplink.login'} = $form->{'firsturl'};                          if ($acctype =~ /lti(c|d)$/) {
             }                              unless ($form{'linkprot'} eq $item.$1.':'.$env{'request.deeplink.login'}) {
             if ($form->{'linkprot'}) {                                  $disallow = 1;
                 $env{'request.linkprot'} = $form->{'linkprot'};                              }
             } elsif ($form->{'linkkey'} ne '') {                          } elsif ($acctype eq 'key') {
                 $env{'request.linkkey'} = $form->{'linkkey'};                              unless ($form{'linkkey'} eq $item) {
             }                                  $disallow = 1;
             my ($otherserver) = &Apache::lonnet::choose_server($udom);                              }
             $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);                          }
         }                      }
     }                  }
     return $canhost;                  unless ($disallow) {
 }                      $env{'request.deeplink.login'} = $form{'firsturl'};
                   }
 sub noswitch {              } else {
     my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').                  $env{'request.deeplink.login'} = $form{'firsturl'};
                  '<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();      if ($disallow) {
     return $result;          return;
 }      }
       return 'ok';
 sub loginhelpdisplay {  }
     my ($authdomain) = @_;  
     my $login_help = 1;  sub set_retry_token {
     my $lang = &Apache::lonlocal::current_language();      my ($form,$lonhost,$querystr) = @_;
     if ($login_help) {      if (ref($form) eq 'HASH') {
         my $dom = $authdomain;          my ($firsturl,$token,$extras,@names);
         if ($dom eq '') {          @names = ('role','symb','linkprot','linkkey','iptoken');
             $dom = &Apache::lonnet::default_login_domain();          foreach my $name (@names) {
         }              if ($form->{$name} ne '') {
         my %domconfhash = &Apache::loncommon::get_domainconf($dom);                  $extras .= '&'.$name.'='.&escape($form->{$name});
         my $loginhelp_url;                  last if ($name eq 'linkprot');
         if ($lang) {              }
             $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};          }
             if ($loginhelp_url ne '') {          my $firsturl = $form->{'firsturl'};
                 return $loginhelp_url;          if (($firsturl ne '') || ($extras ne '')) {
             }              $extras .= ':retry';
         }              $token = &Apache::lonnet::reply('tmpput:'.&escape($firsturl).
         $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};                                              $extras,$lonhost);
         if ($loginhelp_url ne '') {              if (($token eq 'con_lost') || ($token eq 'no_such_host')) {
             return $loginhelp_url;                  return 'fail';
         } else {              } else {
             return '/adm/loginproblems.html';                  if (ref($querystr)) {
         }                      $$querystr = 'retry='.$token;
     }                  }
     return;                  return 'ok';
 }              }
           }
 1;      }
 __END__      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.1  
changed lines
  Added in v.1.173


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