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

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

Removed from v.1.121.2.24.2.4  
changed lines
  Added in v.1.170


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