--- loncom/auth/lonlogin.pm 2003/01/31 21:51:36 1.29 +++ loncom/auth/lonlogin.pm 2003/02/18 16:29:15 1.33 @@ -1,7 +1,7 @@ # The LearningOnline Network # Login Screen # -# $Id: lonlogin.pm,v 1.29 2003/01/31 21:51:36 www Exp $ +# $Id: lonlogin.pm,v 1.33 2003/02/18 16:29:15 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -50,10 +50,20 @@ sub handler { &Apache::loncommon::get_unprocessed_cgi - ($ENV{'QUERY_STRING'},['interface']); + ($ENV{'QUERY_STRING'},['interface','username','domain','firsturl']); +# ----------------------------------------------------------- Process Interface $ENV{'form.interface'}=~s/\W//g; + my $textbrowsers=$r->dir_config('lonTextBrowsers'); + my $httpbrowser=$ENV{"HTTP_USER_AGENT"}; + + foreach (split(/\:/,$textbrowsers)) { + if ($httpbrowser=~/$_/i) { + $ENV{'form.interface'}='textual'; + } + } + my $fullgraph=($ENV{'form.interface'} ne 'textual'); my $iconpath= 'http://'.$ENV{'HTTP_HOST'}.':8080'. @@ -67,6 +77,12 @@ sub handler { my $tabdir = $r->dir_config('lonTabDir'); my $include = $r->dir_config('lonIncludes'); +# --------------------------------------------- Default values for login fields + + my $authusername=($ENV{'form.username'}?$ENV{'form.username'}:''); + my $authdomain=($ENV{'form.domain'}?$ENV{'form.domain'}:$domain); + +# ---------------------------------------------------------- Determine own load my $loadavg; { my $loadfile=Apache::File->new('/proc/loadavg'); @@ -75,8 +91,10 @@ sub handler { $loadavg =~ s/\s.*//g; my $loadpercent=100*$loadavg/$loadlim; +# ------------------------------------------------------- Do the load balancing my $otherserver='http://'.$ENV{'SERVER_NAME'}; - my $firsturl=$ENV{'request.firsturl'}; + my $firsturl= + ($ENV{'request.firsturl'}?$ENV{'request.firsturl'}:$ENV{'form.firsturl'}); # ---------------------------------------- Are we access server and overloaded? if (($role eq 'access') && ($loadpercent>100.0)) { $otherserver=Apache::lonnet::spareserver($loadpercent); @@ -102,9 +120,41 @@ sub handler { my $uextkey=hex($ukey); if ($uextkey>2147483647) { $uextkey-=4294967296; } +# -------------------------------------------------------- Store away log token my $logtoken=Apache::lonnet::reply( 'tmpput:'.$ukey.$lkey.'&'.$firsturl, $lonhost); + +# ------------------- If we cannot talk to ourselves, we are in serious trouble + + if ($logtoken eq 'con_lost') { + my $spares=''; + foreach (keys %Apache::lonnet::hostname) { + if ($_ ne $lonhost) { + $spares.='
'. + $Apache::lonnet::hostname{$_}.''; + if ($Apache::lonnet::spareid{$_}) { + $spares.=' (preferred)'; + } + } + } + $r->print(< +The LearningOnline Network with CAPA + + +

This LON-CAPA server is temporarily not available for login

+

Please attempt to login to one of the following servers:

$spares +

If the problem persists, please contact $servadm.

+ + +ENDTROUBLE + return OK; + } + +# ----------------------------------------------- Apparently we are in business + my $domainlogo=&Apache::loncommon::domainlogo(); # --------------------------------------------------- Print login screen header $r->print(<print(< - - - - - - + + + + + + + + + + ENDSERVERFORM if ($fullgraph) { $r->print(< ENDTOP +} else { + $r->print('

The LearningOnline Network with CAPA

Text-based Interface Login

'); +} + $r->print('
'); + unless ($fullgraph) { + $r->print(< +Select Accessibility Options + + + Suppress rendering of images
+ Suppress rendering of embedded multimedia
+ Increase font size
+ Switch to black and white mode
+ENDACCESSOPTIONS +} else { + $r->print(< + + + +ENDNOOPT } $r->print(< @@ -239,7 +326,7 @@ ENDTOP User Authentication
   User Name: -
+
   Password: @@ -247,7 +334,7 @@ ENDTOP    Domain: - +    Help