version 1.111, 2011/02/24 23:37:50
|
version 1.123, 2012/08/27 02:02:20
|
Line 40 use Apache::lonmenu();
|
Line 40 use Apache::lonmenu();
|
use Apache::createaccount; |
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; |
|
|
# ------------------------------------------------------------ Successful login |
# ------------------------------------------------------------ Successful login |
Line 138 sub success {
|
Line 138 sub success {
|
|
|
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'wel' => 'Welcome', |
'wel' => 'Welcome', |
'mes' => 'Welcome to the Learning<i>Online</i> Network with CAPA. Please wait while your session is being set up.', |
|
'pro' => 'Login problems?', |
'pro' => 'Login problems?', |
'log' => 'loginproblems.html', |
|
); |
); |
|
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>'); |
$r->print(<<ENDSUCCESS); |
$r->print(<<ENDSUCCESS); |
$start_page |
$start_page |
$windowinfo |
$windowinfo |
<h1>$lt{'wel'}</h1> |
<h1>$lt{'wel'}</h1> |
$lt{'mes'}<p> |
$welcome |
<a href="/adm/$lt{'log'}">$lt{'pro'}</a></p> |
$loginhelp |
$continuelink |
$continuelink |
$end_page |
$end_page |
ENDSUCCESS |
ENDSUCCESS |
Line 169 sub failed {
|
Line 173 sub failed {
|
my $end_page = &Apache::loncommon::end_page(); |
my $end_page = &Apache::loncommon::end_page(); |
&Apache::loncommon::content_type($r,'text/html'); |
&Apache::loncommon::content_type($r,'text/html'); |
$r->send_http_header; |
$r->send_http_header; |
|
my $loginhelp = &loginhelpdisplay($form->{'udom'}); |
|
if ($loginhelp) { |
|
$loginhelp = '<p><a href="'.$loginhelp.'">'.&mt('Login problems?').'</a></p>'; |
|
} |
|
|
$r->print( |
$r->print( |
$start_page |
$start_page |
.'<h1>'.&mt('Sorry ...').'</h1>' |
.'<h1>'.&mt('Sorry ...').'</h1>' |
.'<p class="LC_warning">'.&mt($message).'</p>' |
.'<p class="LC_warning">'.&mt($message).'</p>' |
.'<p>'.&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>') |
.'<p>'.&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>') |
.'</p>' |
.'</p>' |
.'<p><a href="/adm/loginproblems.html">'.&mt('Login problems?').'</a></p>' |
.$loginhelp |
.$end_page |
.$end_page |
); |
); |
} |
} |
Line 195 sub reroute {
|
Line 204 sub reroute {
|
|
|
sub handler { |
sub handler { |
my $r = shift; |
my $r = shift; |
|
my $londocroot = $r->dir_config('lonDocRoot'); |
my $form; |
my $form; |
# Are we re-routing? |
# Are we re-routing? |
if (-e '/home/httpd/html/lon-status/reroute.txt') { |
if (-e "$londocroot/lon-status/reroute.txt") { |
&reroute($r); |
&reroute($r); |
return OK; |
return OK; |
} |
} |
Line 226 sub handler {
|
Line 236 sub handler {
|
} |
} |
$r->print( |
$r->print( |
$start_page |
$start_page |
.'<h1>'.&mt('You are already logged in!').'</h1>' |
.'<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 either [_1]continue the current session[_2] or [_3]log out[_4].' |
,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>') |
,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>') |
.'</p>' |
.'</p>' |
Line 274 sub handler {
|
Line 284 sub handler {
|
my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'}, |
my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'}, |
$form{'serverid'}); |
$form{'serverid'}); |
|
|
if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost')) { |
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); |
&failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form); |
return OK; |
return OK; |
} else { |
} else { |
Line 328 sub handler {
|
Line 339 sub handler {
|
} |
} |
|
|
# ---------------------------------------------------------------- Authenticate |
# ---------------------------------------------------------------- Authenticate |
my @cancreate; |
|
my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'}); |
my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'}); |
if (ref($domconfig{'usercreation'}) eq 'HASH') { |
my ($cancreate,$statustocreate) = |
if (ref($domconfig{'usercreation'}{'cancreate'}) eq 'HASH') { |
&Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'}); |
if (ref($domconfig{'usercreation'}{'cancreate'}{'selfcreate'}) eq 'ARRAY') { |
|
@cancreate = @{$domconfig{'usercreation'}{'cancreate'}{'selfcreate'}}; |
|
} elsif (($domconfig{'usercreation'}{'cancreate'}{'selfcreate'} ne 'none') && |
|
($domconfig{'usercreation'}{'cancreate'}{'selfcreate'} ne '')) { |
|
@cancreate = ($domconfig{'usercreation'}{'cancreate'}{'selfcreate'}); |
|
} |
|
} |
|
} |
|
my $defaultauth; |
my $defaultauth; |
if (grep(/^login$/,@cancreate)) { |
if (ref($cancreate) eq 'ARRAY') { |
$defaultauth = 1; |
if (grep(/^login$/,@{$cancreate})) { |
|
$defaultauth = 1; |
|
} |
} |
} |
my $clientcancheckhost = 1; |
my $clientcancheckhost = 1; |
my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass, |
my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass, |
Line 356 sub handler {
|
Line 361 sub handler {
|
\%form); |
\%form); |
return OK; |
return OK; |
} elsif ($authhost eq 'no_account_on_host') { |
} elsif ($authhost eq 'no_account_on_host') { |
my %domconfig = |
if ($defaultauth) { |
&Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'}); |
|
if (grep(/^login$/,@cancreate)) { |
|
my $domdesc = &Apache::lonnet::domain($form{'udom'},'description'); |
my $domdesc = &Apache::lonnet::domain($form{'udom'},'description'); |
unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) { |
unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) { |
return OK; |
return OK; |
Line 371 sub handler {
|
Line 374 sub handler {
|
&Apache::loncommon::build_recipient_list(undef,'helpdeskmail', |
&Apache::loncommon::build_recipient_list(undef,'helpdeskmail', |
$form{'udom'},$origmail); |
$form{'udom'},$origmail); |
my ($contact_email) = split(',',$contacts); |
my ($contact_email) = split(',',$contacts); |
my $output = &Apache::createaccount::username_check($form{'uname'}, |
my $output = |
$form{'udom'},$domdesc,'', |
&Apache::createaccount::username_check($form{'uname'},$form{'udom'}, |
$lonhost,$contact_email,$contact_name); |
$domdesc,'',$lonhost, |
|
$contact_email,$contact_name, |
|
undef,$statustocreate); |
&Apache::loncommon::content_type($r,'text/html'); |
&Apache::loncommon::content_type($r,'text/html'); |
$r->send_http_header; |
$r->send_http_header; |
&Apache::createaccount::print_header($r,$start_page); |
&Apache::createaccount::print_header($r,$start_page); |
Line 414 sub handler {
|
Line 419 sub handler {
|
} |
} |
} |
} |
|
|
unless (&check_can_host($r,\%form,$authhost)) { |
my ($is_balancer,$otherserver) = |
return OK; |
&Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'}); |
} |
|
|
|
if ($r->dir_config("lonBalancer") eq 'yes') { |
if ($is_balancer) { |
&success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef, |
if (!$otherserver) { |
\%form); |
($otherserver) = &Apache::lonnet::choose_server($form{'udom'}); |
my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'}); |
} |
$r->internal_redirect('/adm/switchserver?otherserver='.$otherserver.'&origurl='.$firsturl); |
if ($otherserver) { |
|
&success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef, |
|
\%form); |
|
$r->internal_redirect('/adm/switchserver?otherserver='.$otherserver.'&origurl='.$firsturl); |
|
} else { |
|
$r->print(&noswitch()); |
|
} |
return OK; |
return OK; |
} else { |
} 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); |
|
$r->internal_redirect('/adm/switchserver?otherserver='.$otherserver.'&origurl='.$firsturl); |
|
} else { |
|
$r->print(&noswitch()); |
|
} |
|
return OK; |
|
} |
|
|
# ------------------------------------------------------- Do the load balancing |
# ------------------------------------------------------- Do the load balancing |
|
|
# ---------------------------------------------------------- Determine own load |
# ---------------------------------------------------------- Determine own load |
Line 441 sub handler {
|
Line 463 sub handler {
|
# ---------------------------------------------------------- Are we overloaded? |
# ---------------------------------------------------------- Are we overloaded? |
if ((($userloadpercent>100.0)||($loadpercent>100.0))) { |
if ((($userloadpercent>100.0)||($loadpercent>100.0))) { |
my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'}); |
my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'}); |
|
if (!$unloaded) { |
|
($unloaded) = &Apache::lonnet::choose_server($form{'udom'}); |
|
} |
if ($unloaded) { |
if ($unloaded) { |
&success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect', |
&success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect', |
undef,\%form); |
undef,\%form); |
Line 486 sub check_can_host {
|
Line 511 sub check_can_host {
|
} |
} |
unless ($canhost) { |
unless ($canhost) { |
if ($authhost eq 'no_account_on_host') { |
if ($authhost eq 'no_account_on_host') { |
my ($login_host,$hostname) = &Apache::lonnet::choose_server($udom); |
my $checkloginvia = 1; |
|
my ($login_host,$hostname) = |
|
&Apache::lonnet::choose_server($udom,$checkloginvia); |
&Apache::loncommon::content_type($r,'text/html'); |
&Apache::loncommon::content_type($r,'text/html'); |
$r->send_http_header; |
$r->send_http_header; |
if ($login_host ne '') { |
if ($login_host ne '') { |
Line 516 sub check_can_host {
|
Line 543 sub check_can_host {
|
return $canhost; |
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; |
1; |
__END__ |
__END__ |
|
|