version 1.120, 2011/11/07 18:15:07
|
version 1.135, 2014/10/04 02:59:32
|
Line 103 sub success {
|
Line 103 sub success {
|
if ($destsymb =~ /___/) { |
if ($destsymb =~ /___/) { |
# FIXME Need to deal with encrypted symbs and urls as needed. |
# FIXME Need to deal with encrypted symbs and urls as needed. |
my ($map,$resid,$desturl)=split(/___/,$destsymb); |
my ($map,$resid,$desturl)=split(/___/,$destsymb); |
unless ($desturl=~/^(adm|uploaded|editupload|public)/) { |
unless ($desturl=~/^(adm|editupload|public)/) { |
$desturl = &Apache::lonnet::clutter($desturl); |
$desturl = &Apache::lonnet::clutter($desturl); |
} |
} |
$desturl = &HTML::Entities::encode($desturl,'"<>&'); |
$desturl = &HTML::Entities::encode($desturl,'"<>&'); |
$destsymb = &HTML::Entities::encode($destsymb,'"<>&'); |
$destsymb = &HTML::Entities::encode($destsymb,'"<>&'); |
$destination .= '&destinationurl='.$desturl. |
$destination .= 'destinationurl='.$desturl. |
'&destsymb='.$destsymb; |
'&destsymb='.$destsymb; |
} else { |
} else { |
$destsymb = &HTML::Entities::encode($destsymb,'"<>&'); |
$destsymb = &HTML::Entities::encode($destsymb,'"<>&'); |
$destination .= '&destinationurl='.$destsymb; |
$destination .= 'destinationurl='.$destsymb; |
} |
} |
} |
} |
if ($destination =~ m{^/adm/roles}) { |
if ($destination =~ m{^/adm/roles}) { |
Line 139 sub success {
|
Line 139 sub success {
|
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'wel' => 'Welcome', |
'wel' => 'Welcome', |
'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>'); |
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> |
$welcome<p> |
$welcome |
<a href="/adm/$lt{'log'}">$lt{'pro'}</a></p> |
$loginhelp |
$continuelink |
$continuelink |
$end_page |
$end_page |
ENDSUCCESS |
ENDSUCCESS |
|
return; |
} |
} |
|
|
# --------------------------------------------------------------- Failed login! |
# --------------------------------------------------------------- Failed login! |
|
|
sub failed { |
sub failed { |
my ($r,$message,$form) = @_; |
my ($r,$message,$form) = @_; |
my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef); |
(undef,undef,undef,my $clientmathml,my $clientunicode) = |
my $retry = '/adm/login?username='.$form->{'uname'}. |
&Apache::loncommon::decode_user_agent(); |
'&domain='.$form->{'udom'}; |
my $args = {}; |
|
if ($clientunicode && !$clientmathml) { |
|
$args = {'browser.unicode' => 1}; |
|
} |
|
|
|
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'}); |
|
if (&Apache::lonnet::domain($udom,'description') eq '') { |
|
undef($udom); |
|
} |
|
my $retry = '/adm/login'; |
|
if ($uname eq $form->{'uname'}) { |
|
$retry .= '?username='.$uname; |
|
} |
|
if ($udom) { |
|
$retry .= (($retry=~/\?/)?'&':'?').'domain='.$udom; |
|
} |
if (exists($form->{role})) { |
if (exists($form->{role})) { |
$retry .= '&role='.$form->{role}; |
my $role = &Apache::loncommon::cleanup_html($form->{role}); |
|
if ($role ne '') { |
|
$retry .= (($retry=~/\?/)?'&':'?').'role='.$role; |
|
} |
} |
} |
if (exists($form->{symb})) { |
if (exists($form->{symb})) { |
$retry .= '&symb='.$form->{symb}; |
my $symb = &Apache::loncommon::cleanup_html($form->{symb}); |
|
if ($symb ne '') { |
|
$retry .= (($retry=~/\?/)?'&':'?').'symb='.$symb; |
|
} |
} |
} |
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 @actions = |
|
(&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>')); |
|
my $loginhelp = &loginhelpdisplay($udom); |
|
if ($loginhelp) { |
|
push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>'); |
|
} |
|
#FIXME: link to helpdesk might be added here |
|
|
$r->print( |
$r->print( |
$start_page |
$start_page |
.'<h1>'.&mt('Sorry ...').'</h1>' |
.'<h2>'.&mt('Sorry ...').'</h2>' |
.'<p class="LC_warning">'.&mt($message).'</p>' |
.&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />' |
.'<p>'.&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>') |
.&Apache::lonhtmlcommon::actionbox(\@actions) |
.'</p>' |
|
.'<p><a href="/adm/loginproblems.html">'.&mt('Login problems?').'</a></p>' |
|
.$end_page |
.$end_page |
); |
); |
} |
} |
Line 186 sub reroute {
|
Line 220 sub reroute {
|
my ($r) = @_; |
my ($r) = @_; |
&Apache::loncommon::content_type($r,'text/html'); |
&Apache::loncommon::content_type($r,'text/html'); |
$r->send_http_header; |
$r->send_http_header; |
my $msg='<h1>'.&mt('Sorry ...').'</h1>' |
my $msg='<b>'.&mt('Sorry ...').'</b><br />' |
.&mt('Please [_1]log in again[_2].'); |
.&mt('Please [_1]log in again[_2].'); |
&Apache::loncommon::simple_error_page($r,'Rerouting',$msg); |
&Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1}); |
} |
} |
|
|
# ---------------------------------------------------------------- Main handler |
# ---------------------------------------------------------------- Main handler |
Line 227 sub handler {
|
Line 261 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 250 sub handler {
|
Line 284 sub handler {
|
$value =~ tr/+/ /; |
$value =~ tr/+/ /; |
$value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg; |
$value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg; |
$form{$name}=$value; |
$form{$name}=$value; |
} |
} |
|
|
if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) { |
if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) { |
&failed($r,'Username, password and domain need to be specified.', |
&failed($r,'Username, password and domain need to be specified.', |
Line 294 sub handler {
|
Line 328 sub handler {
|
return OK; |
return OK; |
} |
} |
|
|
my ($key,$firsturl,$rolestr,$symbstr)=split(/&/,$tmpinfo); |
my ($key,$firsturl,$rolestr,$symbstr,$iptokenstr)=split(/&/,$tmpinfo); |
if ($rolestr) { |
if ($rolestr) { |
$rolestr = &unescape($rolestr); |
$rolestr = &unescape($rolestr); |
} |
} |
if ($symbstr) { |
if ($symbstr) { |
$symbstr= &unescape($symbstr); |
$symbstr= &unescape($symbstr); |
} |
} |
|
if ($iptokenstr) { |
|
$iptokenstr = &unescape($iptokenstr); |
|
} |
if ($rolestr =~ /^role=/) { |
if ($rolestr =~ /^role=/) { |
(undef,$form{'role'}) = split('=',$rolestr); |
(undef,$form{'role'}) = split('=',$rolestr); |
} |
} |
if ($symbstr =~ /^symb=/) { |
if ($symbstr =~ /^symb=/) { |
(undef,$form{'symb'}) = split('=',$symbstr); |
(undef,$form{'symb'}) = split('=',$symbstr); |
} |
} |
|
if ($iptokenstr =~ /^iptoken=/) { |
|
(undef,$form{'iptoken'}) = split('=',$iptokenstr); |
|
} |
|
|
my $keybin=pack("H16",$key); |
my $keybin=pack("H16",$key); |
|
|
Line 387 sub handler {
|
Line 427 sub handler {
|
($firsturl=~/^\/adm\/(logout|remote)/)) { |
($firsturl=~/^\/adm\/(logout|remote)/)) { |
$firsturl='/adm/roles'; |
$firsturl='/adm/roles'; |
} |
} |
|
|
|
my $hosthere; |
|
if ($form{'iptoken'}) { |
|
my %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'}); |
|
my $delete = &Apache::lonnet::tmpdel($form{'iptoken'}); |
|
if (($sessiondata{'domain'} eq $form{'udom'}) && |
|
($sessiondata{'username'} eq $form{'uname'})) { |
|
$hosthere = 1; |
|
} |
|
} |
|
|
# --------------------------------- Are we attempting to login as somebody else? |
# --------------------------------- Are we attempting to login as somebody else? |
if ($form{'suname'}) { |
if ($form{'suname'}) { |
# ------------ see if the original user has enough privileges to pull this stunt |
# ------------ see if the original user has enough privileges to pull this stunt |
Line 410 sub handler {
|
Line 461 sub handler {
|
} |
} |
} |
} |
|
|
my ($is_balancer,$otherserver) = |
my ($is_balancer,$otherserver); |
&Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'}); |
|
|
unless ($hosthere) { |
|
($is_balancer,$otherserver) = |
|
&Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'}); |
|
} |
|
|
if ($is_balancer) { |
if ($is_balancer) { |
if (!$otherserver) { |
if (!$otherserver) { |
Line 420 sub handler {
|
Line 475 sub handler {
|
if ($otherserver) { |
if ($otherserver) { |
&success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef, |
&success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef, |
\%form); |
\%form); |
$r->internal_redirect('/adm/switchserver?otherserver='.$otherserver.'&origurl='.$firsturl); |
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 { |
} else { |
$r->print(&noswitch()); |
$r->print(&noswitch()); |
} |
} |
Line 431 sub handler {
|
Line 496 sub handler {
|
if ($otherserver) { |
if ($otherserver) { |
&success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef, |
&success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef, |
\%form); |
\%form); |
$r->internal_redirect('/adm/switchserver?otherserver='.$otherserver.'&origurl='.$firsturl); |
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 { |
} else { |
$r->print(&noswitch()); |
$r->print(&noswitch()); |
} |
} |
Line 543 sub noswitch {
|
Line 618 sub noswitch {
|
return $result; |
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__ |
|
|