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