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

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

Removed from v.1.121.2.24.2.6  
changed lines
  Added in v.1.168


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