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

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

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