Diff for /loncom/auth/lonauth.pm between versions 1.121.2.24.2.4 and 1.157

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


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