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

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


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