Diff for /loncom/auth/lonauth.pm between versions 1.121.2.24.2.5 and 1.169

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

Removed from v.1.121.2.24.2.5  
changed lines
  Added in v.1.169


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