Annotation of loncom/auth/lonroles.pm, revision 1.57

1.1       harris41    1: # The LearningOnline Network with CAPA
                      2: # User Roles Screen
1.31      www         3: #
1.57    ! www         4: # $Id: lonroles.pm,v 1.56 2003/04/07 18:24:05 www Exp $
1.31      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.1       harris41   28: # (Directory Indexer
                     29: # (Login Screen
1.32      harris41   30: # YEAR=1999
1.1       harris41   31: # 5/21/99,5/22,5/25,5/26,5/31,6/2,6/10,7/12,7/14 Gerd Kortemeyer)
                     32: # 11/23 Gerd Kortemeyer)
1.32      harris41   33: # YEAR=2000
1.7       www        34: # 1/14,03/06,06/01,07/22,07/24,07/25,
1.19      www        35: # 09/04,09/06,09/28,09/29,09/30,10/2,10/5,10/26,10/28,
1.20      www        36: # 12/08,12/28,
1.32      harris41   37: # YEAR=2001
1.20      www        38: # 01/15/01 Gerd Kortemeyer
1.28      www        39: # 03/02,05/03,05/25,05/30,06/01,07/06,08/06 Gerd Kortemeyer
1.33      www        40: # 12/29 Gerd Kortemeyer
1.32      harris41   41: #
                     42: ###
1.22      harris41   43: 
1.1       harris41   44: package Apache::lonroles;
                     45: 
                     46: use strict;
                     47: use Apache::lonnet();
1.7       www        48: use Apache::lonuserstate();
1.1       harris41   49: use Apache::Constants qw(:common);
1.2       www        50: use Apache::File();
1.26      www        51: use Apache::lonmenu;
1.29      albertel   52: use Apache::loncommon;
1.57    ! www        53: use Apache::lonannounce;
1.1       harris41   54: 
                     55: sub handler {
1.10      www        56: 
1.1       harris41   57:     my $r = shift;
                     58: 
1.6       www        59:     my $now=time;
                     60:     my $then=$ENV{'user.login.time'};
                     61:     my $envkey;
                     62: 
1.10      www        63: 
1.6       www        64: # ================================================================== Roles Init
                     65: 
                     66:     if ($ENV{'form.selectrole'}) {
1.33      www        67: 	if ($ENV{'request.course.id'}) {
                     68: 	    my %temp=('logout_'.$ENV{'request.course.id'} => time);
                     69: 	    &Apache::lonnet::put('email_status',\%temp);
                     70:         }
1.55      albertel   71: 	&Apache::lonnet::appenv("request.course.id"   => '',
                     72: 				"request.course.fn"   => '',
                     73: 				"request.course.uri"  => '',
                     74: 				"request.course.sec"  => '',
                     75: 				"request.role"        => 'cm',
1.56      www        76:                                 "request.role.adv"    => $ENV{'user.adv'},
1.55      albertel   77: 				"request.role.domain" => $ENV{'user.domain'});
1.13      www        78:         foreach $envkey (keys %ENV) {
1.40      matthew    79:             next if ($envkey!~/^user\.role\./);
                     80: 	    my (undef,undef,$role,@pwhere)=split(/\./,$envkey);
1.6       www        81:             my $where=join('.',@pwhere);
                     82:             my $trolecode=$role.'.'.$where;
                     83:             if ($ENV{'form.'.$trolecode}) {
1.55      albertel   84: 		my ($tstart,$tend)=split(/\./,$ENV{$envkey});
                     85: 		my $tstatus='is';
                     86: 		if ($tstart) {
                     87: 		    if ($tstart>$then) { 
                     88: 			$tstatus='future';
                     89: 		    }
                     90: 		}
                     91: 		if ($tend) {
                     92: 		    if ($tend<$then) { $tstatus='expired'; }
                     93: 		    if ($tend<$now) { $tstatus='will_not'; }
                     94: 		}
                     95: 		if ($tstatus eq 'is') {
                     96: 		    $where=~s/^\///;
                     97: 		    my ($cdom,$cnum,$csec)=split(/\//,$where);
1.53      www        98: # check for keyed access
1.55      albertel   99: 		    if (($role eq 'st') && 
                    100:                        ($ENV{'course.'.$cdom.'_'.$cnum.'.keyaccess'} eq 'yes')) {
                    101: 		         unless (&Apache::lonnet::validate_access_key(
                    102: 				     $ENV{'environment.key.'.$cdom.'_'.$cnum},
                    103: 					     $cdom,$cnum)) {
1.53      www       104: # there is no valid key
1.55      albertel  105: 			     if ($ENV{'form.newkey'}) {
1.53      www       106: # student attempts to register a new key
1.55      albertel  107: 			     } else {
1.53      www       108: # print form to enter a new key
1.55      albertel  109: 				 $r->content_type('text/html');
                    110: 				 &Apache::loncommon::no_cache($r);
                    111: 				 $r->send_http_header;
                    112: 				 my $swinfo=&Apache::lonmenu::rawconfig();
                    113: 				 my $bodytag=&Apache::loncommon::bodytag
                    114: 				    ('Enter Access Key to Unlock this Course');
                    115: 				 $r->print(<<ENDENTERKEY);
1.53      www       116: <head><title>Entering Course Access Key</title>
                    117: </head>
                    118: <html>
                    119: $bodytag
                    120: <script>
                    121: $swinfo
                    122: </script>
                    123: <form method="post">
                    124: <input type="hidden" name="selectrole" value="$ENV{'form.selectrole'}" />
                    125: <input type="text" size="20" name="newkey" value="$ENV{'form.newkey'}" />
                    126: <input type="submit" value="Enter key" />
                    127: </form>
                    128: </body></html>
                    129: ENDENTERKEY
1.55      albertel  130: 				 return OK;
                    131: 			     }
                    132: 			 }
                    133: 		     }
1.56      www       134:                     my $tadv=0;
                    135:                     if (($trolecode!~/^st/) && 
                    136:                         ($trolecode!~/^ta/) && 
                    137:                         ($trolecode!~/^cm/)) { $tadv=1; }
                    138: 		    &Apache::lonnet::appenv(
                    139:                                            'request.role'        => $trolecode,
                    140: 					   'request.role.adv'    => $tadv,
                    141: 					   'request.role.domain' => $cdom,
                    142: 					   'request.course.sec'  => $csec);
1.55      albertel  143: 		    my $msg='Entering course ...';
                    144: 		    if (($cnum) && ($role ne 'ca')) {
                    145: 			my ($furl,$ferr)=
                    146: 			    &Apache::lonuserstate::readmap($cdom.'/'.$cnum);
                    147: 			if (($ENV{'form.orgurl'}) && 
                    148: 			    ($ENV{'form.orgurl'}!~/^\/adm\/flip/)) {
                    149: 			    $r->internal_redirect($ENV{'form.orgurl'});
                    150: 			    return OK;
                    151: 			} else {
                    152: 			    unless ($ENV{'request.course.id'}) {
                    153: 				&Apache::lonnet::appenv(
                    154: 				      "request.course.id"  => $cdom.'_'.$cnum);
                    155: 				$furl='/adm/notfound.html';
                    156: 				$msg=
1.27      www       157: 	 '<h1><font color=red>Could not initialize top-level map.</font></h1>';
1.55      albertel  158: 			    }
                    159: 			    $r->content_type('text/html');
                    160: 			    &Apache::loncommon::no_cache($r);
                    161: 			    $r->send_http_header;
                    162: 			    my $swinfo=&Apache::lonmenu::rawconfig();
                    163: 			    my $bodytag=&Apache::loncommon::bodytag('Switching Role');
                    164: 			    print (<<ENDREDIR);
1.20      www       165: <head><title>Entering Course</title>
                    166: <meta HTTP-EQUIV="Refresh" CONTENT="1; url=$furl">
                    167: </head>
                    168: <html>
1.43      www       169: $bodytag
1.26      www       170: <script>
                    171: $swinfo
                    172: </script>
1.43      www       173: <h1>$msg</h1>
1.20      www       174: </body>
                    175: </html>
                    176: ENDREDIR
                    177:                             return OK;
1.55      albertel  178: 			}
                    179: 		    }
                    180: 		}
                    181:             }
1.6       www       182:         }
1.40      matthew   183:     }
1.44      www       184: 
1.10      www       185: 
1.6       www       186: # =============================================================== No Roles Init
1.10      www       187: 
                    188:     $r->content_type('text/html');
1.30      albertel  189:     &Apache::loncommon::no_cache($r);
1.10      www       190:     $r->send_http_header;
                    191:     return OK if $r->header_only;
                    192: 
1.52      www       193:     my $swinfo=&Apache::lonmenu::rawconfig();
1.41      www       194:     my $bodytag=&Apache::loncommon::bodytag('User Roles');
1.48      www       195:     my $helptag=&Apache::loncommon::help_open_topic
1.52      www       196:      ("General_Intro","Click here for help");
1.10      www       197:     $r->print(<<ENDHEADER);
                    198: <html>
                    199: <head>
                    200: <title>LON-CAPA User Roles</title>
1.41      www       201: </head>
                    202: $bodytag
1.45      www       203: $helptag<br />
1.26      www       204: <script>
                    205: $swinfo
                    206: window.focus();
                    207: </script>
1.10      www       208: ENDHEADER
1.6       www       209: 
1.2       www       210: # ------------------------------------------ Get Error Message from Environment
                    211: 
                    212:     my ($fn,$priv,$nochoose,$error,$msg)=split(/:/,$ENV{'user.error.msg'});
1.12      www       213:     if ($ENV{'user.error.msg'}) {
1.55      albertel  214: 	$r->log_reason(
                    215:    "$msg for $ENV{'user.name'} domain $ENV{'user.domain'} access $priv",$fn);
1.12      www       216:     }
1.1       harris41  217: 
1.6       www       218: # ---------------------------------------------------------------- Who is this?
                    219: 
                    220:     my $advanced=0;
                    221:     foreach $envkey (keys %ENV) {
                    222:         if ($envkey=~/^user\.role\./) {
1.40      matthew   223: 	    my (undef,undef,$role,@pwhere)=split(/\./,$envkey);
1.6       www       224:             if ($role ne 'st') { $advanced=1; }
                    225:         }
                    226:     }
                    227: 
1.2       www       228: # -------------------------------------------------------- Generate Page Output
1.6       www       229: # --------------------------------------------------------------- Error Header?
1.2       www       230:     if ($error) {
                    231: 	$r->print("<h1>LON-CAPA Access Control</h1>");
1.4       www       232:         $r->print("<hr><pre>Access  : ".
                    233:                   Apache::lonnet::plaintext($priv)."\n");
                    234:         $r->print("Resource: $fn\n");
                    235:         $r->print("Action  : $msg\n</pre><hr>");
1.2       www       236:     } else {
1.25      www       237:         if ($ENV{'user.error.msg'}) {
                    238: 	    $r->print(
                    239:  '<h3><font color=red>You need to choose another user role or '.
                    240:  'enter a specific course for this function</font></h3>');
                    241: 	}
1.2       www       242:     }
1.6       www       243: # -------------------------------------------------------- Choice or no choice?
1.2       www       244:     if ($nochoose) {
1.6       www       245:         if ($advanced) {
1.55      albertel  246: 	    $r->print("<h2>Assigned User Roles</h2>\n");
1.6       www       247:         } else {
1.55      albertel  248: 	    $r->print("<h2>Sorry ...</h2>\nThis resource might be part of");
                    249: 	    if ($ENV{'request.course.id'}) {
                    250: 		$r->print(' another');
                    251: 	    } else {
                    252: 		$r->print(' a certain');
                    253: 	    } 
                    254: 	    $r->print(' course.</body></html>');
                    255: 	    return OK;
1.6       www       256:         } 
                    257:     } else {
                    258:         if ($advanced) {
1.55      albertel  259: 	    $r->print("Your home server is ".
                    260: 		      $Apache::lonnet::hostname{&Apache::lonnet::homeserver
                    261:                       ($ENV{'user.name'},$ENV{'user.domain'})}.
                    262: 		      "<br />\n");
                    263: 	    $r->print("Author and Co-Author roles may not be available on ".
                    264: 		      "servers other than your home server.");
1.6       www       265:         } else {
1.55      albertel  266: 	    $r->print("<h2>Enter a Course</h2>\n");
1.17      www       267:         }
1.18      www       268:         if (($ENV{'REDIRECT_QUERY_STRING'}) && ($fn)) {
                    269:     	    $fn.='?'.$ENV{'REDIRECT_QUERY_STRING'};
1.6       www       270:         }
1.11      www       271:         $r->print('<form method=post action="'.(($fn)?$fn:$r->uri).'">');
1.6       www       272:         $r->print('<input type=hidden name=orgurl value="'.$fn.'">');
                    273:         $r->print('<input type=hidden name=selectrole value=1>');
                    274:     }
1.27      www       275:     $r->print('<br>Show all roles: <input type=checkbox name=showall');
                    276:     if ($ENV{'form.showall'}) { $r->print(' checked'); }
                    277:     $r->print('><input type=submit value="Display"><br>');
1.6       www       278: # ----------------------------------------------------------------------- Table
                    279:     $r->print('<table><tr>');
                    280:     unless ($nochoose) { $r->print('<th>&nbsp;</th>'); }
1.55      albertel  281:     $r->print('<th>User Role</th><th colspan=2>Extent</th>'.
                    282: 	      '<th>Start</th><th>End</th><th>Remark</th></tr>'."\n");
1.4       www       283: 
1.3       albertel  284:     foreach $envkey (sort keys %ENV) {
1.35      matthew   285:         my $button = 1;
1.49      www       286:         my $switchserver='';
1.2       www       287:         if ($envkey=~/^user\.role\./) {
1.40      matthew   288: 	    my (undef,undef,$role,@pwhere)=split(/\./,$envkey);
1.46      matthew   289:             next if (!defined($role) || $role eq '');
1.4       www       290:             my $where=join('.',@pwhere);
1.6       www       291:             my $trolecode=$role.'.'.$where;
1.4       www       292:             my ($tstart,$tend)=split(/\./,$ENV{$envkey});
                    293:             my $tremark='';
                    294:             my $tstatus='is';
                    295:             my $tpstart='&nbsp;';
                    296:             my $tpend='&nbsp;';
1.47      www       297:             my $tfont='#000000';
1.4       www       298:             if ($tstart) {
                    299: 		if ($tstart>$then) { 
1.35      matthew   300:                     $tstatus='future';
                    301:                     if ($tstart<$now) { $tstatus='will'; }
1.4       www       302:                 }
                    303:                 $tpstart=localtime($tstart);
                    304:             }
                    305:             if ($tend) {
1.23      www       306:                 if ($tend<$then) { 
1.35      matthew   307:                     $tstatus='expired'; 
1.23      www       308:                 } elsif ($tend<$now) { 
1.35      matthew   309:                     $tstatus='will_not'; 
1.23      www       310:                 }
1.4       www       311:                 $tpend=localtime($tend);
                    312:             }
1.6       www       313:             if ($ENV{'request.role'} eq $trolecode) {
                    314: 		$tstatus='selected';
                    315:             }
1.4       www       316:             my $tbg;
1.35      matthew   317:             if (($tstatus eq 'is') || ($tstatus eq 'selected') ||
                    318:                 ($ENV{'form.showall'})) {
                    319:                 if ($tstatus eq 'is') {
                    320:                     $tbg='#77FF77';
1.47      www       321:                     $tfont='#003300';
1.35      matthew   322:                 } elsif ($tstatus eq 'future') {
                    323:                     $tbg='#FFFF77';
1.49      www       324:                     $button=0;
1.35      matthew   325:                 } elsif ($tstatus eq 'will') {
                    326:                     $tbg='#FFAA77';
                    327:                     $tremark.='Active at next login. ';
                    328:                 } elsif ($tstatus eq 'expired') {
                    329:                     $tbg='#FF7777';
1.47      www       330:                     $tfont='#330000';
1.49      www       331:                     $button=0;
1.35      matthew   332:                 } elsif ($tstatus eq 'will_not') {
                    333:                     $tbg='#AAFF77';
                    334:                     $tremark.='Expired after logout. ';
                    335:                 } elsif ($tstatus eq 'selected') {
                    336:                     $tbg='#11CC55';
1.47      www       337:                     $tfont='#002200';
1.35      matthew   338:                     $tremark.='Currently selected. ';
                    339:                 }
                    340:                 my $trole;
                    341:                 if ($role =~ /^cr\//) {
                    342:                     my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$role);
                    343:                     $tremark.='<br>Defined by '.$rauthor.' at '.$rdomain.'.';
                    344:                     $trole=$rrole;
1.8       www       345:                 } else {
1.35      matthew   346:                     $trole=Apache::lonnet::plaintext($role);
                    347:                 }
                    348:                 my $ttype;
                    349:                 my $twhere;
                    350:                 my ($tdom,$trest,$tsection)=
                    351:                     split(/\//,Apache::lonnet::declutter($where));
                    352:                 # First, Co-Authorship roles
                    353:                 if ($role eq 'ca') {
1.39      stredwic  354:                     my $home = &Apache::lonnet::homeserver($trest,$tdom);
1.49      www       355:                     if ($home ne $r->dir_config('lonHostID')) {
                    356: 			$button=0;
1.51      www       357:                         $switchserver=&Apache::lonnet::escape('http://'.
                    358:                          $Apache::lonnet::hostname{$home}.
                    359:                          '/adm/login?domain='.$ENV{'user.domain'}.
                    360: 			  '&username='.$ENV{'user.name'}.
                    361:                           '&firsturl=/priv/'.$trest);
1.49      www       362:                     }
1.35      matthew   363:                     #next if ($home eq 'no_host');
                    364:                     $home = $Apache::lonnet::hostname{$home};
                    365:                     $ttype='Construction Space';
                    366:                     $twhere='User: '.$trest.'<br />Domain: '.$tdom.'<br />'.
                    367:                         ' Server:&nbsp;'.$home;
                    368:                     $ENV{'course.'.$tdom.'_'.$trest.'.description'}='ca';
                    369:                 } elsif ($role eq 'au') {
                    370:                     # Authors
                    371:                     my $home = &Apache::lonnet::homeserver
1.39      stredwic  372:                         ($ENV{'user.name'},$ENV{'user.domain'});
1.49      www       373:                     if ($home ne $r->dir_config('lonHostID')) {
                    374: 			$button=0;
1.51      www       375:                         $switchserver=&Apache::lonnet::escape('http://'.
                    376:                          $Apache::lonnet::hostname{$home}.
                    377:                           '/adm/login?domain='.$ENV{'user.domain'}.
                    378: 			   '&username='.$ENV{'user.name'}.
                    379:                            '&firsturl=/priv/'.$ENV{'user.name'});
1.49      www       380:                     }
1.35      matthew   381:                     #next if ($home eq 'no_host');
                    382:                     $home = $Apache::lonnet::hostname{$home};
                    383:                     $ttype='Construction Space';
                    384:                     $twhere='Domain: '.$tdom.'<br />Server:&nbsp;'.$home;
                    385:                     $ENV{'course.'.$tdom.'_'.$trest.'.description'}='ca';
                    386:                 } elsif ($trest) {
                    387:                     $ttype='Course';
                    388:                     if ($tsection) {
                    389:                         $ttype.='<br>Section/Group: '.$tsection;
1.37      albertel  390: 		    }
1.35      matthew   391:                     my $tcourseid=$tdom.'_'.$trest;
                    392:                     if ($ENV{'course.'.$tcourseid.'.description'}) {
1.47      www       393:                         $twhere=$ENV{'course.'.$tcourseid.'.description'};
                    394:                         unless ($twhere eq 'Currently not available') {
1.55      albertel  395: 			    $twhere.=' <font size="-2">'.
1.49      www       396:         &Apache::loncommon::syllabuswrapper('Syllabus',$trest,$tdom,$tfont).
                    397:                                     '</font>';
1.55      albertel  398: 			}
1.8       www       399:                     } else {
1.35      matthew   400:                         my %newhash=Apache::lonnet::coursedescription
                    401:                             ($tcourseid);
                    402:                         if (%newhash) {
1.49      www       403:                             $twhere=$newhash{'description'}.
                    404:                               ' <font size="-2">'.
                    405:         &Apache::loncommon::syllabuswrapper('Syllabus',$trest,$tdom,$tfont).
                    406:                               '</font>';
1.35      matthew   407:                         } else {
                    408:                             $twhere='Currently not available';
                    409:                             $ENV{'course.'.$tcourseid.'.description'}=$twhere;
                    410:                         }
1.8       www       411:                     }
1.37      albertel  412: 		    if ($role ne 'st') { $twhere.="<br />Domain:".$tdom; }
1.35      matthew   413:                 } elsif ($tdom) {
                    414:                     $ttype='Domain';
                    415:                     $twhere=$tdom;
                    416:                 } else {
                    417:                     $ttype='System';
                    418:                     $twhere='system wide';
1.13      www       419:                 }
1.35      matthew   420:  
                    421:                 $r->print('<tr bgcolor='.$tbg.'>');
                    422:                 unless ($nochoose) {
                    423:                     if (!$button) {
1.49      www       424: 			if ($switchserver) {
                    425: 			    $r->print('<td><a href="/adm/logout?handover='.
                    426:                               $switchserver.'">Switch Server</a></td>');
                    427:                         } else {
                    428:                             $r->print('<td>&nbsp;</td>');
                    429:                         }
1.35      matthew   430:                     } elsif ($tstatus eq 'is') {
                    431:                         $r->print('<td><input type=submit value=Select name="'.
                    432:                                   $trolecode.'"></td>');
                    433:                     } elsif ($ENV{'user.adv'}) {
                    434:                         $r->print
                    435:                             ('<td><input type=submit value="Re-Initialize"'.
                    436:                              ' name="'.$trolecode.'"></td>');
                    437:                     } else {
                    438:                         $r->print('<td>&nbsp;</td>');
                    439:                     }
1.6       www       440:                 }
1.57    ! www       441:                 $tremark.=&Apache::lonannounce::showday(time,1,
        !           442:                          &Apache::lonannounce::readcalendar($tdom.'_'.$trest));
        !           443:                 
1.55      albertel  444: 		$r->print('<td><font color="'.$tfont.'">'.$trole.
1.47      www       445:                       '</font></td><td><font color="'.$tfont.'">'.$ttype.
                    446:                       '</font></td><td><font color="'.$tfont.'">'.$twhere.
                    447:                       '</font></td><td><font color="'.$tfont.'">'.$tpstart.
                    448:                       '</font></td><td><font color="'.$tfont.'">'.$tpend.
                    449:                       '</font></td><td><font color="'.$tfont.'">'.$tremark.
                    450:                       '&nbsp;</font></td></tr>'."\n");
1.55      albertel  451: 	    }
1.4       www       452:         }
                    453:     }
1.14      www       454:     my $tremark='';
1.47      www       455:     my $tfont='#003300';
1.14      www       456:     if ($ENV{'request.role'} eq 'cm') {
1.19      www       457: 	$r->print('<tr bgcolor="#11CC55">');
1.14      www       458:         $tremark='Currently selected.';
1.47      www       459:         $tfont='#002200';
1.14      www       460:     } else {
                    461:         $r->print('<tr bgcolor="#77FF77">');
                    462:     }
                    463:     unless ($nochoose) {
1.55      albertel  464: 	if ($ENV{'request.role'} ne 'cm') {
                    465: 	    $r->print('<td><input type=submit value=Select name="cm"></td>');
                    466: 	} else {
                    467: 	    $r->print('<td>&nbsp;</td>');
                    468: 	}
1.14      www       469:     }
1.47      www       470:     $r->print('<td colspan=5><font color="'.$tfont.'">No role specified'.
                    471:       '</font></td><td><font color="'.$tfont.'">'.$tremark.
                    472:       '&nbsp;</font></td></tr>'."\n");
1.4       www       473: 
                    474:     $r->print('</table>');
                    475:     unless ($nochoose) {
                    476: 	$r->print("</form>\n");
                    477:     }
1.22      harris41  478: # ------------------------------------------------------------ Privileges Info
1.55      albertel  479:     if (($advanced) && (($ENV{'user.error.msg'}) || ($error))) {
                    480: 	$r->print('<hr><h2>Current Privileges</h2>');
1.4       www       481: 
1.55      albertel  482: 	foreach $envkey (sort keys %ENV) {
                    483: 	    if ($envkey=~/^user\.priv\.$ENV{'request.role'}\./) {
                    484: 		my $where=$envkey;
                    485: 		$where=~s/^user\.priv\.$ENV{'request.role'}\.//;
                    486: 		my $ttype;
                    487: 		my $twhere;
                    488: 		my ($tdom,$trest,$tsec)=
                    489: 		    split(/\//,Apache::lonnet::declutter($where));
                    490: 		if ($trest) {
                    491: 		    if ($ENV{'course.'.$tdom.'_'.$trest.'.description'} eq 'ca') {
                    492: 			$ttype='Construction Space';
                    493: 			$twhere='User: '.$trest.', Domain: '.$tdom;
                    494: 		    } else {
                    495: 			$ttype='Course';
                    496: 			$twhere=$ENV{'course.'.$tdom.'_'.$trest.'.description'};
                    497: 			if ($tsec) {
                    498: 			    $twhere.=' (Section/Group: '.$tsec.')';
                    499: 			}
                    500: 		    }
                    501: 		} elsif ($tdom) {
                    502: 		    $ttype='Domain';
                    503: 		    $twhere=$tdom;
                    504: 		} else {
                    505: 		    $ttype='System';
                    506: 		    $twhere='/';
                    507: 		}
                    508: 		$r->print("\n<h3>".$ttype.': '.$twhere.'</h3><ul>');
                    509: 		foreach (sort split(/:/,$ENV{$envkey})) {
                    510: 		    if ($_) {
                    511: 			my ($prv,$restr)=split(/\&/,$_);
                    512: 			my $trestr='';
                    513: 			if ($restr ne 'F') {
                    514: 			    my $i;
                    515: 			    $trestr.=' (';
                    516: 			    for ($i=0;$i<length($restr);$i++) {
                    517: 				$trestr.=
                    518: 			       Apache::lonnet::plaintext(substr($restr,$i,1));
                    519: 				if ($i<length($restr)-1) { $trestr.=', '; }
                    520: 			    }
                    521: 			    $trestr.=')';
                    522: 			}
                    523: 			$r->print('<li>'.
                    524: 				  Apache::lonnet::plaintext($prv).$trestr.
                    525: 				  '</li>');
                    526: 		    }
                    527: 		}
                    528: 		$r->print('</ul>');
                    529: 	    }
                    530: 	}
1.4       www       531:     }
1.2       www       532: 
1.1       harris41  533:     $r->print("</body></html>\n");
                    534:     return OK;
                    535: } 
                    536: 
                    537: 1;
                    538: __END__
1.32      harris41  539: 
                    540: =head1 NAME
                    541: 
                    542: Apache::lonroles - User Roles Screen
                    543: 
                    544: =head1 SYNOPSIS
                    545: 
                    546: Invoked by /etc/httpd/conf/srm.conf:
                    547: 
                    548:  <Location /adm/roles>
                    549:  PerlAccessHandler       Apache::lonacc
                    550:  SetHandler perl-script
                    551:  PerlHandler Apache::lonroles
                    552:  ErrorDocument     403 /adm/login
                    553:  ErrorDocument	  500 /adm/errorhandler
                    554:  </Location>
                    555: 
                    556: =head1 INTRODUCTION
                    557: 
                    558: This module enables a user to select what role he wishes to
                    559: operate under (instructor, student, teaching assistant, course
                    560: coordinator, etc).  These roles are pre-established by the actions
                    561: of upper-level users.
                    562: 
                    563: This is part of the LearningOnline Network with CAPA project
                    564: described at http://www.lon-capa.org.
                    565: 
                    566: =head1 HANDLER SUBROUTINE
                    567: 
                    568: This routine is called by Apache and mod_perl.
                    569: 
                    570: =over 4
                    571: 
                    572: =item *
                    573: 
                    574: Roles Initialization (yes/no)
                    575: 
                    576: =item *
                    577: 
                    578: Get Error Message from Environment
                    579: 
                    580: =item *
                    581: 
                    582: Who is this?
                    583: 
                    584: =item *
                    585: 
                    586: Generate Page Output
                    587: 
                    588: =item *
                    589: 
                    590: Choice or no choice
                    591: 
                    592: =item *
                    593: 
                    594: Table
                    595: 
                    596: =item *
                    597: 
                    598: Privileges
                    599: 
                    600: =back
                    601: 
                    602: =cut

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