Diff for /loncom/auth/lonauth.pm between versions 1.121.2.24.2.7 and 1.179

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


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