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

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

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


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