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

1.1       harris41    1: # The LearningOnline Network with CAPA
                      2: # User Roles Screen
1.31      www         3: #
1.240.2.1! raeburn     4: # $Id: lonroles.pm,v 1.240 2009/11/03 03:01:47 raeburn 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.32      harris41   28: ###
1.22      harris41   29: 
1.210     jms        30: =pod
                     31: 
                     32: =head1 NAME
                     33: 
                     34: Apache::lonroles - User Roles Screen
                     35: 
                     36: =head1 SYNOPSIS
                     37: 
                     38: Invoked by /etc/httpd/conf/srm.conf:
                     39: 
                     40:  <Location /adm/roles>
                     41:  PerlAccessHandler       Apache::lonacc
                     42:  SetHandler perl-script
                     43:  PerlHandler Apache::lonroles
                     44:  ErrorDocument     403 /adm/login
                     45:  ErrorDocument	  500 /adm/errorhandler
                     46:  </Location>
                     47: 
                     48: =head1 OVERVIEW
                     49: 
                     50: =head2 Choosing Roles
                     51: 
                     52: C<lonroles> is a handler that allows a user to switch roles in
                     53: mid-session. LON-CAPA attempts to work with "No Role Specified", the
                     54: default role that a user has before selecting a role, as widely as
                     55: possible, but certain handlers for example need specification which
                     56: course they should act on, etc. Both in this scenario, and when the
                     57: handler determines via C<lonnet>'s C<&allowed> function that a certain
                     58: action is not allowed, C<lonroles> is used as error handler. This
                     59: allows the user to select another role which may have permission to do
                     60: what they were trying to do. C<lonroles> can also be accessed via the
                     61: B<CRS> button in the Remote Control. 
                     62: 
                     63: =begin latex
                     64: 
                     65: \begin{figure}
                     66: \begin{center}
                     67: \includegraphics[width=0.45\paperwidth,keepaspectratio]{Sample_Roles_Screen}
                     68:   \caption{\label{Sample_Roles_Screen}Sample Roles Screen} 
                     69: \end{center}
                     70: \end{figure}
                     71: 
                     72: =end latex
                     73: 
                     74: =head2 Role Initialization
                     75: 
                     76: 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.
                     77: 
                     78: =head1 INTRODUCTION
                     79: 
                     80: This module enables a user to select what role he wishes to
                     81: operate under (instructor, student, teaching assistant, course
                     82: coordinator, etc).  These roles are pre-established by the actions
                     83: of upper-level users.
                     84: 
                     85: This is part of the LearningOnline Network with CAPA project
                     86: described at http://www.lon-capa.org.
                     87: 
                     88: =head1 HANDLER SUBROUTINE
                     89: 
                     90: This routine is called by Apache and mod_perl.
                     91: 
                     92: =over 4
                     93: 
                     94: =item *
                     95: 
                     96: Roles Initialization (yes/no)
                     97: 
                     98: =item *
                     99: 
                    100: Get Error Message from Environment
                    101: 
                    102: =item *
                    103: 
                    104: Who is this?
                    105: 
                    106: =item *
                    107: 
                    108: Generate Page Output
                    109: 
                    110: =item *
                    111: 
                    112: Choice or no choice
                    113: 
                    114: =item *
                    115: 
                    116: Table
                    117: 
                    118: =item *
                    119: 
                    120: Privileges
                    121: 
                    122: =back
                    123: 
                    124: =cut
                    125: 
                    126: 
1.1       harris41  127: package Apache::lonroles;
                    128: 
                    129: use strict;
1.118     albertel  130: use Apache::lonnet;
1.7       www       131: use Apache::lonuserstate();
1.1       harris41  132: use Apache::Constants qw(:common);
1.2       www       133: use Apache::File();
1.26      www       134: use Apache::lonmenu;
1.29      albertel  135: use Apache::loncommon;
1.104     raeburn   136: use Apache::lonhtmlcommon;
1.57      www       137: use Apache::lonannounce;
1.72      www       138: use Apache::lonlocal;
1.151     www       139: use Apache::lonpageflip();
1.167     albertel  140: use Apache::lonnavdisplay();
1.120     albertel  141: use GDBM_File;
1.170     albertel  142: use LONCAPA qw(:DEFAULT :match);
1.201     raeburn   143: use HTML::Entities;
1.149     www       144:  
1.1       harris41  145: 
1.62      matthew   146: sub redirect_user {
1.95      albertel  147:     my ($r,$title,$url,$msg,$launch_nav) = @_;
1.62      matthew   148:     $msg = $title if (! defined($msg));
1.73      www       149:     &Apache::loncommon::content_type($r,'text/html');
1.62      matthew   150:     &Apache::loncommon::no_cache($r);
                    151:     $r->send_http_header;
                    152:     my $swinfo=&Apache::lonmenu::rawconfig();
1.96      albertel  153:     my $navwindow;
1.95      albertel  154:     if ($launch_nav eq 'on') {
1.166     albertel  155: 	$navwindow.=&Apache::lonnavdisplay::launch_win('now',undef,undef,
                    156: 						       ($url =~ m-^/adm/whatsnew-));
1.96      albertel  157:     } else {
                    158: 	$navwindow.=&Apache::lonnavmaps::close();
1.95      albertel  159:     }
1.228     bisitz    160: 
                    161:     # Breadcrumbs
                    162:     my $brcrum = [{'href' => $url,
                    163:                    'text' => 'Switching Role'},];
1.147     albertel  164:     my $start_page = &Apache::loncommon::start_page('Switching Role',undef,
1.228     bisitz    165:                                                     {'redirect' => [1,$url],
                    166:                                                      'bread_crumbs' => $brcrum,});
1.147     albertel  167:     my $end_page   = &Apache::loncommon::end_page();
                    168: 
1.92      www       169: # Note to style police: 
                    170: # This must only replace the spaces, nothing else, or it bombs elsewhere.
                    171:     $url=~s/ /\%20/g;
1.93      albertel  172:     $r->print(<<ENDREDIR);
1.147     albertel  173: $start_page
1.96      albertel  174: <script type="text/javascript">
1.225     bisitz    175: // <![CDATA[
1.62      matthew   176: $swinfo
1.225     bisitz    177: // ]]>
1.62      matthew   178: </script>
1.96      albertel  179: $navwindow
1.222     bisitz    180: <p>$msg</p>
1.147     albertel  181: $end_page
1.62      matthew   182: ENDREDIR
                    183:     return;
                    184: }
                    185: 
1.150     www       186: sub error_page {
                    187:     my ($r,$error,$dest)=@_;
                    188:     &Apache::loncommon::content_type($r,'text/html');
                    189:     &Apache::loncommon::no_cache($r);
                    190:     $r->send_http_header;
                    191:     return OK if $r->header_only;
1.228     bisitz    192:     # Breadcrumbs
                    193:     my $brcrum = [{'href' => $dest,
                    194:                    'text' => 'Problems during Course Initialization'},];
                    195:     $r->print(&Apache::loncommon::start_page('Problems during Course Initialization',
                    196:                                              undef,
                    197:                                              {'bread_crumbs' => $brcrum,})
                    198:     );
                    199:     $r->print(
1.225     bisitz    200:         '<script type="text/javascript">'.
                    201:         '// <![CDATA['.
                    202:         &Apache::lonmenu::rawconfig().
                    203:         '// ]]>'.
                    204:         '</script>'.
                    205: 	      '<p class="LC_error">'.&mt('The following problems occurred:').
1.228     bisitz    206:           '<br />'.
1.150     www       207: 	      $error.
1.228     bisitz    208: 	      '</p><br /><a href="'.$dest.'">'.&mt('Continue').'</a>'
                    209:     );
                    210:     $r->print(&Apache::loncommon::end_page());
1.150     www       211: }
                    212: 
1.1       harris41  213: sub handler {
1.10      www       214: 
1.1       harris41  215:     my $r = shift;
                    216: 
1.6       www       217:     my $now=time;
1.118     albertel  218:     my $then=$env{'user.login.time'};
1.226     raeburn   219:     my $refresh=$env{'user.refresh.time'};
                    220:     if (!$refresh) {
                    221:         $refresh = $then;
                    222:     }
1.6       www       223:     my $envkey;
1.107     raeburn   224:     my %dcroles = ();
                    225:     my $numdc = &check_fordc(\%dcroles,$then);
1.148     albertel  226:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
1.10      www       227: 
1.6       www       228: # ================================================================== Roles Init
1.118     albertel  229:     if ($env{'form.selectrole'}) {
1.188     www       230: 
                    231:         my $locknum=&Apache::lonnet::get_locks();
                    232:         if ($locknum) { return 409; }
                    233: 
1.134     www       234:         if ($env{'form.newrole'}) {
                    235:             $env{'form.'.$env{'form.newrole'}}=1;
                    236: 	}
1.118     albertel  237: 	if ($env{'request.course.id'}) {
1.185     raeburn   238:             # Check if user is CC trying to select a course role
                    239:             if ($env{'form.switchrole'}) {
                    240:                 if (!defined($env{'user.role.'.$env{'form.switchrole'}})) {
1.232     raeburn   241:                     &adhoc_course_role($refresh,$then);
1.185     raeburn   242:                 }
                    243:             }
1.118     albertel  244: 	    my %temp=('logout_'.$env{'request.course.id'} => time);
1.33      www       245: 	    &Apache::lonnet::put('email_status',\%temp);
1.118     albertel  246: 	    &Apache::lonnet::delenv('user.state.'.$env{'request.course.id'});
1.100     albertel  247: 	}
1.186     raeburn   248: 	&Apache::lonnet::appenv({"request.course.id"   => '',
                    249: 			 	 "request.course.fn"   => '',
                    250: 				 "request.course.uri"  => '',
                    251: 				 "request.course.sec"  => '',
                    252: 				 "request.role"        => 'cm',
                    253:                                  "request.role.adv"    => $env{'user.adv'},
                    254: 				 "request.role.domain" => $env{'user.domain'}});
1.182     www       255: # Check if user is a DC trying to enter a course or author space and needs privs to be created
1.107     raeburn   256:         if ($numdc > 0) {
1.118     albertel  257:             foreach my $envkey (keys %env) {
1.240     raeburn   258: # Is this an ad-hoc Coordinator role?
                    259:                 if (my ($ccrole,$domain,$coursenum) =
                    260: 		    ($envkey =~ m-^form\.(cc|co)\./($match_domain)/($match_courseid)$-)) {
1.146     raeburn   261:                     if ($dcroles{$domain}) {
1.218     raeburn   262:                         &Apache::lonnet::check_adhoc_privs($domain,$coursenum,
1.240     raeburn   263:                                                            $then,$refresh,$now,$ccrole);
1.182     www       264:                     }
                    265:                     last;
                    266:                 }
1.193     raeburn   267: # Is this an ad-hoc CA-role?
1.183     www       268:                 if (my ($domain,$user) =
                    269: 		    ($envkey =~ m-^form\.ca\./($match_domain)/($match_username)$-)) {
1.206     raeburn   270:                     if (($domain eq $env{'user.domain'}) && ($user eq $env{'user.name'})) {
                    271:                         delete($env{$envkey});
                    272:                         $env{'form.au./'.$domain.'/'} = 1;
                    273:                         my ($server_status,$home) = &check_author_homeserver($user,$domain);
                    274:                         if ($server_status eq 'switchserver') {
                    275:                             my $trolecode = 'au./'.$domain.'/';
                    276:                             my $switchserver = '/adm/switchserver?otherserver='.$home.'&role='.$trolecode;
                    277:                             $r->internal_redirect($switchserver);
                    278:                         }
                    279:                         last;
                    280:                     }
                    281:                     if (my ($castart,$caend) = ($env{'user.role.ca./'.$domain.'/'.$user} =~ /^(\d*)\.(\d*)$/)) {
                    282:                         if (((($castart) && ($castart < $now)) || !$castart) && 
                    283:                             ((!$caend) || (($caend) && ($caend > $now)))) {
                    284:                             my ($server_status,$home) = &check_author_homeserver($user,$domain);
                    285:                             if ($server_status eq 'switchserver') {
                    286:                                 my $trolecode = 'ca./'.$domain.'/'.$user;
                    287:                                 my $switchserver = '/adm/switchserver?otherserver='.$home.'&role='.$trolecode;
                    288:                                 $r->internal_redirect($switchserver);
                    289:                             }
                    290:                             last;
                    291:                         }
                    292:                     }
                    293:                     # Check if author blocked ca-access
1.190     www       294:                     my %blocked=&Apache::lonnet::get('environment',['domcoord.author'],$domain,$user);
                    295:                     if ($blocked{'domcoord.author'} eq 'blocked') {
1.206     raeburn   296:                         delete($env{$envkey});
                    297:                         $env{'user.error.msg'}=':::1:User '.$user.' in domain '.$domain.' blocked domain coordinator access';
                    298:                         last;
1.190     www       299:                     }
1.193     raeburn   300:                     if ($dcroles{$domain}) {
                    301:                         my ($server_status,$home) = &check_author_homeserver($user,$domain);
                    302:                         if (($server_status eq 'ok') || ($server_status eq 'switchserver')) {
1.218     raeburn   303:                             &Apache::lonnet::check_adhoc_privs($domain,$user,$then,
1.230     raeburn   304:                                                                $refresh,$now,'ca');
1.193     raeburn   305:                             if ($server_status eq 'switchserver') {
                    306:                                 my $trolecode = 'ca./'.$domain.'/'.$user; 
                    307:                                 my $switchserver = '/adm/switchserver?'
                    308:                                                   .'otherserver='.$home.'&role='.$trolecode;
                    309:                                 $r->internal_redirect($switchserver);
                    310:                             }
                    311:                         } else {
                    312:                             delete($env{$envkey});
                    313:                         }
1.183     www       314:                     } else {
                    315:                         delete($env{$envkey});
1.182     www       316:                     }
                    317:                     last;
                    318:                 }
1.107     raeburn   319:             }
                    320:         }
                    321: 
1.118     albertel  322:         foreach $envkey (keys %env) {
1.40      matthew   323:             next if ($envkey!~/^user\.role\./);
1.102     raeburn   324:             my ($where,$trolecode,$role,$tstatus,$tend,$tstart);
1.226     raeburn   325:             &Apache::lonnet::role_status($envkey,$then,$refresh,$now,\$role,\$where,
1.218     raeburn   326:                                          \$trolecode,\$tstatus,\$tstart,\$tend);
1.118     albertel  327:             if ($env{'form.'.$trolecode}) {
1.55      albertel  328: 		if ($tstatus eq 'is') {
                    329: 		    $where=~s/^\///;
                    330: 		    my ($cdom,$cnum,$csec)=split(/\//,$where);
1.137     raeburn   331: # check for course groups
                    332:                     my %coursegroups = &Apache::lonnet::get_active_groups(
                    333:                           $env{'user.domain'},$env{'user.name'},$cdom, $cnum);
                    334:                     my $cgrps = join(':',keys(%coursegroups));
                    335: 
1.111     albertel  336: # store role if recent_role list being kept
1.118     albertel  337:                     if ($env{'environment.recentroles'}) {
1.158     albertel  338:                         my %frozen_roles =
                    339:                            &Apache::lonhtmlcommon::get_recent_frozen('roles',$env{'environment.recentrolesn'});
1.111     albertel  340: 			&Apache::lonhtmlcommon::store_recent('roles',
1.158     albertel  341: 							     $trolecode,' ',$frozen_roles{$trolecode});
1.111     albertel  342:                     }
                    343: 
                    344: 
1.53      www       345: # check for keyed access
1.55      albertel  346: 		    if (($role eq 'st') && 
1.118     albertel  347:                        ($env{'course.'.$cdom.'_'.$cnum.'.keyaccess'} eq 'yes')) {
1.89      www       348: # who is key authority?
                    349: 			my $authdom=$cdom;
                    350: 			my $authnum=$cnum;
1.118     albertel  351: 			if ($env{'course.'.$cdom.'_'.$cnum.'.keyauth'}) {
1.89      www       352: 			    ($authnum,$authdom)=
1.172     albertel  353: 				split(/:/,$env{'course.'.$cdom.'_'.$cnum.'.keyauth'});
1.89      www       354: 			}
                    355: # check with key authority
                    356: 			unless (&Apache::lonnet::validate_access_key(
1.118     albertel  357: 				     $env{'environment.key.'.$cdom.'_'.$cnum},
1.89      www       358: 					     $authdom,$authnum)) {
1.53      www       359: # there is no valid key
1.118     albertel  360: 			     if ($env{'form.newkey'}) {
1.53      www       361: # student attempts to register a new key
1.89      www       362: 				 &Apache::loncommon::content_type($r,'text/html');
                    363: 				 &Apache::loncommon::no_cache($r);
                    364: 				 $r->send_http_header;
                    365: 				 my $swinfo=&Apache::lonmenu::rawconfig();
1.147     albertel  366: 				 my $start_page=&Apache::loncommon::start_page
1.89      www       367: 				    ('Verifying Access Key to Unlock this Course');
1.147     albertel  368: 				 my $end_page=&Apache::loncommon::end_page();
1.90      www       369: 				 my $buttontext=&mt('Enter Course');
                    370: 				 my $message=&mt('Successfully registered key');
                    371: 				 my $assignresult=
                    372: 				     &Apache::lonnet::assign_access_key(
1.118     albertel  373: 						     $env{'form.newkey'},
1.90      www       374: 						     $authdom,$authnum,
1.91      www       375: 						     $cdom,$cnum,
1.118     albertel  376:                                                      $env{'user.domain'},
                    377: 						     $env{'user.name'},
1.204     bisitz    378:                                                      &mt('Assigned from [_1] at [_2] for [_3]'
                    379:                                                         ,$ENV{'REMOTE_ADDR'}
                    380:                                                         ,&Apache::lonlocal::locallocaltime()
                    381:                                                         ,$trolecode)
                    382:                                                      );
1.90      www       383: 				 unless ($assignresult eq 'ok') {
                    384: 				     $assignresult=~s/^error\:\s*//;
                    385: 				     $message=&mt($assignresult).
                    386: 				     '<br /><a href="/adm/logout">'.
1.89      www       387: 				     &mt('Logout').'</a>';
1.90      www       388: 				     $buttontext=&mt('Re-Enter Key');
                    389: 				 }
1.89      www       390: 				 $r->print(<<ENDENTEREDKEY);
1.147     albertel  391: $start_page
1.179     raeburn   392: <script type="text/javascript">
1.225     bisitz    393: // <![CDATA[
1.89      www       394: $swinfo
1.225     bisitz    395: // ]]>
1.89      www       396: </script>
1.225     bisitz    397: <form action="" method="post">
1.89      www       398: <input type="hidden" name="selectrole" value="1" />
                    399: <input type="hidden" name="$trolecode" value="1" />
1.211     tempelho  400: <span class="LC_fontsize_large">$message</span><br />
1.89      www       401: <input type="submit" value="$buttontext" />
                    402: </form>
1.147     albertel  403: $end_page
1.89      www       404: ENDENTEREDKEY
                    405:                                  return OK;
1.55      albertel  406: 			     } else {
1.53      www       407: # print form to enter a new key
1.73      www       408: 				 &Apache::loncommon::content_type($r,'text/html');
1.55      albertel  409: 				 &Apache::loncommon::no_cache($r);
                    410: 				 $r->send_http_header;
                    411: 				 my $swinfo=&Apache::lonmenu::rawconfig();
1.147     albertel  412: 				 my $start_page=&Apache::loncommon::start_page
1.55      albertel  413: 				    ('Enter Access Key to Unlock this Course');
1.147     albertel  414: 				 my $end_page=&Apache::loncommon::end_page();
1.55      albertel  415: 				 $r->print(<<ENDENTERKEY);
1.147     albertel  416: $start_page
1.179     raeburn   417: <script type="text/javascript">
1.225     bisitz    418: // <![CDATA[
1.53      www       419: $swinfo
1.225     bisitz    420: // ]]>
1.53      www       421: </script>
1.225     bisitz    422: <form action="" method="post">
1.89      www       423: <input type="hidden" name="selectrole" value="1" />
                    424: <input type="hidden" name="$trolecode" value="1" />
1.118     albertel  425: <input type="text" size="20" name="newkey" value="$env{'form.newkey'}" />
1.53      www       426: <input type="submit" value="Enter key" />
                    427: </form>
1.147     albertel  428: $end_page
1.53      www       429: ENDENTERKEY
1.55      albertel  430: 				 return OK;
                    431: 			     }
                    432: 			 }
                    433: 		     }
1.118     albertel  434: 		    &Apache::lonnet::log($env{'user.domain'},
                    435: 					 $env{'user.name'},
                    436: 					 $env{'user.home'},
1.87      www       437: 					 "Role ".$trolecode);
1.101     albertel  438: 		    
1.56      www       439: 		    &Apache::lonnet::appenv(
1.186     raeburn   440: 					   {'request.role'        => $trolecode,
                    441: 					    'request.role.domain' => $cdom,
                    442: 					    'request.course.sec'  => $csec,
                    443:                                             'request.course.groups' => $cgrps});
1.101     albertel  444:                     my $tadv=0;
1.62      matthew   445: 
1.125     www       446: 		    if (($cnum) && ($role ne 'ca') && ($role ne 'aa')) {
1.152     raeburn   447:                         my $msg;
1.55      albertel  448: 			my ($furl,$ferr)=
                    449: 			    &Apache::lonuserstate::readmap($cdom.'/'.$cnum);
1.118     albertel  450: 			if (($env{'form.orgurl'}) && 
                    451: 			    ($env{'form.orgurl'}!~/^\/adm\/flip/)) {
                    452: 			    my $dest=$env{'form.orgurl'};
1.219     raeburn   453:                             if ($env{'form.symb'}) {
                    454:                                 if ($dest =~ /\?/) {
                    455:                                     $dest .= '&';
                    456:                                 } else {
                    457:                                     $dest .= '?'
                    458:                                 }
                    459:                                 $dest .= 'symb='.$env{'form.symb'};
                    460:                             }
1.117     albertel  461: 			    if (&Apache::lonnet::allowed('adv') eq 'F') { $tadv=1; }
1.186     raeburn   462: 			    &Apache::lonnet::appenv({'request.role.adv'=>$tadv});
1.150     www       463:                             if (($ferr) && ($tadv)) {
                    464: 				&error_page($r,$ferr,$dest);
                    465: 			    } else {
                    466: 				$r->internal_redirect($dest);
                    467: 			    }
1.55      albertel  468: 			    return OK;
                    469: 			} else {
1.155     albertel  470: 			    if (!$env{'request.course.id'}) {
1.55      albertel  471: 				&Apache::lonnet::appenv(
1.186     raeburn   472: 				      {"request.course.id"  => $cdom.'_'.$cnum});
1.61      www       473: 				$furl='/adm/roles?tryagain=1';
1.221     bisitz    474:                 $msg='<p><span class="LC_error">'
                    475:                     .&mt('Could not initialize [_1] at this time.',
                    476:                          $env{'course.'.$cdom.'_'.$cnum.'.description'})
                    477:                     .'</span></p>'
                    478:                     .'<p>'.&mt('Please try again.').'</p>'
                    479:                     .'<p>'.$ferr.'</p>';
1.55      albertel  480: 			    }
1.117     albertel  481: 			    if (&Apache::lonnet::allowed('adv') eq 'F') { $tadv=1; }
1.186     raeburn   482: 			    &Apache::lonnet::appenv({'request.role.adv'=>$tadv});
1.152     raeburn   483: 
1.150     www       484: 			    if (($ferr) && ($tadv)) {
                    485: 				&error_page($r,$ferr,$furl);
                    486: 			    } else {
                    487: 				# Check to see if the user is a CC entering a course 
                    488: 				# for the first time
                    489: 				my (undef, undef, $role, $courseid) = split(/\./, $envkey);
                    490: 				if (substr($courseid, 0, 1) eq '/') {
                    491: 				    $courseid = substr($courseid, 1);
                    492: 				}
                    493: 				$courseid =~ s/\//_/;
1.240     raeburn   494: 				if ((($role eq 'cc') || ($role eq 'co')) 
                    495:                                     && ($env{'course.' . $courseid .'.course.helper.not.run'})) { 
1.150     www       496: 				    $furl = "/adm/helper/course.initialization.helper";
                    497: 				    # Send the user to the course they selected
                    498: 				} elsif ($env{'request.course.id'}) {
1.185     raeburn   499:                                     if ($env{'form.destinationurl'}) {
                    500:                                         my $dest = $env{'form.destinationurl'};
1.203     raeburn   501:                                         if ($env{'form.destsymb'} ne '') {
                    502:                                             my $esc_symb = &HTML::Entities::encode($env{'form.destsymb'},'"<>&');
                    503:                                             $dest .= '?symb='.$esc_symb;
                    504:                                         }
1.185     raeburn   505:                                         &redirect_user($r,&mt('Entering [_1]',
                    506:                                                       $env{'course.'.$courseid.'.description'}),
                    507:                                                $dest,$msg,
                    508:                                                $env{'environment.remotenavmap'});
                    509:                                         return OK;
                    510:                                     }
1.150     www       511: 				    if (&Apache::lonnet::allowed('whn',
                    512: 								 $env{'request.course.id'})
                    513: 					|| &Apache::lonnet::allowed('whn',
                    514: 								    $env{'request.course.id'}.'/'
                    515: 								    .$env{'request.course.sec'})
                    516: 					) {
                    517: 					my $startpage = &courseloadpage($courseid);
                    518: 					unless ($startpage eq 'firstres') {         
1.204     bisitz    519: 					    $msg = &mt('Entering [_1] ...',
1.162     albertel  520: 						       $env{'course.'.$courseid.'.description'});
1.150     www       521: 					    &redirect_user($r,&mt('New in course'),
                    522: 							   '/adm/whatsnew?refpage=start',$msg,
                    523: 							   $env{'environment.remotenavmap'});
                    524: 					    return OK;
                    525: 					}
                    526: 				    }
                    527: 				}
1.151     www       528: # Are we allowed to look at the first resource?
1.169     albertel  529: 				if ($furl !~ m|^/adm/|) {
1.151     www       530: # Guess not ...
                    531: 				    $furl=&Apache::lonpageflip::first_accessible_resource();
                    532: 				}
1.162     albertel  533:                                 $msg = &mt('Entering [_1] ...',
                    534: 					   $env{'course.'.$courseid.'.description'});
                    535: 				&redirect_user($r,&mt('Entering [_1]',
                    536: 						      $env{'course.'.$courseid.'.description'}),
1.150     www       537: 					       $furl,$msg,
                    538: 					       $env{'environment.remotenavmap'});
1.58      bowersj2  539: 			    }
1.124     albertel  540: 			    return OK;
1.55      albertel  541: 			}
                    542: 		    }
1.62      matthew   543:                     #
                    544:                     # Send the user to the construction space they selected
1.125     www       545:                     if ($role =~ /^(au|ca|aa)$/) {
1.62      matthew   546:                         my $redirect_url = '/priv/';
                    547:                         if ($role eq 'au') {
1.118     albertel  548:                             $redirect_url.=$env{'user.name'};
1.62      matthew   549:                         } else {
                    550:                             $where =~ /\/(.*)$/;
                    551:                             $redirect_url .= $1;
                    552:                         }
                    553:                         $redirect_url .= '/';
1.78      sakharuk  554:                         &redirect_user($r,&mt('Entering Construction Space'),
1.62      matthew   555:                                        $redirect_url);
                    556:                         return OK;
                    557:                     }
1.104     raeburn   558:                     if ($role eq 'dc') {
1.108     raeburn   559:                         my $redirect_url = '/adm/menu/';
                    560:                         &redirect_user($r,&mt('Loading Domain Coordinator Menu'),
1.104     raeburn   561:                                        $redirect_url);
1.108     raeburn   562:                         return OK;
1.104     raeburn   563:                     }
1.220     raeburn   564:                     if ($role eq 'sc') {
                    565:                         my $redirect_url = '/adm/grades?command=scantronupload';
                    566:                         &redirect_user($r,&mt('Loading Data Upload Page'),
                    567:                                        $redirect_url);
                    568:                         return OK;
                    569:                     }
1.55      albertel  570: 		}
                    571:             }
1.6       www       572:         }
1.40      matthew   573:     }
1.44      www       574: 
1.10      www       575: 
1.6       www       576: # =============================================================== No Roles Init
1.10      www       577: 
1.73      www       578:     &Apache::loncommon::content_type($r,'text/html');
1.30      albertel  579:     &Apache::loncommon::no_cache($r);
1.10      www       580:     $r->send_http_header;
                    581:     return OK if $r->header_only;
                    582: 
1.224     raeburn   583:     my $crumbtext = 'User Roles';
                    584:     my $pagetitle = 'My Roles';
                    585:     my $recent = &mt('Recent Roles');
                    586:     my $show_course=&Apache::loncommon::show_course();
                    587:     if ($show_course) {
                    588:         $crumbtext = 'Courses';
                    589:         $pagetitle = 'My Courses';
                    590:         $recent = &mt('Recent Courses');
                    591:     }
                    592:     my $brcrum =[{href=>"/adm/roles",text=>$crumbtext}];
1.52      www       593:     my $swinfo=&Apache::lonmenu::rawconfig();
1.224     raeburn   594:     my $start_page=&Apache::loncommon::start_page($pagetitle,undef,{bread_crumbs=>$brcrum});
1.134     www       595:     my $standby=&mt('Role selected. Please stand by.');
1.135     albertel  596:     $standby=~s/\n/\\n/g;
1.184     raeburn   597:     my $noscript='<span class="LC_error">'.&mt('Use of LON-CAPA requires Javascript to be enabled in your web browser.').'<br />'.&mt('As this is not the case, most functionality in the system will be unavailable.').'</span><br />';
1.163     www       598: 
1.10      www       599:     $r->print(<<ENDHEADER);
1.147     albertel  600: $start_page
1.163     www       601: <br />
1.179     raeburn   602: <noscript>
                    603: $noscript
                    604: </noscript>
                    605: <script type="text/javascript">
1.225     bisitz    606: // <![CDATA[
1.26      www       607: $swinfo
                    608: window.focus();
1.134     www       609: 
                    610: active=true;
                    611: 
                    612: function enterrole (thisform,rolecode,buttonname) {
                    613:     if (active) {
                    614: 	active=false;
                    615:         document.title='$standby';
                    616:         window.status='$standby';
                    617: 	thisform.newrole.value=rolecode;
                    618: 	thisform.submit();
                    619:     } else {
                    620:        alert('$standby');
                    621:     }   
                    622: }
1.225     bisitz    623: // ]]>
1.26      www       624: </script>
1.10      www       625: ENDHEADER
1.6       www       626: 
1.2       www       627: # ------------------------------------------ Get Error Message from Environment
                    628: 
1.118     albertel  629:     my ($fn,$priv,$nochoose,$error,$msg)=split(/:/,$env{'user.error.msg'});
                    630:     if ($env{'user.error.msg'}) {
1.55      albertel  631: 	$r->log_reason(
1.118     albertel  632:    "$msg for $env{'user.name'} domain $env{'user.domain'} access $priv",$fn);
1.12      www       633:     }
1.1       harris41  634: 
1.61      www       635: # ------------------------------------------------- Can this user re-init, etc?
1.6       www       636: 
1.118     albertel  637:     my $advanced=$env{'user.adv'};
1.61      www       638:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['tryagain']);
1.118     albertel  639:     my $tryagain=$env{'form.tryagain'};
1.209     raeburn   640:     my $reinit=$env{'user.reinit'};
                    641:     delete $env{'user.reinit'};
1.6       www       642: 
1.2       www       643: # -------------------------------------------------------- Generate Page Output
1.6       www       644: # --------------------------------------------------------------- Error Header?
1.2       www       645:     if ($error) {
1.187     bisitz    646:         $r->print("<h1>".&mt('LON-CAPA Access Control')."</h1>");
1.174     albertel  647: 	$r->print("<!-- LONCAPAACCESSCONTROLERRORSCREEN --><hr /><pre>");
                    648: 	if ($priv ne '') {
1.187     bisitz    649:             $r->print(&mt('Access  : ').&Apache::lonnet::plaintext($priv)."\n");
1.174     albertel  650: 	}
                    651: 	if ($fn ne '') {
1.187     bisitz    652:             $r->print(&mt('Resource: ').&Apache::lonenc::check_encrypt($fn)."\n");
1.174     albertel  653: 	}
                    654: 	if ($msg ne '') {
1.187     bisitz    655:             $r->print(&mt('Action  : ').$msg."\n");
1.174     albertel  656: 	}
                    657: 	$r->print("</pre><hr />");
1.120     albertel  658: 	my $url=$fn;
                    659: 	my $last;
                    660: 	if (tie(my %hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
                    661: 		&GDBM_READER(),0640)) {
                    662: 	    $last=$hash{'last_known'};
                    663: 	    untie(%hash);
                    664: 	}
1.149     www       665: 	if ($last) { $fn.='?symb='.&escape($last); }
1.120     albertel  666: 
                    667: 	&Apache::londocs::changewarning($r,undef,'You have modified your course recently, [_1] may fix this access problem.',
                    668: 					&Apache::lonenc::check_encrypt($fn));
1.2       www       669:     } else {
1.118     albertel  670:         if ($env{'user.error.msg'}) {
1.209     raeburn   671:             if ($reinit) {
                    672:                 $r->print(
                    673:  '<h3><span class="LC_error">'.
1.234     raeburn   674:  &mt('As your session file for the course or community has expired, you will need to re-select it.').'</span></h3>');
1.209     raeburn   675:             } else {
                    676: 	        $r->print(
1.157     albertel  677:  '<h3><span class="LC_error">'.
1.235     bisitz    678:  &mt('You need to choose another user role or enter a specific course or community for this function.').
                    679:  '</span></h3>');
1.209     raeburn   680: 	    }
                    681:         }
1.2       www       682:     }
1.6       www       683: # -------------------------------------------------------- Choice or no choice?
1.2       www       684:     if ($nochoose) {
1.177     www       685: 	$r->print("<h2>".&mt('Sorry ...')."</h2>\n<span class='LC_error'>".
                    686: 		  &mt('This action is currently not authorized.').'</span>'.
1.150     www       687: 		  &Apache::loncommon::end_page());
                    688: 	return OK;
1.6       www       689:     } else {
1.18      www       690:         if (($ENV{'REDIRECT_QUERY_STRING'}) && ($fn)) {
                    691:     	    $fn.='?'.$ENV{'REDIRECT_QUERY_STRING'};
1.6       www       692:         }
1.84      www       693:         $r->print('<form method="post" name="rolechoice" action="'.(($fn)?$fn:$r->uri).'">');
1.116     albertel  694:         $r->print('<input type="hidden" name="orgurl" value="'.$fn.'" />');
                    695:         $r->print('<input type="hidden" name="selectrole" value="1" />');
1.134     www       696:         $r->print('<input type="hidden" name="newrole" value="" />');
1.6       www       697:     }
1.226     raeburn   698: 
                    699:     my (%roletext,%sortrole,%roleclass,%futureroles,%timezones);
                    700:     my ($countactive,$countfuture,$inrole,$possiblerole) = 
                    701:         &gather_roles($then,$refresh,$now,$reinit,$nochoose,\%roletext,\%sortrole,\%roleclass,
                    702:                       \%futureroles,\%timezones);
                    703: 
                    704:     $refresh = $now;
                    705:     &Apache::lonnet::appenv({'user.refresh.time'  => $refresh});
1.196     raeburn   706:     if ($env{'user.adv'}) {
1.238     bisitz    707:         $r->print('<p><label><input type="checkbox" name="showall"');
1.196     raeburn   708:         if ($env{'form.showall'}) { $r->print(' checked="checked" '); }
1.238     bisitz    709:         $r->print(' />'.&mt('Show all roles').'</label>'
                    710:                  .' <input type="submit" value="'.&mt('Update display').'" />'
                    711:                  .'</p>');
1.196     raeburn   712:     } else {
                    713:         if ($countactive > 0) {
1.216     raeburn   714:             &queued_selfenrollment($r);
1.196     raeburn   715:             my $domdesc = &Apache::lonnet::domain($env{'user.domain'},'description');
1.201     raeburn   716:             my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&'); 
1.233     bisitz    717:             $r->print(
                    718:                 '<p>'
                    719:                .&mt('[_1]Visit the [_2]Course/Community Catalog[_3]'
                    720:                    .' to view all [_4] LON-CAPA courses and communities.'
                    721:                    ,'<b>'
                    722:                    ,'<a href="/adm/coursecatalog?showdom='.$esc_dom.'">'
                    723:                    ,'</a></b>',$domdesc)
                    724:                .'<br />'
1.235     bisitz    725:                .&mt('If a course or community is [_1]not[_2] in your list of current courses and communities below,'
1.233     bisitz    726:                    .' you may be able to enroll if self-enrollment is permitted.'
                    727:                    ,'<b>','</b>')
                    728:                .'</p>'
                    729:             );
1.196     raeburn   730:         }
                    731:     }
                    732: 
1.84      www       733: # No active roles
                    734:     if ($countactive==0) {
                    735: 	if ($inrole) {
1.234     raeburn   736: 	    $r->print('<h2>'.&mt('Currently no additional roles, courses or communities').'</h2>');
1.84      www       737: 	} else {
1.234     raeburn   738: 	    $r->print('<h2>'.&mt('Currently no active roles, courses or communities').'</h2>');
1.84      www       739: 	}
1.191     raeburn   740:         &findcourse_advice($r);
1.234     raeburn   741:         &requestcourse_advice($r); 
1.191     raeburn   742: 	$r->print('</form>');
                    743:         if ($countfuture) {
                    744:             $r->print(&mt('The following [quant,_1,role,roles] will become active in the future:',$countfuture));
                    745:             my $doheaders = &roletable_headers($r,\%roleclass,\%sortrole,
                    746:                                                $nochoose);
                    747:             &print_rolerows($r,$doheaders,\%roleclass,\%sortrole,\%dcroles,
                    748:                             \%roletext);
                    749:             my $tremark='';
1.212     bisitz    750:             my $tbg;
1.191     raeburn   751:             if ($env{'request.role'} eq 'cm') {
1.212     bisitz    752:                 $tbg="LC_roles_selected";
1.204     bisitz    753:                 $tremark=&mt('Currently selected.').' ';
1.191     raeburn   754:             } else {
1.212     bisitz    755:                 $tbg="LC_roles_is";
1.191     raeburn   756:             }
1.212     bisitz    757:             $r->print(&Apache::loncommon::start_data_table_row()
                    758:                      .'<td class="'.$tbg.'">&nbsp;</td>'
                    759:                      .'<td colspan="3">'
                    760:                      .&mt('No role specified')
                    761:                      .'</td>'
                    762:                      .'<td>'.$tremark.'&nbsp;</td>'
                    763:                      .&Apache::loncommon::end_data_table_row()
                    764:             );
1.191     raeburn   765: 
1.212     bisitz    766:             $r->print(&Apache::loncommon::end_data_table());
1.191     raeburn   767:         }
                    768:         $r->print(&Apache::loncommon::end_page());
1.84      www       769: 	return OK;
1.240.2.1! raeburn   770:     } elsif ($countactive==1) { # Is there only one choice?
        !           771:         my $needs_switchserver;
        !           772:         if ($env{'user.author'}) {
        !           773:             $needs_switchserver = &check_needs_switchserver($possiblerole);
        !           774:         }
        !           775:         if ((!$needs_switchserver) && ($env{'request.role'} eq 'cm')) {
        !           776:             $r->print('<h3>'.&mt('Please stand by.').'</h3>'.
        !           777:                 '<input type="hidden" name="'.$possiblerole.'" value="1" />'.
        !           778:             '<noscript><br /><input type="submit" name="submit" value="'.&mt('Continue').'" /></noscript>');
        !           779:             $r->print("</form>\n");
        !           780:             $r->rflush();
        !           781:             $r->print('<script type="text/javascript">document.forms.rolechoice.submit();</script>');
        !           782:             $r->print(&Apache::loncommon::end_page());
        !           783:             return OK;
        !           784:         }
        !           785:         if ($needs_switchserver) {
        !           786:             $r->print("<h2>".&mt('Server Switch Required')."</h2>\n".
        !           787:                       &mt('Construction Space access is only available from '.
        !           788:                           'the home server of the corresponding Author.').'<br />'.
        !           789:                       &mt("Click the 'Switch Server' link to go there.").'<br />');
        !           790:         }
1.84      www       791:     }
                    792: # ----------------------------------------------------------------------- Table
1.224     raeburn   793:     unless ((!&Apache::loncommon::show_course()) || ($nochoose) || ($countactive==1)) {
1.173     albertel  794: 	$r->print("<h2>".&mt('Select a Course to Enter')."</h2>\n");
1.84      www       795:     }
1.229     raeburn   796:     if ($env{'form.destinationurl'}) {
                    797:         $r->print('<input type="hidden" name="destinationurl" value="'.
                    798:                   $env{'form.destinationurl'}.'" />');
                    799:         if ($env{'form.destsymb'} ne '') {
                    800:             $r->print('<input type="hidden" name="destsymb" value="'.
                    801:                       $env{'form.destsymb'}.'" />');
                    802:         }
                    803:     }
1.191     raeburn   804:     my $doheaders = &roletable_headers($r,\%roleclass,\%sortrole,$nochoose);
1.118     albertel  805:     if ($env{'environment.recentroles'}) {
1.111     albertel  806:         my %recent_roles =
1.118     albertel  807:                &Apache::lonhtmlcommon::get_recent('roles',$env{'environment.recentrolesn'});
1.111     albertel  808: 	my $output='';
                    809: 	foreach (sort(keys(%recent_roles))) {
1.223     raeburn   810: 	    if (ref($roletext{'user.role.'.$_}) eq 'ARRAY') {
                    811: 		$output.= &Apache::loncommon::start_data_table_row().
                    812:                           $roletext{'user.role.'.$_}->[0].
                    813:                           &Apache::loncommon::end_data_table_row().
                    814:                           &Apache::loncommon::continue_data_table_row().
                    815:                           $roletext{'user.role.'.$_}->[1].
                    816:                           &Apache::loncommon::end_data_table_row();
1.170     albertel  817:                 if ($_ =~ m-dc\./($match_domain)/- 
                    818: 		    && $dcroles{$1}) {
1.192     raeburn   819: 		    $output .= &adhoc_roles_row($1,'recent');
1.133     albertel  820:                 }
1.113     raeburn   821: 	    } elsif ($numdc > 0) {
                    822:                 unless ($_ =~/^error\:/) {
                    823:                     $output.=&display_cc_role('user.role.'.$_);
                    824:                 }
                    825:             } 
1.111     albertel  826: 	}
                    827: 	if ($output) {
1.212     bisitz    828: 	    $r->print(&Apache::loncommon::start_data_table_empty_row()
                    829:                      .'<td align="center" colspan="5">'
1.224     raeburn   830:                      .$recent
1.212     bisitz    831:                      .'</td>'
                    832:                      .&Apache::loncommon::end_data_table_empty_row()
                    833:             );
1.111     albertel  834: 	    $r->print($output);
1.114     raeburn   835:             $doheaders ++;
1.111     albertel  836: 	}
                    837:     }
                    838: 
1.104     raeburn   839:     if ($numdc > 0) {
1.112     raeburn   840:         $r->print(&coursepick_jscript());
1.193     raeburn   841:         $r->print(&Apache::loncommon::coursebrowser_javascript().
                    842:                   &Apache::loncommon::authorbrowser_javascript());
1.108     raeburn   843:     }
1.191     raeburn   844:     &print_rolerows($r,$doheaders,\%roleclass,\%sortrole,\%dcroles,\%roletext);
1.202     raeburn   845:     if ($countactive > 1) {
                    846:         my $tremark='';
1.212     bisitz    847:         my $tbg;
1.202     raeburn   848:         if ($env{'request.role'} eq 'cm') {
1.212     bisitz    849:             $tbg="LC_roles_selected";
1.204     bisitz    850:             $tremark=&mt('Currently selected.').' ';
1.202     raeburn   851:         } else {
1.212     bisitz    852:                 $tbg="LC_roles_is";
1.202     raeburn   853:         }
1.212     bisitz    854:         $r->print(&Apache::loncommon::start_data_table_row());
1.202     raeburn   855:         unless ($nochoose) {
                    856: 	    if ($env{'request.role'} ne 'cm') {
1.212     bisitz    857: 	        $r->print('<td class="'.$tbg.'"><input type="submit" value="'.
1.202     raeburn   858: 		          &mt('Select').'" name="cm" /></td>');
                    859: 	    } else {
1.212     bisitz    860: 	        $r->print('<td class="'.$tbg.'">&nbsp;</td>');
1.202     raeburn   861: 	    }
                    862:         }
1.212     bisitz    863:         $r->print('<td colspan="3">'
                    864:                  .&mt('No role specified')
                    865:                  .'</td>'
                    866:                  .'<td>'.$tremark.'&nbsp;</td>'
                    867:                  .&Apache::loncommon::end_data_table_row()
                    868:         );
1.202     raeburn   869:     } 
1.212     bisitz    870:     $r->print(&Apache::loncommon::end_data_table());
1.4       www       871:     unless ($nochoose) {
                    872: 	$r->print("</form>\n");
                    873:     }
1.22      harris41  874: # ------------------------------------------------------------ Privileges Info
1.118     albertel  875:     if (($advanced) && (($env{'user.error.msg'}) || ($error))) {
1.212     bisitz    876: 	$r->print('<hr /><h2>'.&mt('Current Privileges').'</h2>');
1.175     albertel  877: 	$r->print(&privileges_info());
1.4       www       878:     }
1.66      www       879:     $r->print(&Apache::lonnet::getannounce());
1.65      www       880:     if ($advanced) {
1.201     raeburn   881:         my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&');
1.231     bisitz    882:         $r->print('<p><small><i>'
                    883:                  .&mt('This LON-CAPA server is version [_1]',$r->dir_config('lonVersion'))
                    884:                  .'</i><br />'
                    885:                  .'<a href="/adm/logout">'.&mt('Logout').'</a>&nbsp;&nbsp;'
1.201     raeburn   886:                  .'<a href="/adm/coursecatalog?showdom='.$esc_dom.'">'
1.233     bisitz    887:                  .&mt('Course/Community Catalog')
1.225     bisitz    888:                  .'</a></small></p>');
1.65      www       889:     }
1.147     albertel  890:     $r->print(&Apache::loncommon::end_page());
1.1       harris41  891:     return OK;
1.102     raeburn   892: }
                    893: 
1.226     raeburn   894: sub gather_roles {
                    895:     my ($then,$refresh,$now,$reinit,$nochoose,$roletext,$sortrole,$roleclass,$futureroles,$timezones) = @_;
                    896:     my ($countactive,$countfuture,$inrole,$possiblerole) = (0,0,0,'');
                    897:     my $advanced = $env{'user.adv'};
                    898:     my $tryagain = $env{'form.tryagain'};
                    899:     foreach my $envkey (sort(keys(%env))) {
                    900:         my $button = 1;
                    901:         my $switchserver='';
                    902:         my ($role_text,$role_text_end,$sortkey);
                    903:         if ($envkey=~/^user\.role\./) {
                    904:             my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus,$tpstart,$tpend);
                    905:             &Apache::lonnet::role_status($envkey,$then,$refresh,$now,\$role,\$where,
                    906:                                          \$trolecode,\$tstatus,\$tstart,\$tend);
                    907:             next if (!defined($role) || $role eq '' || $role =~ /^gr/);
                    908:             my $timezone = &role_timezone($where,$timezones);
                    909:             $tremark='';
                    910:             $tpstart='&nbsp;';
                    911:             $tpend='&nbsp;';
                    912:             if ($tstart) {
                    913:                 $tpstart=&Apache::lonlocal::locallocaltime($tstart,$timezone);
                    914:             }
                    915:             if ($tend) {
                    916:                 $tpend=&Apache::lonlocal::locallocaltime($tend,$timezone);
                    917:             }
                    918:             if ($env{'request.role'} eq $trolecode) {
                    919:                 $tstatus='selected';
                    920:             }
                    921:             my $tbg;
                    922:             if (($tstatus eq 'is')
                    923:                 || ($tstatus eq 'selected')
                    924:                 || ($tstatus eq 'future')
                    925:                 || ($env{'form.showall'})) {
                    926:                 if ($tstatus eq 'is') {
                    927:                     $tbg='LC_roles_is';
                    928:                     $possiblerole=$trolecode;
                    929:                     $countactive++;
                    930:                 } elsif ($tstatus eq 'future') {
                    931:                     $tbg='LC_roles_future';
                    932:                     $button=0;
                    933:                     $futureroles->{$trolecode} = $tstart.':'.$tend;
                    934:                     $countfuture ++;
                    935:                 } elsif ($tstatus eq 'expired') {
                    936:                     $tbg='LC_roles_expired';
                    937:                     $button=0;
                    938:                 } elsif ($tstatus eq 'will_not') {
                    939:                     $tbg='LC_roles_will_not';
                    940:                     $tremark.=&mt('Expired after logout.').' ';
                    941:                 } elsif ($tstatus eq 'selected') {
                    942:                     $tbg='LC_roles_selected';
                    943:                     $inrole=1;
                    944:                     $countactive++;
                    945:                     $tremark.=&mt('Currently selected.').' ';
                    946:                 }
                    947:                 my $trole;
                    948:                 if ($role =~ /^cr\//) {
                    949:                     my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$role);
                    950:                     if ($tremark) { $tremark.='<br />'; }
                    951:                     $tremark.=&mt('Defined by [_1] at [_2].',$rauthor,$rdomain);
                    952:                 }
                    953:                 $trole=Apache::lonnet::plaintext($role);
                    954:                 my $ttype;
                    955:                 my $twhere;
                    956:                 my ($tdom,$trest,$tsection)=
                    957:                     split(/\//,Apache::lonnet::declutter($where));
                    958:                 # First, Co-Authorship roles
                    959:                 if (($role eq 'ca') || ($role eq 'aa')) {
                    960:                     my $home = &Apache::lonnet::homeserver($trest,$tdom);
                    961:                     my $allowed=0;
                    962:                     my @ids=&Apache::lonnet::current_machine_ids();
                    963:                     foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
                    964:                     if (!$allowed) {
                    965:                         $button=0;
                    966:                         $switchserver='otherserver='.$home.'&role='.$trolecode;
                    967:                     }
                    968:                     #next if ($home eq 'no_host');
                    969:                     $home = &Apache::lonnet::hostname($home);
                    970:                     $ttype='Construction Space';
                    971:                     $twhere=&mt('User').': '.$trest.'<br />'.&mt('Domain').
                    972:                         ': '.$tdom.'<br />'.
                    973:                         ' '.&mt('Server').':&nbsp;'.$home;
                    974:                     $env{'course.'.$tdom.'_'.$trest.'.description'}='ca';
                    975:                     $tremark.=&Apache::lonhtmlcommon::authorbombs('/res/'.$tdom.'/'.$trest.'/');
                    976:                     $sortkey=$role."$trest:$tdom";
                    977:                 } elsif ($role eq 'au') {
                    978:                     # Authors
                    979:                     my $home = &Apache::lonnet::homeserver
                    980:                         ($env{'user.name'},$env{'user.domain'});
                    981:                     my $allowed=0;
                    982:                     my @ids=&Apache::lonnet::current_machine_ids();
                    983:                     foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
                    984:                     if (!$allowed) {
                    985:                         $button=0;
                    986:                         $switchserver='otherserver='.$home.'&role='.$trolecode;
                    987:                     }
                    988:                     #next if ($home eq 'no_host');
                    989:                     $home = &Apache::lonnet::hostname($home);
                    990:                     $ttype='Construction Space';
                    991:                     $twhere=&mt('Domain').': '.$tdom.'<br />'.&mt('Server').
                    992:                         ':&nbsp;'.$home;
                    993:                     $env{'course.'.$tdom.'_'.$trest.'.description'}='ca';
                    994:                     $tremark.=&Apache::lonhtmlcommon::authorbombs('/res/'.$tdom.'/'.$env{'user.name'}.'/');
                    995:                     $sortkey=$role;
                    996:                 } elsif ($trest) {
                    997:                     my $tcourseid=$tdom.'_'.$trest;
                    998:                     $ttype = &Apache::loncommon::course_type($tcourseid);
                    999:                     $trole = &Apache::lonnet::plaintext($role,$ttype);
                   1000:                     if ($env{'course.'.$tcourseid.'.description'}) {
                   1001:                         $twhere=$env{'course.'.$tcourseid.'.description'};
                   1002:                         $sortkey=$role."\0".$tdom."\0".$twhere."\0".$envkey;
                   1003:                         unless ($twhere eq &mt('Currently not available')) {
                   1004:                             $twhere.=' <span class="LC_fontsize_small">'.
                   1005:         &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom).
                   1006:                                     '</span>';
                   1007:                         }
                   1008:                     } else {
                   1009:                         my %newhash=&Apache::lonnet::coursedescription($tcourseid);
                   1010:                         if (%newhash) {
                   1011:                             $sortkey=$role."\0".$tdom."\0".$newhash{'description'}.
                   1012:                                 "\0".$envkey;
                   1013:                             $twhere=$newhash{'description'}.
                   1014:                               ' <span class="LC_fontsize_small">'.
                   1015:         &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom).
                   1016:                               '</span>';
                   1017:                             $ttype = $newhash{'type'};
                   1018:                             $trole = &Apache::lonnet::plaintext($role,$ttype);
                   1019:                         } else {
                   1020:                             $twhere=&mt('Currently not available');
                   1021:                             $env{'course.'.$tcourseid.'.description'}=$twhere;
                   1022:                             $sortkey=$role."\0".$tdom."\0".$twhere."\0".$envkey;
                   1023:                             $ttype = 'Unavailable';
                   1024:                         }
                   1025:                     }
                   1026:                     if ($tsection) {
                   1027:                         $twhere.='<br />'.&mt('Section').': '.$tsection;
                   1028:                     }
                   1029:                     if ($role ne 'st') { $twhere.="<br />".&mt('Domain').":".$tdom; }
                   1030:                 } elsif ($tdom) {
                   1031:                     $ttype='Domain';
                   1032:                     $twhere=$tdom;
                   1033:                     $sortkey=$role.$twhere;
                   1034:                 } else {
                   1035:                     $ttype='System';
                   1036:                     $twhere=&mt('system wide');
                   1037:                     $sortkey=$role.$twhere;
                   1038:                 }
                   1039:                 ($role_text,$role_text_end) =
                   1040:                     &build_roletext($trolecode,$tdom,$trest,$tstatus,$tryagain,
                   1041:                                     $advanced,$tremark,$tbg,$trole,$twhere,$tpstart,
                   1042:                                     $tpend,$nochoose,$button,$switchserver,$reinit);
                   1043:                 $roletext->{$envkey}=[$role_text,$role_text_end];
                   1044:                 if (!$sortkey) {$sortkey=$twhere."\0".$envkey;}
                   1045:                 $sortrole->{$sortkey}=$envkey;
                   1046:                 $roleclass->{$envkey}=$ttype;
                   1047:             }
                   1048:         }
                   1049:     }
                   1050:     return ($countactive,$countfuture,$inrole,$possiblerole);
                   1051: }
                   1052: 
1.215     raeburn  1053: sub role_timezone {
                   1054:     my ($where,$timezones) = @_;
                   1055:     my $timezone;
                   1056:     if (ref($timezones) eq 'HASH') { 
                   1057:         if ($where =~ m{^/($match_domain)/($match_courseid)}) {
                   1058:             my $cdom = $1;
                   1059:             my $cnum = $2;
                   1060:             if ($cdom && $cnum) {
                   1061:                 if (!exists($timezones->{$cdom.'_'.$cnum})) {
                   1062:                     my %timehash =
                   1063:                         &Apache::lonnet::get('environment',['timezone'],$cdom,$cnum);
                   1064:                     if ($timehash{'timezone'} eq '') {
                   1065:                         if (!exists($timezones->{$cdom})) {
                   1066:                             my %domdefaults = 
                   1067:                                 &Apache::lonnet::get_domain_defaults($cdom);
                   1068:                             if ($domdefaults{'timezone_def'} eq '') {
                   1069:                                 $timezones->{$cdom} = 'local';
                   1070:                             } else {
                   1071:                                 $timezones->{$cdom} = $domdefaults{'timezone_def'};
                   1072:                             }
                   1073:                         }
                   1074:                         $timezones->{$cdom.'_'.$cnum} = $timezones->{$cdom};
                   1075:                     } else {
                   1076:                         $timezones->{$cdom.'_'.$cnum} = 
                   1077:                             &Apache::lonlocal::gettimezone($timehash{'timezone'});
                   1078:                     }
                   1079:                 }
                   1080:                 $timezone = $timezones->{$cdom.'_'.$cnum};
                   1081:             }
                   1082:         } else {
                   1083:             my ($tdom) = ($where =~ m{^/($match_domain)});
                   1084:             if ($tdom) {
                   1085:                 if (!exists($timezones->{$tdom})) {
                   1086:                     my %domdefaults = &Apache::lonnet::get_domain_defaults($tdom);
                   1087:                     if ($domdefaults{'timezone_def'} eq '') {
                   1088:                         $timezones->{$tdom} = 'local';
                   1089:                     } else {
                   1090:                         $timezones->{$tdom} = $domdefaults{'timezone_def'};
                   1091:                     }
                   1092:                 }
                   1093:                 $timezone = $timezones->{$tdom};
                   1094:             }
                   1095:         }
                   1096:         if ($timezone eq 'local') {
                   1097:             $timezone = undef;
                   1098:         }
                   1099:     }
                   1100:     return $timezone;
                   1101: }
                   1102: 
1.191     raeburn  1103: sub roletable_headers {
                   1104:     my ($r,$roleclass,$sortrole,$nochoose) = @_;
                   1105:     my $doheaders;
                   1106:     if ((ref($sortrole) eq 'HASH') && (ref($roleclass) eq 'HASH')) {
1.212     bisitz   1107:         $r->print('<br />'
                   1108:                  .&Apache::loncommon::start_data_table()
                   1109:                  .&Apache::loncommon::start_data_table_header_row()
                   1110:         );
1.191     raeburn  1111:         if (!$nochoose) { $r->print('<th>&nbsp;</th>'); }
1.212     bisitz   1112:         $r->print('<th>'.&mt('User Role').'</th>'
                   1113:                  .'<th>'.&mt('Extent').'</th>'
                   1114:                  .'<th>'.&mt('Start').'</th>'
                   1115:                  .'<th>'.&mt('End').'</th>'
                   1116:                  .&Apache::loncommon::end_data_table_header_row()
                   1117:         );
1.191     raeburn  1118:         $doheaders=-1;
                   1119:         my @roletypes = &roletypes();
                   1120:         foreach my $type (@roletypes) {
                   1121:             my $haverole=0;
                   1122:             foreach my $which (sort {uc($a) cmp uc($b)} (keys(%{$sortrole}))) {
                   1123:                 if ($roleclass->{$sortrole->{$which}} =~ /^\Q$type\E/) {
                   1124:                     $haverole=1;
                   1125:                 }
                   1126:             }
                   1127:             if ($haverole) { $doheaders++; }
                   1128:         }
                   1129:     }
                   1130:     return $doheaders;
                   1131: }
                   1132: 
                   1133: sub roletypes {
1.237     raeburn  1134:     my @types = ('Domain','Construction Space','Course','Community','Unavailable','System');
1.191     raeburn  1135:     return @types; 
                   1136: }
                   1137: 
                   1138: sub print_rolerows {
                   1139:     my ($r,$doheaders,$roleclass,$sortrole,$dcroles,$roletext) = @_;
                   1140:     if ((ref($roleclass) eq 'HASH') && (ref($sortrole) eq 'HASH')) {
                   1141:         my @types = &roletypes();
                   1142:         foreach my $type (@types) {
                   1143:             my $output;
                   1144:             foreach my $which (sort {uc($a) cmp uc($b)} (keys(%{$sortrole}))) {
                   1145:                 if ($roleclass->{$sortrole->{$which}} =~ /^\Q$type\E/) {
                   1146:                     if (ref($roletext) eq 'HASH') {
1.223     raeburn  1147:                         if (ref($roletext->{$sortrole->{$which}}) eq 'ARRAY') {
                   1148:                             $output.= &Apache::loncommon::start_data_table_row().
                   1149:                                       $roletext->{$sortrole->{$which}}->[0].
                   1150:                                       &Apache::loncommon::end_data_table_row().
                   1151:                                       &Apache::loncommon::continue_data_table_row().
                   1152:                                       $roletext->{$sortrole->{$which}}->[1].
                   1153:                                       &Apache::loncommon::end_data_table_row();
                   1154:                         }
1.191     raeburn  1155:                         if ($sortrole->{$which} =~ m-dc\./($match_domain)/-) {
                   1156:                             if (ref($dcroles) eq 'HASH') {
                   1157:                                 if ($dcroles->{$1}) {
1.192     raeburn  1158:                                     $output .= &adhoc_roles_row($1,'');
1.191     raeburn  1159:                                 }
                   1160:                             }
                   1161:                         }
                   1162:                     }
                   1163:                 }
                   1164:             }
                   1165:             if ($output) {
                   1166:                 if ($doheaders > 0) {
1.212     bisitz   1167:                     $r->print(&Apache::loncommon::start_data_table_empty_row()
                   1168:                              .'<td align="center" colspan="5">'
                   1169:                              .&mt($type)
                   1170:                              .'</td>'
                   1171:                              .&Apache::loncommon::end_data_table_empty_row()
                   1172:                     );
1.191     raeburn  1173:                 }
                   1174:                 $r->print($output);
                   1175:             }
                   1176:         }
                   1177:     }
                   1178: }
                   1179: 
                   1180: sub findcourse_advice {
                   1181:     my ($r) = @_;
                   1182:     my $domdesc = &Apache::lonnet::domain($env{'user.domain'},'description');
1.201     raeburn  1183:     my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&');
1.200     raeburn  1184:     if (&Apache::lonnet::auto_run(undef,$env{'user.domain'})) {
1.191     raeburn  1185:         $r->print(&mt('If you were expecting to see an active role listed for a particular course in the [_1] domain, it may be missing for one of the following reasons:',$domdesc).'
                   1186: <ul>
                   1187:  <li>'.&mt('The course has yet to be created.').'</li>
                   1188:  <li>'.&mt('Automatic enrollment of registered students has not been enabled for the course.').'</li>
                   1189:  <li>'.&mt('You are in a section of course for which automatic enrollment in the corresponding LON-CAPA course is not active.').'</li>
                   1190:  <li>'.&mt('The start date for automated enrollment has yet to be reached.').'</li>
                   1191:  <li>'.&mt('You registered for the course recently and there is a time lag between the time you register, and the time this information becomes available for the update of LON-CAPA course rosters.').'</li>
                   1192:  </ul>');
                   1193:     } else {
                   1194:         $r->print(&mt('If you were expecting to see an active role listed for a particular course, that course may not have been created yet.').'<br />');
                   1195:     }
1.235     bisitz   1196:     $r->print('<h3>'.&mt('Self-Enrollment').'</h3>'.
1.234     raeburn  1197:               '<p>'.&mt('The [_1]Course/Community Catalog[_2] provides information about all [_3] classes for which LON-CAPA courses have been created, as well as any communities in the domain.','<a href="/adm/coursecatalog?showdom='.$esc_dom.'">','</a>',$domdesc).'<br />');
1.236     raeburn  1198:     $r->print(&mt('You can search for courses and communities which permit self-enrollment, if you would like to enroll in one.').'</p>');
1.216     raeburn  1199:     &queued_selfenrollment($r);
                   1200:     return;
                   1201: }
                   1202: 
1.234     raeburn  1203: sub requestcourse_advice {
                   1204:     my ($r) = @_;
                   1205:     my $domdesc = &Apache::lonnet::domain($env{'user.domain'},'description');
                   1206:     my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&');
                   1207:     my (%can_request,%request_doms);
                   1208:     &Apache::lonnet::check_can_request($env{'user.domain'},\%can_request,\%request_doms);
                   1209:     if (keys(%request_doms) > 0) {
                   1210:         my ($types,$typename) = &Apache::loncommon::course_types();
                   1211:         if ((ref($types) eq 'ARRAY') && (ref($typename) eq 'HASH')) { 
                   1212:             $r->print('<h3>'.&mt('Request creation of a course or community').'</h3>'.
1.238     bisitz   1213:                       '<p>'.&mt('You have rights to request the creation of courses and/or communities in the following domain(s):').'<ul>');
1.234     raeburn  1214:             my (@reqdoms,@reqtypes);
                   1215:             foreach my $type (sort(keys(%request_doms))) {
                   1216:                 push(@reqtypes,$type); 
                   1217:                 if (ref($request_doms{$type}) eq 'ARRAY') {
                   1218:                     my $domstr = join(', ',map { &Apache::lonnet::domain($_) } sort(@{$request_doms{$type}}));
1.238     bisitz   1219:                     $r->print(
                   1220:                         '<li>'
                   1221:                        .&mt('[_1]'.$typename->{$type}.'[_2] in domain: [_3]',
                   1222:                             '<i>',
                   1223:                             '</i>',
                   1224:                             '<b>'.$domstr.'</b>')
                   1225:                        .'</li>'
                   1226:                     );
1.234     raeburn  1227:                     foreach my $dom (@{$request_doms{$type}}) {
                   1228:                         unless (grep(/^\Q$dom\E/,@reqdoms)) {
                   1229:                             push(@reqdoms,$dom);
                   1230:                         }
                   1231:                     }
                   1232:                 }
                   1233:             }
                   1234:             my @showtypes;
                   1235:             foreach my $type (@{$types}) {
                   1236:                 if (grep(/^\Q$type\E$/,@reqtypes)) {
                   1237:                     push(@showtypes,$type);
                   1238:                 }
                   1239:             }
                   1240:             my $requrl = '/adm/requestcourse';
                   1241:             if (@reqdoms == 1) {
                   1242:                 $requrl .= '?showdom='.$reqdoms[0];
                   1243:             }
                   1244:             if (@showtypes > 0) {
                   1245:                 $requrl.=(($requrl=~/\?/)?'&':'?').'crstype='.$showtypes[0];
                   1246:             }
                   1247:             if (@reqdoms == 1 || @showtypes > 0) {
                   1248:                 $requrl .= '&state=crstype&action=new';
                   1249:             } 
                   1250:             $r->print('</ul>'.&mt('Use the [_1]request form[_2] to submit a request for creation of a new course or community.','<a href="'.$requrl.'">','</a>').'</p>');
                   1251:         }
                   1252:     }
                   1253:     return;
                   1254: }
                   1255: 
1.216     raeburn  1256: sub queued_selfenrollment {
                   1257:     my ($r) = @_;
                   1258:     my %selfenrollrequests = &Apache::lonnet::dump('selfenrollrequests');
                   1259:     my %reqs_by_date;
                   1260:     foreach my $item (keys(%selfenrollrequests)) {
                   1261:         if (ref($selfenrollrequests{$item}) eq 'HASH') {
                   1262:             if ($selfenrollrequests{$item}{'status'} eq 'request') {
                   1263:                 if ($selfenrollrequests{$item}{'timestamp'}) {
                   1264:                     push(@{$reqs_by_date{$selfenrollrequests{$item}{'timestamp'}}},$item);
                   1265:                 }
                   1266:             } 
                   1267:         }
                   1268:     }
                   1269:     if (keys(%reqs_by_date)) {
                   1270:         my $rolename = &Apache::lonnet::plaintext('st');
                   1271:         $r->print('<b>'.&mt('Enrollment requests pending Course Coordinator approval').'</b><br />'.
                   1272:                   &Apache::loncommon::start_data_table().
                   1273:                   &Apache::loncommon::start_data_table_header_row().
                   1274:                   '<th>'.&mt('Date requested').'</th><th>'.&mt('Course title').'</th>'.
                   1275:                   '<th>'.&mt('User role').'</th><th>'.&mt('Section').'</th>'.
                   1276:                  &Apache::loncommon::end_data_table_header_row());
                   1277:         my @sorted = sort { $a <=> $b } (keys(%reqs_by_date));
                   1278:         foreach my $item (@sorted) {
                   1279:             if (ref($reqs_by_date{$item}) eq 'ARRAY') {
                   1280:                 foreach my $crs (@{$reqs_by_date{$item}}) {
                   1281:                     my %courseinfo = &Apache::lonnet::coursedescription($crs);
                   1282:                     my $usec = $selfenrollrequests{$crs}{'section'};
                   1283:                     if ($usec eq '') {
                   1284:                         $usec = &mt('No section'); 
                   1285:                     }
                   1286:                     $r->print(&Apache::loncommon::start_data_table_row().
                   1287:                              '<td>'.&Apache::lonlocal::locallocaltime($item).'</td>'.
                   1288:                              '<td>'.$courseinfo{'description'}.'</td>'.
                   1289:                              '<td>'.$rolename.'</td><td>'.$usec.'</td>'.
                   1290:                              &Apache::loncommon::end_data_table_row());
                   1291:                 }
                   1292:             }
                   1293:         }
                   1294:         $r->print(&Apache::loncommon::end_data_table());
                   1295:     }
1.191     raeburn  1296:     return;
                   1297: }
                   1298: 
1.175     albertel 1299: sub privileges_info {
                   1300:     my ($which) = @_;
                   1301:     my $output;
                   1302: 
                   1303:     $which ||= $env{'request.role'};
                   1304: 
                   1305:     foreach my $envkey (sort(keys(%env))) {
                   1306: 	next if ($envkey!~/^user\.priv\.\Q$which\E\.(.*)/);
                   1307: 
                   1308: 	my $where=$1;
                   1309: 	my $ttype;
                   1310: 	my $twhere;
                   1311: 	my (undef,$tdom,$trest,$tsec)=split(m{/},$where);
                   1312: 	if ($trest) {
                   1313: 	    if ($env{'course.'.$tdom.'_'.$trest.'.description'} eq 'ca') {
                   1314: 		$ttype='Construction Space';
                   1315: 		$twhere='User: '.$trest.', Domain: '.$tdom;
                   1316: 	    } else {
                   1317: 		$ttype= &Apache::loncommon::course_type($tdom.'_'.$trest);
                   1318: 		$twhere=$env{'course.'.$tdom.'_'.$trest.'.description'};
                   1319: 		if ($tsec) {
                   1320: 		    my $sec_type = 'Section';
                   1321: 		    if (exists($env{"user.role.gr.$where"})) {
                   1322: 			$sec_type = 'Group';
                   1323: 		    }
                   1324: 		    $twhere.=' ('.$sec_type.': '.$tsec.')';
                   1325: 		}
                   1326: 	    }
                   1327: 	} elsif ($tdom) {
                   1328: 	    $ttype='Domain';
                   1329: 	    $twhere=$tdom;
                   1330: 	} else {
                   1331: 	    $ttype='System';
                   1332: 	    $twhere='/';
                   1333: 	}
1.204     bisitz   1334: 	$output .= "\n<h3>".&mt($ttype).': '.$twhere.'</h3>'."\n<ul>";
1.175     albertel 1335: 	foreach my $priv (sort(split(/:/,$env{$envkey}))) {
                   1336: 	    next if (!$priv);
                   1337: 
                   1338: 	    my ($prv,$restr)=split(/\&/,$priv);
                   1339: 	    my $trestr='';
                   1340: 	    if ($restr ne 'F') {
                   1341: 		$trestr.=' ('.
                   1342: 		    join(', ',
                   1343: 			 map { &Apache::lonnet::plaintext($_) } 
                   1344: 			     (split('',$restr))).') ';
                   1345: 	    }
                   1346: 	    $output .= "\n\t".
                   1347: 		'<li>'.&Apache::lonnet::plaintext($prv).$trestr.'</li>';
                   1348: 	}
                   1349: 	$output .= "\n".'</ul>';
                   1350:     }
                   1351:     return $output;
                   1352: }
                   1353: 
1.110     raeburn  1354: sub build_roletext {
1.212     bisitz   1355:     my ($trolecode,$tdom,$trest,$tstatus,$tryagain,$advanced,$tremark,$tbg,$trole,$twhere,$tpstart,$tpend,$nochoose,$button,$switchserver,$reinit) = @_;
1.223     raeburn  1356:     my ($roletext,$roletext_end);
1.132     albertel 1357:     my $is_dc=($trolecode =~ m/^dc\./);
                   1358:     my $rowspan=($is_dc) ? ''
                   1359:                          : ' rowspan="2" ';
                   1360: 
1.110     raeburn  1361:     unless ($nochoose) {
1.134     www      1362:         my $buttonname=$trolecode;
                   1363:         $buttonname=~s/\W//g;
1.110     raeburn  1364:         if (!$button) {
                   1365:             if ($switchserver) {
1.212     bisitz   1366:                 $roletext.='<td'.$rowspan.' class="'.$tbg.'">'
                   1367:                           .'<a href="/adm/switchserver?'.$switchserver.'">'
                   1368:                           .&mt('Switch Server')
                   1369:                           .'</a></td>';
1.110     raeburn  1370:             } else {
1.212     bisitz   1371:                 $roletext.=('<td'.$rowspan.' class="'.$tbg.'">&nbsp;</td>');
1.110     raeburn  1372:             }
                   1373:         } elsif ($tstatus eq 'is') {
1.212     bisitz   1374:             $roletext.='<td'.$rowspan.' class="'.$tbg.'">'.
                   1375:                         '<input name="'.$buttonname.'" type="button" value="'.
1.225     bisitz   1376:                         &mt('Select').'" onclick="javascript:enterrole(this.form,\''.
1.192     raeburn  1377:                         $trolecode."','".$buttonname.'\');" /></td>';
1.110     raeburn  1378:         } elsif ($tryagain) {
                   1379:             $roletext.=
1.212     bisitz   1380:                 '<td'.$rowspan.' class="'.$tbg.'">'.
                   1381:                 '<input name="'.$buttonname.'" type="button" value="'.
1.225     bisitz   1382:                 &mt('Try Selecting Again').'" onclick="javascript:enterrole(this.form,\''.
1.192     raeburn  1383:                         $trolecode."','".$buttonname.'\');" /></td>';
1.110     raeburn  1384:         } elsif ($advanced) {
                   1385:             $roletext.=
1.212     bisitz   1386:                 '<td'.$rowspan.' class="'.$tbg.'">'.
                   1387:                 '<input name="'.$buttonname.'" type="button" value="'.
1.225     bisitz   1388:                 &mt('Re-Initialize').'" onclick="javascript:enterrole(this.form,\''.
1.192     raeburn  1389:                         $trolecode."','".$buttonname.'\');" /></td>';
1.209     raeburn  1390:         } elsif ($reinit) {
                   1391:             $roletext.= 
1.212     bisitz   1392:                 '<td'.$rowspan.' class="'.$tbg.'">'.
                   1393:                 '<input name="'.$buttonname.'" type="button" value="'.
1.225     bisitz   1394:                 &mt('Re-Select').'" onclick="javascript:enterrole(this.form,\''.
1.209     raeburn  1395:                         $trolecode."','".$buttonname.'\');" /></td>';
1.110     raeburn  1396:         } else {
1.209     raeburn  1397:             $roletext.=
1.212     bisitz   1398:                 '<td'.$rowspan.' class="'.$tbg.'">'.
                   1399:                 '<input name="'.$buttonname.'" type="button" value="'.
1.225     bisitz   1400:                 &mt('Re-Select').'" onclick="javascript:enterrole(this.form,\''.
1.209     raeburn  1401:                         $trolecode."','".$buttonname.'\');" /></td>';
1.110     raeburn  1402:         }
                   1403:     }
1.165     albertel 1404:     if ($trolecode !~ m/^(dc|ca|au|aa)\./) {
                   1405: 	$tremark.=&Apache::lonannounce::showday(time,1,
                   1406: 			 &Apache::lonannounce::readcalendar($tdom.'_'.$trest));
                   1407:     }
1.212     bisitz   1408:     $roletext.='<td>'.$trole.'</td>'
                   1409:               .'<td>'.$twhere.'</td>'
                   1410:               .'<td>'.$tpstart.'</td>'
1.223     raeburn  1411:               .'<td>'.$tpend.'</td>';
1.132     albertel 1412:     if (!$is_dc) {
1.223     raeburn  1413:         $roletext_end = '<td colspan="4">'.
                   1414:                         $tremark.'&nbsp;'.
                   1415:                         '</td>';
1.132     albertel 1416:     }
1.223     raeburn  1417:     return ($roletext,$roletext_end);
1.110     raeburn  1418: }
                   1419: 
1.202     raeburn  1420: sub check_needs_switchserver {
                   1421:     my ($possiblerole) = @_;
                   1422:     my $needs_switchserver;
                   1423:     my ($role,$where) = split(/\./,$possiblerole,2);
                   1424:     my (undef,$tdom,$twho) = split(/\//,$where);
                   1425:     my ($server_status,$home);
                   1426:     if (($role eq 'ca') || ($role eq 'aa')) {
                   1427:         ($server_status,$home) = &check_author_homeserver($twho,$tdom);
                   1428:     } else {
                   1429:         ($server_status,$home) = &check_author_homeserver($env{'user.name'},
                   1430:                                                           $env{'user.domain'});
                   1431:     }
                   1432:     if ($server_status eq 'switchserver') {
                   1433:         $needs_switchserver = 1;
                   1434:     }
                   1435:     return $needs_switchserver;
                   1436: }
                   1437: 
1.193     raeburn  1438: sub check_author_homeserver {
1.183     www      1439:     my ($uname,$udom)=@_;
1.193     raeburn  1440:     if (($uname eq '') || ($udom eq '')) {
                   1441:         return ('fail','');
                   1442:     }
1.183     www      1443:     my $home = &Apache::lonnet::homeserver($uname,$udom);
1.193     raeburn  1444:     if (&Apache::lonnet::host_domain($home) ne $udom) {
                   1445:         return ('fail',$home);
                   1446:     }
1.183     www      1447:     my @ids=&Apache::lonnet::current_machine_ids();
1.193     raeburn  1448:     if (grep(/^\Q$home\E$/,@ids)) {
                   1449:         return ('ok',$home);
                   1450:     } else {
                   1451:         return ('switchserver',$home);
1.183     www      1452:     }
                   1453: }
                   1454: 
1.104     raeburn  1455: sub check_fordc {
                   1456:     my ($dcroles,$then) = @_;
                   1457:     my $numdc = 0;
1.118     albertel 1458:     if ($env{'user.adv'}) {
                   1459:         foreach my $envkey (sort keys %env) {
1.170     albertel 1460:             if ($envkey=~/^user\.role\.dc\.\/($match_domain)\/$/) {
1.104     raeburn  1461:                 my $dcdom = $1;
                   1462:                 my $livedc = 1;
1.118     albertel 1463:                 my ($tstart,$tend)=split(/\./,$env{$envkey});
1.105     raeburn  1464:                 if ($tstart && $tstart>$then) { $livedc = 0; }
                   1465:                 if ($tend   && $tend  <$then) { $livedc = 0; }
1.104     raeburn  1466:                 if ($livedc) {
                   1467:                     $$dcroles{$dcdom} = $envkey;
1.105     raeburn  1468:                     $numdc++;
1.104     raeburn  1469:                 }
                   1470:             }
                   1471:         }
                   1472:     }
                   1473:     return $numdc;
                   1474: }
                   1475: 
1.185     raeburn  1476: sub adhoc_course_role {
1.232     raeburn  1477:     my ($refresh,$then) = @_;
1.239     raeburn  1478:     my ($cdom,$cnum,$crstype);
1.201     raeburn  1479:     $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   1480:     $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.239     raeburn  1481:     $crstype = &Apache::loncommon::course_type();
                   1482:     if (&check_forcc($cdom,$cnum,$refresh,$then,$crstype)) {
1.185     raeburn  1483:         my $setprivs;
1.198     raeburn  1484:         if (!defined($env{'user.role.'.$env{'form.switchrole'}})) {
1.185     raeburn  1485:             $setprivs = 1;
                   1486:         } else {
1.198     raeburn  1487:             my ($start,$end) = split(/\./,$env{'user.role.'.$env{'form.switchrole'}});
1.232     raeburn  1488:             if (($start && ($start>$refresh || $start == -1)) ||
1.185     raeburn  1489:                 ($end && $end<$then)) {
                   1490:                 $setprivs = 1;
                   1491:             }
1.232     raeburn  1492:         }
1.185     raeburn  1493:         if ($setprivs) {
1.198     raeburn  1494:             if ($env{'form.switchrole'} =~ m-^(in|ta|ep|ad|st|cr)([\w/]*)\./\Q$cdom\E/\Q$cnum\E/?(\w*)$-) {
1.185     raeburn  1495:                 my $role = $1;
                   1496:                 my $custom_role = $2;
                   1497:                 my $usec = $3;
                   1498:                 if ($role eq 'cr') {
1.199     raeburn  1499:                     if ($custom_role =~ m-^/$match_domain/$match_username/\w+$-) {
1.185     raeburn  1500:                         $role .= $custom_role;
                   1501:                     } else {
                   1502:                         return;
                   1503:                     }
                   1504:                 }
1.208     raeburn  1505:                 my (%userroles,%newrole,%newgroups,%group_privs);
                   1506:                 my %cgroups =
                   1507:                     &Apache::lonnet::get_active_groups($env{'user.domain'},
                   1508:                                             $env{'user.name'},$cdom,$cnum);
                   1509:                 foreach my $group (keys(%cgroups)) {
                   1510:                     $group_privs{$group} =
                   1511:                         $env{'user.priv.cc./'.$cdom.'/'.$cnum.'./'.$cdom.'/'.$cnum.'/'.$group};
                   1512:                 }
                   1513:                 $newgroups{'/'.$cdom.'/'.$cnum} = \%group_privs;
1.185     raeburn  1514:                 my $area = '/'.$cdom.'/'.$cnum;
                   1515:                 my $spec = $role.'.'.$area;
                   1516:                 if ($usec ne '') {
                   1517:                     $spec .= '/'.$usec;
                   1518:                     $area .= '/'.$usec;
                   1519:                 }
                   1520:                 &Apache::lonnet::standard_roleprivs(\%newrole,$role,$cdom,$spec,$cnum,$area);
1.208     raeburn  1521:                 &Apache::lonnet::set_userprivs(\%userroles,\%newrole,\%newgroups);
1.232     raeburn  1522:                 my $adhocstart = $refresh-1;
1.185     raeburn  1523:                 $userroles{'user.role.'.$spec} = $adhocstart.'.';
1.186     raeburn  1524:                 &Apache::lonnet::appenv(\%userroles,[$role,'cm']);
1.185     raeburn  1525:             }
                   1526:         }
                   1527:     }
                   1528:     return;
                   1529: }
                   1530: 
                   1531: sub check_forcc {
1.239     raeburn  1532:     my ($cdom,$cnum,$refresh,$then,$crstype) = @_;
                   1533:     my ($is_cc,$ccrole);
                   1534:     if ($crstype eq 'Community') {
                   1535:         $ccrole = 'co';
                   1536:     } else {
                   1537:         $ccrole = 'cc';
                   1538:     }
1.185     raeburn  1539:     if ($cdom ne '' && $cnum ne '') {
                   1540:         if (&Apache::lonnet::is_course($cdom,$cnum)) {
1.239     raeburn  1541:             my $envkey = 'user.role.'.$ccrole.'./'.$cdom.'/'.$cnum;
1.185     raeburn  1542:             if (defined($env{$envkey})) {
                   1543:                 $is_cc = 1;
                   1544:                 my ($tstart,$tend)=split(/\./,$env{$envkey});
1.232     raeburn  1545:                 if ($tstart && $tstart>$refresh) { $is_cc = 0; }
1.185     raeburn  1546:                 if ($tend   && $tend  <$then) { $is_cc = 0; }
                   1547:             }
                   1548:         }
                   1549:     }
                   1550:     return $is_cc;
                   1551: }
                   1552: 
1.108     raeburn  1553: sub courselink {
1.193     raeburn  1554:     my ($dcdom,$rowtype) = @_;
1.109     raeburn  1555:     my $courseform=&Apache::loncommon::selectcourse_link
1.152     raeburn  1556:                    ('rolechoice','dccourse'.$rowtype.'_'.$dcdom,
                   1557:                     'dcdomain'.$rowtype.'_'.$dcdom,'coursedesc'.$rowtype.'_'.
1.239     raeburn  1558:                     $dcdom,$dcdom,undef,'Course/Community');
1.138     raeburn  1559:     my $hiddenitems = '<input type="hidden" name="dcdomain'.$rowtype.'_'.$dcdom.'" value="'.$dcdom.'" />'.
                   1560:                       '<input type="hidden" name="origdom'.$rowtype.'_'.$dcdom.'" value="'.$dcdom.'" />'.
                   1561:                       '<input type="hidden" name="dccourse'.$rowtype.'_'.$dcdom.'" value="" />'.
                   1562:                       '<input type="hidden" name="coursedesc'.$rowtype.'_'.$dcdom.'" value="" />';
1.112     raeburn  1563:     return $courseform.$hiddenitems;
1.109     raeburn  1564: }
                   1565: 
                   1566: sub coursepick_jscript {
1.184     raeburn  1567:     my %lt = &Apache::lonlocal::texthash(
1.239     raeburn  1568:                   plsu => "Please use the 'Select Course/Community' link to open a separate pick course window where you may select the course or community you wish to enter.",
1.234     raeburn  1569:                   youc => 'You can only use this screen to select courses and communities in the current domain.',
1.184     raeburn  1570:              );
1.104     raeburn  1571:     my $verify_script = <<"END";
1.179     raeburn  1572: <script type="text/javascript">
1.225     bisitz   1573: // <![CDATA[
1.108     raeburn  1574: function verifyCoursePick(caller) {
                   1575:     var numbutton = getIndex(caller)
1.112     raeburn  1576:     var pickedCourse = document.rolechoice.elements[numbutton+4].value
                   1577:     var pickedDomain = document.rolechoice.elements[numbutton+2].value
                   1578:     if (document.rolechoice.elements[numbutton+2].value == document.rolechoice.elements[numbutton+3].value) {
1.104     raeburn  1579:         if (pickedCourse != '') {
1.108     raeburn  1580:             if (numbutton != -1) {
                   1581:                 var courseTarget = "cc./"+pickedDomain+"/"+pickedCourse
                   1582:                 document.rolechoice.elements[numbutton+1].name = courseTarget
                   1583:                 document.rolechoice.submit()
                   1584:             }
1.104     raeburn  1585:         }
                   1586:         else {
1.184     raeburn  1587:             alert("$lt{'plsu'}");
1.104     raeburn  1588:         }
                   1589:     }
                   1590:     else {
1.184     raeburn  1591:         alert("$lt{'youc'}")
1.104     raeburn  1592:     }
                   1593: }
1.109     raeburn  1594: function getIndex(caller) {
1.108     raeburn  1595:     for (var i=0;i<document.rolechoice.elements.length;i++) {
1.109     raeburn  1596:         if (document.rolechoice.elements[i] == caller) {
1.108     raeburn  1597:             return i;
                   1598:         }
                   1599:     }
                   1600:     return -1;
                   1601: }
1.225     bisitz   1602: // ]]>
1.104     raeburn  1603: </script>
                   1604: END
1.109     raeburn  1605:     return $verify_script;
1.104     raeburn  1606: }
                   1607: 
1.193     raeburn  1608: sub coauthorlink {
                   1609:     my ($dcdom,$rowtype) = @_;
                   1610:     my $coauthorform=&Apache::loncommon::selectauthor_link('rolechoice',$dcdom);
                   1611:     my $hiddenitems = '<input type="hidden" name="adhoccauname'.$rowtype.'_'.$dcdom.'" value="" />';
                   1612:     return $coauthorform.$hiddenitems;
                   1613: }
                   1614: 
1.113     raeburn  1615: sub display_cc_role {
                   1616:     my $rolekey = shift;
1.223     raeburn  1617:     my ($roletext,$roletext_end);
1.118     albertel 1618:     my $advanced = $env{'user.adv'};
                   1619:     my $tryagain = $env{'form.tryagain'};
1.113     raeburn  1620:     unless ($rolekey =~/^error\:/) {
1.240     raeburn  1621:         if ($rolekey =~ m{^user\.role\.(cc|co)\./($match_domain)/($match_courseid)$}) {
                   1622:             my $ccrole = $1;
                   1623:             my $tcourseid = $2.'_'.$3;
                   1624:             my $trolecode = $1.'./'.$2.'/'.$3;
1.113     raeburn  1625:             my $twhere;
1.152     raeburn  1626:             my $ttype;
1.212     bisitz   1627:             my $tbg='LC_roles_is';
1.113     raeburn  1628:             my %newhash=&Apache::lonnet::coursedescription($tcourseid);
                   1629:             if (%newhash) {
                   1630:                 $twhere=$newhash{'description'}.
1.211     tempelho 1631:                         ' <span style="LC_fontsize_small">'.
1.212     bisitz   1632:                         &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$2,$1).
1.211     tempelho 1633:                         '</span>';
1.153     raeburn  1634:                 $ttype = $newhash{'type'};
1.113     raeburn  1635:             } else {
                   1636:                 $twhere=&mt('Currently not available');
1.118     albertel 1637:                 $env{'course.'.$tcourseid.'.description'}=$twhere;
1.110     raeburn  1638:             }
1.240     raeburn  1639:             my $trole = &Apache::lonnet::plaintext($ccrole,$ttype);
1.113     raeburn  1640:             $twhere.="<br />".&mt('Domain').":".$1;
1.223     raeburn  1641:             ($roletext,$roletext_end) = &build_roletext($trolecode,$1,$2,'is',$tryagain,$advanced,'',$tbg,$trole,$twhere,'','','',1,'');
1.104     raeburn  1642:         }
                   1643:     }
1.223     raeburn  1644:     return ($roletext,$roletext_end);
1.104     raeburn  1645: }
                   1646: 
1.192     raeburn  1647: sub adhoc_roles_row {
1.138     raeburn  1648:     my ($dcdom,$rowtype) = @_;
1.212     bisitz   1649:     my $output = &Apache::loncommon::continue_data_table_row()
                   1650:                  .' <td colspan="5">'
                   1651:                  .&mt('[_1]Ad hoc[_2] roles in domain [_3] --'
                   1652:                      ,'<span class="LC_cusr_emph">','</span>',$dcdom)
1.227     bisitz   1653:                  .' ';
1.193     raeburn  1654:     my $selectcclink = &courselink($dcdom,$rowtype);
1.239     raeburn  1655:     my $ccrole = &Apache::lonnet::plaintext('co',undef,undef,1);
1.182     www      1656:     my $carole = &Apache::lonnet::plaintext('ca');
1.193     raeburn  1657:     my $selectcalink = &coauthorlink($dcdom,$rowtype);
1.227     bisitz   1658:     $output.=$ccrole.': '.$selectcclink
                   1659:             .' | '.$carole.': '.$selectcalink
1.212     bisitz   1660:             .&Apache::loncommon::end_data_table_row();
1.108     raeburn  1661:     return $output;
                   1662: }
                   1663: 
1.104     raeburn  1664: sub recent_filename {
                   1665:     my $area=shift;
1.149     www      1666:     return 'nohist_recent_'.&escape($area);
1.104     raeburn  1667: }
                   1668: 
1.139     raeburn  1669: sub courseloadpage {
                   1670:     my ($courseid) = @_;
                   1671:     my $startpage;
1.144     albertel 1672:     my %entry_settings = &Apache::lonnet::get('nohist_whatsnew',
                   1673: 					      [$courseid.':courseinit']);
1.139     raeburn  1674:     my ($tmp) = %entry_settings;
1.144     albertel 1675:     unless ($tmp =~ /^error: 2 /) {
1.139     raeburn  1676:         $startpage = $entry_settings{$courseid.':courseinit'};
                   1677:     }
                   1678:     if ($startpage eq '') {
                   1679:         if (exists($env{'environment.course_init_display'})) {
                   1680:             $startpage = $env{'environment.course_init_display'};
                   1681:         }
                   1682:     }
                   1683:     return $startpage;
                   1684: }
                   1685: 
1.1       harris41 1686: 1;
                   1687: __END__
1.32      harris41 1688: 
                   1689: =head1 NAME
                   1690: 
                   1691: Apache::lonroles - User Roles Screen
                   1692: 
                   1693: =head1 SYNOPSIS
                   1694: 
                   1695: Invoked by /etc/httpd/conf/srm.conf:
                   1696: 
                   1697:  <Location /adm/roles>
                   1698:  PerlAccessHandler       Apache::lonacc
                   1699:  SetHandler perl-script
                   1700:  PerlHandler Apache::lonroles
                   1701:  ErrorDocument     403 /adm/login
                   1702:  ErrorDocument	  500 /adm/errorhandler
                   1703:  </Location>
1.64      bowersj2 1704: 
                   1705: =head1 OVERVIEW
                   1706: 
                   1707: =head2 Choosing Roles
                   1708: 
                   1709: C<lonroles> is a handler that allows a user to switch roles in
                   1710: mid-session. LON-CAPA attempts to work with "No Role Specified", the
                   1711: default role that a user has before selecting a role, as widely as
                   1712: possible, but certain handlers for example need specification which
                   1713: course they should act on, etc. Both in this scenario, and when the
                   1714: handler determines via C<lonnet>'s C<&allowed> function that a certain
                   1715: action is not allowed, C<lonroles> is used as error handler. This
                   1716: allows the user to select another role which may have permission to do
                   1717: what they were trying to do. C<lonroles> can also be accessed via the
                   1718: B<CRS> button in the Remote Control. 
                   1719: 
                   1720: =begin latex
                   1721: 
                   1722: \begin{figure}
                   1723: \begin{center}
                   1724: \includegraphics[width=0.45\paperwidth,keepaspectratio]{Sample_Roles_Screen}
                   1725:   \caption{\label{Sample_Roles_Screen}Sample Roles Screen} 
                   1726: \end{center}
                   1727: \end{figure}
                   1728: 
                   1729: =end latex
                   1730: 
                   1731: =head2 Role Initialization
                   1732: 
                   1733: 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 1734: 
                   1735: =head1 INTRODUCTION
                   1736: 
                   1737: This module enables a user to select what role he wishes to
                   1738: operate under (instructor, student, teaching assistant, course
                   1739: coordinator, etc).  These roles are pre-established by the actions
                   1740: of upper-level users.
                   1741: 
                   1742: This is part of the LearningOnline Network with CAPA project
                   1743: described at http://www.lon-capa.org.
                   1744: 
                   1745: =head1 HANDLER SUBROUTINE
                   1746: 
                   1747: This routine is called by Apache and mod_perl.
                   1748: 
                   1749: =over 4
                   1750: 
                   1751: =item *
                   1752: 
                   1753: Roles Initialization (yes/no)
                   1754: 
                   1755: =item *
                   1756: 
                   1757: Get Error Message from Environment
                   1758: 
                   1759: =item *
                   1760: 
                   1761: Who is this?
                   1762: 
                   1763: =item *
                   1764: 
                   1765: Generate Page Output
                   1766: 
                   1767: =item *
                   1768: 
                   1769: Choice or no choice
                   1770: 
                   1771: =item *
                   1772: 
                   1773: Table
                   1774: 
                   1775: =item *
                   1776: 
                   1777: Privileges
                   1778: 
                   1779: =back
                   1780: 
                   1781: =cut

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