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

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


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