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

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


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