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

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

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


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