Annotation of loncom/auth/lonlogin.pm, revision 1.167

1.160     kruse       1: # The LearningOnline Network
                      2: # Login Screen
                      3: #
1.167   ! raeburn     4: # $Id: lonlogin.pm,v 1.166 2016/04/19 18:09:11 raeburn Exp $
1.160     kruse       5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
                     28: 
                     29: package Apache::lonlogin;
                     30: 
                     31: use strict;
                     32: use Apache::Constants qw(:common);
                     33: use Apache::File ();
                     34: use Apache::lonnet;
                     35: use Apache::loncommon();
                     36: use Apache::lonauth();
                     37: use Apache::lonlocal;
                     38: use Apache::migrateuser();
                     39: use lib '/home/httpd/lib/perl/';
                     40: use LONCAPA;
                     41:  
                     42: sub handler {
                     43:     my $r = shift;
                     44: 
                     45:     &Apache::loncommon::get_unprocessed_cgi
                     46: 	(join('&',$ENV{'QUERY_STRING'},$env{'request.querystring'},
                     47: 	      $ENV{'REDIRECT_QUERY_STRING'}),
                     48: 	 ['interface','username','domain','firsturl','localpath','localres',
                     49: 	  'token','role','symb','iptoken']);
                     50:     if (!defined($env{'form.firsturl'})) {
                     51:         &Apache::lonacc::get_posted_cgi($r,['firsturl']);
                     52:     }
                     53: 
                     54: # -- check if they are a migrating user
                     55:     if (defined($env{'form.token'})) {
                     56: 	return &Apache::migrateuser::handler($r);
                     57:     }
                     58: 
                     59:     &Apache::loncommon::no_cache($r);
                     60:     &Apache::lonlocal::get_language_handle($r);
                     61:     &Apache::loncommon::content_type($r,'text/html');
                     62:     $r->send_http_header;
                     63:     return OK if $r->header_only;
                     64: 
                     65: 
                     66: # Are we re-routing?
                     67:     my $londocroot = $r->dir_config('lonDocRoot'); 
                     68:     if (-e "$londocroot/lon-status/reroute.txt") {
                     69: 	&Apache::lonauth::reroute($r);
                     70: 	return OK;
                     71:     }
                     72: 
                     73:     $env{'form.firsturl'} =~ s/(`)/'/g;
                     74: 
                     75: # -------------------------------- Prevent users from attempting to login twice
                     76:     my $handle = &Apache::lonnet::check_for_valid_session($r);
                     77:     if ($handle ne '') {
                     78:         my $lonidsdir=$r->dir_config('lonIDsDir');
                     79:         if ($handle=~/^publicuser\_/) {
                     80: # For "public user" - remove it, we apparently really want to login
                     81: 	    unlink($r->dir_config('lonIDsDir')."/$handle.id");
                     82:         } else {
                     83: # Indeed, a valid token is found
                     84:             &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
                     85: 	    my $start_page = 
                     86: 	        &Apache::loncommon::start_page('Already logged in');
                     87: 	    my $end_page = 
                     88: 	        &Apache::loncommon::end_page();
                     89:             my $dest = '/adm/roles';
                     90:             if ($env{'form.firsturl'} ne '') {
                     91:                 $dest = $env{'form.firsturl'}; 
                     92:             }
                     93: 	    $r->print(
                     94:                   $start_page
                     95:                  .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
                     96:                  .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].',
                     97:                   '<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>').'</p>'
                     98:                  .$end_page
                     99:                  );
                    100:             return OK;
                    101:         }
                    102:     }
                    103: 
                    104: # ---------------------------------------------------- No valid token, continue
                    105: 
                    106: # ---------------------------- Not possible to really login to domain "public"
                    107:     if ($env{'form.domain'} eq 'public') {
                    108: 	$env{'form.domain'}='';
                    109: 	$env{'form.username'}='';
                    110:     }
                    111: 
                    112: # ------ Is this page requested because /adm/migrateuser detected an IP change?
                    113:     my %sessiondata;
                    114:     if ($env{'form.iptoken'}) {
                    115:         %sessiondata = &Apache::lonnet::tmpget($env{'form.iptoken'});
1.162     raeburn   116:         unless ($sessiondata{'sessionserver'}) {
                    117:             my $delete = &Apache::lonnet::tmpdel($env{'form.iptoken'});
                    118:             delete($env{'form.iptoken'});
                    119:         }
1.160     kruse     120:     }
                    121: # ----------------------------------------------------------- Process Interface
                    122:     $env{'form.interface'}=~s/\W//g;
                    123: 
                    124:     (undef,undef,undef,undef,undef,undef,my $clientmobile) =
                    125:         &Apache::loncommon::decode_user_agent();
                    126: 
                    127:     my $iconpath= 
                    128: 	&Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL'));
                    129: 
                    130:     my $lonhost = $r->dir_config('lonHostID');
                    131:     my $domain = &Apache::lonnet::default_login_domain();
1.161     raeburn   132:     my $defdom = $domain;
1.160     kruse     133:     if ($lonhost ne '') {
                    134:         unless ($sessiondata{'sessionserver'}) {
                    135:             my $redirect = &check_loginvia($domain,$lonhost);
                    136:             if ($redirect) {
                    137:                 $r->print($redirect);
                    138:                 return OK;
                    139:             }
                    140:         }
                    141:     }
                    142: 
                    143:     if (($sessiondata{'domain'}) &&
                    144:         (&Apache::lonnet::domain($env{'form.domain'},'description'))) {
                    145:         $domain=$sessiondata{'domain'};
                    146:     } elsif (($env{'form.domain'}) && 
                    147: 	(&Apache::lonnet::domain($env{'form.domain'},'description'))) {
                    148: 	$domain=$env{'form.domain'};
                    149:     }
                    150: 
                    151:     my $role    = $r->dir_config('lonRole');
                    152:     my $loadlim = $r->dir_config('lonLoadLim');
                    153:     my $uloadlim= $r->dir_config('lonUserLoadLim');
                    154:     my $servadm = $r->dir_config('lonAdmEMail');
                    155:     my $tabdir  = $r->dir_config('lonTabDir');
                    156:     my $include = $r->dir_config('lonIncludes');
                    157:     my $expire  = $r->dir_config('lonExpire');
                    158:     my $version = $r->dir_config('lonVersion');
                    159:     my $host_name = &Apache::lonnet::hostname($lonhost);
                    160: 
                    161: # --------------------------------------------- Default values for login fields
                    162:     
                    163:     my ($authusername,$authdomain);
                    164:     if ($sessiondata{'username'}) {
                    165:         $authusername=$sessiondata{'username'};
                    166:     } else {
                    167:         $env{'form.username'} = &Apache::loncommon::cleanup_html($env{'form.username'});
                    168:         $authusername=($env{'form.username'}?$env{'form.username'}:'');
                    169:     }
                    170:     if ($sessiondata{'domain'}) {
                    171:         $authdomain=$sessiondata{'domain'};
                    172:     } else {
                    173:         $env{'form.domain'} = &Apache::loncommon::cleanup_html($env{'form.domain'});
                    174:         $authdomain=($env{'form.domain'}?$env{'form.domain'}:$domain);
                    175:     }
                    176: 
                    177: # ---------------------------------------------------------- Determine own load
                    178:     my $loadavg;
                    179:     {
                    180: 	my $loadfile=Apache::File->new('/proc/loadavg');
                    181: 	$loadavg=<$loadfile>;
                    182:     }
                    183:     $loadavg =~ s/\s.*//g;
                    184: 
                    185:     my ($loadpercent,$userloadpercent);
                    186:     if ($loadlim) {
                    187:         $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
                    188:     }
                    189:     if ($uloadlim) {
                    190:         $userloadpercent=&Apache::lonnet::userload();
                    191:     }
                    192: 
                    193:     my $firsturl=
                    194:     ($env{'request.firsturl'}?$env{'request.firsturl'}:$env{'form.firsturl'});
                    195: 
                    196: # ----------------------------------------------------------- Get announcements
                    197:     my $announcements=&Apache::lonnet::getannounce();
                    198: # -------------------------------------------------------- Set login parameters
                    199: 
                    200:     my @hexstr=('0','1','2','3','4','5','6','7',
                    201:                 '8','9','a','b','c','d','e','f');
                    202:     my $lkey='';
                    203:     for (0..7) {
                    204:         $lkey.=$hexstr[rand(15)];
                    205:     }
                    206: 
                    207:     my $ukey='';
                    208:     for (0..7) {
                    209:         $ukey.=$hexstr[rand(15)];
                    210:     }
                    211: 
                    212:     my $lextkey=hex($lkey);
                    213:     if ($lextkey>2147483647) { $lextkey-=4294967296; }
                    214: 
                    215:     my $uextkey=hex($ukey);
                    216:     if ($uextkey>2147483647) { $uextkey-=4294967296; }
                    217: 
                    218: # -------------------------------------------------------- Store away log token
                    219:     my $tokenextras;
                    220:     if ($env{'form.role'}) {
                    221:         $tokenextras = '&role='.&escape($env{'form.role'});
                    222:     }
                    223:     if ($env{'form.symb'}) {
                    224:         if (!$tokenextras) {
                    225:             $tokenextras = '&';
                    226:         }
                    227:         $tokenextras .= '&symb='.&escape($env{'form.symb'});
                    228:     }
1.162     raeburn   229:     if ($env{'form.iptoken'}) {
                    230:         if (!$tokenextras) {
                    231:             $tokenextras = '&&';
                    232:         }
                    233:         $tokenextras .= '&iptoken='.&escape($env{'form.iptoken'});
                    234:     }
1.160     kruse     235:     my $logtoken=Apache::lonnet::reply(
                    236:        'tmpput:'.$ukey.$lkey.'&'.$firsturl.$tokenextras,
                    237:        $lonhost);
                    238: 
                    239: # -- If we cannot talk to ourselves, or hostID does not map to a hostname
                    240: #    we are in serious trouble
                    241: 
                    242:     if (($logtoken eq 'con_lost') || ($logtoken eq 'no_such_host')) {
                    243:         if ($logtoken eq 'no_such_host') {
                    244:             &Apache::lonnet::logthis('No valid logtoken for log-in page -- unable to determine hostname for hostID: '.$lonhost.'. Check entry in hosts.tab');
                    245:         }
                    246:         my $spares='';
                    247: 	my $last;
                    248:         foreach my $hostid (sort
                    249: 			    {
                    250: 				&Apache::lonnet::hostname($a) cmp
                    251: 				    &Apache::lonnet::hostname($b);
                    252: 			    }
                    253: 			    keys(%Apache::lonnet::spareid)) {
                    254:             next if ($hostid eq $lonhost);
                    255: 	    my $hostname = &Apache::lonnet::hostname($hostid);
                    256: 	    next if (($last eq $hostname) || ($hostname eq ''));
                    257:             $spares.='<br /><font size="+1"><a href="http://'.
                    258:                 $hostname.
                    259:                 '/adm/login?domain='.$authdomain.'">'.
                    260:                 $hostname.'</a>'.
                    261:                 ' '.&mt('(preferred)').'</font>'.$/;
                    262: 	    $last=$hostname;
                    263:         }
                    264:         if ($spares) {
                    265:             $spares.= '<br />';
                    266:         }
                    267:         my %all_hostnames = &Apache::lonnet::all_hostnames();
                    268:         foreach my $hostid (sort
                    269: 		    {
                    270: 			&Apache::lonnet::hostname($a) cmp
                    271: 			    &Apache::lonnet::hostname($b);
                    272: 		    }
                    273: 		    keys(%all_hostnames)) {
                    274:             next if ($hostid eq $lonhost || $Apache::lonnet::spareid{$hostid});
                    275:             my $hostname = &Apache::lonnet::hostname($hostid);
                    276:             next if (($last eq $hostname) || ($hostname eq ''));
                    277:             $spares.='<br /><a href="http://'.
                    278: 	             $hostname.
                    279: 	             '/adm/login?domain='.$authdomain.'">'.
                    280: 	             $hostname.'</a>';
                    281:             $last=$hostname;
                    282:          }
                    283:          $r->print(
                    284:    '<html>'
                    285:   .'<head><title>'
                    286:   .&mt('The LearningOnline Network with CAPA')
                    287:   .'</title></head>'
                    288:   .'<body bgcolor="#FFFFFF">'
                    289:   .'<h1>'.&mt('The LearningOnline Network with CAPA').'</h1>'
                    290:   .'<img src="/adm/lonKaputt/lonlogo_broken.gif" align="right" />'
                    291:   .'<h3>'.&mt('This LON-CAPA server is temporarily not available for login.').'</h3>');
                    292:         if ($spares) {
                    293:             $r->print('<p>'.&mt('Please attempt to login to one of the following servers:')
                    294:                      .'</p>'
                    295:                      .$spares);
                    296:         }
                    297:         $r->print('</body>'
                    298:                  .'</html>'
                    299:         );
                    300:         return OK;
                    301:     }
                    302: 
                    303: # ----------------------------------------------- Apparently we are in business
                    304:     $servadm=~s/\,/\<br \/\>/g;
                    305: 
                    306: # ----------------------------------------------------------- Front page design
                    307:     my $pgbg=&Apache::loncommon::designparm('login.pgbg',$domain);
                    308:     my $font=&Apache::loncommon::designparm('login.font',$domain);
                    309:     my $link=&Apache::loncommon::designparm('login.link',$domain);
                    310:     my $vlink=&Apache::loncommon::designparm('login.vlink',$domain);
                    311:     my $alink=&Apache::loncommon::designparm('login.alink',$domain);
                    312:     my $mainbg=&Apache::loncommon::designparm('login.mainbg',$domain);
                    313:     my $loginbox_bg=&Apache::loncommon::designparm('login.sidebg',$domain);
                    314:     my $loginbox_header_bgcol=&Apache::loncommon::designparm('login.bgcol',$domain);
                    315:     my $loginbox_header_textcol=&Apache::loncommon::designparm('login.textcol',$domain);
                    316:     my $logo=&Apache::loncommon::designparm('login.logo',$domain);
                    317:     my $img=&Apache::loncommon::designparm('login.img',$domain);
                    318:     my $domainlogo=&Apache::loncommon::domainlogo($domain);
                    319:     my $showbanner = 1;
                    320:     my $showmainlogo = 1;
                    321:     if (defined(&Apache::loncommon::designparm('login.showlogo_img',$domain))) {
                    322:         $showbanner = &Apache::loncommon::designparm('login.showlogo_img',$domain);
                    323:     }
                    324:     if (defined(&Apache::loncommon::designparm('login.showlogo_logo',$domain))) {
                    325:         $showmainlogo = &Apache::loncommon::designparm('login.showlogo_logo',$domain);
                    326:     }
                    327:     my $showadminmail;
                    328:     my @possdoms = &Apache::lonnet::current_machine_domains();
                    329:     if (grep(/^\Q$domain\E$/,@possdoms)) {
                    330:         $showadminmail=&Apache::loncommon::designparm('login.adminmail',$domain);
                    331:     }
                    332:     my $showcoursecat =
                    333:         &Apache::loncommon::designparm('login.coursecatalog',$domain);
                    334:     my $shownewuserlink = 
                    335:         &Apache::loncommon::designparm('login.newuser',$domain);
                    336:     my $showhelpdesk =
                    337:         &Apache::loncommon::designparm('login.helpdesk',$domain);
                    338:     my $now=time;
                    339:     my $js = (<<ENDSCRIPT);
                    340: 
                    341: <script type="text/javascript" language="JavaScript">
                    342: // <![CDATA[
                    343: function send()
                    344: {
                    345: this.document.server.elements.uname.value
                    346: =this.document.client.elements.uname.value;
                    347: 
                    348: this.document.server.elements.udom.value
                    349: =this.document.client.elements.udom.value;
                    350: 
                    351: uextkey=this.document.client.elements.uextkey.value;
                    352: lextkey=this.document.client.elements.lextkey.value;
                    353: initkeys();
                    354: 
                    355: if(this.document.server.action.substr(0,5) === 'http:'){
1.165     raeburn   356:     this.document.server.elements.upass0.value
                    357:         =getCrypted(this.document.client.elements.upass$now.value);
1.166     raeburn   358: } else {
                    359:     this.document.server.elements.upass0.value
                    360:         =this.document.client.elements.upass$now.value;
1.167   ! raeburn   361: }
1.160     kruse     362: 
                    363: this.document.client.elements.uname.value='';
                    364: this.document.client.elements.upass$now.value='';
                    365: 
                    366: this.document.server.submit();
                    367: return false;
                    368: }
                    369: 
                    370: function enableInput() {
                    371:     this.document.client.elements.upass$now.removeAttribute("readOnly");
                    372:     this.document.client.elements.uname.removeAttribute("readOnly");
                    373:     this.document.client.elements.udom.removeAttribute("readOnly");
                    374:     return;
                    375: }
                    376: 
                    377: // ]]>
                    378: </script>
                    379: 
                    380: ENDSCRIPT
                    381: 
                    382: # --------------------------------------------------- Print login screen header
                    383: 
                    384:     my %add_entries = (
                    385: 	       bgcolor      => "$mainbg",
                    386: 	       text         => "$font",
                    387: 	       link         => "$link",
                    388: 	       vlink        => "$vlink",
                    389: 	       alink        => "$alink",
                    390:                onload       => 'javascript:enableInput();',);
                    391: 
1.164     raeburn   392:     my ($lonhost_in_use,$headextra,$headextra_exempt,@hosts,%defaultdomconf);
                    393:     @hosts = &Apache::lonnet::current_machine_ids();
                    394:     $lonhost_in_use = $lonhost;
1.163     raeburn   395:     if (@hosts > 1) {
                    396:         foreach my $hostid (@hosts) {
                    397:             if (&Apache::lonnet::host_domain($hostid) eq $defdom) {
                    398:                 $lonhost_in_use = $hostid;
                    399:                 last;
                    400:             }
                    401:         }
                    402:     }
1.164     raeburn   403:     %defaultdomconf = &Apache::loncommon::get_domainconf($defdom);
                    404:     $headextra = $defaultdomconf{$defdom.'.login.headtag_'.$lonhost_in_use};
                    405:     $headextra_exempt = $defaultdomconf{$domain.'.login.headtag_exempt_'.$lonhost_in_use};
1.161     raeburn   406:     if ($headextra) {
                    407:         my $omitextra;
                    408:         if ($headextra_exempt ne '') {
                    409:             my @exempt = split(',',$headextra_exempt);
                    410:             my $ip = $ENV{'REMOTE_ADDR'};
                    411:             if (grep(/^\Q$ip\E$/,@exempt)) {
                    412:                 $omitextra = 1;
                    413:             }
                    414:         }
                    415:         unless ($omitextra) {
                    416:             my $confname = $defdom.'-domainconfig';
1.163     raeburn   417:             if ($headextra =~ m{^\Q/res/$defdom/$confname/login/headtag/$lonhost_in_use/\E}) {
1.161     raeburn   418:                 my $extra = &Apache::lonnet::getfile(&Apache::lonnet::filelocation("",$headextra));
                    419:                 unless ($extra eq '-1') {
                    420:                     $js .= "\n".$extra."\n";
                    421:                 }
                    422:             }
                    423:         }
                    424:     }
                    425: 
1.160     kruse     426:     $r->print(&Apache::loncommon::start_page('The LearningOnline Network with CAPA Login',$js,
                    427: 			       { 'redirect'       => [$expire,'/adm/roles'], 
                    428: 				 'add_entries' => \%add_entries,
                    429: 				 'only_body'   => 1,}));
                    430: 
                    431: # ----------------------------------------------------------------------- Texts
                    432: 
                    433:     my %lt=&Apache::lonlocal::texthash(
                    434:           'un'       => 'Username',
                    435:           'pw'       => 'Password',
                    436:           'dom'      => 'Domain',
                    437:           'perc'     => 'percent',
                    438:           'load'     => 'Server Load',
                    439:           'userload' => 'User Load',
                    440:           'catalog'  => 'Course/Community Catalog',
                    441:           'log'      => 'Log in',
                    442:           'help'     => 'Log-in Help',
                    443:           'serv'     => 'Server',
                    444:           'servadm'  => 'Server Administration',
                    445:           'helpdesk' => 'Contact Helpdesk',
                    446:           'forgotpw' => 'Forgot password?',
                    447:           'newuser'  => 'New User?',
                    448:        );
                    449: # -------------------------------------------------- Change password field name
                    450: 
                    451:     my $forgotpw = &forgotpwdisplay(%lt);
                    452:     $forgotpw .= '<br />' if $forgotpw;
                    453:     my $loginhelp = &Apache::lonauth::loginhelpdisplay($authdomain);
                    454:     if ($loginhelp) {
                    455:         $loginhelp = '<a href="'.$loginhelp.'">'.$lt{'help'}.'</a><br />';
                    456:     }
                    457: 
                    458: # ---------------------------------------------------- Serve out DES JavaScript
                    459:     {
                    460:     my $jsh=Apache::File->new($include."/londes.js");
                    461:     $r->print(<$jsh>);
                    462:     }
                    463: # ---------------------------------------------------------- Serve rest of page
                    464: 
                    465:     $r->print(
                    466:     '<div class="LC_Box"'
                    467:    .' style="margin:0 auto; padding:10px; width:90%; height: auto; background-color:#FFFFFF;">'
                    468: );
                    469: 
                    470:     $r->print(<<ENDSERVERFORM);
                    471: <form name="server" action="/adm/authenticate" method="post" target="_top">
                    472:    <input type="hidden" name="logtoken" value="$logtoken" />
                    473:    <input type="hidden" name="serverid" value="$lonhost" />
                    474:    <input type="hidden" name="uname" value="" />
                    475:    <input type="hidden" name="upass0" value="" />
                    476:    <input type="hidden" name="udom" value="" />
                    477:    <input type="hidden" name="localpath" value="$env{'form.localpath'}" />
                    478:    <input type="hidden" name="localres" value="$env{'form.localres'}" />
                    479:   </form>
                    480: ENDSERVERFORM
                    481:     my $coursecatalog;
                    482:     if (($showcoursecat eq '') || ($showcoursecat)) {
                    483:         $coursecatalog = &coursecatalog_link($lt{'catalog'}).'<br />';
                    484:     }
                    485:     my $newuserlink;
                    486:     if ($shownewuserlink) {
                    487:         $newuserlink = &newuser_link($lt{'newuser'}).'<br />';
                    488:     }
                    489:     my $logintitle =
                    490:         '<h2 class="LC_hcell"'
                    491:        .' style="background:'.$loginbox_header_bgcol.';'
                    492:        .' color:'.$loginbox_header_textcol.'">'
                    493:        .$lt{'log'}
                    494:        .'</h2>';
                    495: 
                    496:     my $noscript_warning='<noscript><span class="LC_warning"><b>'
                    497:                         .&mt('Use of LON-CAPA requires Javascript to be enabled in your web browser.')
                    498:                         .'</b></span></noscript>';
                    499:     my $helpdeskscript;
                    500:     my $contactblock = &contactdisplay(\%lt,$servadm,$showadminmail,
                    501:                                        $authdomain,\$helpdeskscript,
                    502:                                        $showhelpdesk,\@possdoms);
                    503: 
                    504:     my $mobileargs;
                    505:     if ($clientmobile) {
                    506:         $mobileargs = 'autocapitalize="off" autocorrect="off"'; 
                    507:     }
                    508:     my $loginform=(<<LFORM);
                    509: <form name="client" action="" onsubmit="return(send())">
                    510:   <input type="hidden" name="lextkey" value="$lextkey" />
                    511:   <input type="hidden" name="uextkey" value="$uextkey" />
                    512:   <b><label for="uname">$lt{'un'}</label>:</b><br />
                    513:   <input type="text" name="uname" id="uname" size="15" value="$authusername" readonly="readonly" $mobileargs /><br />
                    514:   <b><label for="upass$now">$lt{'pw'}</label>:</b><br />
                    515:   <input type="password" name="upass$now" id="upass$now" size="15" readonly="readonly" /><br />
                    516:   <b><label for="udom">$lt{'dom'}</label>:</b><br />
                    517:   <input type="text" name="udom" id="udom" size="15" value="$authdomain" readonly="readonly" $mobileargs /><br />
                    518:   <input type="submit" value="$lt{'log'}" />
                    519: </form>
                    520: LFORM
                    521: 
                    522:     if ($showbanner) {
                    523:         $r->print(<<HEADER);
                    524: <!-- The LON-CAPA Header -->
                    525: <div style="background:$pgbg;margin:0;width:100%;">
                    526:   <img src="$img" border="0" alt="The Learning Online Network with CAPA" />
                    527: </div>
                    528: HEADER
                    529:     }
                    530:     $r->print(<<ENDTOP);
                    531: <div style="float:left;margin-top:0;">
                    532: <div class="LC_Box" style="background:$loginbox_bg;">
                    533:   $logintitle
                    534:   $loginform
                    535:   $noscript_warning
                    536: </div>
                    537:   
                    538: <div class="LC_Box" style="padding-top: 10px;">
                    539:   $loginhelp
                    540:   $forgotpw
                    541:   $contactblock
                    542:   $newuserlink
                    543:   $coursecatalog
                    544: </div>
                    545: </div>
                    546: 
                    547: <div>
                    548: ENDTOP
                    549:     if ($showmainlogo) {
                    550:         $r->print(' <img src="'.$logo.'" alt="" />'."\n");
                    551:     }
                    552: $r->print(<<ENDTOP);
                    553: $announcements
                    554: </div>
                    555: <hr style="clear:both;" />
                    556: ENDTOP
                    557:     my ($domainrow,$serverrow,$loadrow,$userloadrow,$versionrow);
                    558:     $domainrow = <<"END";
                    559:       <tr>
                    560:        <td  align="left" valign="top">
                    561:         <small><b>$lt{'dom'}:&nbsp;</b></small>
                    562:        </td>
                    563:        <td  align="left" valign="top">
                    564:         <small><tt>&nbsp;$domain</tt></small>
                    565:        </td>
                    566:       </tr>
                    567: END
                    568:     $serverrow = <<"END";
                    569:       <tr>
                    570:        <td  align="left" valign="top">
                    571:         <small><b>$lt{'serv'}:&nbsp;</b></small>
                    572:        </td>
                    573:        <td align="left" valign="top">
                    574:         <small><tt>&nbsp;$lonhost ($role)</tt></small>
                    575:        </td>
                    576:       </tr>
                    577: END
                    578:     if ($loadlim) {
                    579:         $loadrow = <<"END";
                    580:       <tr>
                    581:        <td align="left" valign="top">
                    582:         <small><b>$lt{'load'}:&nbsp;</b></small>
                    583:        </td>
                    584:        <td align="left" valign="top">
                    585:         <small><tt>&nbsp;$loadpercent $lt{'perc'}</tt></small>
                    586:        </td>
                    587:       </tr>
                    588: END
                    589:     }
                    590:     if ($uloadlim) {
                    591:         $userloadrow = <<"END";
                    592:       <tr>
                    593:        <td align="left" valign="top">
                    594:         <small><b>$lt{'userload'}:&nbsp;</b></small>
                    595:        </td>
                    596:        <td align="left" valign="top">
                    597:         <small><tt>&nbsp;$userloadpercent $lt{'perc'}</tt></small>
                    598:        </td>
                    599:       </tr>
                    600: END
                    601:     }
                    602:     if (($version ne '') && ($version ne '<!-- VERSION -->')) {
                    603:         $versionrow = <<"END";
                    604:       <tr>
                    605:        <td colspan="2" align="left">
                    606:         <small>$version</small>
                    607:        </td>
                    608:       </tr>
                    609: END
                    610:     }
                    611: 
                    612:     $r->print(<<ENDDOCUMENT);
                    613:     <div style="float: left;">
                    614:      <table border="0" cellspacing="0" cellpadding="0">
                    615: $domainrow
                    616: $serverrow
                    617: $loadrow    
                    618: $userloadrow
                    619: $versionrow
                    620:      </table>
                    621:     </div>
                    622:     <div style="float: right;">
                    623:     $domainlogo
                    624:     </div>
                    625:     <br style="clear:both;" />
                    626:  </div>
                    627: 
                    628: <script type="text/javascript">
                    629: // <![CDATA[
                    630: // the if prevents the script error if the browser can not handle this
                    631: if ( document.client.uname ) { document.client.uname.focus(); }
                    632: // ]]>
                    633: </script>
                    634: $helpdeskscript
                    635: 
                    636: ENDDOCUMENT
                    637:     my %endargs = ( 'noredirectlink' => 1, );
                    638:     $r->print(&Apache::loncommon::end_page(\%endargs));
                    639:     return OK;
                    640: }
                    641: 
                    642: sub check_loginvia {
                    643:     my ($domain,$lonhost) = @_;
                    644:     if ($domain eq '' || $lonhost eq '') {
                    645:         return;
                    646:     }
                    647:     my %domconfhash = &Apache::loncommon::get_domainconf($domain);
                    648:     my $loginvia = $domconfhash{$domain.'.login.loginvia_'.$lonhost};
                    649:     my $loginvia_exempt = $domconfhash{$domain.'.login.loginvia_exempt_'.$lonhost};
                    650:     my $output;
                    651:     if ($loginvia ne '') {
                    652:         my $noredirect;
                    653:         my $ip = $ENV{'REMOTE_ADDR'};
                    654:         if ($ip eq '127.0.0.1') {
                    655:             $noredirect = 1;
                    656:         } else {
                    657:             if ($loginvia_exempt ne '') {
                    658:                 my @exempt = split(',',$loginvia_exempt);
                    659:                 if (grep(/^\Q$ip\E$/,@exempt)) {
                    660:                     $noredirect = 1;
                    661:                 }
                    662:             }
                    663:         }
                    664:         unless ($noredirect) {
                    665:             my ($newhost,$path);
                    666:             if ($loginvia =~ /:/) {
                    667:                 ($newhost,$path) = split(':',$loginvia);
                    668:             } else {
                    669:                 $newhost = $loginvia;
                    670:             }
                    671:             if ($newhost ne $lonhost) {
                    672:                 if (&Apache::lonnet::hostname($newhost) ne '') {
                    673:                     $output = &redirect_page($newhost,$path);
                    674:                 }
                    675:             }
                    676:         }
                    677:     }
                    678:     return $output;
                    679: }
                    680: 
                    681: sub redirect_page {
                    682:     my ($desthost,$path) = @_;
                    683:     my $protocol = $Apache::lonnet::protocol{$desthost};
                    684:     $protocol = 'http' if ($protocol ne 'https');
                    685:     unless ($path =~ m{^/}) {
                    686:         $path = '/'.$path;
                    687:     }
                    688:     my $url = $protocol.'://'.&Apache::lonnet::hostname($desthost).$path;
                    689:     if ($env{'form.firsturl'} ne '') {
                    690:         $url .='?firsturl='.$env{'form.firsturl'};
                    691:     }
                    692:     my $start_page = &Apache::loncommon::start_page('Switching Server ...',undef,
                    693:                                                     {'redirect' => [0,$url],});
                    694:     my $end_page   = &Apache::loncommon::end_page();
                    695:     return $start_page.$end_page;
                    696: }
                    697: 
                    698: sub contactdisplay {
                    699:     my ($lt,$servadm,$showadminmail,$authdomain,$helpdeskscript,$showhelpdesk,
                    700:         $possdoms) = @_;
                    701:     my $contactblock;
                    702:     my $origmail;
                    703:     if (ref($possdoms) eq 'ARRAY') {
                    704:         if (grep(/^\Q$authdomain\E$/,@{$possdoms})) { 
                    705:             $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
                    706:         }
                    707:     }
                    708:     my $requestmail = 
                    709:         &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
                    710:                                                  $authdomain,$origmail);
                    711:     unless ($showhelpdesk eq '0') {
                    712:         if ($requestmail =~ m/[^\@]+\@[^\@]+/) {
                    713:             $showhelpdesk = 1;
                    714:         } else {
                    715:             $showhelpdesk = 0;
                    716:         }
                    717:     }
                    718:     if ($servadm && $showadminmail) {
                    719:         $contactblock .= $$lt{'servadm'}.':<br />'.
                    720:                          '<tt>'.$servadm.'</tt><br />';
                    721:     }
                    722:     if ($showhelpdesk) {
                    723:         $contactblock .= '<a href="javascript:helpdesk()">'.$lt->{'helpdesk'}.'</a><br />';
                    724:         my $thisurl = &escape('/adm/login');
                    725:         $$helpdeskscript = <<"ENDSCRIPT";
                    726: <script type="text/javascript">
                    727: // <![CDATA[
                    728: function helpdesk() {
                    729:     var possdom = document.client.udom.value;
                    730:     var codedom = possdom.replace( new RegExp("[^A-Za-z0-9.\\-]","g"),'');
                    731:     if (codedom == '') {
                    732:         codedom = "$authdomain";
                    733:     }
                    734:     var querystr = "origurl=$thisurl&codedom="+codedom;
                    735:     document.location.href = "/adm/helpdesk?"+querystr;
                    736:     return;
                    737: }
                    738: // ]]>
                    739: </script>
                    740: ENDSCRIPT
                    741:     }
                    742:     return $contactblock;
                    743: }
                    744: 
                    745: sub forgotpwdisplay {
                    746:     my (%lt) = @_;
                    747:     my $prompt_for_resetpw = 1; 
                    748:     if ($prompt_for_resetpw) {
                    749:         return '<a href="/adm/resetpw">'.$lt{'forgotpw'}.'</a>';
                    750:     }
                    751:     return;
                    752: }
                    753: 
                    754: sub coursecatalog_link {
                    755:     my ($linkname) = @_;
                    756:     return <<"END";
                    757:       <a href="/adm/coursecatalog">$linkname</a>
                    758: END
                    759: }
                    760: 
                    761: sub newuser_link {
                    762:     my ($linkname) = @_;
                    763:     return '<a href="/adm/createaccount">'.$linkname.'</a>';
                    764: }
                    765: 
                    766: 1;
                    767: __END__

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