Annotation of loncom/auth/lonlogin.pm, revision 1.154
1.1 albertel 1: # The LearningOnline Network
2: # Login Screen
1.11 www 3: #
1.154 ! raeburn 4: # $Id: lonlogin.pm,v 1.153 2013/01/11 17:35:10 raeburn Exp $
1.11 www 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: #
1.14 albertel 28:
1.1 albertel 29: package Apache::lonlogin;
30:
31: use strict;
32: use Apache::Constants qw(:common);
33: use Apache::File ();
1.63 albertel 34: use Apache::lonnet;
1.12 albertel 35: use Apache::loncommon();
1.49 www 36: use Apache::lonauth();
1.50 www 37: use Apache::lonlocal;
1.71 albertel 38: use Apache::migrateuser();
1.75 www 39: use lib '/home/httpd/lib/perl/';
40: use LONCAPA;
41:
1.1 albertel 42: sub handler {
43: my $r = shift;
1.71 albertel 44:
45: &Apache::loncommon::get_unprocessed_cgi
1.79 albertel 46: (join('&',$ENV{'QUERY_STRING'},$env{'request.querystring'},
47: $ENV{'REDIRECT_QUERY_STRING'}),
1.71 albertel 48: ['interface','username','domain','firsturl','localpath','localres',
1.123 raeburn 49: 'token','role','symb']);
1.102 raeburn 50: if (!defined($env{'form.firsturl'})) {
51: &Apache::lonacc::get_posted_cgi($r,['firsturl']);
52: }
1.71 albertel 53:
54: # -- check if they are a migrating user
55: if (defined($env{'form.token'})) {
56: return &Apache::migrateuser::handler($r);
57: }
58:
1.53 www 59: &Apache::loncommon::no_cache($r);
60: &Apache::lonlocal::get_language_handle($r);
1.54 www 61: &Apache::loncommon::content_type($r,'text/html');
1.1 albertel 62: $r->send_http_header;
63: return OK if $r->header_only;
64:
1.49 www 65:
66: # Are we re-routing?
1.149 raeburn 67: my $londocroot = $r->dir_config('lonDocRoot');
68: if (-e "$londocroot/lon-status/reroute.txt") {
1.49 www 69: &Apache::lonauth::reroute($r);
70: return OK;
71: }
1.55 www 72:
1.143 raeburn 73: $env{'form.firsturl'} =~ s/(`)/'/g;
1.71 albertel 74:
1.55 www 75: # -------------------------------- Prevent users from attempting to login twice
1.95 albertel 76: my $handle = &Apache::lonnet::check_for_valid_session($r);
1.135 raeburn 77: if ($handle ne '') {
78: my $lonidsdir=$r->dir_config('lonIDsDir');
79: if ($handle=~/^publicuser\_/) {
1.70 www 80: # For "public user" - remove it, we apparently really want to login
1.135 raeburn 81: unlink($r->dir_config('lonIDsDir')."/$handle.id");
82: } else {
1.55 www 83: # Indeed, a valid token is found
1.135 raeburn 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(
1.100 bisitz 94: $start_page
1.150 golterma 95: .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
1.117 hauer 96: .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].',
1.125 raeburn 97: '<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>').'</p>'
1.135 raeburn 98: .$end_page
1.100 bisitz 99: );
1.135 raeburn 100: return OK;
101: }
1.55 www 102: }
103:
104: # ---------------------------------------------------- No valid token, continue
1.16 www 105:
1.70 www 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: }
1.32 www 111: # ----------------------------------------------------------- Process Interface
1.63 albertel 112: $env{'form.interface'}=~s/\W//g;
1.16 www 113:
1.32 www 114: my $httpbrowser=$ENV{"HTTP_USER_AGENT"};
1.94 albertel 115:
116: my $iconpath=
117: &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL'));
118:
1.126 raeburn 119: my $lonhost = $r->dir_config('lonHostID');
1.87 raeburn 120: my $domain = &Apache::lonnet::default_login_domain();
1.126 raeburn 121: if ($lonhost ne '') {
1.133 raeburn 122: my $redirect = &check_loginvia($domain,$lonhost);
123: if ($redirect) {
124: $r->print($redirect);
125: return OK;
126: }
1.126 raeburn 127: }
128:
1.63 albertel 129: if (($env{'form.domain'}) &&
1.89 albertel 130: (&Apache::lonnet::domain($env{'form.domain'},'description'))) {
1.63 albertel 131: $domain=$env{'form.domain'};
1.46 www 132: }
1.1 albertel 133: my $role = $r->dir_config('lonRole');
134: my $loadlim = $r->dir_config('lonLoadLim');
1.145 www 135: my $uloadlim= $r->dir_config('lonUserLoadLim');
1.90 raeburn 136: my $servadm = $r->dir_config('lonAdmEMail');
1.1 albertel 137: my $tabdir = $r->dir_config('lonTabDir');
1.6 www 138: my $include = $r->dir_config('lonIncludes');
1.37 www 139: my $expire = $r->dir_config('lonExpire');
1.44 www 140: my $version = $r->dir_config('lonVersion');
1.88 albertel 141: my $host_name = &Apache::lonnet::hostname($lonhost);
1.1 albertel 142:
1.30 www 143: # --------------------------------------------- Default values for login fields
144:
1.63 albertel 145: my $authusername=($env{'form.username'}?$env{'form.username'}:'');
146: my $authdomain=($env{'form.domain'}?$env{'form.domain'}:$domain);
1.30 www 147:
148: # ---------------------------------------------------------- Determine own load
1.1 albertel 149: my $loadavg;
1.41 albertel 150: {
151: my $loadfile=Apache::File->new('/proc/loadavg');
152: $loadavg=<$loadfile>;
153: }
1.1 albertel 154: $loadavg =~ s/\s.*//g;
1.147 raeburn 155:
156: my ($loadpercent,$userloadpercent);
157: if ($loadlim) {
158: $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
159: }
160: if ($uloadlim) {
161: $userloadpercent=&Apache::lonnet::userload();
162: }
1.1 albertel 163:
1.31 www 164: my $firsturl=
1.63 albertel 165: ($env{'request.firsturl'}?$env{'request.firsturl'}:$env{'form.firsturl'});
1.141 raeburn 166:
1.45 www 167: # ----------------------------------------------------------- Get announcements
168: my $announcements=&Apache::lonnet::getannounce();
1.6 www 169: # -------------------------------------------------------- Set login parameters
170:
171: my @hexstr=('0','1','2','3','4','5','6','7',
172: '8','9','a','b','c','d','e','f');
173: my $lkey='';
174: for (0..7) {
175: $lkey.=$hexstr[rand(15)];
176: }
177:
178: my $ukey='';
179: for (0..7) {
180: $ukey.=$hexstr[rand(15)];
181: }
182:
183: my $lextkey=hex($lkey);
1.15 www 184: if ($lextkey>2147483647) { $lextkey-=4294967296; }
185:
1.6 www 186: my $uextkey=hex($ukey);
1.15 www 187: if ($uextkey>2147483647) { $uextkey-=4294967296; }
188:
1.31 www 189: # -------------------------------------------------------- Store away log token
1.123 raeburn 190: my $tokenextras;
191: if ($env{'form.role'}) {
192: $tokenextras = '&role='.&escape($env{'form.role'});
193: }
194: if ($env{'form.symb'}) {
1.124 raeburn 195: if (!$tokenextras) {
196: $tokenextras = '&';
197: }
1.123 raeburn 198: $tokenextras .= '&symb='.&escape($env{'form.symb'});
199: }
1.6 www 200: my $logtoken=Apache::lonnet::reply(
1.123 raeburn 201: 'tmpput:'.$ukey.$lkey.'&'.$firsturl.$tokenextras,
1.6 www 202: $lonhost);
1.31 www 203:
1.148 raeburn 204: # -- If we cannot talk to ourselves, or hostID does not map to a hostname
205: # we are in serious trouble
1.31 www 206:
1.148 raeburn 207: if (($logtoken eq 'con_lost') || ($logtoken eq 'no_such_host')) {
208: if ($logtoken eq 'no_such_host') {
209: &Apache::lonnet::logthis('No valid logtoken for log-in page -- unable to determine hostname for hostID: '.$lonhost.'. Check entry in hosts.tab');
210: }
1.31 www 211: my $spares='';
1.64 albertel 212: my $last;
213: foreach my $hostid (sort
214: {
1.88 albertel 215: &Apache::lonnet::hostname($a) cmp
216: &Apache::lonnet::hostname($b);
1.64 albertel 217: }
218: keys(%Apache::lonnet::spareid)) {
1.58 matthew 219: next if ($hostid eq $lonhost);
1.88 albertel 220: my $hostname = &Apache::lonnet::hostname($hostid);
1.148 raeburn 221: next if (($last eq $hostname) || ($hostname eq ''));
1.58 matthew 222: $spares.='<br /><font size="+1"><a href="http://'.
1.88 albertel 223: $hostname.
1.58 matthew 224: '/adm/login?domain='.$authdomain.'">'.
1.88 albertel 225: $hostname.'</a>'.
1.106 bisitz 226: ' '.&mt('(preferred)').'</font>'.$/;
1.88 albertel 227: $last=$hostname;
1.58 matthew 228: }
1.148 raeburn 229: if ($spares) {
230: $spares.= '<br />';
231: }
1.151 raeburn 232: my %all_hostnames = &Apache::lonnet::all_hostnames();
233: foreach my $hostid (sort
1.107 tempelho 234: {
235: &Apache::lonnet::hostname($a) cmp
236: &Apache::lonnet::hostname($b);
237: }
238: keys(%all_hostnames)) {
1.151 raeburn 239: next if ($hostid eq $lonhost || $Apache::lonnet::spareid{$hostid});
240: my $hostname = &Apache::lonnet::hostname($hostid);
241: next if (($last eq $hostname) || ($hostname eq ''));
242: $spares.='<br /><a href="http://'.
243: $hostname.
244: '/adm/login?domain='.$authdomain.'">'.
245: $hostname.'</a>';
246: $last=$hostname;
247: }
248: $r->print(
1.107 tempelho 249: '<html>'
250: .'<head><title>'
251: .&mt('The LearningOnline Network with CAPA')
252: .'</title></head>'
253: .'<body bgcolor="#FFFFFF">'
254: .'<h1>'.&mt('The LearningOnline Network with CAPA').'</h1>'
255: .'<img src="/adm/lonKaputt/lonlogo_broken.gif" align="right" />'
1.148 raeburn 256: .'<h3>'.&mt('This LON-CAPA server is temporarily not available for login.').'</h3>');
1.151 raeburn 257: if ($spares) {
258: $r->print('<p>'.&mt('Please attempt to login to one of the following servers:')
259: .'</p>'
260: .$spares);
261: }
262: $r->print('</body>'
263: .'</html>'
264: );
265: return OK;
266: }
1.31 www 267:
268: # ----------------------------------------------- Apparently we are in business
1.151 raeburn 269: $servadm=~s/\,/\<br \/\>/g;
1.38 www 270:
1.21 www 271: # ----------------------------------------------------------- Front page design
1.151 raeburn 272: my $pgbg=&Apache::loncommon::designparm('login.pgbg',$domain);
273: my $font=&Apache::loncommon::designparm('login.font',$domain);
274: my $link=&Apache::loncommon::designparm('login.link',$domain);
275: my $vlink=&Apache::loncommon::designparm('login.vlink',$domain);
276: my $alink=&Apache::loncommon::designparm('login.alink',$domain);
277: my $mainbg=&Apache::loncommon::designparm('login.mainbg',$domain);
278: my $loginbox_bg=&Apache::loncommon::designparm('login.sidebg',$domain);
279: my $loginbox_header_bgcol=&Apache::loncommon::designparm('login.bgcol',$domain);
280: my $loginbox_header_textcol=&Apache::loncommon::designparm('login.textcol',$domain);
281: my $logo=&Apache::loncommon::designparm('login.logo',$domain);
282: my $img=&Apache::loncommon::designparm('login.img',$domain);
283: my $domainlogo=&Apache::loncommon::domainlogo($domain);
284: my $showbanner = 1;
285: my $showmainlogo = 1;
286: if (defined(&Apache::loncommon::designparm('login.showlogo_img',$domain))) {
287: $showbanner = &Apache::loncommon::designparm('login.showlogo_img',$domain);
288: }
289: if (defined(&Apache::loncommon::designparm('login.showlogo_logo',$domain))) {
290: $showmainlogo = &Apache::loncommon::designparm('login.showlogo_logo',$domain);
291: }
1.153 raeburn 292: my $showadminmail;
293: my @possdoms = &Apache::lonnet::current_machine_domains();
294: if (grep(/^\Q$domain\E$/,@possdoms)) {
295: $showadminmail=&Apache::loncommon::designparm('login.adminmail',$domain);
296: }
1.151 raeburn 297: my $showcoursecat =
298: &Apache::loncommon::designparm('login.coursecatalog',$domain);
299: my $shownewuserlink =
300: &Apache::loncommon::designparm('login.newuser',$domain);
1.153 raeburn 301: my $showhelpdesk =
302: &Apache::loncommon::designparm('login.helpdesk',$domain);
1.151 raeburn 303: my $now=time;
304: my $js = (<<ENDSCRIPT);
1.107 tempelho 305:
1.116 bisitz 306: <script type="text/javascript" language="JavaScript">
1.122 bisitz 307: // <![CDATA[
1.107 tempelho 308: function send()
309: {
310: this.document.server.elements.uname.value
311: =this.document.client.elements.uname.value;
312:
313: this.document.server.elements.udom.value
314: =this.document.client.elements.udom.value;
315:
316: uextkey=this.document.client.elements.uextkey.value;
317: lextkey=this.document.client.elements.lextkey.value;
318: initkeys();
319:
320: this.document.server.elements.upass0.value
321: =crypted(this.document.client.elements.upass$now.value.substr(0,15));
322: this.document.server.elements.upass1.value
323: =crypted(this.document.client.elements.upass$now.value.substr(15,15));
324: this.document.server.elements.upass2.value
325: =crypted(this.document.client.elements.upass$now.value.substr(30,15));
1.6 www 326:
1.107 tempelho 327: this.document.client.elements.uname.value='';
328: this.document.client.elements.upass$now.value='';
1.6 www 329:
1.107 tempelho 330: this.document.server.submit();
331: return false;
332: }
1.139 raeburn 333:
334: function enableInput() {
1.144 bisitz 335: this.document.client.elements.upass$now.removeAttribute("readOnly");
336: this.document.client.elements.uname.removeAttribute("readOnly");
337: this.document.client.elements.udom.removeAttribute("readOnly");
1.139 raeburn 338: return;
339: }
340:
1.122 bisitz 341: // ]]>
1.107 tempelho 342: </script>
1.98 raeburn 343:
1.16 www 344: ENDSCRIPT
1.6 www 345:
1.98 raeburn 346: # --------------------------------------------------- Print login screen header
347:
1.151 raeburn 348: my %add_entries = (
1.108 tempelho 349: bgcolor => "$mainbg",
1.107 tempelho 350: text => "$font",
351: link => "$link",
352: vlink => "$vlink",
1.139 raeburn 353: alink => "$alink",
354: onload => 'javascript:enableInput();',);
1.107 tempelho 355:
1.151 raeburn 356: $r->print(&Apache::loncommon::start_page('The LearningOnline Network with CAPA Login',$js,
1.107 tempelho 357: { 'redirect' => [$expire,'/adm/roles'],
358: 'add_entries' => \%add_entries,
359: 'only_body' => 1,}));
1.98 raeburn 360:
361: # ----------------------------------------------------------------------- Texts
362:
1.151 raeburn 363: my %lt=&Apache::lonlocal::texthash(
1.129 bisitz 364: 'un' => 'Username',
365: 'pw' => 'Password',
366: 'dom' => 'Domain',
367: 'perc' => 'percent',
368: 'load' => 'Server Load',
369: 'userload' => 'User Load',
370: 'catalog' => 'Course/Community Catalog',
371: 'log' => 'Log in',
372: 'help' => 'Log-in Help',
373: 'serv' => 'Server',
374: 'servadm' => 'Server Administration',
375: 'helpdesk' => 'Contact Helpdesk',
376: 'forgotpw' => 'Forgot password?',
377: 'newuser' => 'New User?',
378: );
1.98 raeburn 379: # -------------------------------------------------- Change password field name
1.131 jms 380:
1.151 raeburn 381: my $forgotpw = &forgotpwdisplay(%lt);
382: $forgotpw .= '<br />' if $forgotpw;
1.152 raeburn 383: my $loginhelp = &Apache::lonauth::loginhelpdisplay($authdomain);
384: if ($loginhelp) {
385: $loginhelp = '<a href="'.$loginhelp.'">'.$lt{'help'}.'</a><br />';
386: }
1.98 raeburn 387:
388: # ---------------------------------------------------- Serve out DES JavaScript
1.151 raeburn 389: {
390: my $jsh=Apache::File->new($include."/londes.js");
391: $r->print(<$jsh>);
392: }
1.98 raeburn 393: # ---------------------------------------------------------- Serve rest of page
394:
1.151 raeburn 395: $r->print(
1.137 bisitz 396: '<div class="LC_Box"'
397: .' style="margin:0 auto; padding:10px; width:90%; height: auto; background-color:#FFFFFF;">'
398: );
1.6 www 399:
1.151 raeburn 400: $r->print(<<ENDSERVERFORM);
1.140 raeburn 401: <form name="server" action="/adm/authenticate" method="post" target="_top">
1.33 www 402: <input type="hidden" name="logtoken" value="$logtoken" />
403: <input type="hidden" name="serverid" value="$lonhost" />
404: <input type="hidden" name="uname" value="" />
1.65 www 405: <input type="hidden" name="upass0" value="" />
406: <input type="hidden" name="upass1" value="" />
407: <input type="hidden" name="upass2" value="" />
1.33 www 408: <input type="hidden" name="udom" value="" />
1.63 albertel 409: <input type="hidden" name="localpath" value="$env{'form.localpath'}" />
410: <input type="hidden" name="localres" value="$env{'form.localres'}" />
1.14 albertel 411: </form>
1.16 www 412: ENDSERVERFORM
1.151 raeburn 413: my $coursecatalog;
414: if (($showcoursecat eq '') || ($showcoursecat)) {
415: $coursecatalog = &coursecatalog_link($lt{'catalog'}).'<br />';
416: }
417: my $newuserlink;
418: if ($shownewuserlink) {
419: $newuserlink = &newuser_link($lt{'newuser'}).'<br />';
420: }
421: my $logintitle =
422: '<h2 class="LC_hcell"'
423: .' style="background:'.$loginbox_header_bgcol.';'
424: .' color:'.$loginbox_header_textcol.'">'
425: .$lt{'log'}
426: .'</h2>';
427:
428: my $noscript_warning='<noscript><span class="LC_warning"><b>'
429: .&mt('Use of LON-CAPA requires Javascript to be enabled in your web browser.')
430: .'</b></span></noscript>';
431: my $helpdeskscript;
432: my $contactblock = &contactdisplay(\%lt,$servadm,$showadminmail,
1.153 raeburn 433: $authdomain,\$helpdeskscript,
434: $showhelpdesk,\@possdoms);
1.107 tempelho 435:
1.151 raeburn 436: my $loginform=(<<LFORM);
1.122 bisitz 437: <form name="client" action="" onsubmit="return(send())">
1.115 bisitz 438: <input type="hidden" name="lextkey" value="$lextkey" />
439: <input type="hidden" name="uextkey" value="$uextkey" />
1.108 tempelho 440: <b><label for="uname">$lt{'un'}</label>:</b><br />
1.139 raeburn 441: <input type="text" name="uname" id="uname" size="15" value="$authusername" readonly="readonly" /><br />
1.108 tempelho 442: <b><label for="upass$now">$lt{'pw'}</label>:</b><br />
1.139 raeburn 443: <input type="password" name="upass$now" id="upass$now" size="15" readonly="readonly" /><br />
1.108 tempelho 444: <b><label for="udom">$lt{'dom'}</label>:</b><br />
1.139 raeburn 445: <input type="text" name="udom" id="udom" size="15" value="$authdomain" readonly="readonly" /><br />
1.108 tempelho 446: <input type="submit" value="$lt{'log'}" />
447: </form>
448: LFORM
449:
1.109 raeburn 450: if ($showbanner) {
451: $r->print(<<HEADER);
452: <!-- The LON-CAPA Header -->
1.132 bisitz 453: <div style="background:$pgbg;margin:0;width:100%;">
454: <img src="$img" border="0" alt="The Learning Online Network with CAPA" />
455: </div>
1.109 raeburn 456: HEADER
457: }
458: $r->print(<<ENDTOP);
1.146 bisitz 459: <div style="float:left;margin-top:0;">
1.137 bisitz 460: <div class="LC_Box" style="background:$loginbox_bg;">
1.112 muellerd 461: $logintitle
1.137 bisitz 462: $loginform
463: $noscript_warning
1.108 tempelho 464: </div>
1.107 tempelho 465:
1.137 bisitz 466: <div class="LC_Box" style="padding-top: 10px;">
1.132 bisitz 467: $loginhelp
468: $forgotpw
469: $contactblock
470: $newuserlink
1.130 bisitz 471: $coursecatalog
1.107 tempelho 472: </div>
1.118 tempelho 473: </div>
1.137 bisitz 474:
475: <div>
1.118 tempelho 476: ENDTOP
477: if ($showmainlogo) {
478: $r->print(' <img src="'.$logo.'" alt="" />'."\n");
479: }
480: $r->print(<<ENDTOP);
481: $announcements
1.137 bisitz 482: </div>
483: <hr style="clear:both;" />
1.108 tempelho 484: ENDTOP
1.147 raeburn 485: my ($domainrow,$serverrow,$loadrow,$userloadrow,$versionrow);
486: $domainrow = <<"END";
1.14 albertel 487: <tr>
1.110 muellerd 488: <td align="left" valign="top">
1.132 bisitz 489: <small><b>$lt{'dom'}: </b></small>
1.14 albertel 490: </td>
1.110 muellerd 491: <td align="left" valign="top">
1.14 albertel 492: <small><tt> $domain</tt></small>
493: </td>
494: </tr>
1.147 raeburn 495: END
496: $serverrow = <<"END";
1.14 albertel 497: <tr>
1.110 muellerd 498: <td align="left" valign="top">
1.132 bisitz 499: <small><b>$lt{'serv'}: </b></small>
1.14 albertel 500: </td>
1.110 muellerd 501: <td align="left" valign="top">
1.14 albertel 502: <small><tt> $lonhost ($role)</tt></small>
503: </td>
504: </tr>
1.147 raeburn 505: END
506: if ($loadlim) {
507: $loadrow = <<"END";
1.14 albertel 508: <tr>
1.110 muellerd 509: <td align="left" valign="top">
1.132 bisitz 510: <small><b>$lt{'load'}: </b></small>
1.14 albertel 511: </td>
1.110 muellerd 512: <td align="left" valign="top">
1.51 www 513: <small><tt> $loadpercent $lt{'perc'}</tt></small>
1.42 albertel 514: </td>
515: </tr>
1.147 raeburn 516: END
517: }
518: if ($uloadlim) {
519: $userloadrow = <<"END";
1.42 albertel 520: <tr>
1.110 muellerd 521: <td align="left" valign="top">
1.132 bisitz 522: <small><b>$lt{'userload'}: </b></small>
1.42 albertel 523: </td>
1.110 muellerd 524: <td align="left" valign="top">
1.51 www 525: <small><tt> $userloadpercent $lt{'perc'}</tt></small>
1.14 albertel 526: </td>
527: </tr>
1.147 raeburn 528: END
529: }
530: if (($version ne '') && ($version ne '<!-- VERSION -->')) {
531: $versionrow = <<"END";
1.132 bisitz 532: <tr>
533: <td colspan="2" align="left">
534: <small>$version</small>
535: </td>
536: </tr>
1.147 raeburn 537: END
538: }
539:
1.151 raeburn 540: $r->print(<<ENDDOCUMENT);
1.147 raeburn 541: <div style="float: left;">
542: <table border="0" cellspacing="0" cellpadding="0">
543: $domainrow
544: $serverrow
545: $loadrow
546: $userloadrow
547: $versionrow
1.14 albertel 548: </table>
1.141 raeburn 549: </div>
550: <div style="float: right;">
551: $domainlogo
552: </div>
553: <br style="clear:both;" />
1.107 tempelho 554: </div>
1.25 bowersj2 555:
1.59 albertel 556: <script type="text/javascript">
1.122 bisitz 557: // <![CDATA[
1.59 albertel 558: // the if prevents the script error if the browser can not handle this
1.25 bowersj2 559: if ( document.client.uname ) { document.client.uname.focus(); }
1.122 bisitz 560: // ]]>
1.25 bowersj2 561: </script>
1.62 raeburn 562: $helpdeskscript
1.14 albertel 563:
1.1 albertel 564: ENDDOCUMENT
1.98 raeburn 565: my %endargs = ( 'noredirectlink' => 1, );
566: $r->print(&Apache::loncommon::end_page(\%endargs));
1.1 albertel 567: return OK;
1.60 raeburn 568: }
569:
1.133 raeburn 570: sub check_loginvia {
571: my ($domain,$lonhost) = @_;
572: if ($domain eq '' || $lonhost eq '') {
573: return;
574: }
575: my %domconfhash = &Apache::loncommon::get_domainconf($domain);
576: my $loginvia = $domconfhash{$domain.'.login.loginvia_'.$lonhost};
577: my $loginvia_exempt = $domconfhash{$domain.'.login.loginvia_exempt_'.$lonhost};
578: my $output;
579: if ($loginvia ne '') {
580: my $noredirect;
581: my $ip = $ENV{'REMOTE_ADDR'};
582: if ($ip eq '127.0.0.1') {
583: $noredirect = 1;
584: } else {
585: if ($loginvia_exempt ne '') {
586: my @exempt = split(',',$loginvia_exempt);
587: if (grep(/^\Q$ip\E$/,@exempt)) {
588: $noredirect = 1;
589: }
590: }
591: }
592: unless ($noredirect) {
593: my ($newhost,$path);
594: if ($loginvia =~ /:/) {
595: ($newhost,$path) = split(':',$loginvia);
596: } else {
597: $newhost = $loginvia;
598: }
599: if ($newhost ne $lonhost) {
600: if (&Apache::lonnet::hostname($newhost) ne '') {
601: $output = &redirect_page($newhost,$path);
602: }
603: }
604: }
605: }
606: return $output;
607: }
608:
1.126 raeburn 609: sub redirect_page {
1.133 raeburn 610: my ($desthost,$path) = @_;
1.126 raeburn 611: my $protocol = $Apache::lonnet::protocol{$desthost};
612: $protocol = 'http' if ($protocol ne 'https');
1.133 raeburn 613: unless ($path =~ m{^/}) {
614: $path = '/'.$path;
615: }
616: my $url = $protocol.'://'.&Apache::lonnet::hostname($desthost).$path;
1.126 raeburn 617: if ($env{'form.firsturl'} ne '') {
618: $url .='?firsturl='.$env{'form.firsturl'};
619: }
1.136 raeburn 620: my $start_page = &Apache::loncommon::start_page('Switching Server ...',undef,
1.126 raeburn 621: {'redirect' => [0,$url],});
622: my $end_page = &Apache::loncommon::end_page();
623: return $start_page.$end_page;
624: }
625:
1.60 raeburn 626: sub contactdisplay {
1.153 raeburn 627: my ($lt,$servadm,$showadminmail,$authdomain,$helpdeskscript,$showhelpdesk,
628: $possdoms) = @_;
1.60 raeburn 629: my $contactblock;
1.153 raeburn 630: my $origmail;
631: if (ref($possdoms) eq 'ARRAY') {
632: if (grep(/^\Q$authdomain\E$/,@{$possdoms})) {
633: $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
634: }
635: }
636: my $requestmail =
637: &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
638: $authdomain,$origmail);
1.154 ! raeburn 639: unless ($showhelpdesk eq '0') {
! 640: if ($requestmail =~ m/[^\@]+\@[^\@]+/) {
! 641: $showhelpdesk = 1;
! 642: } else {
1.153 raeburn 643: $showhelpdesk = 0;
644: }
1.62 raeburn 645: }
1.90 raeburn 646: if ($servadm && $showadminmail) {
1.130 bisitz 647: $contactblock .= $$lt{'servadm'}.':<br />'.
648: '<tt>'.$servadm.'</tt><br />';
1.90 raeburn 649: }
1.60 raeburn 650: if ($showhelpdesk) {
1.114 tempelho 651: $contactblock .= '<a href="javascript:helpdesk()">'.$lt->{'helpdesk'}.'</a><br />';
1.75 www 652: my $thisurl = &escape('/adm/login');
1.62 raeburn 653: $$helpdeskscript = <<"ENDSCRIPT";
654: <script type="text/javascript">
1.122 bisitz 655: // <![CDATA[
1.62 raeburn 656: function helpdesk() {
657: var codedom = document.client.udom.value;
658: if (codedom == '') {
659: codedom = "$authdomain";
660: }
661: var querystr = "origurl=$thisurl&codedom="+codedom;
662: document.location.href = "/adm/helpdesk?"+querystr;
663: return;
664: }
1.122 bisitz 665: // ]]>
1.62 raeburn 666: </script>
667: ENDSCRIPT
1.60 raeburn 668: }
669: return $contactblock;
670: }
1.83 raeburn 671:
672: sub forgotpwdisplay {
1.84 raeburn 673: my (%lt) = @_;
1.83 raeburn 674: my $prompt_for_resetpw = 1;
675: if ($prompt_for_resetpw) {
1.107 tempelho 676: return '<a href="/adm/resetpw">'.$lt{'forgotpw'}.'</a>';
1.84 raeburn 677: }
678: return;
679: }
680:
1.90 raeburn 681: sub coursecatalog_link {
682: my ($linkname) = @_;
683: return <<"END";
1.137 bisitz 684: <a href="/adm/coursecatalog">$linkname</a>
1.90 raeburn 685: END
686: }
687:
1.101 raeburn 688: sub newuser_link {
689: my ($linkname) = @_;
1.130 bisitz 690: return '<a href="/adm/createaccount">'.$linkname.'</a>';
1.101 raeburn 691: }
692:
1.1 albertel 693: 1;
694: __END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>