Annotation of loncom/auth/lonlogin.pm, revision 1.165
1.160 kruse 1: # The LearningOnline Network
2: # Login Screen
3: #
1.165 ! raeburn 4: # $Id: lonlogin.pm,v 1.164 2015/06/06 14:39:42 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.160 kruse 358: }
359:
360: this.document.client.elements.uname.value='';
361: this.document.client.elements.upass$now.value='';
362:
363: this.document.server.submit();
364: return false;
365: }
366:
367: function enableInput() {
368: this.document.client.elements.upass$now.removeAttribute("readOnly");
369: this.document.client.elements.uname.removeAttribute("readOnly");
370: this.document.client.elements.udom.removeAttribute("readOnly");
371: return;
372: }
373:
374: // ]]>
375: </script>
376:
377: ENDSCRIPT
378:
379: # --------------------------------------------------- Print login screen header
380:
381: my %add_entries = (
382: bgcolor => "$mainbg",
383: text => "$font",
384: link => "$link",
385: vlink => "$vlink",
386: alink => "$alink",
387: onload => 'javascript:enableInput();',);
388:
1.164 raeburn 389: my ($lonhost_in_use,$headextra,$headextra_exempt,@hosts,%defaultdomconf);
390: @hosts = &Apache::lonnet::current_machine_ids();
391: $lonhost_in_use = $lonhost;
1.163 raeburn 392: if (@hosts > 1) {
393: foreach my $hostid (@hosts) {
394: if (&Apache::lonnet::host_domain($hostid) eq $defdom) {
395: $lonhost_in_use = $hostid;
396: last;
397: }
398: }
399: }
1.164 raeburn 400: %defaultdomconf = &Apache::loncommon::get_domainconf($defdom);
401: $headextra = $defaultdomconf{$defdom.'.login.headtag_'.$lonhost_in_use};
402: $headextra_exempt = $defaultdomconf{$domain.'.login.headtag_exempt_'.$lonhost_in_use};
1.161 raeburn 403: if ($headextra) {
404: my $omitextra;
405: if ($headextra_exempt ne '') {
406: my @exempt = split(',',$headextra_exempt);
407: my $ip = $ENV{'REMOTE_ADDR'};
408: if (grep(/^\Q$ip\E$/,@exempt)) {
409: $omitextra = 1;
410: }
411: }
412: unless ($omitextra) {
413: my $confname = $defdom.'-domainconfig';
1.163 raeburn 414: if ($headextra =~ m{^\Q/res/$defdom/$confname/login/headtag/$lonhost_in_use/\E}) {
1.161 raeburn 415: my $extra = &Apache::lonnet::getfile(&Apache::lonnet::filelocation("",$headextra));
416: unless ($extra eq '-1') {
417: $js .= "\n".$extra."\n";
418: }
419: }
420: }
421: }
422:
1.160 kruse 423: $r->print(&Apache::loncommon::start_page('The LearningOnline Network with CAPA Login',$js,
424: { 'redirect' => [$expire,'/adm/roles'],
425: 'add_entries' => \%add_entries,
426: 'only_body' => 1,}));
427:
428: # ----------------------------------------------------------------------- Texts
429:
430: my %lt=&Apache::lonlocal::texthash(
431: 'un' => 'Username',
432: 'pw' => 'Password',
433: 'dom' => 'Domain',
434: 'perc' => 'percent',
435: 'load' => 'Server Load',
436: 'userload' => 'User Load',
437: 'catalog' => 'Course/Community Catalog',
438: 'log' => 'Log in',
439: 'help' => 'Log-in Help',
440: 'serv' => 'Server',
441: 'servadm' => 'Server Administration',
442: 'helpdesk' => 'Contact Helpdesk',
443: 'forgotpw' => 'Forgot password?',
444: 'newuser' => 'New User?',
445: );
446: # -------------------------------------------------- Change password field name
447:
448: my $forgotpw = &forgotpwdisplay(%lt);
449: $forgotpw .= '<br />' if $forgotpw;
450: my $loginhelp = &Apache::lonauth::loginhelpdisplay($authdomain);
451: if ($loginhelp) {
452: $loginhelp = '<a href="'.$loginhelp.'">'.$lt{'help'}.'</a><br />';
453: }
454:
455: # ---------------------------------------------------- Serve out DES JavaScript
456: {
457: my $jsh=Apache::File->new($include."/londes.js");
458: $r->print(<$jsh>);
459: }
460: # ---------------------------------------------------------- Serve rest of page
461:
462: $r->print(
463: '<div class="LC_Box"'
464: .' style="margin:0 auto; padding:10px; width:90%; height: auto; background-color:#FFFFFF;">'
465: );
466:
467: $r->print(<<ENDSERVERFORM);
468: <form name="server" action="/adm/authenticate" method="post" target="_top">
469: <input type="hidden" name="logtoken" value="$logtoken" />
470: <input type="hidden" name="serverid" value="$lonhost" />
471: <input type="hidden" name="uname" value="" />
472: <input type="hidden" name="upass0" value="" />
473: <input type="hidden" name="udom" value="" />
474: <input type="hidden" name="localpath" value="$env{'form.localpath'}" />
475: <input type="hidden" name="localres" value="$env{'form.localres'}" />
476: </form>
477: ENDSERVERFORM
478: my $coursecatalog;
479: if (($showcoursecat eq '') || ($showcoursecat)) {
480: $coursecatalog = &coursecatalog_link($lt{'catalog'}).'<br />';
481: }
482: my $newuserlink;
483: if ($shownewuserlink) {
484: $newuserlink = &newuser_link($lt{'newuser'}).'<br />';
485: }
486: my $logintitle =
487: '<h2 class="LC_hcell"'
488: .' style="background:'.$loginbox_header_bgcol.';'
489: .' color:'.$loginbox_header_textcol.'">'
490: .$lt{'log'}
491: .'</h2>';
492:
493: my $noscript_warning='<noscript><span class="LC_warning"><b>'
494: .&mt('Use of LON-CAPA requires Javascript to be enabled in your web browser.')
495: .'</b></span></noscript>';
496: my $helpdeskscript;
497: my $contactblock = &contactdisplay(\%lt,$servadm,$showadminmail,
498: $authdomain,\$helpdeskscript,
499: $showhelpdesk,\@possdoms);
500:
501: my $mobileargs;
502: if ($clientmobile) {
503: $mobileargs = 'autocapitalize="off" autocorrect="off"';
504: }
505: my $loginform=(<<LFORM);
506: <form name="client" action="" onsubmit="return(send())">
507: <input type="hidden" name="lextkey" value="$lextkey" />
508: <input type="hidden" name="uextkey" value="$uextkey" />
509: <b><label for="uname">$lt{'un'}</label>:</b><br />
510: <input type="text" name="uname" id="uname" size="15" value="$authusername" readonly="readonly" $mobileargs /><br />
511: <b><label for="upass$now">$lt{'pw'}</label>:</b><br />
512: <input type="password" name="upass$now" id="upass$now" size="15" readonly="readonly" /><br />
513: <b><label for="udom">$lt{'dom'}</label>:</b><br />
514: <input type="text" name="udom" id="udom" size="15" value="$authdomain" readonly="readonly" $mobileargs /><br />
515: <input type="submit" value="$lt{'log'}" />
516: </form>
517: LFORM
518:
519: if ($showbanner) {
520: $r->print(<<HEADER);
521: <!-- The LON-CAPA Header -->
522: <div style="background:$pgbg;margin:0;width:100%;">
523: <img src="$img" border="0" alt="The Learning Online Network with CAPA" />
524: </div>
525: HEADER
526: }
527: $r->print(<<ENDTOP);
528: <div style="float:left;margin-top:0;">
529: <div class="LC_Box" style="background:$loginbox_bg;">
530: $logintitle
531: $loginform
532: $noscript_warning
533: </div>
534:
535: <div class="LC_Box" style="padding-top: 10px;">
536: $loginhelp
537: $forgotpw
538: $contactblock
539: $newuserlink
540: $coursecatalog
541: </div>
542: </div>
543:
544: <div>
545: ENDTOP
546: if ($showmainlogo) {
547: $r->print(' <img src="'.$logo.'" alt="" />'."\n");
548: }
549: $r->print(<<ENDTOP);
550: $announcements
551: </div>
552: <hr style="clear:both;" />
553: ENDTOP
554: my ($domainrow,$serverrow,$loadrow,$userloadrow,$versionrow);
555: $domainrow = <<"END";
556: <tr>
557: <td align="left" valign="top">
558: <small><b>$lt{'dom'}: </b></small>
559: </td>
560: <td align="left" valign="top">
561: <small><tt> $domain</tt></small>
562: </td>
563: </tr>
564: END
565: $serverrow = <<"END";
566: <tr>
567: <td align="left" valign="top">
568: <small><b>$lt{'serv'}: </b></small>
569: </td>
570: <td align="left" valign="top">
571: <small><tt> $lonhost ($role)</tt></small>
572: </td>
573: </tr>
574: END
575: if ($loadlim) {
576: $loadrow = <<"END";
577: <tr>
578: <td align="left" valign="top">
579: <small><b>$lt{'load'}: </b></small>
580: </td>
581: <td align="left" valign="top">
582: <small><tt> $loadpercent $lt{'perc'}</tt></small>
583: </td>
584: </tr>
585: END
586: }
587: if ($uloadlim) {
588: $userloadrow = <<"END";
589: <tr>
590: <td align="left" valign="top">
591: <small><b>$lt{'userload'}: </b></small>
592: </td>
593: <td align="left" valign="top">
594: <small><tt> $userloadpercent $lt{'perc'}</tt></small>
595: </td>
596: </tr>
597: END
598: }
599: if (($version ne '') && ($version ne '<!-- VERSION -->')) {
600: $versionrow = <<"END";
601: <tr>
602: <td colspan="2" align="left">
603: <small>$version</small>
604: </td>
605: </tr>
606: END
607: }
608:
609: $r->print(<<ENDDOCUMENT);
610: <div style="float: left;">
611: <table border="0" cellspacing="0" cellpadding="0">
612: $domainrow
613: $serverrow
614: $loadrow
615: $userloadrow
616: $versionrow
617: </table>
618: </div>
619: <div style="float: right;">
620: $domainlogo
621: </div>
622: <br style="clear:both;" />
623: </div>
624:
625: <script type="text/javascript">
626: // <![CDATA[
627: // the if prevents the script error if the browser can not handle this
628: if ( document.client.uname ) { document.client.uname.focus(); }
629: // ]]>
630: </script>
631: $helpdeskscript
632:
633: ENDDOCUMENT
634: my %endargs = ( 'noredirectlink' => 1, );
635: $r->print(&Apache::loncommon::end_page(\%endargs));
636: return OK;
637: }
638:
639: sub check_loginvia {
640: my ($domain,$lonhost) = @_;
641: if ($domain eq '' || $lonhost eq '') {
642: return;
643: }
644: my %domconfhash = &Apache::loncommon::get_domainconf($domain);
645: my $loginvia = $domconfhash{$domain.'.login.loginvia_'.$lonhost};
646: my $loginvia_exempt = $domconfhash{$domain.'.login.loginvia_exempt_'.$lonhost};
647: my $output;
648: if ($loginvia ne '') {
649: my $noredirect;
650: my $ip = $ENV{'REMOTE_ADDR'};
651: if ($ip eq '127.0.0.1') {
652: $noredirect = 1;
653: } else {
654: if ($loginvia_exempt ne '') {
655: my @exempt = split(',',$loginvia_exempt);
656: if (grep(/^\Q$ip\E$/,@exempt)) {
657: $noredirect = 1;
658: }
659: }
660: }
661: unless ($noredirect) {
662: my ($newhost,$path);
663: if ($loginvia =~ /:/) {
664: ($newhost,$path) = split(':',$loginvia);
665: } else {
666: $newhost = $loginvia;
667: }
668: if ($newhost ne $lonhost) {
669: if (&Apache::lonnet::hostname($newhost) ne '') {
670: $output = &redirect_page($newhost,$path);
671: }
672: }
673: }
674: }
675: return $output;
676: }
677:
678: sub redirect_page {
679: my ($desthost,$path) = @_;
680: my $protocol = $Apache::lonnet::protocol{$desthost};
681: $protocol = 'http' if ($protocol ne 'https');
682: unless ($path =~ m{^/}) {
683: $path = '/'.$path;
684: }
685: my $url = $protocol.'://'.&Apache::lonnet::hostname($desthost).$path;
686: if ($env{'form.firsturl'} ne '') {
687: $url .='?firsturl='.$env{'form.firsturl'};
688: }
689: my $start_page = &Apache::loncommon::start_page('Switching Server ...',undef,
690: {'redirect' => [0,$url],});
691: my $end_page = &Apache::loncommon::end_page();
692: return $start_page.$end_page;
693: }
694:
695: sub contactdisplay {
696: my ($lt,$servadm,$showadminmail,$authdomain,$helpdeskscript,$showhelpdesk,
697: $possdoms) = @_;
698: my $contactblock;
699: my $origmail;
700: if (ref($possdoms) eq 'ARRAY') {
701: if (grep(/^\Q$authdomain\E$/,@{$possdoms})) {
702: $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
703: }
704: }
705: my $requestmail =
706: &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
707: $authdomain,$origmail);
708: unless ($showhelpdesk eq '0') {
709: if ($requestmail =~ m/[^\@]+\@[^\@]+/) {
710: $showhelpdesk = 1;
711: } else {
712: $showhelpdesk = 0;
713: }
714: }
715: if ($servadm && $showadminmail) {
716: $contactblock .= $$lt{'servadm'}.':<br />'.
717: '<tt>'.$servadm.'</tt><br />';
718: }
719: if ($showhelpdesk) {
720: $contactblock .= '<a href="javascript:helpdesk()">'.$lt->{'helpdesk'}.'</a><br />';
721: my $thisurl = &escape('/adm/login');
722: $$helpdeskscript = <<"ENDSCRIPT";
723: <script type="text/javascript">
724: // <![CDATA[
725: function helpdesk() {
726: var possdom = document.client.udom.value;
727: var codedom = possdom.replace( new RegExp("[^A-Za-z0-9.\\-]","g"),'');
728: if (codedom == '') {
729: codedom = "$authdomain";
730: }
731: var querystr = "origurl=$thisurl&codedom="+codedom;
732: document.location.href = "/adm/helpdesk?"+querystr;
733: return;
734: }
735: // ]]>
736: </script>
737: ENDSCRIPT
738: }
739: return $contactblock;
740: }
741:
742: sub forgotpwdisplay {
743: my (%lt) = @_;
744: my $prompt_for_resetpw = 1;
745: if ($prompt_for_resetpw) {
746: return '<a href="/adm/resetpw">'.$lt{'forgotpw'}.'</a>';
747: }
748: return;
749: }
750:
751: sub coursecatalog_link {
752: my ($linkname) = @_;
753: return <<"END";
754: <a href="/adm/coursecatalog">$linkname</a>
755: END
756: }
757:
758: sub newuser_link {
759: my ($linkname) = @_;
760: return '<a href="/adm/createaccount">'.$linkname.'</a>';
761: }
762:
763: 1;
764: __END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>