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

1.1       harris41    1: # The LearningOnline Network with CAPA
                      2: # User Roles Screen
1.31      www         3: #
1.84    ! www         4: # $Id: lonroles.pm,v 1.83 2004/01/27 22:54:59 albertel 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.72      www        54: use Apache::lonlocal;
1.1       harris41   55: 
1.62      matthew    56: sub redirect_user {
                     57:     my ($r,$title,$url,$msg) = @_;
                     58:     $msg = $title if (! defined($msg));
1.73      www        59:     &Apache::loncommon::content_type($r,'text/html');
1.62      matthew    60:     &Apache::loncommon::no_cache($r);
                     61:     $r->send_http_header;
                     62:     my $swinfo=&Apache::lonmenu::rawconfig();
                     63:     my $bodytag=&Apache::loncommon::bodytag('Switching Role');
                     64:     $r->print (<<ENDREDIR);
                     65: <head><title>$title</title>
                     66: <meta HTTP-EQUIV="Refresh" CONTENT="1; url=$url">
                     67: </head>
                     68: <html>
                     69: $bodytag
                     70: <script>
                     71: $swinfo
                     72: </script>
                     73: <h1>$msg</h1>
                     74: </body>
                     75: </html>
                     76: ENDREDIR
                     77:     return;
                     78: }
                     79: 
1.1       harris41   80: sub handler {
1.10      www        81: 
1.1       harris41   82:     my $r = shift;
                     83: 
1.6       www        84:     my $now=time;
                     85:     my $then=$ENV{'user.login.time'};
                     86:     my $envkey;
                     87: 
1.10      www        88: 
1.6       www        89: # ================================================================== Roles Init
                     90: 
                     91:     if ($ENV{'form.selectrole'}) {
1.33      www        92: 	if ($ENV{'request.course.id'}) {
                     93: 	    my %temp=('logout_'.$ENV{'request.course.id'} => time);
                     94: 	    &Apache::lonnet::put('email_status',\%temp);
                     95:         }
1.55      albertel   96: 	&Apache::lonnet::appenv("request.course.id"   => '',
                     97: 				"request.course.fn"   => '',
                     98: 				"request.course.uri"  => '',
                     99: 				"request.course.sec"  => '',
                    100: 				"request.role"        => 'cm',
1.56      www       101:                                 "request.role.adv"    => $ENV{'user.adv'},
1.55      albertel  102: 				"request.role.domain" => $ENV{'user.domain'});
1.13      www       103:         foreach $envkey (keys %ENV) {
1.40      matthew   104:             next if ($envkey!~/^user\.role\./);
                    105: 	    my (undef,undef,$role,@pwhere)=split(/\./,$envkey);
1.6       www       106:             my $where=join('.',@pwhere);
                    107:             my $trolecode=$role.'.'.$where;
                    108:             if ($ENV{'form.'.$trolecode}) {
1.55      albertel  109: 		my ($tstart,$tend)=split(/\./,$ENV{$envkey});
                    110: 		my $tstatus='is';
                    111: 		if ($tstart) {
                    112: 		    if ($tstart>$then) { 
                    113: 			$tstatus='future';
                    114: 		    }
                    115: 		}
                    116: 		if ($tend) {
                    117: 		    if ($tend<$then) { $tstatus='expired'; }
                    118: 		    if ($tend<$now) { $tstatus='will_not'; }
                    119: 		}
                    120: 		if ($tstatus eq 'is') {
                    121: 		    $where=~s/^\///;
                    122: 		    my ($cdom,$cnum,$csec)=split(/\//,$where);
1.53      www       123: # check for keyed access
1.55      albertel  124: 		    if (($role eq 'st') && 
                    125:                        ($ENV{'course.'.$cdom.'_'.$cnum.'.keyaccess'} eq 'yes')) {
                    126: 		         unless (&Apache::lonnet::validate_access_key(
                    127: 				     $ENV{'environment.key.'.$cdom.'_'.$cnum},
                    128: 					     $cdom,$cnum)) {
1.53      www       129: # there is no valid key
1.55      albertel  130: 			     if ($ENV{'form.newkey'}) {
1.53      www       131: # student attempts to register a new key
1.55      albertel  132: 			     } else {
1.53      www       133: # print form to enter a new key
1.73      www       134: 				 &Apache::loncommon::content_type($r,'text/html');
1.55      albertel  135: 				 &Apache::loncommon::no_cache($r);
                    136: 				 $r->send_http_header;
                    137: 				 my $swinfo=&Apache::lonmenu::rawconfig();
                    138: 				 my $bodytag=&Apache::loncommon::bodytag
                    139: 				    ('Enter Access Key to Unlock this Course');
                    140: 				 $r->print(<<ENDENTERKEY);
1.53      www       141: <head><title>Entering Course Access Key</title>
                    142: </head>
                    143: <html>
                    144: $bodytag
                    145: <script>
                    146: $swinfo
                    147: </script>
                    148: <form method="post">
                    149: <input type="hidden" name="selectrole" value="$ENV{'form.selectrole'}" />
                    150: <input type="text" size="20" name="newkey" value="$ENV{'form.newkey'}" />
                    151: <input type="submit" value="Enter key" />
                    152: </form>
                    153: </body></html>
                    154: ENDENTERKEY
1.55      albertel  155: 				 return OK;
                    156: 			     }
                    157: 			 }
                    158: 		     }
1.56      www       159:                     my $tadv=0;
                    160:                     if (($trolecode!~/^st/) && 
                    161:                         ($trolecode!~/^ta/) && 
                    162:                         ($trolecode!~/^cm/)) { $tadv=1; }
                    163: 		    &Apache::lonnet::appenv(
                    164:                                            'request.role'        => $trolecode,
                    165: 					   'request.role.adv'    => $tadv,
                    166: 					   'request.role.domain' => $cdom,
                    167: 					   'request.course.sec'  => $csec);
1.72      www       168: 		    my $msg=&mt('Entering course ...');
1.62      matthew   169: 
1.55      albertel  170: 		    if (($cnum) && ($role ne 'ca')) {
                    171: 			my ($furl,$ferr)=
                    172: 			    &Apache::lonuserstate::readmap($cdom.'/'.$cnum);
                    173: 			if (($ENV{'form.orgurl'}) && 
                    174: 			    ($ENV{'form.orgurl'}!~/^\/adm\/flip/)) {
1.67      albertel  175: 			    my $dest=$ENV{'form.orgurl'};
1.71      albertel  176: 			    if ( &Apache::lonnet::mod_perl_version() == 2 ) {
1.67      albertel  177: 				&Apache::lonnet::cleanenv();
1.69      albertel  178: 			    }
1.67      albertel  179: 			    $r->internal_redirect($dest);
1.55      albertel  180: 			    return OK;
                    181: 			} else {
                    182: 			    unless ($ENV{'request.course.id'}) {
                    183: 				&Apache::lonnet::appenv(
                    184: 				      "request.course.id"  => $cdom.'_'.$cnum);
1.61      www       185: 				$furl='/adm/roles?tryagain=1';
1.55      albertel  186: 				$msg=
1.72      www       187: 				    '<h1><font color=red>'.
                    188: 			 &mt('Could not initialize course at this time.').
                    189: 		    '</font></h1><h3>'.&mt('Please try again.').'</h3>'.$ferr;
1.55      albertel  190: 			    }
1.58      bowersj2  191: 
                    192: 			    # Check to see if the user is a CC entering a course 
                    193: 			    # for the first time
                    194: 			    my (undef, undef, $role, $courseid) = split(/\./, $envkey);
                    195: 			    if (substr($courseid, 0, 1) eq '/') {
                    196: 				$courseid = substr($courseid, 1);
                    197: 			    }
                    198: 			    $courseid =~ s/\//_/;
                    199: 			    if ($role eq 'cc' && $ENV{'course.' . $courseid . 
                    200: 							  '.course.helper.not.run'}) {
                    201: 				$furl = "/adm/helper/course.initialization.helper";
                    202: 			    }
1.62      matthew   203:                             #
                    204:                             # Send the user to the course they selected
1.78      sakharuk  205:                             &redirect_user($r,&mt('Entering Course'),
1.62      matthew   206:                                            $furl,$msg);
1.20      www       207:                             return OK;
1.55      albertel  208: 			}
                    209: 		    }
1.62      matthew   210:                     #
                    211:                     # Send the user to the construction space they selected
                    212:                     if ($role =~ /^(au|ca)$/) {
                    213:                         my $redirect_url = '/priv/';
                    214:                         if ($role eq 'au') {
                    215:                             $redirect_url.=$ENV{'user.name'};
                    216:                         } else {
                    217:                             $where =~ /\/(.*)$/;
                    218:                             $redirect_url .= $1;
                    219:                         }
                    220:                         $redirect_url .= '/';
1.78      sakharuk  221:                         &redirect_user($r,&mt('Entering Construction Space'),
1.62      matthew   222:                                        $redirect_url);
                    223:                         return OK;
                    224:                     }
1.55      albertel  225: 		}
                    226:             }
1.6       www       227:         }
1.40      matthew   228:     }
1.44      www       229: 
1.10      www       230: 
1.6       www       231: # =============================================================== No Roles Init
1.10      www       232: 
1.73      www       233:     &Apache::loncommon::content_type($r,'text/html');
1.30      albertel  234:     &Apache::loncommon::no_cache($r);
1.10      www       235:     $r->send_http_header;
                    236:     return OK if $r->header_only;
                    237: 
1.52      www       238:     my $swinfo=&Apache::lonmenu::rawconfig();
1.41      www       239:     my $bodytag=&Apache::loncommon::bodytag('User Roles');
1.82      www       240:     my $helptag='<table><tr><td>'.&Apache::loncommon::help_open_topic
                    241:      ("General_Intro",&mt("Click here for help")).'</td><td>'.
                    242:       &Apache::loncommon::help_open_faq(1,&mt('Click here for FAQ')).'</td><td>'.
                    243:       &Apache::loncommon::help_open_bug('',&mt('Click here to report bugs')).'</td></tr></table>';
1.10      www       244:     $r->print(<<ENDHEADER);
                    245: <html>
                    246: <head>
                    247: <title>LON-CAPA User Roles</title>
1.41      www       248: </head>
                    249: $bodytag
1.45      www       250: $helptag<br />
1.26      www       251: <script>
                    252: $swinfo
                    253: window.focus();
                    254: </script>
1.10      www       255: ENDHEADER
1.6       www       256: 
1.2       www       257: # ------------------------------------------ Get Error Message from Environment
                    258: 
                    259:     my ($fn,$priv,$nochoose,$error,$msg)=split(/:/,$ENV{'user.error.msg'});
1.12      www       260:     if ($ENV{'user.error.msg'}) {
1.55      albertel  261: 	$r->log_reason(
                    262:    "$msg for $ENV{'user.name'} domain $ENV{'user.domain'} access $priv",$fn);
1.12      www       263:     }
1.1       harris41  264: 
1.61      www       265: # ------------------------------------------------- Can this user re-init, etc?
1.6       www       266: 
1.61      www       267:     my $advanced=$ENV{'user.adv'};
                    268:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['tryagain']);
                    269:     my $tryagain=$ENV{'form.tryagain'};
1.6       www       270: 
1.2       www       271: # -------------------------------------------------------- Generate Page Output
1.6       www       272: # --------------------------------------------------------------- Error Header?
1.2       www       273:     if ($error) {
                    274: 	$r->print("<h1>LON-CAPA Access Control</h1>");
1.4       www       275:         $r->print("<hr><pre>Access  : ".
                    276:                   Apache::lonnet::plaintext($priv)."\n");
                    277:         $r->print("Resource: $fn\n");
                    278:         $r->print("Action  : $msg\n</pre><hr>");
1.2       www       279:     } else {
1.25      www       280:         if ($ENV{'user.error.msg'}) {
                    281: 	    $r->print(
1.72      www       282:  '<h3><font color=red>'.
                    283:  &mt('You need to choose another user role or enter a specific course for this function').'</font></h3>');
1.25      www       284: 	}
1.2       www       285:     }
1.6       www       286: # -------------------------------------------------------- Choice or no choice?
1.2       www       287:     if ($nochoose) {
1.6       www       288:         if ($advanced) {
1.72      www       289: 	    $r->print("<h2>".&mt('Assigned User Roles')."</h2>\n");
1.6       www       290:         } else {
1.72      www       291: 	    $r->print("<h2>".&mt('Sorry ...')."</h2>\n".
                    292: 		      &mt('This resource might be part of'));
1.55      albertel  293: 	    if ($ENV{'request.course.id'}) {
1.72      www       294: 		$r->print(&mt(' another'));
1.55      albertel  295: 	    } else {
1.72      www       296: 		$r->print(&mt(' a certain'));
1.55      albertel  297: 	    } 
1.72      www       298: 	    $r->print(&mt(' course.').'</body></html>');
1.55      albertel  299: 	    return OK;
1.6       www       300:         } 
                    301:     } else {
                    302:         if ($advanced) {
1.72      www       303: 	    $r->print(&mt("Your home server is ").
1.55      albertel  304: 		      $Apache::lonnet::hostname{&Apache::lonnet::homeserver
                    305:                       ($ENV{'user.name'},$ENV{'user.domain'})}.
                    306: 		      "<br />\n");
1.72      www       307: 	    $r->print(&mt(
                    308:       "Author and Co-Author roles may not be available on servers other than your home server."));
1.17      www       309:         }
1.18      www       310:         if (($ENV{'REDIRECT_QUERY_STRING'}) && ($fn)) {
                    311:     	    $fn.='?'.$ENV{'REDIRECT_QUERY_STRING'};
1.6       www       312:         }
1.84    ! www       313:         $r->print('<form method="post" name="rolechoice" action="'.(($fn)?$fn:$r->uri).'">');
1.6       www       314:         $r->print('<input type=hidden name=orgurl value="'.$fn.'">');
                    315:         $r->print('<input type=hidden name=selectrole value=1>');
                    316:     }
1.63      www       317:     if ($ENV{'user.adv'}) {
                    318: 	$r->print(
1.72      www       319: 	      '<br />'.&mt('Show all roles').': <input type="checkbox" name="showall"');
1.63      www       320: 	if ($ENV{'form.showall'}) { $r->print(' checked'); }
1.72      www       321: 	$r->print('><input type=submit value="'.&mt('Display').'">');
1.63      www       322:     }
1.4       www       323: 
1.75      albertel  324:     my (%roletext,%sortrole,%roleclass);
1.84    ! www       325:     my $countactive=0;
        !           326:     my $inrole=0;
        !           327:     my $possiblerole='';
1.3       albertel  328:     foreach $envkey (sort keys %ENV) {
1.35      matthew   329:         my $button = 1;
1.49      www       330:         my $switchserver='';
1.75      albertel  331: 	my $roletext;
                    332: 	my $sortkey;
1.2       www       333:         if ($envkey=~/^user\.role\./) {
1.40      matthew   334: 	    my (undef,undef,$role,@pwhere)=split(/\./,$envkey);
1.46      matthew   335:             next if (!defined($role) || $role eq '');
1.4       www       336:             my $where=join('.',@pwhere);
1.6       www       337:             my $trolecode=$role.'.'.$where;
1.4       www       338:             my ($tstart,$tend)=split(/\./,$ENV{$envkey});
                    339:             my $tremark='';
                    340:             my $tstatus='is';
                    341:             my $tpstart='&nbsp;';
                    342:             my $tpend='&nbsp;';
1.47      www       343:             my $tfont='#000000';
1.4       www       344:             if ($tstart) {
                    345: 		if ($tstart>$then) { 
1.35      matthew   346:                     $tstatus='future';
                    347:                     if ($tstart<$now) { $tstatus='will'; }
1.4       www       348:                 }
1.74      www       349:                 $tpstart=&Apache::lonlocal::locallocaltime($tstart);
1.4       www       350:             }
                    351:             if ($tend) {
1.23      www       352:                 if ($tend<$then) { 
1.35      matthew   353:                     $tstatus='expired'; 
1.23      www       354:                 } elsif ($tend<$now) { 
1.35      matthew   355:                     $tstatus='will_not'; 
1.23      www       356:                 }
1.74      www       357:                 $tpend=&Apache::lonlocal::locallocaltime($tend);
1.4       www       358:             }
1.6       www       359:             if ($ENV{'request.role'} eq $trolecode) {
                    360: 		$tstatus='selected';
                    361:             }
1.4       www       362:             my $tbg;
1.35      matthew   363:             if (($tstatus eq 'is') || ($tstatus eq 'selected') ||
                    364:                 ($ENV{'form.showall'})) {
                    365:                 if ($tstatus eq 'is') {
                    366:                     $tbg='#77FF77';
1.47      www       367:                     $tfont='#003300';
1.84    ! www       368: 		    $possiblerole=$trolecode;
        !           369: 		    $countactive++;
1.35      matthew   370:                 } elsif ($tstatus eq 'future') {
                    371:                     $tbg='#FFFF77';
1.49      www       372:                     $button=0;
1.35      matthew   373:                 } elsif ($tstatus eq 'will') {
                    374:                     $tbg='#FFAA77';
1.72      www       375:                     $tremark.=&mt('Active at next login. ');
1.35      matthew   376:                 } elsif ($tstatus eq 'expired') {
                    377:                     $tbg='#FF7777';
1.47      www       378:                     $tfont='#330000';
1.49      www       379:                     $button=0;
1.35      matthew   380:                 } elsif ($tstatus eq 'will_not') {
                    381:                     $tbg='#AAFF77';
1.72      www       382:                     $tremark.=&mt('Expired after logout. ');
1.35      matthew   383:                 } elsif ($tstatus eq 'selected') {
                    384:                     $tbg='#11CC55';
1.47      www       385:                     $tfont='#002200';
1.84    ! www       386: 		    $inrole=1;
1.72      www       387:                     $tremark.=&mt('Currently selected. ');
1.35      matthew   388:                 }
                    389:                 my $trole;
                    390:                 if ($role =~ /^cr\//) {
                    391:                     my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$role);
1.72      www       392:                     $tremark.='<br>'.&mt('Defined by ').$rauthor.
                    393: 			&mt(' at ').$rdomain.'.';
1.35      matthew   394:                     $trole=$rrole;
1.8       www       395:                 } else {
1.35      matthew   396:                     $trole=Apache::lonnet::plaintext($role);
                    397:                 }
                    398:                 my $ttype;
                    399:                 my $twhere;
                    400:                 my ($tdom,$trest,$tsection)=
                    401:                     split(/\//,Apache::lonnet::declutter($where));
                    402:                 # First, Co-Authorship roles
                    403:                 if ($role eq 'ca') {
1.39      stredwic  404:                     my $home = &Apache::lonnet::homeserver($trest,$tdom);
1.83      albertel  405: 		    my $allowed=0;
                    406: 		    my @ids=&Apache::lonnet::current_machine_ids();
                    407: 		    foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
                    408:                     if (!$allowed) {
1.49      www       409: 			$button=0;
1.51      www       410:                         $switchserver=&Apache::lonnet::escape('http://'.
                    411:                          $Apache::lonnet::hostname{$home}.
                    412:                          '/adm/login?domain='.$ENV{'user.domain'}.
                    413: 			  '&username='.$ENV{'user.name'}.
                    414:                           '&firsturl=/priv/'.$trest);
1.49      www       415:                     }
1.35      matthew   416:                     #next if ($home eq 'no_host');
                    417:                     $home = $Apache::lonnet::hostname{$home};
1.78      sakharuk  418:                     $ttype='Construction Space';
1.72      www       419:                     $twhere=&mt('User').': '.$trest.'<br />'.&mt('Domain').
                    420: 			': '.$tdom.'<br />'.
                    421:                         ' '.&mt('Server').':&nbsp;'.$home;
1.35      matthew   422:                     $ENV{'course.'.$tdom.'_'.$trest.'.description'}='ca';
1.82      www       423: 		    $tremark.=&Apache::lonhtmlcommon::authorbombs('/res/'.$tdom.'/'.$trest.'/');
1.75      albertel  424: 		    $sortkey=$role."$trest:$tdom";
1.35      matthew   425:                 } elsif ($role eq 'au') {
                    426:                     # Authors
                    427:                     my $home = &Apache::lonnet::homeserver
1.39      stredwic  428:                         ($ENV{'user.name'},$ENV{'user.domain'});
1.83      albertel  429: 		    my $allowed=0;
                    430: 		    my @ids=&Apache::lonnet::current_machine_ids();
                    431: 		    foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
                    432:                     if (!$allowed) {
1.49      www       433: 			$button=0;
1.51      www       434:                         $switchserver=&Apache::lonnet::escape('http://'.
                    435:                          $Apache::lonnet::hostname{$home}.
                    436:                           '/adm/login?domain='.$ENV{'user.domain'}.
                    437: 			   '&username='.$ENV{'user.name'}.
                    438:                            '&firsturl=/priv/'.$ENV{'user.name'});
1.49      www       439:                     }
1.35      matthew   440:                     #next if ($home eq 'no_host');
                    441:                     $home = $Apache::lonnet::hostname{$home};
1.78      sakharuk  442:                     $ttype='Construction Space';
1.72      www       443:                     $twhere=&mt('Domain').': '.$tdom.'<br />'.&mt('Server').
                    444: 			':&nbsp;'.$home;
1.35      matthew   445:                     $ENV{'course.'.$tdom.'_'.$trest.'.description'}='ca';
1.82      www       446: 		    $tremark.=&Apache::lonhtmlcommon::authorbombs('/res/'.$tdom.'/'.$ENV{'user.name'}.'/');
1.75      albertel  447: 		    $sortkey=$role;
1.35      matthew   448:                 } elsif ($trest) {
1.78      sakharuk  449:                     $ttype='Course';
1.35      matthew   450:                     if ($tsection) {
1.72      www       451:                         $ttype.='<br>'.&mt('Section/Group').': '.$tsection;
1.37      albertel  452: 		    }
1.35      matthew   453:                     my $tcourseid=$tdom.'_'.$trest;
                    454:                     if ($ENV{'course.'.$tcourseid.'.description'}) {
1.47      www       455:                         $twhere=$ENV{'course.'.$tcourseid.'.description'};
1.80      albertel  456: 			$sortkey=$role."\0".$tdom."\0".$twhere."\0".$envkey;
1.72      www       457:                         unless ($twhere eq &mt('Currently not available')) {
1.55      albertel  458: 			    $twhere.=' <font size="-2">'.
1.72      www       459:         &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom,$tfont).
1.49      www       460:                                     '</font>';
1.55      albertel  461: 			}
1.8       www       462:                     } else {
1.35      matthew   463:                         my %newhash=Apache::lonnet::coursedescription
                    464:                             ($tcourseid);
                    465:                         if (%newhash) {
1.80      albertel  466: 			    $sortkey=$role."\0".$tdom."\0".$newhash{'description'}.
1.77      albertel  467: 				"\0".$envkey;
1.49      www       468:                             $twhere=$newhash{'description'}.
                    469:                               ' <font size="-2">'.
1.72      www       470:         &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom,$tfont).
1.49      www       471:                               '</font>';
1.35      matthew   472:                         } else {
1.72      www       473:                             $twhere=&mt('Currently not available');
1.35      matthew   474:                             $ENV{'course.'.$tcourseid.'.description'}=$twhere;
1.80      albertel  475: 			    $sortkey=$role."\0".$tdom."\0".$twhere."\0".$envkey;
1.35      matthew   476:                         }
1.8       www       477:                     }
1.72      www       478: 		    if ($role ne 'st') { $twhere.="<br />".&mt('Domain').":".$tdom; }
1.35      matthew   479:                 } elsif ($tdom) {
1.78      sakharuk  480:                     $ttype='Domain';
1.35      matthew   481:                     $twhere=$tdom;
1.75      albertel  482: 		    $sortkey=$role.$twhere;
1.35      matthew   483:                 } else {
1.78      sakharuk  484:                     $ttype='System';
1.72      www       485:                     $twhere=&mt('system wide');
1.75      albertel  486: 		    $sortkey=$role.$twhere;
1.13      www       487:                 }
1.35      matthew   488:  
1.75      albertel  489:                 $roletext.='<tr bgcolor='.$tbg.'>';
1.35      matthew   490:                 unless ($nochoose) {
                    491:                     if (!$button) {
1.49      www       492: 			if ($switchserver) {
1.75      albertel  493: 			    $roletext.='<td><a href="/adm/logout?handover='.
                    494:                               $switchserver.'">'.&mt('Switch Server').'</a></td>';
1.49      www       495:                         } else {
1.75      albertel  496:                             $roletext.=('<td>&nbsp;</td>');
1.49      www       497:                         }
1.35      matthew   498:                     } elsif ($tstatus eq 'is') {
1.75      albertel  499:                         $roletext.=('<td><input type=submit value="'.
1.72      www       500: 				  &mt('Select').'" name="'.
1.35      matthew   501:                                   $trolecode.'"></td>');
1.61      www       502:                     } elsif ($tryagain) {
1.75      albertel  503:                         $roletext.=
                    504: 			    '<td><input type=submit value="'.
                    505: 		  &mt('Try Selecting Again').'" name="'.$trolecode.'"></td>';
1.61      www       506:                     } elsif ($advanced) {
1.75      albertel  507:                         $roletext.=
                    508:                             '<td><input type=submit value="'.
                    509: 		        &mt('Re-Initialize').'" name="'.$trolecode.'"></td>';
1.35      matthew   510:                     } else {
1.75      albertel  511:                         $roletext.='<td>&nbsp;</td>';
1.35      matthew   512:                     }
1.6       www       513:                 }
1.57      www       514:                 $tremark.=&Apache::lonannounce::showday(time,1,
                    515:                          &Apache::lonannounce::readcalendar($tdom.'_'.$trest));
                    516:                 
1.75      albertel  517: 		$roletext.='<td><font color="'.$tfont.'">'.$trole.
1.47      www       518:                       '</font></td><td><font color="'.$tfont.'">'.$ttype.
                    519:                       '</font></td><td><font color="'.$tfont.'">'.$twhere.
                    520:                       '</font></td><td><font color="'.$tfont.'">'.$tpstart.
                    521:                       '</font></td><td><font color="'.$tfont.'">'.$tpend.
                    522:                       '</font></td><td><font color="'.$tfont.'">'.$tremark.
1.75      albertel  523:                       '&nbsp;</font></td></tr>'."\n";
                    524: 		$roletext{$envkey}=$roletext;
                    525: 		if (!$sortkey) {$sortkey=$twhere."\0".$envkey;}
                    526: 		$sortrole{$sortkey}=$envkey;
                    527: 		$roleclass{$envkey}=$ttype;
1.55      albertel  528: 	    }
1.4       www       529:         }
1.75      albertel  530:     }
1.84    ! www       531: # No active roles
        !           532:     if ($countactive==0) {
        !           533: 	if ($inrole) {
        !           534: 	    $r->print('<h2>'.&mt('Currently no additional roles or courses').'</h2>');
        !           535: 	} else {
        !           536: 	    $r->print('<h2>'.&mt('Currently no active roles or courses').'</h2>');
        !           537: 	}
        !           538: 	$r->print('</form></body></html>');
        !           539: 	return OK;
        !           540: # Is there only one choice?
        !           541:     } elsif ($countactive==1) {
        !           542: 	$r->print('<h3>'.&mt('Please stand by.').'</h3>'.
        !           543: 	    '<input type="hidden" name="'.$possiblerole.'" value="1" />');
        !           544: 	$r->print("</form>\n");
        !           545: 	$r->rflush();
        !           546: 	$r->print('<script>document.forms.rolechoice.submit();</script>');
        !           547: 	$r->print('</body></html>');
        !           548: 	return OK;
        !           549:     }
        !           550: # More than one possible role
        !           551: # ----------------------------------------------------------------------- Table
        !           552:     unless (($advanced) || ($nochoose)) {
        !           553: 	$r->print("<h2>".&mt('Select a Course to Enter')."</h2>\n");
        !           554:     }
        !           555:     $r->print('<br /><table><tr>');
        !           556:     unless ($nochoose) { $r->print('<th>&nbsp;</th>'); }
        !           557:     $r->print('<th>'.&mt('User Role').'</th><th colspan=2>'.&mt('Extent').
        !           558:          '</th><th>'.&mt('Start').'</th><th>'.&mt('End').'</th><th>'.
        !           559: 	      &mt('Remark').'</th></tr>'."\n");
1.76      albertel  560:     my $doheaders=-1;
1.78      sakharuk  561:     foreach my $type ('Construction Space','Course','Domain','System') {
1.76      albertel  562: 	my $haverole=0;
1.75      albertel  563: 	foreach my $which (sort {uc($a) cmp uc($b)} (keys(%sortrole))) {
                    564: 	    if ($roleclass{$sortrole{$which}} =~ /^\Q$type\E/) { 
1.76      albertel  565: 		$haverole=1;
1.75      albertel  566: 	    }
1.76      albertel  567: 	}
                    568: 	if ($haverole) { $doheaders++; }
                    569:     }
1.78      sakharuk  570:     foreach my $type ('Construction Space','Course','Domain','System') {
1.76      albertel  571: 	my $output;
                    572: 	foreach my $which (sort {uc($a) cmp uc($b)} (keys(%sortrole))) {
                    573: 	    if ($roleclass{$sortrole{$which}} =~ /^\Q$type\E/) { 
1.78      sakharuk  574: 		$output.=&mt($roletext{$sortrole{$which}});
1.76      albertel  575: 	    }
                    576: 	}
                    577: 	if ($output) {
                    578: 	    if ($doheaders > 0) {
1.77      albertel  579: 		$r->print("<tr bgcolor='#BBffBB'>".
1.79      sakharuk  580: 			  "<td align='center' colspan='7'>".&mt($type)."</td>");
1.76      albertel  581: 	    }
                    582: 	    $r->print($output);	    
1.75      albertel  583: 	}
1.4       www       584:     }
1.14      www       585:     my $tremark='';
1.47      www       586:     my $tfont='#003300';
1.14      www       587:     if ($ENV{'request.role'} eq 'cm') {
1.19      www       588: 	$r->print('<tr bgcolor="#11CC55">');
1.72      www       589:         $tremark=&mt('Currently selected. ');
1.47      www       590:         $tfont='#002200';
1.14      www       591:     } else {
                    592:         $r->print('<tr bgcolor="#77FF77">');
                    593:     }
                    594:     unless ($nochoose) {
1.55      albertel  595: 	if ($ENV{'request.role'} ne 'cm') {
1.72      www       596: 	    $r->print('<td><input type=submit value="'.
                    597: 		      &mt('Select').'" name="cm"></td>');
1.55      albertel  598: 	} else {
                    599: 	    $r->print('<td>&nbsp;</td>');
                    600: 	}
1.14      www       601:     }
1.72      www       602:     $r->print('<td colspan=5><font color="'.$tfont.'">'.&mt('No role specified').
1.47      www       603:       '</font></td><td><font color="'.$tfont.'">'.$tremark.
                    604:       '&nbsp;</font></td></tr>'."\n");
1.4       www       605: 
                    606:     $r->print('</table>');
                    607:     unless ($nochoose) {
                    608: 	$r->print("</form>\n");
                    609:     }
1.22      harris41  610: # ------------------------------------------------------------ Privileges Info
1.55      albertel  611:     if (($advanced) && (($ENV{'user.error.msg'}) || ($error))) {
                    612: 	$r->print('<hr><h2>Current Privileges</h2>');
1.4       www       613: 
1.55      albertel  614: 	foreach $envkey (sort keys %ENV) {
                    615: 	    if ($envkey=~/^user\.priv\.$ENV{'request.role'}\./) {
                    616: 		my $where=$envkey;
                    617: 		$where=~s/^user\.priv\.$ENV{'request.role'}\.//;
                    618: 		my $ttype;
                    619: 		my $twhere;
                    620: 		my ($tdom,$trest,$tsec)=
                    621: 		    split(/\//,Apache::lonnet::declutter($where));
                    622: 		if ($trest) {
                    623: 		    if ($ENV{'course.'.$tdom.'_'.$trest.'.description'} eq 'ca') {
                    624: 			$ttype='Construction Space';
                    625: 			$twhere='User: '.$trest.', Domain: '.$tdom;
                    626: 		    } else {
                    627: 			$ttype='Course';
                    628: 			$twhere=$ENV{'course.'.$tdom.'_'.$trest.'.description'};
                    629: 			if ($tsec) {
                    630: 			    $twhere.=' (Section/Group: '.$tsec.')';
                    631: 			}
                    632: 		    }
                    633: 		} elsif ($tdom) {
                    634: 		    $ttype='Domain';
                    635: 		    $twhere=$tdom;
                    636: 		} else {
                    637: 		    $ttype='System';
                    638: 		    $twhere='/';
                    639: 		}
                    640: 		$r->print("\n<h3>".$ttype.': '.$twhere.'</h3><ul>');
                    641: 		foreach (sort split(/:/,$ENV{$envkey})) {
                    642: 		    if ($_) {
                    643: 			my ($prv,$restr)=split(/\&/,$_);
                    644: 			my $trestr='';
                    645: 			if ($restr ne 'F') {
                    646: 			    my $i;
                    647: 			    $trestr.=' (';
                    648: 			    for ($i=0;$i<length($restr);$i++) {
                    649: 				$trestr.=
                    650: 			       Apache::lonnet::plaintext(substr($restr,$i,1));
                    651: 				if ($i<length($restr)-1) { $trestr.=', '; }
                    652: 			    }
                    653: 			    $trestr.=')';
                    654: 			}
                    655: 			$r->print('<li>'.
                    656: 				  Apache::lonnet::plaintext($prv).$trestr.
                    657: 				  '</li>');
                    658: 		    }
                    659: 		}
                    660: 		$r->print('</ul>');
                    661: 	    }
                    662: 	}
1.4       www       663:     }
1.66      www       664:     $r->print(&Apache::lonnet::getannounce());
1.65      www       665:     if ($advanced) {
                    666: 	$r->print('<p><small><i>This is LON-CAPA '.
                    667: 		  $r->dir_config('lonVersion').'</i></small></p>');
                    668:     }
1.1       harris41  669:     $r->print("</body></html>\n");
                    670:     return OK;
                    671: } 
                    672: 
                    673: 1;
                    674: __END__
1.32      harris41  675: 
                    676: =head1 NAME
                    677: 
                    678: Apache::lonroles - User Roles Screen
                    679: 
                    680: =head1 SYNOPSIS
                    681: 
                    682: Invoked by /etc/httpd/conf/srm.conf:
                    683: 
                    684:  <Location /adm/roles>
                    685:  PerlAccessHandler       Apache::lonacc
                    686:  SetHandler perl-script
                    687:  PerlHandler Apache::lonroles
                    688:  ErrorDocument     403 /adm/login
                    689:  ErrorDocument	  500 /adm/errorhandler
                    690:  </Location>
1.64      bowersj2  691: 
                    692: =head1 OVERVIEW
                    693: 
                    694: =head2 Choosing Roles
                    695: 
                    696: C<lonroles> is a handler that allows a user to switch roles in
                    697: mid-session. LON-CAPA attempts to work with "No Role Specified", the
                    698: default role that a user has before selecting a role, as widely as
                    699: possible, but certain handlers for example need specification which
                    700: course they should act on, etc. Both in this scenario, and when the
                    701: handler determines via C<lonnet>'s C<&allowed> function that a certain
                    702: action is not allowed, C<lonroles> is used as error handler. This
                    703: allows the user to select another role which may have permission to do
                    704: what they were trying to do. C<lonroles> can also be accessed via the
                    705: B<CRS> button in the Remote Control. 
                    706: 
                    707: =begin latex
                    708: 
                    709: \begin{figure}
                    710: \begin{center}
                    711: \includegraphics[width=0.45\paperwidth,keepaspectratio]{Sample_Roles_Screen}
                    712:   \caption{\label{Sample_Roles_Screen}Sample Roles Screen} 
                    713: \end{center}
                    714: \end{figure}
                    715: 
                    716: =end latex
                    717: 
                    718: =head2 Role Initialization
                    719: 
                    720: The privileges for a user are established at login time and stored in the session environment. As a consequence, a new role does not become active till the next login. Handlers are able to query for privileges using C<lonnet>'s C<&allowed> function. When a user first logs in, their role is the "common" role, which means that they have the sum of all of their privileges. During a session it might become necessary to choose a particular role, which as a consequence also limits the user to only the privileges in that particular role.
1.32      harris41  721: 
                    722: =head1 INTRODUCTION
                    723: 
                    724: This module enables a user to select what role he wishes to
                    725: operate under (instructor, student, teaching assistant, course
                    726: coordinator, etc).  These roles are pre-established by the actions
                    727: of upper-level users.
                    728: 
                    729: This is part of the LearningOnline Network with CAPA project
                    730: described at http://www.lon-capa.org.
                    731: 
                    732: =head1 HANDLER SUBROUTINE
                    733: 
                    734: This routine is called by Apache and mod_perl.
                    735: 
                    736: =over 4
                    737: 
                    738: =item *
                    739: 
                    740: Roles Initialization (yes/no)
                    741: 
                    742: =item *
                    743: 
                    744: Get Error Message from Environment
                    745: 
                    746: =item *
                    747: 
                    748: Who is this?
                    749: 
                    750: =item *
                    751: 
                    752: Generate Page Output
                    753: 
                    754: =item *
                    755: 
                    756: Choice or no choice
                    757: 
                    758: =item *
                    759: 
                    760: Table
                    761: 
                    762: =item *
                    763: 
                    764: Privileges
                    765: 
                    766: =back
                    767: 
                    768: =cut

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