Diff for /loncom/auth/lonauth.pm between versions 1.128 and 1.152

version 1.128, 2013/11/26 01:19:12 version 1.152, 2018/05/08 15:44:11
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;  use LONCAPA qw(:DEFAULT :match);
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common);
 use CGI qw(:standard);  use CGI qw(:standard);
 use DynaLoader; # for Crypt::DES version  use Apache::loncommon();
 use Crypt::DES;  use Apache::lonnet;
 use Apache::loncommon();  use Apache::lonmenu();
 use Apache::lonnet;  use Apache::createaccount;
 use Apache::lonmenu();  use Apache::ltiauth;
 use Apache::createaccount;  use Fcntl qw(:flock);
 use Fcntl qw(:flock);  use Apache::lonlocal;
 use Apache::lonlocal;  use Apache::File();
 use Apache::File();  use HTML::Entities;
 use HTML::Entities;  use Digest::MD5;
     
 # ------------------------------------------------------------ Successful login  # ------------------------------------------------------------ Successful login
 sub success {  sub success {
     my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,      my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,
  $form) = @_;   $form,$skipcritical) = @_;
   
 # ------------------------------------------------------------ Get cookie ready  # ------------------------------------------------------------ Get cookie ready
     my $cookie =      my $cookie =
  &Apache::loncommon::init_user_environment($r, $username, $domain,   &Apache::loncommon::init_user_environment($r, $username, $domain,
   $authhost, $form,    $authhost, $form,
   {'extra_env' => $extra_env,});    {'extra_env' => $extra_env,});
   
     my $public=($username eq 'public' && $domain eq 'public');      my $public=($username eq 'public' && $domain eq 'public');
   
     if ($public or $lowerurl eq 'noredirect') { return $cookie; }      if ($public or $lowerurl eq 'noredirect') { return $cookie; }
   
 # -------------------------------------------------------------------- Log this  # -------------------------------------------------------------------- Log this
   
     &Apache::lonnet::log($domain,$username,$authhost,      &Apache::lonnet::log($domain,$username,$authhost,
                          "Login $ENV{'REMOTE_ADDR'}");                           "Login $ENV{'REMOTE_ADDR'}");
   
 # ------------------------------------------------- Check for critical messages  # ------------------------------------------------- Check for critical messages
   
     my @what=&Apache::lonnet::dump('critical',$domain,$username);      unless ($skipcritical) {
     if ($what[0]) {          my @what=&Apache::lonnet::dump('critical',$domain,$username);
  if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {          if ($what[0]) {
     $lowerurl='/adm/email?critical=display';      if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {
         }          $lowerurl='/adm/email?critical=display';
     }              }
           }
 # ------------------------------------------------------------ Get cookie ready      }
     $cookie="lonID=$cookie; path=/";  
 # -------------------------------------------------------- Menu script and info  # ----------------------------------------------------------- Get cookies ready
     my $destination = $lowerurl;      my ($securecookie,$defaultcookie);
       if ($ENV{'SERVER_PORT'} == 443) {
     if (defined($form->{role})) {          $securecookie="lonID=$cookie; path=/; HttpOnly; secure";
         my $envkey = 'user.role.'.$form->{role};          my $lonidsdir=$r->dir_config('lonIDsDir');
         my $now=time;          if (($lonidsdir) && (-e "$lonidsdir/$cookie.id")) {
         my $then=$env{'user.login.time'};              my $linkname=substr(Digest::MD5::md5_hex(Digest::MD5::md5_hex(time(). {}. rand(). $$)), 0, 32).'_linked';
         my $refresh=$env{'user.refresh.time'};              if (-e "$lonidsdir/$linkname.id") {
         my $update=$env{'user.update.time'};                  unlink("$lonidsdir/$linkname.id");
         if (!$update) {              }
             $update = $then;              my $made_symlink = eval { symlink("$lonidsdir/$cookie.id",
         }                                                "$lonidsdir/$linkname.id"); 1 };
         if (exists($env{$envkey})) {              if ($made_symlink) {
             my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus);                  $defaultcookie = "lonLinkID=$linkname; path=/; HttpOnly;";
             &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,                  &Apache::lonnet::appenv({'user.linkedenv' => "$lonidsdir/$linkname.id"});
                                          \$trolecode,\$tstatus,\$tstart,\$tend);              }
             if ($tstatus eq 'is') {          }
                 $destination  .= ($destination =~ /\?/) ? '&' : '?';      } else {
                 my $newrole = &HTML::Entities::encode($form->{role},'"<>&');          $defaultcookie = "lonID=$cookie; path=/; HttpOnly;";
                 $destination .= 'selectrole=1&'.$newrole.'=1';      }
             }  # -------------------------------------------------------- Menu script and info
         }      my $destination = $lowerurl;
     }      if ($env{'request.lti.login'}) {
     if (defined($form->{symb})) {          if (($env{'request.lti.reqcrs'}) && ($env{'request.lti.reqrole'} eq 'cc')) {
         my $destsymb = $form->{symb};              &Apache::loncommon::content_type($r,'text/html');
         $destination  .= ($destination =~ /\?/) ? '&' : '?';              if ($securecookie) {
         if ($destsymb =~ /___/) {                  $r->headers_out->add('Set-cookie' => $securecookie);
             # FIXME Need to deal with encrypted symbs and urls as needed.              }
             my ($map,$resid,$desturl)=split(/___/,$destsymb);              if ($defaultcookie) {
             unless ($desturl=~/^(adm|editupload|public)/) {                  $r->headers_out->add('Set-cookie' => $defaultcookie);
                 $desturl = &Apache::lonnet::clutter($desturl);              }
             }              $r->send_http_header;
             $desturl = &HTML::Entities::encode($desturl,'"<>&');              if (ref($form) eq 'HASH') {
             $destsymb = &HTML::Entities::encode($destsymb,'"<>&');                  $form->{'lti.reqcrs'} = $env{'request.lti.reqcrs'};
             $destination .= '&destinationurl='.$desturl.                  $form->{'lti.reqrole'} = $env{'request.lti.reqrole'};
                             '&destsymb='.$destsymb;                  $form->{'lti.sourcecrs'} = $env{'request.lti.sourcecrs'};
         } else {              }
             $destsymb = &HTML::Entities::encode($destsymb,'"<>&');              &Apache::ltiauth::lti_reqcrs($r,$domain,$form,$username,$domain);
             $destination .= '&destinationurl='.$destsymb;              return;
         }          }
     }          if ($env{'request.lti.selfenrollrole'}) {
     if ($destination =~ m{^/adm/roles}) {              if (&Apache::ltiauth::lti_enroll($username,$domain,
         $destination  .= ($destination =~ /\?/) ? '&' : '?';                                               $env{'request.lti.selfenrollrole'}) eq 'ok') {
         $destination .= 'source=login';                  $form->{'role'} = $env{'request.lti.selfenrollrole'};
     }                  &Apache::lonnet::delenv('request.lti.selfenrollrole');
               } else {
     my $windowinfo = Apache::lonhtmlcommon::scripttag('self.name="loncapaclient";');                  &Apache::ltiauth::invalid_request($r,24);
     my $header = '<meta HTTP-EQUIV="Refresh" CONTENT="0; url='.$destination.'" />';              }
     my $brcrum = [{'href' => '',          }
                    'text' => 'Successful Login'},];      }
     my $start_page=&Apache::loncommon::start_page('Successful Login',      if (defined($form->{role})) {
                                                   $header,          my $envkey = 'user.role.'.$form->{role};
                                                   {'bread_crumbs' => $brcrum,});          my $now=time;
     my $end_page  =&Apache::loncommon::end_page();          my $then=$env{'user.login.time'};
           my $refresh=$env{'user.refresh.time'};
  my $continuelink='<a href="'.$destination.'">'.&mt('Continue').'</a>';          my $update=$env{'user.update.time'};
 # ------------------------------------------------- Output for successful login          if (!$update) {
               $update = $then;
     &Apache::loncommon::content_type($r,'text/html');          }
     $r->header_out('Set-cookie' => $cookie);          if (exists($env{$envkey})) {
     $r->send_http_header;              my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus);
               &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,
     my %lt=&Apache::lonlocal::texthash(                                           \$trolecode,\$tstatus,\$tstart,\$tend);
        'wel' => 'Welcome',              if ($tstatus eq 'is') {
        'pro' => 'Login problems?',                  $destination  .= ($destination =~ /\?/) ? '&' : '?';
        );                  my $newrole = &HTML::Entities::encode($form->{role},'"<>&');
     my $loginhelp = &loginhelpdisplay($domain);                  $destination .= 'selectrole=1&'.$newrole.'=1';
     if ($loginhelp) {              }
         $loginhelp = '<p><a href="'.$loginhelp.'">'.$lt{'pro'}.'</a></p>';          }
     }      }
       if (defined($form->{symb})) {
     my $welcome = &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');           my $destsymb = $form->{symb};
     $r->print(<<ENDSUCCESS);          $destination  .= ($destination =~ /\?/) ? '&' : '?';
 $start_page          if ($destsymb =~ /___/) {
 $windowinfo              # FIXME Need to deal with encrypted symbs and urls as needed.
 <h1>$lt{'wel'}</h1>              my ($map,$resid,$desturl)=split(/___/,$destsymb);
 $welcome              $desturl = &Apache::lonnet::clutter($desturl);
 $loginhelp              $desturl = &HTML::Entities::encode($desturl,'"<>&');
 $continuelink              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
 $end_page              $destination .= 'destinationurl='.$desturl.
 ENDSUCCESS                              '&destsymb='.$destsymb;
 }          } else {
               $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
 # --------------------------------------------------------------- Failed login!              $destination .= 'destinationurl='.$destsymb;
           }
 sub failed {      }
     my ($r,$message,$form) = @_;      if ($destination =~ m{^/adm/roles}) {
     (undef,undef,undef,my $clientmathml,my $clientunicode) =          $destination  .= ($destination =~ /\?/) ? '&' : '?';
         &Apache::loncommon::decode_user_agent();          $destination .= 'source=login';
     my $args = {};      }
     if ($clientunicode && !$clientmathml) {  
         $args = {'browser.unicode' => 1};      my $windowname = 'loncapaclient';
     }      if ($env{'request.lti.login'}) {
           $windowname .= 'lti';
     my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,$args);      }
     my $uname = $form->{'uname'};      my $windowinfo = Apache::lonhtmlcommon::scripttag('self.name="'.$windowname.'";');
     my $udom;      my $header = '<meta HTTP-EQUIV="Refresh" CONTENT="0; url='.$destination.'" />';
     if (&Apache::lonnet::domain($form->{'udom'},'description') ne '') {      my $brcrum = [{'href' => '',
         $udom = $form->{'udom'};                     'text' => 'Successful Login'},];
     }        my $args = {'bread_crumbs' => $brcrum,};
     my $retry = '/adm/login?username='.$form->{'uname'};      unless ((defined($form->{role})) || (defined($form->{symb}))) {
     if ($udom) {          my $update=$env{'user.update.time'};
         $retry .= '&amp;domain='.$form->{'udom'}          if (!$update) {
     }              $update = $env{'user.login.time'};
     if (exists($form->{role})) {          }
         $retry .= '&amp;role='.$form->{role};          my %roles_in_env;
     }          my $showcount = &Apache::lonroles::roles_from_env(\%roles_in_env,$update);
     if (exists($form->{symb})) {          if ($showcount == 1) {
         $retry .= '&amp;symb='.$form->{symb};              foreach my $rolecode (keys(%roles_in_env)) {
     }                  my ($cid) = ($rolecode =~ m{^\Quser.role.st./\E($match_domain/$match_courseid)(?:/|$)});
     my $end_page   = &Apache::loncommon::end_page();                  if ($cid) {
     &Apache::loncommon::content_type($r,'text/html');                      my %coursedescription =
     $r->send_http_header;                          &Apache::lonnet::coursedescription($cid,{'one_time' => '1'});
     my $loginhelp = &loginhelpdisplay($udom);                      if ($coursedescription{'type'} eq 'Placement') {
     if ($loginhelp) {                          $args->{'crstype'} = 'Placement';
         $loginhelp = '<p><a href="'.$loginhelp.'">'.&mt('Login problems?').'</a></p>';                      }
     }                      last;
                   }
     $r->print(              }
        $start_page          }
       .'<h1>'.&mt('Sorry ...').'</h1>'      }
       .'<p class="LC_warning">'.&mt($message).'</p>'  
       .'<p>'.&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>')  # ------------------------------------------------- Output for successful login
       .'</p>'  
       .$loginhelp      &Apache::loncommon::content_type($r,'text/html');
       .$end_page      if ($securecookie) {
     );          $r->headers_out->add('Set-cookie' => $securecookie);
  }      }
       if ($defaultcookie) {
 # ------------------------------------------------------------------ Rerouting!          $r->headers_out->add('Set-cookie' => $defaultcookie);
       }
 sub reroute {      $r->send_http_header;
     my ($r) = @_;  
     &Apache::loncommon::content_type($r,'text/html');      my $start_page;
     $r->send_http_header;      if ($env{'request.lti.login'}) {
     my $msg='<b>'.&mt('Sorry ...').'</b><br />'          $args = {'only_body' => 1,};
            .&mt('Please [_1]log in again[_2].');          $start_page=&Apache::loncommon::start_page('',$header,$args);
     &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});      } else {
 }          $start_page=&Apache::loncommon::start_page('Successful Login',
                                                      $header,$args);
 # ---------------------------------------------------------------- Main handler      }
       my $end_page  =&Apache::loncommon::end_page();
 sub handler {  
     my $r = shift;      my $continuelink='<a href="'.$destination.'">'.&mt('Continue').'</a>';
     my $londocroot = $r->dir_config('lonDocRoot');  
     my $form;      my $pagebody;
 # Are we re-routing?      unless ($env{'request.lti.login'}) {
     if (-e "$londocroot/lon-status/reroute.txt") {          my %lt=&Apache::lonlocal::texthash(
  &reroute($r);             'wel' => 'Welcome',
  return OK;             'pro' => 'Login problems?',
     }            );
           $pagebody = "<h1>$lt{'wel'}</h1>\n".
     &Apache::lonlocal::get_language_handle($r);                      &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');
           my $loginhelp = &loginhelpdisplay($domain);
 # -------------------------------- Prevent users from attempting to login twice          if ($loginhelp) {
     my $handle = &Apache::lonnet::check_for_valid_session($r);              $pagebody .= '<p><a href="'.$loginhelp.'">'.$lt{'pro'}.'</a></p>';
     if ($handle ne '') {          }
         my $lonidsdir=$r->dir_config('lonIDsDir');      }
         if ($handle=~/^publicuser\_/) {      $r->print(<<ENDSUCCESS);
 # For "public user" - remove it, we apparently really want to login  $start_page
             unlink($r->dir_config('lonIDsDir')."/$handle.id");  $windowinfo
         } else {  $pagebody
 # Indeed, a valid token is found  $continuelink
             &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);  $end_page
     &Apache::loncommon::content_type($r,'text/html');  ENDSUCCESS
     $r->send_http_header;      return;
     my $start_page =   }
         &Apache::loncommon::start_page('Already logged in');  
     my $end_page =   # --------------------------------------------------------------- Failed login!
         &Apache::loncommon::end_page();  
             my $dest = '/adm/roles';  sub failed {
             if ($env{'form.firsturl'} ne '') {      my ($r,$message,$form) = @_;
                 $dest = $env{'form.firsturl'};      (undef,undef,undef,my $clientmathml,my $clientunicode) =
             }          &Apache::loncommon::decode_user_agent();
             $r->print(      my $args = {};
                $start_page      if ($clientunicode && !$clientmathml) {
               .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'          $args = {'browser.unicode' => 1};
               .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'      }
                     ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')  
               .'</p>'      my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,$args);
               .$end_page      my $uname = &Apache::loncommon::cleanup_html($form->{'uname'});
             );      my $udom = &Apache::loncommon::cleanup_html($form->{'udom'});
             return OK;      if (&Apache::lonnet::domain($udom,'description') eq '') {
         }          undef($udom);
     }      }
       my $retry = '/adm/login';
 # ---------------------------------------------------- No valid token, continue      if ($uname eq $form->{'uname'}) {
           $retry .= '?username='.$uname;
       }
     my $buffer;      if ($udom) {
     if ($r->header_in('Content-length') > 0) {          $retry .= (($retry=~/\?/)?'&amp;':'?').'domain='.$udom;
  $r->read($buffer,$r->header_in('Content-length'),0);      }
     }      if (exists($form->{role})) {
     my %form;          my $role = &Apache::loncommon::cleanup_html($form->{role});
     foreach my $pair (split(/&/,$buffer)) {          if ($role ne '') {
        my ($name,$value) = split(/=/,$pair);              $retry .= (($retry=~/\?/)?'&amp;':'?').'role='.$role;
        $value =~ tr/+/ /;          }
        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;      }
        $form{$name}=$value;      if (exists($form->{symb})) {
     }          my $symb = &Apache::loncommon::cleanup_html($form->{symb});
           if ($symb ne '') {
     if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {              $retry .= (($retry=~/\?/)?'&amp;':'?').'symb='.$symb;
  &failed($r,'Username, password and domain need to be specified.',          }
  \%form);      }
         return OK;      my $end_page = &Apache::loncommon::end_page();
     }      &Apache::loncommon::content_type($r,'text/html');
       $r->send_http_header;
 # split user logging in and "su"-user      my @actions =
            (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));
     ($form{'uname'},$form{'suname'})=split(/\:/,$form{'uname'});      my $loginhelp = &loginhelpdisplay($udom);
     $form{'uname'} = &LONCAPA::clean_username($form{'uname'});      if ($loginhelp) {
     $form{'suname'}= &LONCAPA::clean_username($form{'suname'});          push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');
     $form{'udom'}  = &LONCAPA::clean_domain(  $form{'udom'});      }
       #FIXME: link to helpdesk might be added here
     my $role   = $r->dir_config('lonRole');  
     my $domain = $r->dir_config('lonDefDomain');      $r->print(
     my $prodir = $r->dir_config('lonUsersDir');         $start_page
     my $contact_name = &mt('LON-CAPA helpdesk');        .'<h2>'.&mt('Sorry ...').'</h2>'
         .&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />'
 # ---------------------------------------- Get the information from login token        .&Apache::lonhtmlcommon::actionbox(\@actions)
         .$end_page
     my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},      );
                                       $form{'serverid'});   }
   
     my %sessiondata;  # ------------------------------------------------------------------ Rerouting!
     if ($form{'iptoken'}) {  
         %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});  sub reroute {
         my $delete = &Apache::lonnet::tmpdel($form{'token'});      my ($r) = @_;
     }      &Apache::loncommon::content_type($r,'text/html');
       $r->send_http_header;
     if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||       my $msg='<b>'.&mt('Sorry ...').'</b><br />'
         ($tmpinfo eq 'no_such_host')) {             .&mt('Please [_1]log in again[_2].');
  &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);      &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});
         return OK;  }
     } else {  
  my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},  # ---------------------------------------------------------------- Main handler
    $form{'serverid'});  
         if ( $reply ne 'ok' ) {  sub handler {
             &failed($r,'Session could not be opened.',\%form);      my $r = shift;
     &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");      my $londocroot = $r->dir_config('lonDocRoot');
     return OK;  # Are we re-routing?
  }      if (-e "$londocroot/lon-status/reroute.txt") {
     }   &reroute($r);
    return OK;
     if (!&Apache::lonnet::domain($form{'udom'})) {      }
         &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);  
         return OK;      &Apache::lonlocal::get_language_handle($r);
     }  
   # -------------------------------- Prevent users from attempting to login twice
     my ($key,$firsturl,$rolestr,$symbstr)=split(/&/,$tmpinfo);      my $handle = &Apache::lonnet::check_for_valid_session($r);
     if ($rolestr) {      if ($handle ne '') {
         $rolestr = &unescape($rolestr);          my $lonidsdir=$r->dir_config('lonIDsDir');
     }          if ($handle=~/^publicuser\_/) {
     if ($symbstr) {  # For "public user" - remove it, we apparently really want to login
         $symbstr= &unescape($symbstr);              unlink($r->dir_config('lonIDsDir')."/$handle.id");
     }          } else {
     if ($rolestr =~ /^role=/) {  # Indeed, a valid token is found
         (undef,$form{'role'}) = split('=',$rolestr);              &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
     }      &Apache::loncommon::content_type($r,'text/html');
     if ($symbstr =~ /^symb=/) {       $r->send_http_header;
         (undef,$form{'symb'}) = split('=',$symbstr);      my $start_page =
     }          &Apache::loncommon::start_page('Already logged in');
       my $end_page =
     my $keybin=pack("H16",$key);          &Apache::loncommon::end_page();
               my $dest = '/adm/roles';
     my $cipher;              if ($env{'form.firsturl'} ne '') {
     if ($Crypt::DES::VERSION>=2.03) {                  $dest = $env{'form.firsturl'};
  $cipher=new Crypt::DES $keybin;              }
     }              $r->print(
     else {                 $start_page
  $cipher=new DES $keybin;                .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
     }                .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'
     my $upass='';                      ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')
     for (my $i=0;$i<=2;$i++) {                .'</p>'
  my $chunk=                .$end_page
     $cipher->decrypt(unpack("a8",pack("H16",substr($form{'upass'.$i},0,16))));              );
               return OK;
  $chunk.=          }
     $cipher->decrypt(unpack("a8",pack("H16",substr($form{'upass'.$i},16,16))));      }
   
  $chunk=substr($chunk,1,ord(substr($chunk,0,1)));  # ---------------------------------------------------- No valid token, continue
  $upass.=$chunk;  
     }  
       my $buffer;
 # ---------------------------------------------------------------- Authenticate      if ($r->header_in('Content-length') > 0) {
    $r->read($buffer,$r->header_in('Content-length'),0);
     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});      }
     my ($cancreate,$statustocreate) =      my %form;
         &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});      foreach my $pair (split(/&/,$buffer)) {
     my $defaultauth;         my ($name,$value) = split(/=/,$pair);
     if (ref($cancreate) eq 'ARRAY') {         $value =~ tr/+/ /;
         if (grep(/^login$/,@{$cancreate})) {         $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
             $defaultauth = 1;         $form{$name}=$value;
         }      }
     }  
     my $clientcancheckhost = 1;      if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {
     my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,   &failed($r,'Username, password and domain need to be specified.',
                                               $form{'udom'},$defaultauth,   \%form);
                                               $clientcancheckhost);          return OK;
           }
 # --------------------------------------------------------------------- Failed?  
   # split user logging in and "su"-user
     if ($authhost eq 'no_host') {  
  &failed($r,'Username and/or password could not be authenticated.',      ($form{'uname'},$form{'suname'},$form{'sudom'})=split(/\:/,$form{'uname'});
  \%form);      $form{'uname'} = &LONCAPA::clean_username($form{'uname'});
         return OK;      $form{'suname'}= &LONCAPA::clean_username($form{'suname'});
     } elsif ($authhost eq 'no_account_on_host') {      $form{'udom'}  = &LONCAPA::clean_domain($form{'udom'});
         if ($defaultauth) {      $form{'sudom'} = &LONCAPA::clean_domain($form{'sudom'});
             my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');  
             unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {      my $role   = $r->dir_config('lonRole');
                 return OK;      my $domain = $r->dir_config('lonDefDomain');
             }      my $prodir = $r->dir_config('lonUsersDir');
             my $start_page =       my $contact_name = &mt('LON-CAPA helpdesk');
                 &Apache::loncommon::start_page('Create a user account in LON-CAPA');  
             my $lonhost = $r->dir_config('lonHostID');  # ---------------------------------------- Get the information from login token
             my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};  
             my $contacts =       my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},
                 &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',                                        $form{'serverid'});
                                                         $form{'udom'},$origmail);  
             my ($contact_email) = split(',',$contacts);       if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||
             my $output =           ($tmpinfo eq 'no_such_host')) {
                 &Apache::createaccount::username_check($form{'uname'},$form{'udom'},   &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);
                                                        $domdesc,'',$lonhost,          return OK;
                                                        $contact_email,$contact_name,      } else {
                                                        undef,$statustocreate);   my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},
             &Apache::loncommon::content_type($r,'text/html');     $form{'serverid'});
             $r->send_http_header;          if ( $reply ne 'ok' ) {
             &Apache::createaccount::print_header($r,$start_page);              &failed($r,'Session could not be opened.',\%form);
             $r->print('<h3>'.&mt('Account creation').'</h3>'.      &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");
                       &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.      return OK;
                       $output.&Apache::loncommon::end_page());   }
             return OK;      }
         } else {  
             &failed($r,'Although your username and password were authenticated, you do not currently have a LON-CAPA account in this domain, and you are not permitted to create one.',\%form);      if (!&Apache::lonnet::domain($form{'udom'})) {
             return OK;          &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);
         }          return OK;
     }      }
   
     if (($firsturl eq '') ||       my ($key,$firsturl,$rolestr,$symbstr,$iptokenstr)=split(/&/,$tmpinfo);
  ($firsturl=~/^\/adm\/(logout|remote)/)) {      if ($rolestr) {
  $firsturl='/adm/roles';          $rolestr = &unescape($rolestr);
     }      }
       if ($symbstr) {
     my $hosthere;          $symbstr= &unescape($symbstr);
     if ($form{'iptoken'}) {      }
         if (($sessiondata{'domain'} eq $form{'udom'}) &&      if ($iptokenstr) {
             ($sessiondata{'username'} eq $form{'uname'})) {          $iptokenstr = &unescape($iptokenstr);
             $hosthere = 1;      }
         }      if ($rolestr =~ /^role=/) {
     }          (undef,$form{'role'}) = split('=',$rolestr);
       }
 # --------------------------------- Are we attempting to login as somebody else?      if ($symbstr =~ /^symb=/) {
     if ($form{'suname'}) {          (undef,$form{'symb'}) = split('=',$symbstr);
 # ------------ see if the original user has enough privileges to pull this stunt      }
  if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'})) {      if ($iptokenstr =~ /^iptoken=/) {
 # ---------------------------------------------------- see if the su-user exists          (undef,$form{'iptoken'}) = split('=',$iptokenstr);
     unless (&Apache::lonnet::homeserver($form{'suname'},$form{'udom'})      }
  eq 'no_host') {  
  &Apache::lonnet::logthis(&Apache::lonnet::homeserver($form{'suname'},$form{'udom'}));      my $upass = $ENV{HTTPS} ? $form{'upass0'}
 # ------------------------------ see if the su-user is not too highly privileged          : &Apache::loncommon::des_decrypt($key,$form{'upass0'});
  unless (&Apache::lonnet::privileged($form{'suname'},$form{'udom'})) {  
 # -------------------------------------------------------- actually switch users  # ---------------------------------------------------------------- Authenticate
     &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.$form{'udom'}.  
  ' logging in as '.$form{'suname'});      my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});
     $form{'uname'}=$form{'suname'};      my ($cancreate,$statustocreate) =
  } else {          &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});
     &Apache::lonnet::logthis('Attempted switch user to privileged user');      my $defaultauth;
  }      if (ref($cancreate) eq 'ARRAY') {
     }          if (grep(/^login$/,@{$cancreate})) {
  } else {              $defaultauth = 1;
     &Apache::lonnet::logthis('Non-privileged user attempting switch user');          }
  }      }
     }      my $clientcancheckhost = 1;
       my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,
     my ($is_balancer,$otherserver);                                                $form{'udom'},$defaultauth,
                                                 $clientcancheckhost);
     unless ($hosthere) {  
         ($is_balancer,$otherserver) =  # --------------------------------------------------------------------- Failed?
             &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'});  
     }      if ($authhost eq 'no_host') {
    &failed($r,'Username and/or password could not be authenticated.',
     if ($is_balancer) {   \%form);
         if (!$otherserver) {           return OK;
             ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});      } elsif ($authhost eq 'no_account_on_host') {
         }          if ($defaultauth) {
         if ($otherserver) {              my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');
             &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,              unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {
                      \%form);                  return OK;
     $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver.'&origurl='.$firsturl);              }
         } else {              my $start_page =
             $r->print(&noswitch());                  &Apache::loncommon::start_page('Create a user account in LON-CAPA');
         }              my $lonhost = $r->dir_config('lonHostID');
         return OK;              my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
     } else {              my $contacts =
         if (!&check_can_host($r,\%form,$authhost)) {                  &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
             my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});                                                          $form{'udom'},$origmail);
             if ($otherserver) {              my ($contact_email) = split(',',$contacts);
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,              my $output =
                          \%form);                  &Apache::createaccount::username_check($form{'uname'},$form{'udom'},
                 $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver.'&origurl='.$firsturl);                                                         $domdesc,'',$lonhost,
             } else {                                                         $contact_email,$contact_name,
                 $r->print(&noswitch());                                                         undef,$statustocreate);
             }              &Apache::loncommon::content_type($r,'text/html');
             return OK;              $r->send_http_header;
         }              &Apache::createaccount::print_header($r,$start_page);
               $r->print('<h3>'.&mt('Account creation').'</h3>'.
 # ------------------------------------------------------- Do the load balancing                        &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());
 # ---------------------------------------------------------- Determine own load              return OK;
         my $loadlim = $r->dir_config('lonLoadLim');          } else {
         my $loadavg;              &failed($r,'Although your username and password were authenticated, you do not currently have a LON-CAPA account in this domain, and you are not permitted to create one.',\%form);
         {              return OK;
             my $loadfile=Apache::File->new('/proc/loadavg');          }
             $loadavg=<$loadfile>;      }
         }  
         $loadavg =~ s/\s.*//g;      if (($firsturl eq '') ||
         my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);   ($firsturl=~/^\/adm\/(logout|remote)/)) {
         my $userloadpercent=&Apache::lonnet::userload();   $firsturl='/adm/roles';
       }
 # ---------------------------------------------------------- Are we overloaded?  
         if ((($userloadpercent>100.0)||($loadpercent>100.0))) {      my $hosthere;
             my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'});      if ($form{'iptoken'}) {
             if (!$unloaded) {          my %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});
                 ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});          my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});
             }          if (($sessiondata{'domain'} eq $form{'udom'}) &&
             if ($unloaded) {              ($sessiondata{'username'} eq $form{'uname'})) {
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',              $hosthere = 1;
                          undef,\%form);          }
                 $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);      }
                 return OK;  
             }  # --------------------------------- Are we attempting to login as somebody else?
         }      if ($form{'suname'}) {
         &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,          my ($suname,$sudom,$sudomref);
                  \%form);          $suname = $form{'suname'};
         return OK;          $sudom = $form{'udom'};
     }          if ($form{'sudom'}) {
 }              unless ($sudom eq $form{'sudom'}) {
                   if (&Apache::lonnet::domain($form{'sudom'})) {
 sub check_can_host {                      $sudomref = [$form{'sudom'}];
     my ($r,$form,$authhost,$domdesc) = @_;                      $sudom = $form{'sudom'};
     return unless (ref($form) eq 'HASH');                  }
     my $canhost = 1;              }
     my $lonhost = $r->dir_config('lonHostID');          }
     my $udom = $form->{'udom'};  # ------------ see if the original user has enough privileges to pull this stunt
     my @intdoms;   if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'},$sudomref)) {
     my $internet_names = &Apache::lonnet::get_internet_names($lonhost);  # ---------------------------------------------------- see if the su-user exists
     if (ref($internet_names) eq 'ARRAY') {      unless (&Apache::lonnet::homeserver($suname,$sudom) eq 'no_host') {
         @intdoms = @{$internet_names};  # ------------------------------ see if the su-user is not too highly privileged
     }   if (&Apache::lonnet::privileged($suname,$sudom)) {
     my $uprimary_id = &Apache::lonnet::domain($udom,'primary');                      &Apache::lonnet::logthis('Attempted switch user to privileged user');
     my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);                  } else {
     unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {                      my $noprivswitch;
         my $machine_dom = &Apache::lonnet::host_domain($lonhost);  #
         my $hostname = &Apache::lonnet::hostname($lonhost);  # su-user's home server and user's home server must have one of:
         my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);  # (a) same domain
         my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);  # (b) same primary library server for the two domains
         my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);  # (c) same "internet domain" for primary library server(s) for home servers' domains
         my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);  #
         my $loncaparev;                      my $suprim = &Apache::lonnet::domain($sudom,'primary');
         if ($authhost eq 'no_account_on_host') {                      my $suintdom = &Apache::lonnet::internet_dom($suprim);
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);                      unless ($sudom eq $form{'udom'}) {
         } else {                          my $uprim = &Apache::lonnet::domain($form{'udom'},'primary');
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);                          my $uintdom = &Apache::lonnet::internet_dom($uprim);
         }                          unless ($suprim eq $uprim) {
         $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,                              unless ($suintdom eq $uintdom) {
                                                      $udomdefaults{'remotesessions'},                                  &Apache::lonnet::logthis('Attempted switch user '
                                                      $defdomdefaults{'hostedsessions'});                                     .'to user with different "internet domain".');                        
     }                                  $noprivswitch = 1;
     unless ($canhost) {                              }
         if ($authhost eq 'no_account_on_host') {                          }
             my $checkloginvia = 1;                      }
             my ($login_host,$hostname) =   
                 &Apache::lonnet::choose_server($udom,$checkloginvia);                      unless ($noprivswitch) {
             &Apache::loncommon::content_type($r,'text/html');  #
             $r->send_http_header;  # server where log-in occurs must have same "internet domain" as su-user's home
             if ($login_host ne '') {  # server
                 my $protocol = $Apache::lonnet::protocol{$login_host};  #
                 $protocol = 'http' if ($protocol ne 'https');                          my $lonhost = $r->dir_config('lonHostID');
                 my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';                          my $hostintdom = &Apache::lonnet::internet_dom($lonhost);
                 $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').                          if ($hostintdom ne $suintdom) {
                           '<h3>'.&mt('Account creation').'</h3>'.                              &Apache::lonnet::logthis('Attempted switch user on a '
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.                                  .'server with a different "internet domain".');
                           '<p>'.&mt('You will be able to create one by logging into a LON-CAPA server within the [_1] domain.',$domdesc).'</p>'.                          } else {
                           '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').  
                           &Apache::loncommon::end_page());  # -------------------------------------------------------- actually switch users
             } else {  
                 $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').              &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.
                           '<h3>'.&mt('Account creation unavailable').'</h3>'.                                $form{'udom'}.' logging in as '.$suname.':'.$sudom);
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.              $form{'uname'}=$suname;
                           '<p>'.&mt('Currently a LON-CAPA server is not available within the [_1] domain for you to log-in to, to create an account.',$domdesc).'</p>'.                              if ($form{'udom'} ne $sudom) {
                           &Apache::loncommon::end_page());                                  $form{'udom'}=$sudom;
             }                              }
         } else {                          }
             &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,                      }
                      $form);   }
             my ($otherserver) = &Apache::lonnet::choose_server($udom);      }
             $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);   } else {
         }      &Apache::lonnet::logthis('Non-privileged user attempting switch user');
     }   }
     return $canhost;      }
 }  
       my ($is_balancer,$otherserver);
 sub noswitch {  
     my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').      unless ($hosthere) {
                  '<h3>'.&mt('Session unavailable').'</h3>'.          ($is_balancer,$otherserver) =
                  &mt('This LON-CAPA server is unable to host your session.').'<br />'.              &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');
                  '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.          if ($is_balancer) {
                  &Apache::loncommon::end_page();              if ($otherserver eq '') {
     return $result;                  my $lowest_load;
 }                  ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});
                   if ($lowest_load > 100) {
 sub loginhelpdisplay {                      $otherserver = &Apache::lonnet::spareserver($lowest_load,$lowest_load,1,$form{'udom'});
     my ($authdomain) = @_;                  }
     my $login_help = 1;              }
     my $lang = &Apache::lonlocal::current_language();              if ($otherserver ne '') {
     if ($login_help) {                  my @hosts = &Apache::lonnet::current_machine_ids();
         my $dom = $authdomain;                  if (grep(/^\Q$otherserver\E$/,@hosts)) {
         if ($dom eq '') {                      $hosthere = $otherserver;
             $dom = &Apache::lonnet::default_login_domain();                  }
         }              }
         my %domconfhash = &Apache::loncommon::get_domainconf($dom);          }
         my $loginhelp_url;      }
         if ($lang) {  
             $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};      if (($is_balancer) && (!$hosthere)) {
             if ($loginhelp_url ne '') {          if ($otherserver) {
                 return $loginhelp_url;              &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
             }                       \%form);
         }              my $switchto = '/adm/switchserver?otherserver='.$otherserver;
         $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};              if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
         if ($loginhelp_url ne '') {                  $switchto .= '&origurl='.$firsturl;
             return $loginhelp_url;              }
         } else {              if ($form{'role'}) {
             return '/adm/loginproblems.html';                  $switchto .= '&role='.$form{'role'};
         }              }
     }              if ($form{'symb'}) {
     return;                  $switchto .= '&symb='.$form{'symb'};
 }              }
               $r->internal_redirect($switchto);
 1;          } else {
 __END__              $r->print(&noswitch());
           }
           return OK;
       } else {
           if (!&check_can_host($r,\%form,$authhost)) {
               my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});
               if ($otherserver) {
                   &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
                            \%form);
                   my $switchto = '/adm/switchserver?otherserver='.$otherserver;
                   if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
                       $switchto .= '&origurl='.$firsturl;
                   }
                   if ($form{'role'}) {
                       $switchto .= '&role='.$form{'role'};
                   }
                   if ($form{'symb'}) {
                       $switchto .= '&symb='.$form{'symb'};
                   }
                   $r->internal_redirect($switchto);
               } else {
                   $r->print(&noswitch());
               }
               return OK;
           }
   
   # ------------------------------------------------------- Do the load balancing
   
   # ---------------------------------------------------------- Determine own load
           my $loadlim = $r->dir_config('lonLoadLim');
           my $loadavg;
           {
               my $loadfile=Apache::File->new('/proc/loadavg');
               $loadavg=<$loadfile>;
           }
           $loadavg =~ s/\s.*//g;
           my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
           my $userloadpercent=&Apache::lonnet::userload();
   
   # ---------------------------------------------------------- Are we overloaded?
           if ((($userloadpercent>100.0)||($loadpercent>100.0))) {
               my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'});
               if (!$unloaded) {
                   ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});
               }
               if ($unloaded) {
                   &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',
                            undef,\%form);
                   $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);
                   return OK;
               }
           }
           if (($is_balancer) && ($hosthere)) {
               $form{'noloadbalance'} = $hosthere;
           }
           &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,
                    \%form);
           return OK;
       }
   }
   
   sub check_can_host {
       my ($r,$form,$authhost,$domdesc) = @_;
       return unless (ref($form) eq 'HASH');
       my $canhost = 1;
       my $lonhost = $r->dir_config('lonHostID');
       my $udom = $form->{'udom'};
       my @intdoms;
       my $internet_names = &Apache::lonnet::get_internet_names($lonhost);
       if (ref($internet_names) eq 'ARRAY') {
           @intdoms = @{$internet_names};
       }
       my $uprimary_id = &Apache::lonnet::domain($udom,'primary');
       my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
       unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {
           my $machine_dom = &Apache::lonnet::host_domain($lonhost);
           my $hostname = &Apache::lonnet::hostname($lonhost);
           my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);
           my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);
           my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);
           my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);
           my $loncaparev;
           if ($authhost eq 'no_account_on_host') {
               $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);
           } else {
               $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);
           }
           $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,
                                                        $udomdefaults{'remotesessions'},
                                                        $defdomdefaults{'hostedsessions'});
       }
       unless ($canhost) {
           if ($authhost eq 'no_account_on_host') {
               my $checkloginvia = 1;
               my ($login_host,$hostname) =
                   &Apache::lonnet::choose_server($udom,$checkloginvia);
               &Apache::loncommon::content_type($r,'text/html');
               $r->send_http_header;
               if ($login_host ne '') {
                   my $protocol = $Apache::lonnet::protocol{$login_host};
                   $protocol = 'http' if ($protocol ne 'https');
                   my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';
                   $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').
                             '<h3>'.&mt('Account creation').'</h3>'.
                             &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
                             '<p>'.&mt('You will be able to create one by logging into a LON-CAPA server within the [_1] domain.',$domdesc).'</p>'.
                             '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').
                             &Apache::loncommon::end_page());
               } else {
                   $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').
                             '<h3>'.&mt('Account creation unavailable').'</h3>'.
                             &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
                             '<p>'.&mt('Currently a LON-CAPA server is not available within the [_1] domain for you to log-in to, to create an account.',$domdesc).'</p>'.
                             &Apache::loncommon::end_page());
               }
           } else {
               &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,
                        $form);
               my ($otherserver) = &Apache::lonnet::choose_server($udom);
               $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);
           }
       }
       return $canhost;
   }
   
   sub noswitch {
       my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').
                    '<h3>'.&mt('Session unavailable').'</h3>'.
                    &mt('This LON-CAPA server is unable to host your session.').'<br />'.
                    '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.
                    &Apache::loncommon::end_page();
       return $result;
   }
   
   sub loginhelpdisplay {
       my ($authdomain) = @_;
       my $login_help = 1;
       my $lang = &Apache::lonlocal::current_language();
       if ($login_help) {
           my $dom = $authdomain;
           if ($dom eq '') {
               $dom = &Apache::lonnet::default_login_domain();
           }
           my %domconfhash = &Apache::loncommon::get_domainconf($dom);
           my $loginhelp_url;
           if ($lang) {
               $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};
               if ($loginhelp_url ne '') {
                   return $loginhelp_url;
               }
           }
           $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};
           if ($loginhelp_url ne '') {
               return $loginhelp_url;
           } else {
               return '/adm/loginproblems.html';
           }
       }
       return;
   }
   
   1;
   __END__
   
   

Removed from v.1.128  
changed lines
  Added in v.1.152


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