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

1.1       harris41    1: # The LearningOnline Network with CAPA
                      2: # User Roles Screen
1.31      www         3: #
1.269.2.9! raeburn     4: # $Id: lonroles.pm,v 1.269.2.8 2013/05/10 20:26:22 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
1.246     droeschl   60: what they were trying to do.
1.210     jms        61: 
                     62: =begin latex
                     63: 
                     64: \begin{figure}
                     65: \begin{center}
                     66: \includegraphics[width=0.45\paperwidth,keepaspectratio]{Sample_Roles_Screen}
                     67:   \caption{\label{Sample_Roles_Screen}Sample Roles Screen} 
                     68: \end{center}
                     69: \end{figure}
                     70: 
                     71: =end latex
                     72: 
                     73: =head2 Role Initialization
                     74: 
                     75: 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.
                     76: 
                     77: =head1 INTRODUCTION
                     78: 
                     79: This module enables a user to select what role he wishes to
                     80: operate under (instructor, student, teaching assistant, course
                     81: coordinator, etc).  These roles are pre-established by the actions
                     82: of upper-level users.
                     83: 
                     84: This is part of the LearningOnline Network with CAPA project
                     85: described at http://www.lon-capa.org.
                     86: 
                     87: =head1 HANDLER SUBROUTINE
                     88: 
                     89: This routine is called by Apache and mod_perl.
                     90: 
                     91: =over 4
                     92: 
                     93: =item *
                     94: 
                     95: Roles Initialization (yes/no)
                     96: 
                     97: =item *
                     98: 
                     99: Get Error Message from Environment
                    100: 
                    101: =item *
                    102: 
                    103: Who is this?
                    104: 
                    105: =item *
                    106: 
                    107: Generate Page Output
                    108: 
                    109: =item *
                    110: 
                    111: Choice or no choice
                    112: 
                    113: =item *
                    114: 
                    115: Table
                    116: 
                    117: =item *
                    118: 
                    119: Privileges
                    120: 
                    121: =back
                    122: 
                    123: =cut
                    124: 
                    125: 
1.1       harris41  126: package Apache::lonroles;
                    127: 
                    128: use strict;
1.118     albertel  129: use Apache::lonnet;
1.7       www       130: use Apache::lonuserstate();
1.1       harris41  131: use Apache::Constants qw(:common);
1.2       www       132: use Apache::File();
1.26      www       133: use Apache::lonmenu;
1.29      albertel  134: use Apache::loncommon;
1.104     raeburn   135: use Apache::lonhtmlcommon;
1.57      www       136: use Apache::lonannounce;
1.72      www       137: use Apache::lonlocal;
1.151     www       138: use Apache::lonpageflip();
1.167     albertel  139: use Apache::lonnavdisplay();
1.241     raeburn   140: use Apache::loncoursequeueadmin;
1.269.2.6  raeburn   141: use Apache::longroup;
1.269.2.8  raeburn   142: use Apache::lonrss;
1.120     albertel  143: use GDBM_File;
1.170     albertel  144: use LONCAPA qw(:DEFAULT :match);
1.201     raeburn   145: use HTML::Entities;
1.149     www       146:  
1.1       harris41  147: 
1.62      matthew   148: sub redirect_user {
1.245     droeschl  149:     my ($r,$title,$url,$msg) = @_;
1.62      matthew   150:     $msg = $title if (! defined($msg));
1.73      www       151:     &Apache::loncommon::content_type($r,'text/html');
1.62      matthew   152:     &Apache::loncommon::no_cache($r);
                    153:     $r->send_http_header;
1.269.2.1  raeburn   154:     my $swinfo=&Apache::lonmenu::rawconfig();
1.228     bisitz    155: 
                    156:     # Breadcrumbs
                    157:     my $brcrum = [{'href' => $url,
                    158:                    'text' => 'Switching Role'},];
1.147     albertel  159:     my $start_page = &Apache::loncommon::start_page('Switching Role',undef,
1.228     bisitz    160:                                                     {'redirect' => [1,$url],
                    161:                                                      'bread_crumbs' => $brcrum,});
1.147     albertel  162:     my $end_page   = &Apache::loncommon::end_page();
                    163: 
1.92      www       164: # Note to style police: 
                    165: # This must only replace the spaces, nothing else, or it bombs elsewhere.
                    166:     $url=~s/ /\%20/g;
1.93      albertel  167:     $r->print(<<ENDREDIR);
1.147     albertel  168: $start_page
1.269.2.1  raeburn   169: <script type="text/javascript">
                    170: // <![CDATA[
                    171: $swinfo
                    172: // ]]>
                    173: </script>
1.222     bisitz    174: <p>$msg</p>
1.147     albertel  175: $end_page
1.62      matthew   176: ENDREDIR
                    177:     return;
                    178: }
                    179: 
1.150     www       180: sub error_page {
                    181:     my ($r,$error,$dest)=@_;
                    182:     &Apache::loncommon::content_type($r,'text/html');
                    183:     &Apache::loncommon::no_cache($r);
                    184:     $r->send_http_header;
                    185:     return OK if $r->header_only;
1.228     bisitz    186:     # Breadcrumbs
                    187:     my $brcrum = [{'href' => $dest,
                    188:                    'text' => 'Problems during Course Initialization'},];
                    189:     $r->print(&Apache::loncommon::start_page('Problems during Course Initialization',
                    190:                                              undef,
                    191:                                              {'bread_crumbs' => $brcrum,})
                    192:     );
                    193:     $r->print(
1.225     bisitz    194:         '<script type="text/javascript">'.
                    195:         '// <![CDATA['.
                    196:         &Apache::lonmenu::rawconfig().
                    197:         '// ]]>'.
                    198:         '</script>'.
                    199: 	      '<p class="LC_error">'.&mt('The following problems occurred:').
1.228     bisitz    200:           '<br />'.
1.150     www       201: 	      $error.
1.228     bisitz    202: 	      '</p><br /><a href="'.$dest.'">'.&mt('Continue').'</a>'
                    203:     );
                    204:     $r->print(&Apache::loncommon::end_page());
1.150     www       205: }
                    206: 
1.1       harris41  207: sub handler {
1.10      www       208: 
1.1       harris41  209:     my $r = shift;
                    210: 
1.6       www       211:     my $now=time;
1.118     albertel  212:     my $then=$env{'user.login.time'};
1.226     raeburn   213:     my $refresh=$env{'user.refresh.time'};
1.260     raeburn   214:     my $update=$env{'user.update.time'};
1.226     raeburn   215:     if (!$refresh) {
                    216:         $refresh = $then;
                    217:     }
1.260     raeburn   218:     if (!$update) {
                    219:         $update = $then;
                    220:     }
                    221: 
1.269.2.2  raeburn   222:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
                    223: 
                    224: # -------------------------------------------------- Check if setting hot list
                    225:     my $hotlist;
                    226:     if ($env{'form.action'} eq 'verify_and_change_rolespref') {
                    227:         $hotlist = &Apache::lonpreferences::verify_and_change_rolespref($r);
                    228:     }
                    229: 
1.260     raeburn   230: # -------------------------------------------------------- Check for new roles
                    231:     my $updateresult;
1.269.2.2  raeburn   232:     if ($env{'form.state'} eq 'doupdate') {
1.260     raeburn   233:         my $show_course=&Apache::loncommon::show_course();
                    234:         my $checkingtxt;
                    235:         if ($show_course) {
                    236:             $checkingtxt = &mt('Checking for new courses ...');
                    237:         } else {
                    238:             $checkingtxt = &mt('Checking for new roles ...');
                    239:         }
1.269.2.2  raeburn   240:         $updateresult = $checkingtxt;
1.260     raeburn   241:         $updateresult .= &update_session_roles();
                    242:         &Apache::lonnet::appenv({'user.update.time'  => $now});
                    243:         $update = $now;
1.269.2.2  raeburn   244:         &Apache::loncoursequeueadmin::reqauthor_check();
                    245:     }
                    246: 
                    247: # -------------------------------------------------- Check for author requests
                    248:     my $reqauthor;
                    249:     if ($env{'form.state'} eq 'requestauthor') {
                    250:        $reqauthor = &Apache::loncoursequeueadmin::process_reqauthor(\$update);
1.260     raeburn   251:     }
                    252: 
1.6       www       253:     my $envkey;
1.107     raeburn   254:     my %dcroles = ();
1.260     raeburn   255:     my $numdc = &check_fordc(\%dcroles,$update,$then);
1.255     raeburn   256:     my $loncaparev = $Apache::lonnet::perlvar{'lonVersion'};
1.10      www       257: 
1.6       www       258: # ================================================================== Roles Init
1.118     albertel  259:     if ($env{'form.selectrole'}) {
1.188     www       260: 
                    261:         my $locknum=&Apache::lonnet::get_locks();
                    262:         if ($locknum) { return 409; }
                    263: 
1.134     www       264:         if ($env{'form.newrole'}) {
                    265:             $env{'form.'.$env{'form.newrole'}}=1;
                    266: 	}
1.118     albertel  267: 	if ($env{'request.course.id'}) {
1.185     raeburn   268:             # Check if user is CC trying to select a course role
                    269:             if ($env{'form.switchrole'}) {
1.252     raeburn   270:                 my $switch_is_active;
                    271:                 if (defined($env{'user.role.'.$env{'form.switchrole'}})) {
                    272:                     my ($start,$end) = split(/\./,$env{'user.role.'.$env{'form.switchrole'}});
                    273:                     if (!$end || $end > $now) {
1.260     raeburn   274:                         if (!$start || $start < $update) {
1.252     raeburn   275:                             $switch_is_active = 1;
                    276:                         }
                    277:                     }
                    278:                 }
                    279:                 unless ($switch_is_active) {
1.260     raeburn   280:                     &adhoc_course_role($refresh,$update,$then);
1.185     raeburn   281:                 }
                    282:             }
1.118     albertel  283: 	    my %temp=('logout_'.$env{'request.course.id'} => time);
1.33      www       284: 	    &Apache::lonnet::put('email_status',\%temp);
1.118     albertel  285: 	    &Apache::lonnet::delenv('user.state.'.$env{'request.course.id'});
1.100     albertel  286: 	}
1.186     raeburn   287: 	&Apache::lonnet::appenv({"request.course.id"   => '',
                    288: 			 	 "request.course.fn"   => '',
                    289: 				 "request.course.uri"  => '',
                    290: 				 "request.course.sec"  => '',
1.269     raeburn   291:                                  "request.course.tied" => '',
1.186     raeburn   292: 				 "request.role"        => 'cm',
                    293:                                  "request.role.adv"    => $env{'user.adv'},
                    294: 				 "request.role.domain" => $env{'user.domain'}});
1.182     www       295: # Check if user is a DC trying to enter a course or author space and needs privs to be created
1.107     raeburn   296:         if ($numdc > 0) {
1.118     albertel  297:             foreach my $envkey (keys %env) {
1.240     raeburn   298: # Is this an ad-hoc Coordinator role?
                    299:                 if (my ($ccrole,$domain,$coursenum) =
                    300: 		    ($envkey =~ m-^form\.(cc|co)\./($match_domain)/($match_courseid)$-)) {
1.146     raeburn   301:                     if ($dcroles{$domain}) {
1.269.2.2  raeburn   302:                         if (&Apache::lonnet::check_adhoc_privs($domain,$coursenum,
                    303:                                                            $update,$refresh,$now,$ccrole)) {
                    304:                             &Apache::lonnet::appenv({"environment.internal.$domain.$coursenum.$ccrole.adhoc" => time});
                    305:                         }
1.182     www       306:                     }
                    307:                     last;
                    308:                 }
1.193     raeburn   309: # Is this an ad-hoc CA-role?
1.183     www       310:                 if (my ($domain,$user) =
                    311: 		    ($envkey =~ m-^form\.ca\./($match_domain)/($match_username)$-)) {
1.206     raeburn   312:                     if (($domain eq $env{'user.domain'}) && ($user eq $env{'user.name'})) {
                    313:                         delete($env{$envkey});
                    314:                         $env{'form.au./'.$domain.'/'} = 1;
                    315:                         my ($server_status,$home) = &check_author_homeserver($user,$domain);
                    316:                         if ($server_status eq 'switchserver') {
                    317:                             my $trolecode = 'au./'.$domain.'/';
1.248     raeburn   318:                             my $switchserver = '/adm/switchserver?otherserver='.$home.'&amp;role='.$trolecode;
1.206     raeburn   319:                             $r->internal_redirect($switchserver);
1.269.2.8  raeburn   320:                             return OK;
1.206     raeburn   321:                         }
                    322:                         last;
                    323:                     }
                    324:                     if (my ($castart,$caend) = ($env{'user.role.ca./'.$domain.'/'.$user} =~ /^(\d*)\.(\d*)$/)) {
                    325:                         if (((($castart) && ($castart < $now)) || !$castart) && 
                    326:                             ((!$caend) || (($caend) && ($caend > $now)))) {
                    327:                             my ($server_status,$home) = &check_author_homeserver($user,$domain);
                    328:                             if ($server_status eq 'switchserver') {
                    329:                                 my $trolecode = 'ca./'.$domain.'/'.$user;
1.248     raeburn   330:                                 my $switchserver = '/adm/switchserver?otherserver='.$home.'&amp;role='.$trolecode;
1.206     raeburn   331:                                 $r->internal_redirect($switchserver);
1.269.2.8  raeburn   332:                                 return OK;
1.206     raeburn   333:                             }
                    334:                             last;
                    335:                         }
                    336:                     }
                    337:                     # Check if author blocked ca-access
1.190     www       338:                     my %blocked=&Apache::lonnet::get('environment',['domcoord.author'],$domain,$user);
                    339:                     if ($blocked{'domcoord.author'} eq 'blocked') {
1.206     raeburn   340:                         delete($env{$envkey});
                    341:                         $env{'user.error.msg'}=':::1:User '.$user.' in domain '.$domain.' blocked domain coordinator access';
                    342:                         last;
1.190     www       343:                     }
1.193     raeburn   344:                     if ($dcroles{$domain}) {
                    345:                         my ($server_status,$home) = &check_author_homeserver($user,$domain);
                    346:                         if (($server_status eq 'ok') || ($server_status eq 'switchserver')) {
1.260     raeburn   347:                             &Apache::lonnet::check_adhoc_privs($domain,$user,$update,
1.230     raeburn   348:                                                                $refresh,$now,'ca');
1.193     raeburn   349:                             if ($server_status eq 'switchserver') {
                    350:                                 my $trolecode = 'ca./'.$domain.'/'.$user; 
                    351:                                 my $switchserver = '/adm/switchserver?'
1.248     raeburn   352:                                                   .'otherserver='.$home.'&amp;role='.$trolecode;
1.193     raeburn   353:                                 $r->internal_redirect($switchserver);
1.269.2.8  raeburn   354:                                 return OK;
1.193     raeburn   355:                             }
                    356:                         } else {
                    357:                             delete($env{$envkey});
                    358:                         }
1.183     www       359:                     } else {
                    360:                         delete($env{$envkey});
1.182     www       361:                     }
                    362:                     last;
                    363:                 }
1.107     raeburn   364:             }
                    365:         }
                    366: 
1.118     albertel  367:         foreach $envkey (keys %env) {
1.40      matthew   368:             next if ($envkey!~/^user\.role\./);
1.102     raeburn   369:             my ($where,$trolecode,$role,$tstatus,$tend,$tstart);
1.260     raeburn   370:             &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,
1.218     raeburn   371:                                          \$trolecode,\$tstatus,\$tstart,\$tend);
1.118     albertel  372:             if ($env{'form.'.$trolecode}) {
1.55      albertel  373: 		if ($tstatus eq 'is') {
                    374: 		    $where=~s/^\///;
                    375: 		    my ($cdom,$cnum,$csec)=split(/\//,$where);
1.255     raeburn   376:                     if (($cnum) && ($role ne 'ca') && ($role ne 'aa')) {
                    377:                         my $home = $env{'course.'.$cdom.'_'.$cnum.'.home'};
                    378:                         my @ids = &Apache::lonnet::current_machine_ids();
                    379:                         unless ($loncaparev eq '' && $home && grep(/^\Q$home\E$/,@ids)) {
                    380:                             my %curr_reqd_hash = &Apache::lonnet::userenvironment($cdom,$cnum,'internal.releaserequired');
1.256     raeburn   381:                             if ($curr_reqd_hash{'internal.releaserequired'} ne '') {
1.255     raeburn   382:                                 my ($switchserver,$switchwarning) =
                    383:                                     &check_release_required($loncaparev,$cdom.'_'.$cnum,$trolecode,$curr_reqd_hash{'internal.releaserequired'});
1.256     raeburn   384:                                 if ($switchwarning ne '' || $switchserver ne '') {
                    385:                                     &Apache::loncommon::content_type($r,'text/html');
                    386:                                     &Apache::loncommon::no_cache($r);
                    387:                                     $r->send_http_header;
                    388:                                     my $end_page=&Apache::loncommon::end_page();
                    389:                                     $r->print(&Apache::loncommon::start_page('Selected course unavailable on this server').
                    390:                                               '<p class="LC_warning">');
                    391:                                     if ($switchwarning) {
                    392:                                         $r->print($switchwarning.'<br /><a href="/adm/roles">');
                    393:                                         if (&Apache::loncommon::show_course()) {
                    394:                                             $r->print(&mt('Display courses'));
                    395:                                         } else {
                    396:                                             $r->print(&mt('Display roles'));
                    397:                                         }
                    398:                                         $r->print('</a>');
                    399:                                     } elsif ($switchserver) {
                    400: 				        $r->print(&mt('This course requires a newer version of LON-CAPA than is installed on this server.').
                    401:                                                   '<br />'.
                    402:                                                   '<a href="/adm/switchserver?'.$switchserver.'">'.
                    403:                                                   &mt('Switch Server').
                    404:                                                   '</a>');
1.255     raeburn   405:                                     }
1.256     raeburn   406:                                     $r->print('</p>'.&Apache::loncommon::end_page());
                    407:                                     return OK;
1.255     raeburn   408:                                 }
                    409:                             }
                    410:                         }
                    411:                     }
1.137     raeburn   412: # check for course groups
                    413:                     my %coursegroups = &Apache::lonnet::get_active_groups(
                    414:                           $env{'user.domain'},$env{'user.name'},$cdom, $cnum);
                    415:                     my $cgrps = join(':',keys(%coursegroups));
                    416: 
1.111     albertel  417: # store role if recent_role list being kept
1.118     albertel  418:                     if ($env{'environment.recentroles'}) {
1.158     albertel  419:                         my %frozen_roles =
                    420:                            &Apache::lonhtmlcommon::get_recent_frozen('roles',$env{'environment.recentrolesn'});
1.111     albertel  421: 			&Apache::lonhtmlcommon::store_recent('roles',
1.158     albertel  422: 							     $trolecode,' ',$frozen_roles{$trolecode});
1.111     albertel  423:                     }
                    424: 
                    425: 
1.53      www       426: # check for keyed access
1.55      albertel  427: 		    if (($role eq 'st') && 
1.118     albertel  428:                        ($env{'course.'.$cdom.'_'.$cnum.'.keyaccess'} eq 'yes')) {
1.89      www       429: # who is key authority?
                    430: 			my $authdom=$cdom;
                    431: 			my $authnum=$cnum;
1.118     albertel  432: 			if ($env{'course.'.$cdom.'_'.$cnum.'.keyauth'}) {
1.89      www       433: 			    ($authnum,$authdom)=
1.172     albertel  434: 				split(/:/,$env{'course.'.$cdom.'_'.$cnum.'.keyauth'});
1.89      www       435: 			}
                    436: # check with key authority
                    437: 			unless (&Apache::lonnet::validate_access_key(
1.118     albertel  438: 				     $env{'environment.key.'.$cdom.'_'.$cnum},
1.89      www       439: 					     $authdom,$authnum)) {
1.53      www       440: # there is no valid key
1.118     albertel  441: 			     if ($env{'form.newkey'}) {
1.53      www       442: # student attempts to register a new key
1.89      www       443: 				 &Apache::loncommon::content_type($r,'text/html');
                    444: 				 &Apache::loncommon::no_cache($r);
                    445: 				 $r->send_http_header;
                    446: 				 my $swinfo=&Apache::lonmenu::rawconfig();
1.147     albertel  447: 				 my $start_page=&Apache::loncommon::start_page
1.89      www       448: 				    ('Verifying Access Key to Unlock this Course');
1.147     albertel  449: 				 my $end_page=&Apache::loncommon::end_page();
1.90      www       450: 				 my $buttontext=&mt('Enter Course');
                    451: 				 my $message=&mt('Successfully registered key');
                    452: 				 my $assignresult=
                    453: 				     &Apache::lonnet::assign_access_key(
1.118     albertel  454: 						     $env{'form.newkey'},
1.90      www       455: 						     $authdom,$authnum,
1.91      www       456: 						     $cdom,$cnum,
1.118     albertel  457:                                                      $env{'user.domain'},
                    458: 						     $env{'user.name'},
1.204     bisitz    459:                                                      &mt('Assigned from [_1] at [_2] for [_3]'
                    460:                                                         ,$ENV{'REMOTE_ADDR'}
                    461:                                                         ,&Apache::lonlocal::locallocaltime()
                    462:                                                         ,$trolecode)
                    463:                                                      );
1.90      www       464: 				 unless ($assignresult eq 'ok') {
                    465: 				     $assignresult=~s/^error\:\s*//;
                    466: 				     $message=&mt($assignresult).
                    467: 				     '<br /><a href="/adm/logout">'.
1.89      www       468: 				     &mt('Logout').'</a>';
1.90      www       469: 				     $buttontext=&mt('Re-Enter Key');
                    470: 				 }
1.89      www       471: 				 $r->print(<<ENDENTEREDKEY);
1.147     albertel  472: $start_page
1.179     raeburn   473: <script type="text/javascript">
1.225     bisitz    474: // <![CDATA[
1.89      www       475: $swinfo
1.225     bisitz    476: // ]]>
1.89      www       477: </script>
1.225     bisitz    478: <form action="" method="post">
1.89      www       479: <input type="hidden" name="selectrole" value="1" />
                    480: <input type="hidden" name="$trolecode" value="1" />
1.211     tempelho  481: <span class="LC_fontsize_large">$message</span><br />
1.89      www       482: <input type="submit" value="$buttontext" />
                    483: </form>
1.147     albertel  484: $end_page
1.89      www       485: ENDENTEREDKEY
                    486:                                  return OK;
1.55      albertel  487: 			     } else {
1.53      www       488: # print form to enter a new key
1.73      www       489: 				 &Apache::loncommon::content_type($r,'text/html');
1.55      albertel  490: 				 &Apache::loncommon::no_cache($r);
                    491: 				 $r->send_http_header;
                    492: 				 my $swinfo=&Apache::lonmenu::rawconfig();
1.147     albertel  493: 				 my $start_page=&Apache::loncommon::start_page
1.55      albertel  494: 				    ('Enter Access Key to Unlock this Course');
1.147     albertel  495: 				 my $end_page=&Apache::loncommon::end_page();
1.55      albertel  496: 				 $r->print(<<ENDENTERKEY);
1.147     albertel  497: $start_page
1.179     raeburn   498: <script type="text/javascript">
1.225     bisitz    499: // <![CDATA[
1.53      www       500: $swinfo
1.225     bisitz    501: // ]]>
1.53      www       502: </script>
1.225     bisitz    503: <form action="" method="post">
1.89      www       504: <input type="hidden" name="selectrole" value="1" />
                    505: <input type="hidden" name="$trolecode" value="1" />
1.118     albertel  506: <input type="text" size="20" name="newkey" value="$env{'form.newkey'}" />
1.53      www       507: <input type="submit" value="Enter key" />
                    508: </form>
1.147     albertel  509: $end_page
1.53      www       510: ENDENTERKEY
1.55      albertel  511: 				 return OK;
                    512: 			     }
                    513: 			 }
                    514: 		     }
1.118     albertel  515: 		    &Apache::lonnet::log($env{'user.domain'},
                    516: 					 $env{'user.name'},
                    517: 					 $env{'user.home'},
1.87      www       518: 					 "Role ".$trolecode);
1.101     albertel  519: 		    
1.56      www       520: 		    &Apache::lonnet::appenv(
1.186     raeburn   521: 					   {'request.role'        => $trolecode,
                    522: 					    'request.role.domain' => $cdom,
                    523: 					    'request.course.sec'  => $csec,
                    524:                                             'request.course.groups' => $cgrps});
1.101     albertel  525:                     my $tadv=0;
1.62      matthew   526: 
1.125     www       527: 		    if (($cnum) && ($role ne 'ca') && ($role ne 'aa')) {
1.152     raeburn   528:                         my $msg;
1.269.2.8  raeburn   529:                         my ($furl,$ferr)=
                    530:                             &Apache::lonuserstate::readmap($cdom.'/'.$cnum);
                    531:                         unless ($ferr) {
                    532:                             unless (($env{'form.switchrole'}) ||
                    533:                                     ($env{"environment.internal.$cdom.$cnum.$role.adhoc"})) {
                    534:                                 &Apache::lonnet::put('nohist_crslastlogin',
                    535:                                     {$env{'user.name'}.':'.$env{'user.domain'}.
                    536:                                      ':'.$csec.':'.$role => $now},$cdom,$cnum);
                    537:                             }
                    538:                             my ($feeds,$syllabus_time);
                    539:                             &Apache::lonrss::advertisefeeds($cnum,$cdom,undef,\$feeds);
                    540:                             &Apache::lonnet::appenv({'request.course.feeds' => $feeds});
                    541:                             unless ($env{'course.'.$cdom.'_'.$cnum.'.updatedsyllabus'}) {
                    542:                                 unless (($env{'course.'.$cdom.'_'.$cnum.'.externalsyllabus'}) ||
                    543:                                         ($env{'course.'.$cdom.'_'.$cnum.'.uploadedsyllabus'})) {
                    544:                                     my %syllabus=&Apache::lonnet::dump('syllabus',$cdom,$cnum);
                    545:                                     $syllabus_time = $syllabus{'uploaded.lastmodified'};
                    546:                                     if ($syllabus_time) {
                    547:                                         &Apache::lonnet::appenv({'request.course.syllabustime' => $syllabus_time});
                    548:                                     }
                    549:                                 }
                    550:                             }
1.269.2.2  raeburn   551:                         }
1.118     albertel  552: 			if (($env{'form.orgurl'}) && 
                    553: 			    ($env{'form.orgurl'}!~/^\/adm\/flip/)) {
                    554: 			    my $dest=$env{'form.orgurl'};
1.219     raeburn   555:                             if ($env{'form.symb'}) {
                    556:                                 if ($dest =~ /\?/) {
                    557:                                     $dest .= '&';
                    558:                                 } else {
                    559:                                     $dest .= '?'
                    560:                                 }
                    561:                                 $dest .= 'symb='.$env{'form.symb'};
                    562:                             }
1.117     albertel  563: 			    if (&Apache::lonnet::allowed('adv') eq 'F') { $tadv=1; }
1.186     raeburn   564: 			    &Apache::lonnet::appenv({'request.role.adv'=>$tadv});
1.150     www       565:                             if (($ferr) && ($tadv)) {
                    566: 				&error_page($r,$ferr,$dest);
                    567: 			    } else {
1.255     raeburn   568:                                 if ($dest =~ m{^/adm/coursedocs\?folderpath}) {
                    569:                                     if ($env{'request.course.id'} eq $cdom.'_'.$cnum) { 
                    570:                                         my $chome = &Apache::lonnet::homeserver($cnum,$cdom);
1.268     raeburn   571:                                         &Apache::loncommon::update_content_constraints($cdom,$cnum,$chome,
                    572:                                                                                        $cdom.'_'.$cnum);
1.255     raeburn   573:                                     }
                    574:                                 }
1.150     www       575: 				$r->internal_redirect($dest);
                    576: 			    }
1.55      albertel  577: 			    return OK;
                    578: 			} else {
1.155     albertel  579: 			    if (!$env{'request.course.id'}) {
1.55      albertel  580: 				&Apache::lonnet::appenv(
1.186     raeburn   581: 				      {"request.course.id"  => $cdom.'_'.$cnum});
1.61      www       582: 				$furl='/adm/roles?tryagain=1';
1.221     bisitz    583:                 $msg='<p><span class="LC_error">'
                    584:                     .&mt('Could not initialize [_1] at this time.',
                    585:                          $env{'course.'.$cdom.'_'.$cnum.'.description'})
                    586:                     .'</span></p>'
                    587:                     .'<p>'.&mt('Please try again.').'</p>'
                    588:                     .'<p>'.$ferr.'</p>';
1.55      albertel  589: 			    }
1.117     albertel  590: 			    if (&Apache::lonnet::allowed('adv') eq 'F') { $tadv=1; }
1.186     raeburn   591: 			    &Apache::lonnet::appenv({'request.role.adv'=>$tadv});
1.152     raeburn   592: 
1.150     www       593: 			    if (($ferr) && ($tadv)) {
                    594: 				&error_page($r,$ferr,$furl);
                    595: 			    } else {
                    596: 				# Check to see if the user is a CC entering a course 
                    597: 				# for the first time
                    598: 				my (undef, undef, $role, $courseid) = split(/\./, $envkey);
                    599: 				if (substr($courseid, 0, 1) eq '/') {
                    600: 				    $courseid = substr($courseid, 1);
                    601: 				}
                    602: 				$courseid =~ s/\//_/;
1.240     raeburn   603: 				if ((($role eq 'cc') || ($role eq 'co')) 
                    604:                                     && ($env{'course.' . $courseid .'.course.helper.not.run'})) { 
1.150     www       605: 				    $furl = "/adm/helper/course.initialization.helper";
                    606: 				    # Send the user to the course they selected
                    607: 				} elsif ($env{'request.course.id'}) {
1.269.2.3  raeburn   608:                                     my ($dest,$destsymb,$checkenc);
                    609:                                     $dest = $env{'form.destinationurl'};
                    610:                                     $destsymb = $env{'form.destsymb'};
                    611:                                     if ($dest ne '') {
                    612:                                         if ($env{'form.switchrole'}) {
                    613:                                             if ($destsymb ne '') {
                    614:                                                 if ($destsymb !~ m{^/enc/}) {
                    615:                                                     unless ($env{'request.role.adv'}) {
                    616:                                                         $checkenc = 1;
                    617:                                                     }
                    618:                                                 }
                    619:                                             }
                    620:                                             if ($dest =~ m{^/enc/}) {
                    621:                                                 if ($env{'request.role.adv'}) {
                    622:                                                     $dest = &Apache::lonenc::unencrypted($dest);
                    623:                                                     if ($destsymb eq '') {
1.269.2.4  raeburn   624:                                                         ($destsymb) = ($dest =~ /(?:\?|\&)symb=([^\&]*)/); 
1.269.2.3  raeburn   625:                                                         $destsymb = &unescape($destsymb);
                    626:                                                     }
                    627:                                                 }
                    628:                                             } else {
                    629:                                                 if ($destsymb eq '') {
1.269.2.4  raeburn   630:                                                     ($destsymb) = ($dest =~ /(?:\?|\&)symb=([^\&]+)/);
1.269.2.3  raeburn   631:                                                     $destsymb = &unescape($destsymb);
                    632:                                                 }
                    633:                                                 unless ($env{'request.role.adv'}) {
                    634:                                                     $checkenc = 1;
                    635:                                                 }
                    636:                                             }
                    637:                                             if (($checkenc) && ($destsymb ne '')) {
                    638:                                                 my ($encstate,$unencsymb,$res);
1.269.2.7  raeburn   639:                                                 $unencsymb = &Apache::lonnet::symbclean($destsymb);
1.269.2.3  raeburn   640:                                                 (undef,undef,$res) = &Apache::lonnet::decode_symb($unencsymb);
                    641:                                                 &Apache::lonnet::symbverify($unencsymb,$res,\$encstate);
                    642:                                                 if ($encstate) {
                    643:                                                     if (($dest ne '') && ($dest !~ m{^/enc/})) {
                    644:                                                         $dest=&Apache::lonenc::encrypted($dest);
                    645:                                                     }
                    646:                                                 }
                    647:                                             }
                    648:                                         }
1.269.2.4  raeburn   649:                                         unless (($dest =~ m{^/enc/}) || ($dest =~ /(\?|\&)symb=.+___\d+___.+/)) { 
1.269.2.3  raeburn   650:                                             if (($destsymb ne '') && ($destsymb !~ m{^/enc/})) {
                    651:                                                 my $esc_symb = &escape($destsymb);
                    652:                                                 $dest .= '?symb='.$esc_symb;
                    653:                                             }
1.203     raeburn   654:                                         }
1.245     droeschl  655:                                         &redirect_user($r, &mt('Entering [_1]',
                    656:                                                        $env{'course.'.$courseid.'.description'}),
                    657:                                                        $dest, $msg);
1.185     raeburn   658:                                         return OK;
                    659:                                     }
1.150     www       660: 				    if (&Apache::lonnet::allowed('whn',
                    661: 								 $env{'request.course.id'})
                    662: 					|| &Apache::lonnet::allowed('whn',
                    663: 								    $env{'request.course.id'}.'/'
                    664: 								    .$env{'request.course.sec'})
                    665: 					) {
                    666: 					my $startpage = &courseloadpage($courseid);
                    667: 					unless ($startpage eq 'firstres') {         
1.204     bisitz    668: 					    $msg = &mt('Entering [_1] ...',
1.162     albertel  669: 						       $env{'course.'.$courseid.'.description'});
1.245     droeschl  670: 					    &redirect_user($r, &mt('New in course'),
                    671:                                        '/adm/whatsnew?refpage=start', $msg);
1.150     www       672: 					    return OK;
                    673: 					}
                    674: 				    }
                    675: 				}
1.151     www       676: # Are we allowed to look at the first resource?
1.169     albertel  677: 				if ($furl !~ m|^/adm/|) {
1.151     www       678: # Guess not ...
                    679: 				    $furl=&Apache::lonpageflip::first_accessible_resource();
                    680: 				}
1.162     albertel  681:                                 $msg = &mt('Entering [_1] ...',
                    682: 					   $env{'course.'.$courseid.'.description'});
1.245     droeschl  683: 				&redirect_user($r, &mt('Entering [_1]',
                    684:                                $env{'course.'.$courseid.'.description'}),
                    685:                                $furl, $msg);
1.58      bowersj2  686: 			    }
1.124     albertel  687: 			    return OK;
1.55      albertel  688: 			}
                    689: 		    }
1.62      matthew   690:                     #
                    691:                     # Send the user to the construction space they selected
1.125     www       692:                     if ($role =~ /^(au|ca|aa)$/) {
1.62      matthew   693:                         my $redirect_url = '/priv/';
                    694:                         if ($role eq 'au') {
1.262     www       695:                             $redirect_url.=$env{'user.domain'}.'/'.$env{'user.name'};
1.62      matthew   696:                         } else {
1.263     www       697:                             $redirect_url .= $where;
1.62      matthew   698:                         }
                    699:                         $redirect_url .= '/';
1.78      sakharuk  700:                         &redirect_user($r,&mt('Entering Construction Space'),
1.62      matthew   701:                                        $redirect_url);
                    702:                         return OK;
                    703:                     }
1.104     raeburn   704:                     if ($role eq 'dc') {
1.108     raeburn   705:                         my $redirect_url = '/adm/menu/';
                    706:                         &redirect_user($r,&mt('Loading Domain Coordinator Menu'),
1.104     raeburn   707:                                        $redirect_url);
1.108     raeburn   708:                         return OK;
1.104     raeburn   709:                     }
1.220     raeburn   710:                     if ($role eq 'sc') {
                    711:                         my $redirect_url = '/adm/grades?command=scantronupload';
                    712:                         &redirect_user($r,&mt('Loading Data Upload Page'),
                    713:                                        $redirect_url);
                    714:                         return OK;
                    715:                     }
1.55      albertel  716: 		}
                    717:             }
1.6       www       718:         }
1.40      matthew   719:     }
1.44      www       720: 
1.10      www       721: 
1.6       www       722: # =============================================================== No Roles Init
1.10      www       723: 
1.73      www       724:     &Apache::loncommon::content_type($r,'text/html');
1.30      albertel  725:     &Apache::loncommon::no_cache($r);
1.10      www       726:     $r->send_http_header;
                    727:     return OK if $r->header_only;
                    728: 
1.224     raeburn   729:     my $crumbtext = 'User Roles';
                    730:     my $pagetitle = 'My Roles';
                    731:     my $recent = &mt('Recent Roles');
                    732:     my $show_course=&Apache::loncommon::show_course();
                    733:     if ($show_course) {
                    734:         $crumbtext = 'Courses';
                    735:         $pagetitle = 'My Courses';
                    736:         $recent = &mt('Recent Courses');
                    737:     }
                    738:     my $brcrum =[{href=>"/adm/roles",text=>$crumbtext}];
1.269.2.2  raeburn   739: 
                    740:     my %roles_in_env;
                    741:     my $showcount = &roles_from_env(\%roles_in_env,$update); 
                    742: 
1.52      www       743:     my $swinfo=&Apache::lonmenu::rawconfig();
1.224     raeburn   744:     my $start_page=&Apache::loncommon::start_page($pagetitle,undef,{bread_crumbs=>$brcrum});
1.269.2.2  raeburn   745:     my $funcs = &get_roles_functions($showcount);
1.134     www       746:     my $standby=&mt('Role selected. Please stand by.');
1.135     albertel  747:     $standby=~s/\n/\\n/g;
1.269.2.2  raeburn   748:     my $noscript='<br /><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       749: 
1.10      www       750:     $r->print(<<ENDHEADER);
1.147     albertel  751: $start_page
1.269.2.2  raeburn   752: $funcs
1.179     raeburn   753: <noscript>
                    754: $noscript
                    755: </noscript>
                    756: <script type="text/javascript">
1.225     bisitz    757: // <![CDATA[
1.26      www       758: $swinfo
                    759: window.focus();
1.134     www       760: 
                    761: active=true;
                    762: 
                    763: function enterrole (thisform,rolecode,buttonname) {
                    764:     if (active) {
                    765: 	active=false;
                    766:         document.title='$standby';
                    767:         window.status='$standby';
                    768: 	thisform.newrole.value=rolecode;
                    769: 	thisform.submit();
                    770:     } else {
                    771:        alert('$standby');
1.260     raeburn   772:     }
                    773: }
                    774: 
1.269.2.2  raeburn   775: function rolesView (caller) {
                    776:     if ((caller == 'showall') || (caller == 'noshowall')) {
                    777:         document.rolechoice.display.value = caller;
                    778:     } else {
                    779:         if ((caller == 'doupdate') || (caller == 'requestauthor') ||
                    780:             (caller == 'queued')) {
                    781:             document.rolechoice.state.value = caller;
                    782:         }
                    783:     }
                    784:     document.rolechoice.selectrole.value='';
                    785:     document.rolechoice.submit();
1.134     www       786: }
1.260     raeburn   787: 
1.225     bisitz    788: // ]]>
1.26      www       789: </script>
1.10      www       790: ENDHEADER
1.6       www       791: 
1.2       www       792: # ------------------------------------------ Get Error Message from Environment
                    793: 
1.118     albertel  794:     my ($fn,$priv,$nochoose,$error,$msg)=split(/:/,$env{'user.error.msg'});
                    795:     if ($env{'user.error.msg'}) {
1.55      albertel  796: 	$r->log_reason(
1.118     albertel  797:    "$msg for $env{'user.name'} domain $env{'user.domain'} access $priv",$fn);
1.12      www       798:     }
1.1       harris41  799: 
1.61      www       800: # ------------------------------------------------- Can this user re-init, etc?
1.6       www       801: 
1.118     albertel  802:     my $advanced=$env{'user.adv'};
1.61      www       803:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['tryagain']);
1.118     albertel  804:     my $tryagain=$env{'form.tryagain'};
1.209     raeburn   805:     my $reinit=$env{'user.reinit'};
                    806:     delete $env{'user.reinit'};
1.6       www       807: 
1.2       www       808: # -------------------------------------------------------- Generate Page Output
1.6       www       809: # --------------------------------------------------------------- Error Header?
1.2       www       810:     if ($error) {
1.187     bisitz    811:         $r->print("<h1>".&mt('LON-CAPA Access Control')."</h1>");
1.174     albertel  812: 	$r->print("<!-- LONCAPAACCESSCONTROLERRORSCREEN --><hr /><pre>");
                    813: 	if ($priv ne '') {
1.187     bisitz    814:             $r->print(&mt('Access  : ').&Apache::lonnet::plaintext($priv)."\n");
1.174     albertel  815: 	}
                    816: 	if ($fn ne '') {
1.187     bisitz    817:             $r->print(&mt('Resource: ').&Apache::lonenc::check_encrypt($fn)."\n");
1.174     albertel  818: 	}
                    819: 	if ($msg ne '') {
1.187     bisitz    820:             $r->print(&mt('Action  : ').$msg."\n");
1.174     albertel  821: 	}
                    822: 	$r->print("</pre><hr />");
1.120     albertel  823: 	my $url=$fn;
                    824: 	my $last;
                    825: 	if (tie(my %hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
                    826: 		&GDBM_READER(),0640)) {
                    827: 	    $last=$hash{'last_known'};
                    828: 	    untie(%hash);
                    829: 	}
1.149     www       830: 	if ($last) { $fn.='?symb='.&escape($last); }
1.120     albertel  831: 
                    832: 	&Apache::londocs::changewarning($r,undef,'You have modified your course recently, [_1] may fix this access problem.',
                    833: 					&Apache::lonenc::check_encrypt($fn));
1.2       www       834:     } else {
1.118     albertel  835:         if ($env{'user.error.msg'}) {
1.209     raeburn   836:             if ($reinit) {
                    837:                 $r->print(
                    838:  '<h3><span class="LC_error">'.
1.234     raeburn   839:  &mt('As your session file for the course or community has expired, you will need to re-select it.').'</span></h3>');
1.209     raeburn   840:             } else {
                    841: 	        $r->print(
1.157     albertel  842:  '<h3><span class="LC_error">'.
1.235     bisitz    843:  &mt('You need to choose another user role or enter a specific course or community for this function.').
                    844:  '</span></h3>');
1.209     raeburn   845: 	    }
                    846:         }
1.2       www       847:     }
                    848:     if ($nochoose) {
1.177     www       849: 	$r->print("<h2>".&mt('Sorry ...')."</h2>\n<span class='LC_error'>".
                    850: 		  &mt('This action is currently not authorized.').'</span>'.
1.150     www       851: 		  &Apache::loncommon::end_page());
                    852: 	return OK;
1.6       www       853:     } else {
1.269.2.2  raeburn   854:         if ($updateresult || $reqauthor || $hotlist) {
                    855:             my $showresult = '<div>';
                    856:             if ($updateresult) {
                    857:                 $showresult .= &Apache::lonhtmlcommon::confirm_success($updateresult);
                    858:             }
                    859:             if ($reqauthor) {
                    860:                 $showresult .= &Apache::lonhtmlcommon::confirm_success($reqauthor);
                    861:             }
                    862:             if ($hotlist) {
                    863:                 $showresult .= $hotlist;
                    864:             }
                    865:             $showresult .= '</div>';
                    866:             $r->print($showresult);
                    867:         } elsif ($env{'form.state'} eq 'queued') {
                    868:             $r->print(&get_queued());
                    869:         }
1.18      www       870:         if (($ENV{'REDIRECT_QUERY_STRING'}) && ($fn)) {
                    871:     	    $fn.='?'.$ENV{'REDIRECT_QUERY_STRING'};
1.6       www       872:         }
1.269.2.2  raeburn   873:         my $display = ($env{'form.display'} =~ /^(showall)$/);
1.84      www       874:         $r->print('<form method="post" name="rolechoice" action="'.(($fn)?$fn:$r->uri).'">');
1.116     albertel  875:         $r->print('<input type="hidden" name="orgurl" value="'.$fn.'" />');
                    876:         $r->print('<input type="hidden" name="selectrole" value="1" />');
1.134     www       877:         $r->print('<input type="hidden" name="newrole" value="" />');
1.269.2.2  raeburn   878:         $r->print('<input type="hidden" name="display" value="'.$display.'" />');
                    879:         $r->print('<input type="hidden" name="state" value="" />');
1.6       www       880:     }
1.259     raeburn   881:     $r->rflush();
1.226     raeburn   882: 
                    883:     my (%roletext,%sortrole,%roleclass,%futureroles,%timezones);
                    884:     my ($countactive,$countfuture,$inrole,$possiblerole) = 
1.269.2.2  raeburn   885:         &gather_roles($update,$refresh,$now,$reinit,$nochoose,\%roles_in_env,\%roletext,
                    886:                       \%sortrole,\%roleclass,\%futureroles,\%timezones,$loncaparev);
1.226     raeburn   887:     $refresh = $now;
                    888:     &Apache::lonnet::appenv({'user.refresh.time'  => $refresh});
1.269.2.2  raeburn   889:     unless ($env{'user.adv'}) {
1.196     raeburn   890:         if ($countactive > 0) {
                    891:             my $domdesc = &Apache::lonnet::domain($env{'user.domain'},'description');
1.201     raeburn   892:             my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&'); 
1.233     bisitz    893:             $r->print(
                    894:                 '<p>'
                    895:                .&mt('[_1]Visit the [_2]Course/Community Catalog[_3]'
                    896:                    .' to view all [_4] LON-CAPA courses and communities.'
                    897:                    ,'<b>'
                    898:                    ,'<a href="/adm/coursecatalog?showdom='.$esc_dom.'">'
                    899:                    ,'</a></b>',$domdesc)
                    900:                .'<br />'
1.235     bisitz    901:                .&mt('If a course or community is [_1]not[_2] in your list of current courses and communities below,'
1.233     bisitz    902:                    .' you may be able to enroll if self-enrollment is permitted.'
                    903:                    ,'<b>','</b>')
                    904:                .'</p>'
                    905:             );
1.196     raeburn   906:         }
                    907:     }
                    908: 
1.84      www       909: # No active roles
                    910:     if ($countactive==0) {
                    911: 	if ($inrole) {
1.234     raeburn   912: 	    $r->print('<h2>'.&mt('Currently no additional roles, courses or communities').'</h2>');
1.84      www       913: 	} else {
1.234     raeburn   914: 	    $r->print('<h2>'.&mt('Currently no active roles, courses or communities').'</h2>');
1.84      www       915: 	}
1.191     raeburn   916:         &findcourse_advice($r);
1.234     raeburn   917:         &requestcourse_advice($r); 
1.191     raeburn   918: 	$r->print('</form>');
                    919:         if ($countfuture) {
                    920:             $r->print(&mt('The following [quant,_1,role,roles] will become active in the future:',$countfuture));
                    921:             my $doheaders = &roletable_headers($r,\%roleclass,\%sortrole,
                    922:                                                $nochoose);
                    923:             &print_rolerows($r,$doheaders,\%roleclass,\%sortrole,\%dcroles,
                    924:                             \%roletext);
                    925:             my $tremark='';
1.212     bisitz    926:             my $tbg;
1.191     raeburn   927:             if ($env{'request.role'} eq 'cm') {
1.212     bisitz    928:                 $tbg="LC_roles_selected";
1.204     bisitz    929:                 $tremark=&mt('Currently selected.').' ';
1.191     raeburn   930:             } else {
1.212     bisitz    931:                 $tbg="LC_roles_is";
1.191     raeburn   932:             }
1.212     bisitz    933:             $r->print(&Apache::loncommon::start_data_table_row()
                    934:                      .'<td class="'.$tbg.'">&nbsp;</td>'
                    935:                      .'<td colspan="3">'
                    936:                      .&mt('No role specified')
                    937:                      .'</td>'
                    938:                      .'<td>'.$tremark.'&nbsp;</td>'
                    939:                      .&Apache::loncommon::end_data_table_row()
                    940:             );
1.191     raeburn   941: 
1.212     bisitz    942:             $r->print(&Apache::loncommon::end_data_table());
1.191     raeburn   943:         }
                    944:         $r->print(&Apache::loncommon::end_page());
1.84      www       945: 	return OK;
                    946:     }
                    947: # ----------------------------------------------------------------------- Table
1.247     raeburn   948: 
                    949:     if ($numdc > 0) {
                    950:         $r->print(&coursepick_jscript());
                    951:         $r->print(&Apache::loncommon::coursebrowser_javascript().
                    952:                   &Apache::loncommon::authorbrowser_javascript());
                    953:     }
                    954: 
1.224     raeburn   955:     unless ((!&Apache::loncommon::show_course()) || ($nochoose) || ($countactive==1)) {
1.173     albertel  956: 	$r->print("<h2>".&mt('Select a Course to Enter')."</h2>\n");
1.84      www       957:     }
1.229     raeburn   958:     if ($env{'form.destinationurl'}) {
                    959:         $r->print('<input type="hidden" name="destinationurl" value="'.
                    960:                   $env{'form.destinationurl'}.'" />');
                    961:         if ($env{'form.destsymb'} ne '') {
                    962:             $r->print('<input type="hidden" name="destsymb" value="'.
                    963:                       $env{'form.destsymb'}.'" />');
                    964:         }
                    965:     }
1.247     raeburn   966: 
1.191     raeburn   967:     my $doheaders = &roletable_headers($r,\%roleclass,\%sortrole,$nochoose);
1.118     albertel  968:     if ($env{'environment.recentroles'}) {
1.111     albertel  969:         my %recent_roles =
1.118     albertel  970:                &Apache::lonhtmlcommon::get_recent('roles',$env{'environment.recentrolesn'});
1.111     albertel  971: 	my $output='';
1.247     raeburn   972: 	foreach my $role (sort(keys(%recent_roles))) {
                    973: 	    if (ref($roletext{'user.role.'.$role}) eq 'ARRAY') {
1.223     raeburn   974: 		$output.= &Apache::loncommon::start_data_table_row().
1.247     raeburn   975:                           $roletext{'user.role.'.$role}->[0].
1.223     raeburn   976:                           &Apache::loncommon::end_data_table_row();
1.249     raeburn   977:                 if ($roletext{'user.role.'.$role}->[1] ne '') {
                    978:                     $output .= &Apache::loncommon::continue_data_table_row().
                    979:                                $roletext{'user.role.'.$role}->[1].
                    980:                                &Apache::loncommon::end_data_table_row();
                    981:                 }
1.247     raeburn   982:                 if ($role =~ m{dc\./($match_domain)/} 
1.170     albertel  983: 		    && $dcroles{$1}) {
1.192     raeburn   984: 		    $output .= &adhoc_roles_row($1,'recent');
1.133     albertel  985:                 }
1.113     raeburn   986: 	    } elsif ($numdc > 0) {
1.247     raeburn   987:                 unless ($role =~/^error\:/) {
1.249     raeburn   988:                     my ($roletext,$role_text_end) = &display_cc_role('user.role.'.$role);
1.259     raeburn   989:                     if ($roletext) {
                    990:                         $output.= &Apache::loncommon::start_data_table_row().
                    991:                                   $roletext.
                    992:                                   &Apache::loncommon::end_data_table_row();
                    993:                         if ($role_text_end) {
                    994:                             $output .= &Apache::loncommon::continue_data_table_row().
                    995:                                        $role_text_end.
                    996:                                        &Apache::loncommon::end_data_table_row();
                    997:                         }
                    998:                     }
1.113     raeburn   999:                 }
1.247     raeburn  1000:             }
1.111     albertel 1001: 	}
                   1002: 	if ($output) {
1.212     bisitz   1003: 	    $r->print(&Apache::loncommon::start_data_table_empty_row()
                   1004:                      .'<td align="center" colspan="5">'
1.224     raeburn  1005:                      .$recent
1.212     bisitz   1006:                      .'</td>'
                   1007:                      .&Apache::loncommon::end_data_table_empty_row()
                   1008:             );
1.111     albertel 1009: 	    $r->print($output);
1.114     raeburn  1010:             $doheaders ++;
1.111     albertel 1011: 	}
                   1012:     }
1.191     raeburn  1013:     &print_rolerows($r,$doheaders,\%roleclass,\%sortrole,\%dcroles,\%roletext);
1.202     raeburn  1014:     if ($countactive > 1) {
                   1015:         my $tremark='';
1.212     bisitz   1016:         my $tbg;
1.202     raeburn  1017:         if ($env{'request.role'} eq 'cm') {
1.212     bisitz   1018:             $tbg="LC_roles_selected";
1.204     bisitz   1019:             $tremark=&mt('Currently selected.').' ';
1.202     raeburn  1020:         } else {
1.212     bisitz   1021:                 $tbg="LC_roles_is";
1.202     raeburn  1022:         }
1.212     bisitz   1023:         $r->print(&Apache::loncommon::start_data_table_row());
1.202     raeburn  1024:         unless ($nochoose) {
                   1025: 	    if ($env{'request.role'} ne 'cm') {
1.212     bisitz   1026: 	        $r->print('<td class="'.$tbg.'"><input type="submit" value="'.
1.202     raeburn  1027: 		          &mt('Select').'" name="cm" /></td>');
                   1028: 	    } else {
1.212     bisitz   1029: 	        $r->print('<td class="'.$tbg.'">&nbsp;</td>');
1.202     raeburn  1030: 	    }
                   1031:         }
1.212     bisitz   1032:         $r->print('<td colspan="3">'
                   1033:                  .&mt('No role specified')
                   1034:                  .'</td>'
                   1035:                  .'<td>'.$tremark.'&nbsp;</td>'
                   1036:                  .&Apache::loncommon::end_data_table_row()
                   1037:         );
1.202     raeburn  1038:     } 
1.212     bisitz   1039:     $r->print(&Apache::loncommon::end_data_table());
1.4       www      1040:     unless ($nochoose) {
                   1041: 	$r->print("</form>\n");
                   1042:     }
1.22      harris41 1043: # ------------------------------------------------------------ Privileges Info
1.118     albertel 1044:     if (($advanced) && (($env{'user.error.msg'}) || ($error))) {
1.212     bisitz   1045: 	$r->print('<hr /><h2>'.&mt('Current Privileges').'</h2>');
1.175     albertel 1046: 	$r->print(&privileges_info());
1.4       www      1047:     }
1.267     bisitz   1048:     my $announcements = &Apache::lonnet::getannounce();
                   1049:     $r->print(
                   1050:         '<br />'.
                   1051:         '<h2>'.&mt('Announcements').'</h2>'.
                   1052:         $announcements
                   1053:     ) unless (!$announcements);
1.65      www      1054:     if ($advanced) {
1.201     raeburn  1055:         my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&');
1.231     bisitz   1056:         $r->print('<p><small><i>'
                   1057:                  .&mt('This LON-CAPA server is version [_1]',$r->dir_config('lonVersion'))
                   1058:                  .'</i><br />'
                   1059:                  .'<a href="/adm/logout">'.&mt('Logout').'</a>&nbsp;&nbsp;'
1.201     raeburn  1060:                  .'<a href="/adm/coursecatalog?showdom='.$esc_dom.'">'
1.233     bisitz   1061:                  .&mt('Course/Community Catalog')
1.225     bisitz   1062:                  .'</a></small></p>');
1.65      www      1063:     }
1.147     albertel 1064:     $r->print(&Apache::loncommon::end_page());
1.1       harris41 1065:     return OK;
1.102     raeburn  1066: }
                   1067: 
1.269.2.2  raeburn  1068: sub roles_from_env {
                   1069:     my ($roleshash,$update) = @_;
                   1070:     my $count = 0;
                   1071:     if (ref($roleshash) eq 'HASH') {
                   1072:         foreach my $envkey (keys(%env)) {
                   1073:             if ($envkey =~ m{^user\.role\.(\w+)[./]}) {
                   1074:                 next if ($1 eq 'gr');
                   1075:                 $roleshash->{$envkey} = $env{$envkey};
                   1076:                 my ($start,$end) = split(/\./,$env{$envkey});
                   1077:                 unless ($end && $end<$update) {
                   1078:                     $count ++;
                   1079:                 }
                   1080:             }
                   1081:         }
                   1082:     }
                   1083:     return $count;
                   1084: }
                   1085: 
1.226     raeburn  1086: sub gather_roles {
1.269.2.2  raeburn  1087:     my ($update,$refresh,$now,$reinit,$nochoose,$roles_in_env,$roletext,$sortrole,$roleclass,$futureroles,
                   1088:         $timezones,$loncaparev) = @_;
1.226     raeburn  1089:     my ($countactive,$countfuture,$inrole,$possiblerole) = (0,0,0,'');
                   1090:     my $advanced = $env{'user.adv'};
                   1091:     my $tryagain = $env{'form.tryagain'};
1.254     raeburn  1092:     my @ids = &Apache::lonnet::current_machine_ids();
1.269.2.2  raeburn  1093:     if (ref($roles_in_env) eq 'HASH') {
                   1094:         foreach my $envkey (sort(keys(%{$roles_in_env}))) {
                   1095:             my $button = 1;
                   1096:             my $switchserver='';
                   1097:             my $switchwarning;
                   1098:             my ($role_text,$role_text_end,$sortkey,$role,$where,$trolecode,$tstart,
                   1099:                 $tend,$tremark,$tstatus,$tpstart,$tpend);
1.260     raeburn  1100:             &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,
1.226     raeburn  1101:                                          \$trolecode,\$tstatus,\$tstart,\$tend);
                   1102:             next if (!defined($role) || $role eq '' || $role =~ /^gr/);
                   1103:             $tremark='';
                   1104:             $tpstart='&nbsp;';
                   1105:             $tpend='&nbsp;';
                   1106:             if ($env{'request.role'} eq $trolecode) {
                   1107:                 $tstatus='selected';
                   1108:             }
                   1109:             my $tbg;
                   1110:             if (($tstatus eq 'is')
                   1111:                 || ($tstatus eq 'selected')
                   1112:                 || ($tstatus eq 'future')
1.269.2.2  raeburn  1113:                 || ($env{'form.display'} eq 'showall')) {
1.259     raeburn  1114:                 my $timezone = &role_timezone($where,$timezones);
                   1115:                 if ($tstart) {
                   1116:                     $tpstart=&Apache::lonlocal::locallocaltime($tstart,$timezone);
                   1117:                 }
                   1118:                 if ($tend) {
                   1119:                     $tpend=&Apache::lonlocal::locallocaltime($tend,$timezone);
                   1120:                 }
1.226     raeburn  1121:                 if ($tstatus eq 'is') {
                   1122:                     $tbg='LC_roles_is';
                   1123:                     $possiblerole=$trolecode;
                   1124:                     $countactive++;
                   1125:                 } elsif ($tstatus eq 'future') {
                   1126:                     $tbg='LC_roles_future';
                   1127:                     $button=0;
                   1128:                     $futureroles->{$trolecode} = $tstart.':'.$tend;
                   1129:                     $countfuture ++;
                   1130:                 } elsif ($tstatus eq 'expired') {
                   1131:                     $tbg='LC_roles_expired';
                   1132:                     $button=0;
                   1133:                 } elsif ($tstatus eq 'will_not') {
                   1134:                     $tbg='LC_roles_will_not';
                   1135:                     $tremark.=&mt('Expired after logout.').' ';
                   1136:                 } elsif ($tstatus eq 'selected') {
                   1137:                     $tbg='LC_roles_selected';
                   1138:                     $inrole=1;
                   1139:                     $countactive++;
                   1140:                     $tremark.=&mt('Currently selected.').' ';
                   1141:                 }
                   1142:                 my $trole;
                   1143:                 if ($role =~ /^cr\//) {
                   1144:                     my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$role);
                   1145:                     if ($tremark) { $tremark.='<br />'; }
1.253     bisitz   1146:                     $tremark.=&mt('Customrole defined by [_1].',$rauthor.':'.$rdomain);
1.226     raeburn  1147:                 }
                   1148:                 $trole=Apache::lonnet::plaintext($role);
                   1149:                 my $ttype;
                   1150:                 my $twhere;
                   1151:                 my ($tdom,$trest,$tsection)=
                   1152:                     split(/\//,Apache::lonnet::declutter($where));
                   1153:                 # First, Co-Authorship roles
                   1154:                 if (($role eq 'ca') || ($role eq 'aa')) {
                   1155:                     my $home = &Apache::lonnet::homeserver($trest,$tdom);
                   1156:                     my $allowed=0;
                   1157:                     foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
                   1158:                     if (!$allowed) {
                   1159:                         $button=0;
1.248     raeburn  1160:                         $switchserver='otherserver='.$home.'&amp;role='.$trolecode;
1.226     raeburn  1161:                     }
                   1162:                     #next if ($home eq 'no_host');
                   1163:                     $home = &Apache::lonnet::hostname($home);
                   1164:                     $ttype='Construction Space';
                   1165:                     $twhere=&mt('User').': '.$trest.'<br />'.&mt('Domain').
                   1166:                         ': '.$tdom.'<br />'.
                   1167:                         ' '.&mt('Server').':&nbsp;'.$home;
                   1168:                     $env{'course.'.$tdom.'_'.$trest.'.description'}='ca';
                   1169:                     $tremark.=&Apache::lonhtmlcommon::authorbombs('/res/'.$tdom.'/'.$trest.'/');
                   1170:                     $sortkey=$role."$trest:$tdom";
                   1171:                 } elsif ($role eq 'au') {
                   1172:                     # Authors
                   1173:                     my $home = &Apache::lonnet::homeserver
                   1174:                         ($env{'user.name'},$env{'user.domain'});
                   1175:                     my $allowed=0;
                   1176:                     foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
                   1177:                     if (!$allowed) {
                   1178:                         $button=0;
1.248     raeburn  1179:                         $switchserver='otherserver='.$home.'&amp;role='.$trolecode;
1.226     raeburn  1180:                     }
                   1181:                     #next if ($home eq 'no_host');
                   1182:                     $home = &Apache::lonnet::hostname($home);
                   1183:                     $ttype='Construction Space';
                   1184:                     $twhere=&mt('Domain').': '.$tdom.'<br />'.&mt('Server').
                   1185:                         ':&nbsp;'.$home;
                   1186:                     $env{'course.'.$tdom.'_'.$trest.'.description'}='ca';
                   1187:                     $tremark.=&Apache::lonhtmlcommon::authorbombs('/res/'.$tdom.'/'.$env{'user.name'}.'/');
                   1188:                     $sortkey=$role;
                   1189:                 } elsif ($trest) {
                   1190:                     my $tcourseid=$tdom.'_'.$trest;
                   1191:                     $ttype = &Apache::loncommon::course_type($tcourseid);
1.242     raeburn  1192:                     $trole = &Apache::lonnet::plaintext($role,$ttype,$tcourseid);
1.226     raeburn  1193:                     if ($env{'course.'.$tcourseid.'.description'}) {
1.254     raeburn  1194:                         my $home=$env{'course.'.$tcourseid.'.home'};
1.226     raeburn  1195:                         $twhere=$env{'course.'.$tcourseid.'.description'};
                   1196:                         $sortkey=$role."\0".$tdom."\0".$twhere."\0".$envkey;
1.248     raeburn  1197:                         $twhere = &HTML::Entities::encode($twhere,'"<>&');
1.226     raeburn  1198:                         unless ($twhere eq &mt('Currently not available')) {
                   1199:                             $twhere.=' <span class="LC_fontsize_small">'.
                   1200:         &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom).
                   1201:                                     '</span>';
1.254     raeburn  1202:                             unless ($home && grep(/^\Q$home\E$/,@ids) && $loncaparev eq '') {
1.255     raeburn  1203:                                 my $required = $env{'course.'.$tcourseid.'.internal.releaserequired'};
1.259     raeburn  1204:                                 if ($required ne '') {
                   1205:                                     ($switchserver,$switchwarning) = 
                   1206:                                         &check_release_required($loncaparev,$tcourseid,$trolecode,$required);
                   1207:                                     if ($switchserver || $switchwarning) {
                   1208:                                         $button = 0;
                   1209:                                     }
1.254     raeburn  1210:                                 }
                   1211:                             }
1.226     raeburn  1212:                         }
                   1213:                     } else {
                   1214:                         my %newhash=&Apache::lonnet::coursedescription($tcourseid);
                   1215:                         if (%newhash) {
                   1216:                             $sortkey=$role."\0".$tdom."\0".$newhash{'description'}.
                   1217:                                 "\0".$envkey;
1.248     raeburn  1218:                             $twhere=&HTML::Entities::encode($newhash{'description'},'"<>&').
                   1219:                                     ' <span class="LC_fontsize_small">'.
                   1220:                                      &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom).
                   1221:                                     '</span>';
1.226     raeburn  1222:                             $ttype = $newhash{'type'};
1.243     raeburn  1223:                             $trole = &Apache::lonnet::plaintext($role,$ttype,$tcourseid);
1.254     raeburn  1224:                             my $home = $newhash{'home'};
                   1225:                             unless ($home && grep(/^\Q$home\E$/,@ids) && $loncaparev eq '') {
1.255     raeburn  1226:                                 my $required = $newhash{'internal.releaserequired'};
1.259     raeburn  1227:                                 if ($required ne '') {
                   1228:                                     ($switchserver,$switchwarning) =
                   1229:                                         &check_release_required($loncaparev,$tcourseid,$trolecode,$required);
                   1230:                                     if ($switchserver || $switchwarning) {
                   1231:                                         $button = 0;
                   1232:                                     }
1.254     raeburn  1233:                                 }
                   1234:                             }
1.226     raeburn  1235:                         } else {
                   1236:                             $twhere=&mt('Currently not available');
                   1237:                             $env{'course.'.$tcourseid.'.description'}=$twhere;
                   1238:                             $sortkey=$role."\0".$tdom."\0".$twhere."\0".$envkey;
                   1239:                             $ttype = 'Unavailable';
                   1240:                         }
                   1241:                     }
                   1242:                     if ($tsection) {
                   1243:                         $twhere.='<br />'.&mt('Section').': '.$tsection;
                   1244:                     }
                   1245:                     if ($role ne 'st') { $twhere.="<br />".&mt('Domain').":".$tdom; }
                   1246:                 } elsif ($tdom) {
                   1247:                     $ttype='Domain';
                   1248:                     $twhere=$tdom;
                   1249:                     $sortkey=$role.$twhere;
                   1250:                 } else {
                   1251:                     $ttype='System';
                   1252:                     $twhere=&mt('system wide');
                   1253:                     $sortkey=$role.$twhere;
                   1254:                 }
                   1255:                 ($role_text,$role_text_end) =
                   1256:                     &build_roletext($trolecode,$tdom,$trest,$tstatus,$tryagain,
                   1257:                                     $advanced,$tremark,$tbg,$trole,$twhere,$tpstart,
1.254     raeburn  1258:                                     $tpend,$nochoose,$button,$switchserver,$reinit,$switchwarning);
1.226     raeburn  1259:                 $roletext->{$envkey}=[$role_text,$role_text_end];
                   1260:                 if (!$sortkey) {$sortkey=$twhere."\0".$envkey;}
                   1261:                 $sortrole->{$sortkey}=$envkey;
                   1262:                 $roleclass->{$envkey}=$ttype;
                   1263:             }
                   1264:         }
                   1265:     }
                   1266:     return ($countactive,$countfuture,$inrole,$possiblerole);
                   1267: }
                   1268: 
1.215     raeburn  1269: sub role_timezone {
                   1270:     my ($where,$timezones) = @_;
                   1271:     my $timezone;
                   1272:     if (ref($timezones) eq 'HASH') { 
                   1273:         if ($where =~ m{^/($match_domain)/($match_courseid)}) {
                   1274:             my $cdom = $1;
                   1275:             my $cnum = $2;
                   1276:             if ($cdom && $cnum) {
                   1277:                 if (!exists($timezones->{$cdom.'_'.$cnum})) {
1.259     raeburn  1278:                     my $tz;
                   1279:                     if ($env{'course.'.$cdom.'_'.$cnum.'.description'}) {
                   1280:                         $tz = $env{'course.'.$cdom.'_'.$cnum.'.timezone'};
                   1281:                     } else {
                   1282:                         my %timehash =
                   1283:                             &Apache::lonnet::get('environment',['timezone'],$cdom,$cnum);
                   1284:                         $tz = $timehash{'timezone'};
                   1285:                     }
                   1286:                     if ($tz eq '') {
1.215     raeburn  1287:                         if (!exists($timezones->{$cdom})) {
                   1288:                             my %domdefaults = 
                   1289:                                 &Apache::lonnet::get_domain_defaults($cdom);
                   1290:                             if ($domdefaults{'timezone_def'} eq '') {
                   1291:                                 $timezones->{$cdom} = 'local';
                   1292:                             } else {
                   1293:                                 $timezones->{$cdom} = $domdefaults{'timezone_def'};
                   1294:                             }
                   1295:                         }
                   1296:                         $timezones->{$cdom.'_'.$cnum} = $timezones->{$cdom};
                   1297:                     } else {
                   1298:                         $timezones->{$cdom.'_'.$cnum} = 
1.259     raeburn  1299:                             &Apache::lonlocal::gettimezone($tz);
1.215     raeburn  1300:                     }
                   1301:                 }
                   1302:                 $timezone = $timezones->{$cdom.'_'.$cnum};
                   1303:             }
                   1304:         } else {
                   1305:             my ($tdom) = ($where =~ m{^/($match_domain)});
                   1306:             if ($tdom) {
                   1307:                 if (!exists($timezones->{$tdom})) {
                   1308:                     my %domdefaults = &Apache::lonnet::get_domain_defaults($tdom);
                   1309:                     if ($domdefaults{'timezone_def'} eq '') {
                   1310:                         $timezones->{$tdom} = 'local';
                   1311:                     } else {
                   1312:                         $timezones->{$tdom} = $domdefaults{'timezone_def'};
                   1313:                     }
                   1314:                 }
                   1315:                 $timezone = $timezones->{$tdom};
                   1316:             }
                   1317:         }
                   1318:         if ($timezone eq 'local') {
                   1319:             $timezone = undef;
                   1320:         }
                   1321:     }
                   1322:     return $timezone;
                   1323: }
                   1324: 
1.191     raeburn  1325: sub roletable_headers {
                   1326:     my ($r,$roleclass,$sortrole,$nochoose) = @_;
                   1327:     my $doheaders;
                   1328:     if ((ref($sortrole) eq 'HASH') && (ref($roleclass) eq 'HASH')) {
1.212     bisitz   1329:         $r->print('<br />'
                   1330:                  .&Apache::loncommon::start_data_table()
                   1331:                  .&Apache::loncommon::start_data_table_header_row()
                   1332:         );
1.191     raeburn  1333:         if (!$nochoose) { $r->print('<th>&nbsp;</th>'); }
1.212     bisitz   1334:         $r->print('<th>'.&mt('User Role').'</th>'
                   1335:                  .'<th>'.&mt('Extent').'</th>'
                   1336:                  .'<th>'.&mt('Start').'</th>'
                   1337:                  .'<th>'.&mt('End').'</th>'
                   1338:                  .&Apache::loncommon::end_data_table_header_row()
                   1339:         );
1.191     raeburn  1340:         $doheaders=-1;
                   1341:         my @roletypes = &roletypes();
                   1342:         foreach my $type (@roletypes) {
                   1343:             my $haverole=0;
                   1344:             foreach my $which (sort {uc($a) cmp uc($b)} (keys(%{$sortrole}))) {
                   1345:                 if ($roleclass->{$sortrole->{$which}} =~ /^\Q$type\E/) {
                   1346:                     $haverole=1;
                   1347:                 }
                   1348:             }
                   1349:             if ($haverole) { $doheaders++; }
                   1350:         }
                   1351:     }
                   1352:     return $doheaders;
                   1353: }
                   1354: 
                   1355: sub roletypes {
1.237     raeburn  1356:     my @types = ('Domain','Construction Space','Course','Community','Unavailable','System');
1.191     raeburn  1357:     return @types; 
                   1358: }
                   1359: 
                   1360: sub print_rolerows {
                   1361:     my ($r,$doheaders,$roleclass,$sortrole,$dcroles,$roletext) = @_;
                   1362:     if ((ref($roleclass) eq 'HASH') && (ref($sortrole) eq 'HASH')) {
                   1363:         my @types = &roletypes();
                   1364:         foreach my $type (@types) {
                   1365:             my $output;
                   1366:             foreach my $which (sort {uc($a) cmp uc($b)} (keys(%{$sortrole}))) {
                   1367:                 if ($roleclass->{$sortrole->{$which}} =~ /^\Q$type\E/) {
                   1368:                     if (ref($roletext) eq 'HASH') {
1.223     raeburn  1369:                         if (ref($roletext->{$sortrole->{$which}}) eq 'ARRAY') {
                   1370:                             $output.= &Apache::loncommon::start_data_table_row().
                   1371:                                       $roletext->{$sortrole->{$which}}->[0].
                   1372:                                       &Apache::loncommon::end_data_table_row();
1.251     raeburn  1373:                             if ($roletext->{$sortrole->{$which}}->[1] ne '') {
                   1374:                                 $output .= &Apache::loncommon::continue_data_table_row().
                   1375:                                            $roletext->{$sortrole->{$which}}->[1].
                   1376:                                            &Apache::loncommon::end_data_table_row();
                   1377:                             }
1.223     raeburn  1378:                         }
1.191     raeburn  1379:                         if ($sortrole->{$which} =~ m-dc\./($match_domain)/-) {
                   1380:                             if (ref($dcroles) eq 'HASH') {
                   1381:                                 if ($dcroles->{$1}) {
1.192     raeburn  1382:                                     $output .= &adhoc_roles_row($1,'');
1.191     raeburn  1383:                                 }
                   1384:                             }
                   1385:                         }
                   1386:                     }
                   1387:                 }
                   1388:             }
                   1389:             if ($output) {
                   1390:                 if ($doheaders > 0) {
1.212     bisitz   1391:                     $r->print(&Apache::loncommon::start_data_table_empty_row()
                   1392:                              .'<td align="center" colspan="5">'
                   1393:                              .&mt($type)
                   1394:                              .'</td>'
                   1395:                              .&Apache::loncommon::end_data_table_empty_row()
                   1396:                     );
1.191     raeburn  1397:                 }
                   1398:                 $r->print($output);
                   1399:             }
                   1400:         }
                   1401:     }
                   1402: }
                   1403: 
                   1404: sub findcourse_advice {
                   1405:     my ($r) = @_;
                   1406:     my $domdesc = &Apache::lonnet::domain($env{'user.domain'},'description');
1.201     raeburn  1407:     my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&');
1.200     raeburn  1408:     if (&Apache::lonnet::auto_run(undef,$env{'user.domain'})) {
1.191     raeburn  1409:         $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).'
                   1410: <ul>
                   1411:  <li>'.&mt('The course has yet to be created.').'</li>
                   1412:  <li>'.&mt('Automatic enrollment of registered students has not been enabled for the course.').'</li>
                   1413:  <li>'.&mt('You are in a section of course for which automatic enrollment in the corresponding LON-CAPA course is not active.').'</li>
                   1414:  <li>'.&mt('The start date for automated enrollment has yet to be reached.').'</li>
                   1415:  <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>
                   1416:  </ul>');
                   1417:     } else {
                   1418:         $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 />');
                   1419:     }
1.235     bisitz   1420:     $r->print('<h3>'.&mt('Self-Enrollment').'</h3>'.
1.234     raeburn  1421:               '<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.241     raeburn  1422:     $r->print(&mt('You can search for courses and communities which permit self-enrollment, if you would like to enroll in one.').'</p>'.
                   1423:               &Apache::loncoursequeueadmin::queued_selfenrollment());
1.216     raeburn  1424:     return;
                   1425: }
                   1426: 
1.234     raeburn  1427: sub requestcourse_advice {
                   1428:     my ($r) = @_;
                   1429:     my $domdesc = &Apache::lonnet::domain($env{'user.domain'},'description');
                   1430:     my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&');
                   1431:     my (%can_request,%request_doms);
                   1432:     &Apache::lonnet::check_can_request($env{'user.domain'},\%can_request,\%request_doms);
                   1433:     if (keys(%request_doms) > 0) {
                   1434:         my ($types,$typename) = &Apache::loncommon::course_types();
                   1435:         if ((ref($types) eq 'ARRAY') && (ref($typename) eq 'HASH')) { 
                   1436:             $r->print('<h3>'.&mt('Request creation of a course or community').'</h3>'.
1.238     bisitz   1437:                       '<p>'.&mt('You have rights to request the creation of courses and/or communities in the following domain(s):').'<ul>');
1.234     raeburn  1438:             my (@reqdoms,@reqtypes);
                   1439:             foreach my $type (sort(keys(%request_doms))) {
                   1440:                 push(@reqtypes,$type); 
                   1441:                 if (ref($request_doms{$type}) eq 'ARRAY') {
                   1442:                     my $domstr = join(', ',map { &Apache::lonnet::domain($_) } sort(@{$request_doms{$type}}));
1.238     bisitz   1443:                     $r->print(
                   1444:                         '<li>'
                   1445:                        .&mt('[_1]'.$typename->{$type}.'[_2] in domain: [_3]',
                   1446:                             '<i>',
                   1447:                             '</i>',
                   1448:                             '<b>'.$domstr.'</b>')
                   1449:                        .'</li>'
                   1450:                     );
1.234     raeburn  1451:                     foreach my $dom (@{$request_doms{$type}}) {
                   1452:                         unless (grep(/^\Q$dom\E/,@reqdoms)) {
                   1453:                             push(@reqdoms,$dom);
                   1454:                         }
                   1455:                     }
                   1456:                 }
                   1457:             }
                   1458:             my @showtypes;
                   1459:             foreach my $type (@{$types}) {
                   1460:                 if (grep(/^\Q$type\E$/,@reqtypes)) {
                   1461:                     push(@showtypes,$type);
                   1462:                 }
                   1463:             }
                   1464:             my $requrl = '/adm/requestcourse';
                   1465:             if (@reqdoms == 1) {
                   1466:                 $requrl .= '?showdom='.$reqdoms[0];
                   1467:             }
                   1468:             if (@showtypes > 0) {
                   1469:                 $requrl.=(($requrl=~/\?/)?'&':'?').'crstype='.$showtypes[0];
                   1470:             }
                   1471:             if (@reqdoms == 1 || @showtypes > 0) {
                   1472:                 $requrl .= '&state=crstype&action=new';
                   1473:             } 
                   1474:             $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>');
                   1475:         }
                   1476:     }
                   1477:     return;
                   1478: }
                   1479: 
1.175     albertel 1480: sub privileges_info {
                   1481:     my ($which) = @_;
                   1482:     my $output;
                   1483: 
                   1484:     $which ||= $env{'request.role'};
                   1485: 
                   1486:     foreach my $envkey (sort(keys(%env))) {
                   1487: 	next if ($envkey!~/^user\.priv\.\Q$which\E\.(.*)/);
                   1488: 
                   1489: 	my $where=$1;
                   1490: 	my $ttype;
                   1491: 	my $twhere;
                   1492: 	my (undef,$tdom,$trest,$tsec)=split(m{/},$where);
                   1493: 	if ($trest) {
                   1494: 	    if ($env{'course.'.$tdom.'_'.$trest.'.description'} eq 'ca') {
                   1495: 		$ttype='Construction Space';
                   1496: 		$twhere='User: '.$trest.', Domain: '.$tdom;
                   1497: 	    } else {
                   1498: 		$ttype= &Apache::loncommon::course_type($tdom.'_'.$trest);
                   1499: 		$twhere=$env{'course.'.$tdom.'_'.$trest.'.description'};
                   1500: 		if ($tsec) {
                   1501: 		    my $sec_type = 'Section';
                   1502: 		    if (exists($env{"user.role.gr.$where"})) {
                   1503: 			$sec_type = 'Group';
                   1504: 		    }
                   1505: 		    $twhere.=' ('.$sec_type.': '.$tsec.')';
                   1506: 		}
                   1507: 	    }
                   1508: 	} elsif ($tdom) {
                   1509: 	    $ttype='Domain';
                   1510: 	    $twhere=$tdom;
                   1511: 	} else {
                   1512: 	    $ttype='System';
                   1513: 	    $twhere='/';
                   1514: 	}
1.204     bisitz   1515: 	$output .= "\n<h3>".&mt($ttype).': '.$twhere.'</h3>'."\n<ul>";
1.175     albertel 1516: 	foreach my $priv (sort(split(/:/,$env{$envkey}))) {
                   1517: 	    next if (!$priv);
                   1518: 
                   1519: 	    my ($prv,$restr)=split(/\&/,$priv);
                   1520: 	    my $trestr='';
                   1521: 	    if ($restr ne 'F') {
                   1522: 		$trestr.=' ('.
                   1523: 		    join(', ',
                   1524: 			 map { &Apache::lonnet::plaintext($_) } 
                   1525: 			     (split('',$restr))).') ';
                   1526: 	    }
                   1527: 	    $output .= "\n\t".
                   1528: 		'<li>'.&Apache::lonnet::plaintext($prv).$trestr.'</li>';
                   1529: 	}
                   1530: 	$output .= "\n".'</ul>';
                   1531:     }
                   1532:     return $output;
                   1533: }
                   1534: 
1.110     raeburn  1535: sub build_roletext {
1.254     raeburn  1536:     my ($trolecode,$tdom,$trest,$tstatus,$tryagain,$advanced,$tremark,$tbg,$trole,$twhere,$tpstart,$tpend,$nochoose,$button,$switchserver,$reinit,$switchwarning) = @_;
1.223     raeburn  1537:     my ($roletext,$roletext_end);
1.132     albertel 1538:     my $is_dc=($trolecode =~ m/^dc\./);
                   1539:     my $rowspan=($is_dc) ? ''
                   1540:                          : ' rowspan="2" ';
                   1541: 
1.110     raeburn  1542:     unless ($nochoose) {
1.134     www      1543:         my $buttonname=$trolecode;
                   1544:         $buttonname=~s/\W//g;
1.110     raeburn  1545:         if (!$button) {
                   1546:             if ($switchserver) {
1.212     bisitz   1547:                 $roletext.='<td'.$rowspan.' class="'.$tbg.'">'
                   1548:                           .'<a href="/adm/switchserver?'.$switchserver.'">'
                   1549:                           .&mt('Switch Server')
                   1550:                           .'</a></td>';
1.110     raeburn  1551:             } else {
1.212     bisitz   1552:                 $roletext.=('<td'.$rowspan.' class="'.$tbg.'">&nbsp;</td>');
1.110     raeburn  1553:             }
1.255     raeburn  1554:             if ($switchwarning) {
                   1555:                 if ($tremark eq '') {
                   1556:                     $tremark = $switchwarning;
                   1557:                 } else {
                   1558:                     $tremark .= '<br />'.$switchwarning;
                   1559:                 }
                   1560:             }
1.110     raeburn  1561:         } elsif ($tstatus eq 'is') {
1.212     bisitz   1562:             $roletext.='<td'.$rowspan.' class="'.$tbg.'">'.
                   1563:                         '<input name="'.$buttonname.'" type="button" value="'.
1.225     bisitz   1564:                         &mt('Select').'" onclick="javascript:enterrole(this.form,\''.
1.192     raeburn  1565:                         $trolecode."','".$buttonname.'\');" /></td>';
1.110     raeburn  1566:         } elsif ($tryagain) {
                   1567:             $roletext.=
1.212     bisitz   1568:                 '<td'.$rowspan.' class="'.$tbg.'">'.
                   1569:                 '<input name="'.$buttonname.'" type="button" value="'.
1.225     bisitz   1570:                 &mt('Try Selecting Again').'" onclick="javascript:enterrole(this.form,\''.
1.192     raeburn  1571:                         $trolecode."','".$buttonname.'\');" /></td>';
1.110     raeburn  1572:         } elsif ($advanced) {
                   1573:             $roletext.=
1.212     bisitz   1574:                 '<td'.$rowspan.' class="'.$tbg.'">'.
                   1575:                 '<input name="'.$buttonname.'" type="button" value="'.
1.225     bisitz   1576:                 &mt('Re-Initialize').'" onclick="javascript:enterrole(this.form,\''.
1.192     raeburn  1577:                         $trolecode."','".$buttonname.'\');" /></td>';
1.209     raeburn  1578:         } elsif ($reinit) {
                   1579:             $roletext.= 
1.212     bisitz   1580:                 '<td'.$rowspan.' class="'.$tbg.'">'.
                   1581:                 '<input name="'.$buttonname.'" type="button" value="'.
1.225     bisitz   1582:                 &mt('Re-Select').'" onclick="javascript:enterrole(this.form,\''.
1.209     raeburn  1583:                         $trolecode."','".$buttonname.'\');" /></td>';
1.110     raeburn  1584:         } else {
1.209     raeburn  1585:             $roletext.=
1.212     bisitz   1586:                 '<td'.$rowspan.' class="'.$tbg.'">'.
                   1587:                 '<input name="'.$buttonname.'" type="button" value="'.
1.225     bisitz   1588:                 &mt('Re-Select').'" onclick="javascript:enterrole(this.form,\''.
1.209     raeburn  1589:                         $trolecode."','".$buttonname.'\');" /></td>';
1.110     raeburn  1590:         }
                   1591:     }
1.165     albertel 1592:     if ($trolecode !~ m/^(dc|ca|au|aa)\./) {
                   1593: 	$tremark.=&Apache::lonannounce::showday(time,1,
                   1594: 			 &Apache::lonannounce::readcalendar($tdom.'_'.$trest));
                   1595:     }
1.212     bisitz   1596:     $roletext.='<td>'.$trole.'</td>'
                   1597:               .'<td>'.$twhere.'</td>'
                   1598:               .'<td>'.$tpstart.'</td>'
1.223     raeburn  1599:               .'<td>'.$tpend.'</td>';
1.132     albertel 1600:     if (!$is_dc) {
1.223     raeburn  1601:         $roletext_end = '<td colspan="4">'.
                   1602:                         $tremark.'&nbsp;'.
                   1603:                         '</td>';
1.132     albertel 1604:     }
1.223     raeburn  1605:     return ($roletext,$roletext_end);
1.110     raeburn  1606: }
                   1607: 
1.202     raeburn  1608: sub check_needs_switchserver {
                   1609:     my ($possiblerole) = @_;
                   1610:     my $needs_switchserver;
                   1611:     my ($role,$where) = split(/\./,$possiblerole,2);
                   1612:     my (undef,$tdom,$twho) = split(/\//,$where);
                   1613:     my ($server_status,$home);
                   1614:     if (($role eq 'ca') || ($role eq 'aa')) {
                   1615:         ($server_status,$home) = &check_author_homeserver($twho,$tdom);
                   1616:     } else {
                   1617:         ($server_status,$home) = &check_author_homeserver($env{'user.name'},
                   1618:                                                           $env{'user.domain'});
                   1619:     }
                   1620:     if ($server_status eq 'switchserver') {
                   1621:         $needs_switchserver = 1;
                   1622:     }
                   1623:     return $needs_switchserver;
                   1624: }
                   1625: 
1.193     raeburn  1626: sub check_author_homeserver {
1.183     www      1627:     my ($uname,$udom)=@_;
1.193     raeburn  1628:     if (($uname eq '') || ($udom eq '')) {
                   1629:         return ('fail','');
                   1630:     }
1.183     www      1631:     my $home = &Apache::lonnet::homeserver($uname,$udom);
1.193     raeburn  1632:     if (&Apache::lonnet::host_domain($home) ne $udom) {
                   1633:         return ('fail',$home);
                   1634:     }
1.183     www      1635:     my @ids=&Apache::lonnet::current_machine_ids();
1.193     raeburn  1636:     if (grep(/^\Q$home\E$/,@ids)) {
                   1637:         return ('ok',$home);
                   1638:     } else {
                   1639:         return ('switchserver',$home);
1.183     www      1640:     }
                   1641: }
                   1642: 
1.104     raeburn  1643: sub check_fordc {
1.260     raeburn  1644:     my ($dcroles,$update,$then) = @_;
1.104     raeburn  1645:     my $numdc = 0;
1.118     albertel 1646:     if ($env{'user.adv'}) {
                   1647:         foreach my $envkey (sort keys %env) {
1.170     albertel 1648:             if ($envkey=~/^user\.role\.dc\.\/($match_domain)\/$/) {
1.104     raeburn  1649:                 my $dcdom = $1;
                   1650:                 my $livedc = 1;
1.118     albertel 1651:                 my ($tstart,$tend)=split(/\./,$env{$envkey});
1.260     raeburn  1652:                 my $limit = $update;
                   1653:                 if ($env{'request.role'} eq 'dc./'.$dcdom.'/') {
                   1654:                     $limit = $then;
                   1655:                 }
                   1656:                 if ($tstart && $tstart>$limit) { $livedc = 0; }
                   1657:                 if ($tend   && $tend  <$limit) { $livedc = 0; }
1.104     raeburn  1658:                 if ($livedc) {
                   1659:                     $$dcroles{$dcdom} = $envkey;
1.105     raeburn  1660:                     $numdc++;
1.104     raeburn  1661:                 }
                   1662:             }
                   1663:         }
                   1664:     }
                   1665:     return $numdc;
                   1666: }
                   1667: 
1.185     raeburn  1668: sub adhoc_course_role {
1.260     raeburn  1669:     my ($refresh,$update,$then) = @_;
1.239     raeburn  1670:     my ($cdom,$cnum,$crstype);
1.201     raeburn  1671:     $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   1672:     $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.239     raeburn  1673:     $crstype = &Apache::loncommon::course_type();
1.260     raeburn  1674:     if (&check_forcc($cdom,$cnum,$refresh,$update,$then,$crstype)) {
1.185     raeburn  1675:         my $setprivs;
1.198     raeburn  1676:         if (!defined($env{'user.role.'.$env{'form.switchrole'}})) {
1.185     raeburn  1677:             $setprivs = 1;
                   1678:         } else {
1.198     raeburn  1679:             my ($start,$end) = split(/\./,$env{'user.role.'.$env{'form.switchrole'}});
1.232     raeburn  1680:             if (($start && ($start>$refresh || $start == -1)) ||
1.260     raeburn  1681:                 ($end && $end<$update)) {
1.185     raeburn  1682:                 $setprivs = 1;
                   1683:             }
1.232     raeburn  1684:         }
1.269.2.5  raeburn  1685:         unless ($setprivs) {
                   1686:             if (!exists($env{'user.priv.'.$env{'form.switchrole'}.'./'})) {
                   1687:                 $setprivs = 1;
                   1688:             }
                   1689:         }
1.185     raeburn  1690:         if ($setprivs) {
1.198     raeburn  1691:             if ($env{'form.switchrole'} =~ m-^(in|ta|ep|ad|st|cr)([\w/]*)\./\Q$cdom\E/\Q$cnum\E/?(\w*)$-) {
1.185     raeburn  1692:                 my $role = $1;
                   1693:                 my $custom_role = $2;
                   1694:                 my $usec = $3;
                   1695:                 if ($role eq 'cr') {
1.199     raeburn  1696:                     if ($custom_role =~ m-^/$match_domain/$match_username/\w+$-) {
1.185     raeburn  1697:                         $role .= $custom_role;
                   1698:                     } else {
                   1699:                         return;
                   1700:                     }
                   1701:                 }
1.208     raeburn  1702:                 my (%userroles,%newrole,%newgroups,%group_privs);
                   1703:                 my %cgroups =
                   1704:                     &Apache::lonnet::get_active_groups($env{'user.domain'},
                   1705:                                             $env{'user.name'},$cdom,$cnum);
                   1706:                 foreach my $group (keys(%cgroups)) {
                   1707:                     $group_privs{$group} =
                   1708:                         $env{'user.priv.cc./'.$cdom.'/'.$cnum.'./'.$cdom.'/'.$cnum.'/'.$group};
                   1709:                 }
                   1710:                 $newgroups{'/'.$cdom.'/'.$cnum} = \%group_privs;
1.185     raeburn  1711:                 my $area = '/'.$cdom.'/'.$cnum;
                   1712:                 my $spec = $role.'.'.$area;
                   1713:                 if ($usec ne '') {
                   1714:                     $spec .= '/'.$usec;
                   1715:                     $area .= '/'.$usec;
                   1716:                 }
1.269.2.5  raeburn  1717:                 if ($role =~ /^cr/) {
                   1718:                     &Apache::lonnet::custom_roleprivs(\%newrole,$role,$cdom,$cnum,$spec,$area);
                   1719:                 } else {
                   1720:                     &Apache::lonnet::standard_roleprivs(\%newrole,$role,$cdom,$spec,$cnum,$area);
                   1721:                 }
1.208     raeburn  1722:                 &Apache::lonnet::set_userprivs(\%userroles,\%newrole,\%newgroups);
1.232     raeburn  1723:                 my $adhocstart = $refresh-1;
1.185     raeburn  1724:                 $userroles{'user.role.'.$spec} = $adhocstart.'.';
1.186     raeburn  1725:                 &Apache::lonnet::appenv(\%userroles,[$role,'cm']);
1.185     raeburn  1726:             }
                   1727:         }
                   1728:     }
                   1729:     return;
                   1730: }
                   1731: 
                   1732: sub check_forcc {
1.260     raeburn  1733:     my ($cdom,$cnum,$refresh,$update,$then,$crstype) = @_;
1.239     raeburn  1734:     my ($is_cc,$ccrole);
                   1735:     if ($crstype eq 'Community') {
                   1736:         $ccrole = 'co';
                   1737:     } else {
                   1738:         $ccrole = 'cc';
                   1739:     }
1.266     droeschl 1740:     if (&Apache::lonnet::is_course($cdom,$cnum)) {
                   1741:         my $envkey = 'user.role.'.$ccrole.'./'.$cdom.'/'.$cnum;
                   1742:         if (defined($env{$envkey})) {
                   1743:             $is_cc = 1;
                   1744:             my ($tstart,$tend)=split(/\./,$env{$envkey});
                   1745:             my $limit = $update;
                   1746:             if ($env{'request.role'} eq $ccrole.'./'.$cdom.'/'.$cnum) {
                   1747:                 $limit = $then;
1.185     raeburn  1748:             }
1.266     droeschl 1749:             if ($tstart && $tstart>$refresh) { $is_cc = 0; }
                   1750:             if ($tend   && $tend  <$limit) { $is_cc = 0; }
1.185     raeburn  1751:         }
                   1752:     }
                   1753:     return $is_cc;
                   1754: }
                   1755: 
1.254     raeburn  1756: sub check_release_required {
1.255     raeburn  1757:     my ($loncaparev,$tcourseid,$trolecode,$required) = @_;
1.254     raeburn  1758:     my ($switchserver,$warning);
1.255     raeburn  1759:     if ($required ne '') {
                   1760:         my ($reqdmajor,$reqdminor) = ($required =~ /^(\d+)\.(\d+)$/);
1.257     raeburn  1761:         my ($major,$minor) = ($loncaparev =~ /^\'?(\d+)\.(\d+)\.[\w.\-]+\'?$/);
1.254     raeburn  1762:         if ($reqdmajor ne '' && $reqdminor ne '') {
                   1763:             my $otherserver;
                   1764:             if (($major eq '' && $minor eq '') || 
                   1765:                 (($reqdmajor > $major) || (($reqdmajor == $major) && ($reqdminor > $minor)))) {
                   1766:                 my ($userdomserver) = &Apache::lonnet::choose_server($env{'user.domain'});
                   1767:                 my $switchlcrev = 
                   1768:                     &Apache::lonnet::get_server_loncaparev($env{'user.domain'},
                   1769:                                                            $userdomserver);
1.257     raeburn  1770:                 my ($swmajor,$swminor) = ($switchlcrev =~ /^\'?(\d+)\.(\d+)\.[\w.\-]+\'?$/);
1.254     raeburn  1771:                 if (($swmajor eq '' && $swminor eq '') || ($reqdmajor > $swmajor) || 
                   1772:                     (($reqdmajor == $swmajor) && ($reqdminor > $swminor))) {
                   1773:                     my $cdom = $env{'course.'.$tcourseid.'.domain'};
                   1774:                     if ($cdom ne $env{'user.domain'}) {
                   1775:                         my ($coursedomserver,$coursehostname) = &Apache::lonnet::choose_server($cdom); 
                   1776:                         my $serverhomeID = &Apache::lonnet::get_server_homeID($coursehostname);
                   1777:                         my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);
                   1778:                         my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);
                   1779:                         my %udomdefaults = &Apache::lonnet::get_domain_defaults($env{'user.domain'});
                   1780:                         my $remoterev = &Apache::lonnet::get_server_loncaparev($serverhomedom,$coursedomserver);
                   1781:                         my $canhost =
                   1782:                             &Apache::lonnet::can_host_session($env{'user.domain'},
                   1783:                                                               $coursedomserver,
                   1784:                                                               $remoterev,
                   1785:                                                               $udomdefaults{'remotesessions'},
                   1786:                                                               $defdomdefaults{'hostedsessions'});
                   1787: 
                   1788:                         if ($canhost) {
                   1789:                             $otherserver = $coursedomserver;
                   1790:                         } else {
                   1791:                             $warning = &mt('Requires LON-CAPA version [_1].',$env{'course.'.$tcourseid.'.internal.releaserequired'}).'<br />'. &mt("No suitable server could be found amongst servers in either your own domain or in the course's domain.");
                   1792:                         }
                   1793:                     } else {
                   1794:                         $warning = &mt('Requires LON-CAPA version [_1].',$env{'course.'.$tcourseid.'.internal.releaserequired'}).'<br />'.&mt("No suitable server could be found amongst servers in your own domain (which is also the course's domain).");
                   1795:                     }
                   1796:                 } else {
                   1797:                     $otherserver = $userdomserver;
                   1798:                 }
                   1799:             }
                   1800:             if ($otherserver ne '') {
                   1801:                 $switchserver = 'otherserver='.$otherserver.'&amp;role='.$trolecode;
                   1802:             }
                   1803:         }
                   1804:     }
                   1805:     return ($switchserver,$warning);
                   1806: }
                   1807: 
1.108     raeburn  1808: sub courselink {
1.193     raeburn  1809:     my ($dcdom,$rowtype) = @_;
1.109     raeburn  1810:     my $courseform=&Apache::loncommon::selectcourse_link
1.152     raeburn  1811:                    ('rolechoice','dccourse'.$rowtype.'_'.$dcdom,
                   1812:                     'dcdomain'.$rowtype.'_'.$dcdom,'coursedesc'.$rowtype.'_'.
1.239     raeburn  1813:                     $dcdom,$dcdom,undef,'Course/Community');
1.138     raeburn  1814:     my $hiddenitems = '<input type="hidden" name="dcdomain'.$rowtype.'_'.$dcdom.'" value="'.$dcdom.'" />'.
                   1815:                       '<input type="hidden" name="origdom'.$rowtype.'_'.$dcdom.'" value="'.$dcdom.'" />'.
                   1816:                       '<input type="hidden" name="dccourse'.$rowtype.'_'.$dcdom.'" value="" />'.
                   1817:                       '<input type="hidden" name="coursedesc'.$rowtype.'_'.$dcdom.'" value="" />';
1.112     raeburn  1818:     return $courseform.$hiddenitems;
1.109     raeburn  1819: }
                   1820: 
                   1821: sub coursepick_jscript {
1.184     raeburn  1822:     my %lt = &Apache::lonlocal::texthash(
1.239     raeburn  1823:                   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  1824:                   youc => 'You can only use this screen to select courses and communities in the current domain.',
1.184     raeburn  1825:              );
1.104     raeburn  1826:     my $verify_script = <<"END";
1.179     raeburn  1827: <script type="text/javascript">
1.225     bisitz   1828: // <![CDATA[
1.108     raeburn  1829: function verifyCoursePick(caller) {
                   1830:     var numbutton = getIndex(caller)
1.112     raeburn  1831:     var pickedCourse = document.rolechoice.elements[numbutton+4].value
                   1832:     var pickedDomain = document.rolechoice.elements[numbutton+2].value
                   1833:     if (document.rolechoice.elements[numbutton+2].value == document.rolechoice.elements[numbutton+3].value) {
1.104     raeburn  1834:         if (pickedCourse != '') {
1.108     raeburn  1835:             if (numbutton != -1) {
                   1836:                 var courseTarget = "cc./"+pickedDomain+"/"+pickedCourse
                   1837:                 document.rolechoice.elements[numbutton+1].name = courseTarget
                   1838:                 document.rolechoice.submit()
                   1839:             }
1.104     raeburn  1840:         }
                   1841:         else {
1.184     raeburn  1842:             alert("$lt{'plsu'}");
1.104     raeburn  1843:         }
                   1844:     }
                   1845:     else {
1.184     raeburn  1846:         alert("$lt{'youc'}")
1.104     raeburn  1847:     }
                   1848: }
1.109     raeburn  1849: function getIndex(caller) {
1.108     raeburn  1850:     for (var i=0;i<document.rolechoice.elements.length;i++) {
1.109     raeburn  1851:         if (document.rolechoice.elements[i] == caller) {
1.108     raeburn  1852:             return i;
                   1853:         }
                   1854:     }
                   1855:     return -1;
                   1856: }
1.225     bisitz   1857: // ]]>
1.104     raeburn  1858: </script>
                   1859: END
1.109     raeburn  1860:     return $verify_script;
1.104     raeburn  1861: }
                   1862: 
1.193     raeburn  1863: sub coauthorlink {
                   1864:     my ($dcdom,$rowtype) = @_;
                   1865:     my $coauthorform=&Apache::loncommon::selectauthor_link('rolechoice',$dcdom);
                   1866:     my $hiddenitems = '<input type="hidden" name="adhoccauname'.$rowtype.'_'.$dcdom.'" value="" />';
                   1867:     return $coauthorform.$hiddenitems;
                   1868: }
                   1869: 
1.113     raeburn  1870: sub display_cc_role {
                   1871:     my $rolekey = shift;
1.223     raeburn  1872:     my ($roletext,$roletext_end);
1.118     albertel 1873:     my $advanced = $env{'user.adv'};
                   1874:     my $tryagain = $env{'form.tryagain'};
1.113     raeburn  1875:     unless ($rolekey =~/^error\:/) {
1.240     raeburn  1876:         if ($rolekey =~ m{^user\.role\.(cc|co)\./($match_domain)/($match_courseid)$}) {
                   1877:             my $ccrole = $1;
1.249     raeburn  1878:             my $tdom = $2;
                   1879:             my $trest = $3;
                   1880:             my $tcourseid = $tdom.'_'.$trest;
                   1881:             my $trolecode = $ccrole.'./'.$tdom.'/'.$trest;
1.113     raeburn  1882:             my $twhere;
1.152     raeburn  1883:             my $ttype;
1.212     bisitz   1884:             my $tbg='LC_roles_is';
1.113     raeburn  1885:             my %newhash=&Apache::lonnet::coursedescription($tcourseid);
                   1886:             if (%newhash) {
                   1887:                 $twhere=$newhash{'description'}.
1.261     bisitz   1888:                         ' <span class="LC_fontsize_small">'.
1.249     raeburn  1889:                         &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom).
1.211     tempelho 1890:                         '</span>';
1.153     raeburn  1891:                 $ttype = $newhash{'type'};
1.113     raeburn  1892:             } else {
                   1893:                 $twhere=&mt('Currently not available');
1.118     albertel 1894:                 $env{'course.'.$tcourseid.'.description'}=$twhere;
1.110     raeburn  1895:             }
1.242     raeburn  1896:             my $trole = &Apache::lonnet::plaintext($ccrole,$ttype,$tcourseid);
1.258     raeburn  1897:             $twhere.="<br />".&mt('Domain').":".$tdom;
1.249     raeburn  1898:             ($roletext,$roletext_end) = &build_roletext($trolecode,$tdom,$trest,'is',$tryagain,$advanced,'',$tbg,$trole,$twhere,'','','',1,'');
1.104     raeburn  1899:         }
                   1900:     }
1.223     raeburn  1901:     return ($roletext,$roletext_end);
1.104     raeburn  1902: }
                   1903: 
1.192     raeburn  1904: sub adhoc_roles_row {
1.138     raeburn  1905:     my ($dcdom,$rowtype) = @_;
1.212     bisitz   1906:     my $output = &Apache::loncommon::continue_data_table_row()
                   1907:                  .' <td colspan="5">'
                   1908:                  .&mt('[_1]Ad hoc[_2] roles in domain [_3] --'
                   1909:                      ,'<span class="LC_cusr_emph">','</span>',$dcdom)
1.227     bisitz   1910:                  .' ';
1.193     raeburn  1911:     my $selectcclink = &courselink($dcdom,$rowtype);
1.239     raeburn  1912:     my $ccrole = &Apache::lonnet::plaintext('co',undef,undef,1);
1.182     www      1913:     my $carole = &Apache::lonnet::plaintext('ca');
1.193     raeburn  1914:     my $selectcalink = &coauthorlink($dcdom,$rowtype);
1.227     bisitz   1915:     $output.=$ccrole.': '.$selectcclink
1.249     raeburn  1916:             .' | '.$carole.': '.$selectcalink.'</td>'
1.212     bisitz   1917:             .&Apache::loncommon::end_data_table_row();
1.108     raeburn  1918:     return $output;
                   1919: }
                   1920: 
1.104     raeburn  1921: sub recent_filename {
                   1922:     my $area=shift;
1.149     www      1923:     return 'nohist_recent_'.&escape($area);
1.104     raeburn  1924: }
                   1925: 
1.139     raeburn  1926: sub courseloadpage {
                   1927:     my ($courseid) = @_;
                   1928:     my $startpage;
1.144     albertel 1929:     my %entry_settings = &Apache::lonnet::get('nohist_whatsnew',
                   1930: 					      [$courseid.':courseinit']);
1.139     raeburn  1931:     my ($tmp) = %entry_settings;
1.144     albertel 1932:     unless ($tmp =~ /^error: 2 /) {
1.139     raeburn  1933:         $startpage = $entry_settings{$courseid.':courseinit'};
                   1934:     }
                   1935:     if ($startpage eq '') {
                   1936:         if (exists($env{'environment.course_init_display'})) {
                   1937:             $startpage = $env{'environment.course_init_display'};
                   1938:         }
                   1939:     }
                   1940:     return $startpage;
                   1941: }
                   1942: 
1.260     raeburn  1943: sub update_session_roles {
                   1944:     my $then=$env{'user.login.time'};
                   1945:     my $refresh=$env{'user.refresh.time'};
                   1946:     if (!$refresh) {
                   1947:         $refresh = $then;
                   1948:     }
                   1949:     my $update = $env{'user.update.time'};
                   1950:     if (!$update) {
                   1951:         $update = $then;
                   1952:     }
                   1953:     my $now = time;
                   1954:     my %roleshash =
                   1955:         &Apache::lonnet::get_my_roles('','','userroles',
                   1956:                                       ['active','future','previous'],
                   1957:                                       undef,undef,1);
                   1958:     my ($msg,@newsec,$oldsec,$currrole_expired,@changed_roles,
1.264     raeburn  1959:         %changed_groups,%dbroles,%deletedroles,%allroles,%allgroups,
1.260     raeburn  1960:         %userroles,%checkedgroup,%crprivs,$hasgroups,%rolechange,
                   1961:         %groupchange,%newrole,%newgroup,%customprivchg,%groups_roles,
                   1962:         @rolecodes);
                   1963:     my @possroles = ('cr','st','ta','ad','ep','in','co','cc');
                   1964:     my %courseroles;
                   1965:     foreach my $item (keys(%roleshash)) {
                   1966:         my ($uname,$udom,$role,$remainder) = split(/:/,$item,4);
                   1967:         my ($tstart,$tend) = split(/:/,$roleshash{$item});
                   1968:         my ($section,$group,@group_privs);
                   1969:         if ($role =~ m{^gr/(\w*)$}) {
                   1970:             $role = 'gr';
                   1971:             my $priv = $1;
                   1972:             next if ($tstart eq '-1');
                   1973:             if (&curr_role_status($tstart,$tend,$refresh,$now) eq 'active') {
                   1974:                 if ($priv ne '') {
                   1975:                     push(@group_privs,$priv);
                   1976:                 }
                   1977:             }
                   1978:             if ($remainder =~ /:/) {
                   1979:                 (my $additional_privs,$group) =
                   1980:                     ($remainder =~ /^([\w:]+):([^:]+)$/);
                   1981:                 if ($additional_privs ne '') {
                   1982:                     if (&curr_role_status($tstart,$tend,$refresh,$now) eq 'active') {
                   1983:                         push(@group_privs,split(/:/,$additional_privs));
                   1984:                         @group_privs = sort(@group_privs);
                   1985:                     }
                   1986:                 }
                   1987:             } else {
                   1988:                 $group = $remainder;
                   1989:             }
                   1990:         } else {
                   1991:             $section = $remainder;
                   1992:         }
                   1993:         my $where = "/$udom/$uname";
                   1994:         if ($section ne '') {
                   1995:             $where .= "/$section";
                   1996:         } elsif ($group ne '') {
                   1997:             $where .= "/$group";
                   1998:         }
                   1999:         my $rolekey = "$role.$where";
                   2000:         my $envkey = "user.role.$rolekey";
                   2001:         $dbroles{$envkey} = 1;
                   2002:         if (($env{'request.role'} eq $rolekey) && ($role ne 'st')) {
                   2003:             if (&curr_role_status($tstart,$tend,$refresh,$now) ne 'active') {
                   2004:                 $currrole_expired = 1;
                   2005:             }
                   2006:         }
                   2007:         if ($env{$envkey} eq '') {
                   2008:             my $status_in_db =
1.269.2.2  raeburn  2009:                 &curr_role_status($tstart,$tend,$now,$now);
1.260     raeburn  2010:                 &gather_roleprivs(\%allroles,\%allgroups,\%userroles,$where,$role,$tstart,$tend,$status_in_db);
                   2011:             if (($role eq 'st') && ($env{'request.role'} =~ m{^\Q$role\E\.\Q/$udom/$uname\E})) {
                   2012:                 if ($status_in_db eq 'active') {
                   2013:                     if ($section eq '') {
                   2014:                         push(@newsec,'none');
                   2015:                     } else {
                   2016:                         push(@newsec,$section);
                   2017:                     }
                   2018:                 }
                   2019:             } else {
                   2020:                 unless (grep(/^\Q$role\E$/,@changed_roles)) {
                   2021:                     push(@changed_roles,$role);
                   2022:                 }
                   2023:                 if ($status_in_db ne 'previous') {
                   2024:                     if ($role eq 'gr') {
                   2025:                         $newgroup{$rolekey} = $status_in_db;
                   2026:                         if ($status_in_db eq 'active') {
                   2027:                             unless (ref($courseroles{$udom}) eq 'HASH') {
                   2028:                                 %{$courseroles{$udom}} =
                   2029:                                     &Apache::lonnet::get_my_roles('','','userroles',
                   2030:                                                                   ['active'],\@possroles,
                   2031:                                                                   [$udom],1);
                   2032:                             }
                   2033:                             &Apache::lonnet::get_groups_roles($udom,$uname,
                   2034:                                                               $courseroles{$udom},
                   2035:                                                               \@rolecodes,\%groups_roles);
                   2036:                         }
                   2037:                     } else {
                   2038:                         $newrole{$rolekey} = $status_in_db;
                   2039:                     }
                   2040:                 }
                   2041:             }
                   2042:         } else {
                   2043:             my ($currstart,$currend) = split(/\./,$env{$envkey});
                   2044:             if ($role eq 'gr') {
                   2045:                 if (&curr_role_status($currstart,$currend,$refresh,$update) ne 'previous') {
                   2046:                     $hasgroups = 1;
                   2047:                 }
                   2048:             }
                   2049:             if (($currstart ne $tstart) || ($currend ne $tend)) {
                   2050:                 my $status_in_env =
                   2051:                     &curr_role_status($currstart,$currend,$refresh,$update);
                   2052:                 my $status_in_db =
1.269.2.2  raeburn  2053:                     &curr_role_status($tstart,$tend,$now,$now);
1.260     raeburn  2054:                 if ($status_in_env ne $status_in_db) {
                   2055:                     if ($status_in_env eq 'active') {
                   2056:                         if ($role eq 'st') {
                   2057:                             if ($env{'request.role'} eq $rolekey) {
                   2058:                                 my $switchsection;
                   2059:                                 unless (ref($courseroles{$udom}) eq 'HASH') {
                   2060:                                     %{$courseroles{$udom}} =
                   2061:                                         &Apache::lonnet::get_my_roles('','','userroles',
                   2062:                                                                       ['active'],
                   2063:                                                                       \@possroles,[$udom],1);
                   2064:                                 }
                   2065:                                 foreach my $crsrole (keys(%{$courseroles{$udom}})) {
                   2066:                                     if ($crsrole =~ /^\Q$uname\E:\Q$udom\E:st/) {
                   2067:                                         $switchsection = 1;
                   2068:                                         last;
                   2069:                                     }
                   2070:                                 }
                   2071:                                 if ($switchsection) {
                   2072:                                     if ($section eq '') {
                   2073:                                         $oldsec = 'none';
                   2074:                                     } else {
                   2075:                                         $oldsec = $section;
                   2076:                                     }
                   2077:                                     &gather_roleprivs(\%allroles,\%allgroups,\%userroles,$where,$role,$tstart,$tend,$status_in_db);
                   2078:                                 } else {
                   2079:                                     $currrole_expired = 1;
                   2080:                                     next;
                   2081:                                 }
                   2082:                             }
                   2083:                         }
                   2084:                         unless ($rolekey eq $env{'request.role'}) {
                   2085:                             if ($role eq 'gr') {
                   2086:                                 &Apache::lonnet::delete_env_groupprivs($where,\%courseroles,\@possroles);
                   2087:                             } else {
                   2088:                                 &Apache::lonnet::delenv("user.priv.$rolekey",undef,[$role]);
                   2089:                                 &Apache::lonnet::delenv("user.priv.cm.$where",undef,['cm']);
                   2090:                             }
                   2091:                             &gather_roleprivs(\%allroles,\%allgroups,\%userroles,$where,$role,$tstart,$tend,$status_in_db);
                   2092:                         }
                   2093:                     } elsif ($status_in_db eq 'active') {
                   2094:                         if (($role eq 'st') &&
                   2095:                             ($env{'request.role'} =~ m{^\Q$role\E\.\Q/$udom/$uname\E})) {
                   2096:                             if ($section eq '') {
                   2097:                                 push(@newsec,'none');
                   2098:                             } else {
                   2099:                                 push(@newsec,$section);
                   2100:                             }
                   2101:                         } elsif ($role eq 'gr') {
                   2102:                             unless (ref($courseroles{$udom}) eq 'HASH') {
                   2103:                                 %{$courseroles{$udom}} =
                   2104:                                     &Apache::lonnet::get_my_roles('','','userroles',
                   2105:                                                                   ['active'],
                   2106:                                                                   \@possroles,[$udom],1);
                   2107:                             }
                   2108:                             &Apache::lonnet::get_groups_roles($udom,$uname,
                   2109:                                                               $courseroles{$udom},
                   2110:                                                               \@rolecodes,\%groups_roles);
                   2111:                         }
                   2112:                         &gather_roleprivs(\%allroles,\%allgroups,\%userroles,$where,$role,$tstart,$tend,$status_in_db);
                   2113:                     }
                   2114:                     unless (grep(/^\Q$role\E$/,@changed_roles)) {
                   2115:                         push(@changed_roles,$role);
                   2116:                     }
                   2117:                     if ($role eq 'gr') {
                   2118:                         $groupchange{"/$udom/$uname"}{$group} = $status_in_db;
                   2119:                     } else {
                   2120:                         $rolechange{$rolekey} = $status_in_db;
                   2121:                     }
                   2122:                 }
                   2123:             } else {
                   2124:                 if ($role eq 'gr') {
                   2125:                     unless ($checkedgroup{$where}) {
                   2126:                         my $status_in_db =
                   2127:                             &curr_role_status($tstart,$tend,$refresh,$now);
                   2128:                         if ($tstart eq '-1') {
                   2129:                             $status_in_db = 'deleted';
                   2130:                         }
                   2131:                         unless (ref($courseroles{$udom}) eq 'HASH') {
                   2132:                             %{$courseroles{$udom}} =
                   2133:                                 &Apache::lonnet::get_my_roles('','','userroles',
                   2134:                                                               ['active'],
                   2135:                                                               \@possroles,[$udom],1);
                   2136:                         }
                   2137:                         if (ref($courseroles{$udom}) eq 'HASH') {
                   2138:                             foreach my $item (keys(%{$courseroles{$udom}})) {
                   2139:                                 next unless ($item =~ /^\Q$uname\E/);
                   2140:                                 my ($cnum,$cdom,$crsrole,$crssec) = split(/:/,$item);
                   2141:                                 my $area = '/'.$cdom.'/'.$cnum;
                   2142:                                 if ($crssec ne '') {
                   2143:                                     $area .= '/'.$crssec;
                   2144:                                 }
                   2145:                                 my $crsrolekey = $crsrole.'.'.$area;
                   2146:                                 my $currprivs = $env{'user.priv.'.$crsrole.'.'.$area.'.'.$where};
                   2147:                                 $currprivs =~ s/^://;
                   2148:                                 $currprivs =~ s/\&F$//;
                   2149:                                 my @curr_grp_privs = split(/\&F:/,$currprivs);
                   2150:                                 @curr_grp_privs = sort(@curr_grp_privs);
                   2151:                                 my @diffs;
                   2152:                                 if (@group_privs > 0 || @curr_grp_privs > 0) {
                   2153:                                     @diffs = &Apache::loncommon::compare_arrays(\@group_privs,\@curr_grp_privs);
                   2154:                                 }
                   2155:                                 if (@diffs == 0) {
                   2156:                                     last;
                   2157:                                 } else {
                   2158:                                     unless(grep(/^\Qgr\E$/,@rolecodes)) {
                   2159:                                         push(@rolecodes,'gr');
                   2160:                                     }
                   2161:                                     &gather_roleprivs(\%allroles,\%allgroups,
                   2162:                                                       \%userroles,$where,$role,
                   2163:                                                       $tstart,$tend,$status_in_db);
                   2164:                                     if ($status_in_db eq 'active') {
                   2165:                                         &Apache::lonnet::get_groups_roles($udom,$uname,
                   2166:                                                                           $courseroles{$udom},
                   2167:                                                                           \@rolecodes,\%groups_roles);
                   2168:                                     }
                   2169:                                     $changed_groups{$udom.'_'.$uname}{$group} = $status_in_db;
                   2170:                                     last;
                   2171:                                 }
                   2172:                             }
                   2173:                         }
                   2174:                         $checkedgroup{$where} = 1;
                   2175:                     }
                   2176:                 } elsif ($role =~ /^cr/) {
                   2177:                     my $status_in_db =
                   2178:                         &curr_role_status($tstart,$tend,$refresh,$now);
                   2179:                     my ($rdummy,$rest) = split(/\//,$role,2);
                   2180:                     my %currpriv;
                   2181:                     unless (exists($crprivs{$rest})) {
                   2182:                         my ($rdomain,$rauthor,$rrole)=split(/\//,$rest);
                   2183:                         my $homsvr=&Apache::lonnet::homeserver($rauthor,$rdomain);
                   2184:                         if (&Apache::lonnet::hostname($homsvr) ne '') {
                   2185:                             my ($rdummy,$roledef)=
                   2186:                             &Apache::lonnet::get('roles',["rolesdef_$rrole"],
                   2187:                                                  $rdomain,$rauthor);
                   2188:                             if (($rdummy ne 'con_lost') && ($roledef ne '')) {
                   2189:                                 my $i = 0;
                   2190:                                 my @scopes = ('sys','dom','crs');
                   2191:                                 my @privs = split(/\_/,$roledef);
                   2192:                                 foreach my $priv (@privs) {
                   2193:                                     my ($blank,@prv) = split(/:/,$priv);
                   2194:                                     @prv = map { $_ .= (/\&\w+$/ ? '':'&F') } @prv;
1.264     raeburn  2195:                                     if (@prv) {
                   2196:                                         $priv = ':'.join(':',sort(@prv));
                   2197:                                     }
1.260     raeburn  2198:                                     $crprivs{$rest}{$scopes[$i]} = $priv;
                   2199:                                     $i++;
                   2200:                                 }
                   2201:                             }
                   2202:                         }
                   2203:                     }
1.269.2.6  raeburn  2204:                     my $status_in_env =
                   2205:                         &curr_role_status($currstart,$currend,$refresh,$update);
                   2206:                     if ($status_in_env eq 'active') {
                   2207:                         $currpriv{sys} = $env{"user.priv.$rolekey./"};
                   2208:                         $currpriv{dom} = $env{"user.priv.$rolekey./$udom/"};
                   2209:                         $currpriv{crs} = $env{"user.priv.$rolekey.$where"};
                   2210:                         if (keys(%crprivs)) {
                   2211:                             if (($crprivs{$rest}{sys} ne $currpriv{sys}) ||
                   2212:                                 ($crprivs{$rest}{dom} ne $currpriv{dom})
1.260     raeburn  2213:  ||
1.269.2.6  raeburn  2214:                                 ($crprivs{$rest}{crs} ne $currpriv{crs})) {
                   2215:                                 &gather_roleprivs(\%allroles,\%allgroups,
                   2216:                                                   \%userroles,$where,$role,
                   2217:                                                   $tstart,$tend,$status_in_db);
                   2218:                                 unless (grep(/^\Q$role\E$/,@changed_roles)) {
                   2219:                                     push(@changed_roles,$role);
                   2220:                                 }
1.260     raeburn  2221:                                 $customprivchg{$rolekey} = $status_in_env;
                   2222:                             }
                   2223:                         }
                   2224:                     }
                   2225:                 }
                   2226:             }
                   2227:         }
                   2228:     }
                   2229:     foreach my $envkey (keys(%env)) {
                   2230:         next unless ($envkey =~ /^user\.role\./);
                   2231:         next if ($dbroles{$envkey});
                   2232:         next if ($envkey eq 'user.role.'.$env{'request.role'});
                   2233:         my ($currstart,$currend) = split(/\./,$env{$envkey});
                   2234:         my $status_in_env =
                   2235:             &curr_role_status($currstart,$currend,$refresh,$update);
                   2236:         my ($rolekey) = ($envkey =~ /^user\.role\.(.+)$/);
                   2237:         my ($role,$rest)=split(/\./,$rolekey,2);
                   2238:         if (&Apache::lonnet::delenv($envkey,undef,[$role])) {
                   2239:             if ($status_in_env eq 'active') {
                   2240:                 if ($role eq 'gr') {
                   2241:                     &Apache::lonnet::delete_env_groupprivs($rest,\%courseroles,
                   2242:                                                            \@possroles);
                   2243:                 } else {
                   2244:                     &Apache::lonnet::delenv("user.priv.$rolekey",undef,[$role]);
                   2245:                     &Apache::lonnet::delenv("user.priv.cm.$rest",undef,['cm']);
                   2246:                 }
                   2247:                 unless (grep(/^\Q$role\E$/,@changed_roles)) {
                   2248:                     push(@changed_roles,$role);
                   2249:                 }
                   2250:                 $deletedroles{$rolekey} = 1;
                   2251:             }
                   2252:         }
                   2253:     }
                   2254:     if (($oldsec) && (@newsec > 0)) {
                   2255:         if (@newsec > 1) {
1.269.2.2  raeburn  2256:             $msg = '<p class="LC_warning">'.&mt('The section has changed for your current role. Log-out and log-in again to select a role for the new section.').'</p>';
1.260     raeburn  2257:         } else {
                   2258:             my $newrole = $env{'request.role'};
                   2259:             if ($newsec[0] eq 'none') {
                   2260:                 $newrole =~ s{(/[^/])$}{};
                   2261:             } elsif ($oldsec eq 'none') {
                   2262:                 $newrole .= '/'.$newsec[0];
                   2263:             } else {
                   2264:                 $newrole =~ s{([^/]+)$}{$newsec[0]};
                   2265:             }
                   2266:             my $coursedesc = $env{'course.'.$env{'request.course.id'}.'.description'};
                   2267:             my ($curr_role) = ($env{'request.role'} =~ m{^(\w+)\./$match_domain/$match_courseid});
                   2268:             my %temp=('logout_'.$env{'request.course.id'} => time);
                   2269:             &Apache::lonnet::put('email_status',\%temp);
                   2270:             &Apache::lonnet::delenv('user.state.'.$env{'request.course.id'});
                   2271:             &Apache::lonnet::appenv({"request.course.id"   => '',
                   2272:                                      "request.course.fn"   => '',
                   2273:                                      "request.course.uri"  => '',
                   2274:                                      "request.course.sec"  => '',
                   2275:                                      "request.role"        => 'cm',
                   2276:                                      "request.role.adv"    => $env{'user.adv'},
                   2277:                                      "request.role.domain" => $env{'user.domain'}});
                   2278:             my $rolename = &Apache::loncommon::plainname($curr_role);
                   2279:             $msg = '<p><form name="reselectrole" action="/adm/roles" method="post" />'.
                   2280:                    '<input type="hidden" name="newrole" value="" />'.
                   2281:                    '<input type="hidden" name="selectrole" value="1" />'.
                   2282:                    '<span class="LC_info">'.
                   2283:                    &mt('Your section has changed for your current [_1] role in [_2].',$rolename,$coursedesc).'</span><br />';
                   2284:             my $button = '<input type="button" name="sectionchanged" value="'.
                   2285:                          &mt('Re-Select').'" onclick="javascript:enterrole(this.form,'."'$newrole','sectionchanged'".')" />';
                   2286:             if ($newsec[0] eq 'none') {
                   2287:                 $msg .= &mt('[_1] to continue with your new section-less role.',$button);
                   2288:             } else {
                   2289:                 $msg .= &mt('[_1] to continue with your new role in section ([_2]).',$button,$newsec[0]);
                   2290:             }
                   2291:             $msg .= '</form></p>';
                   2292:         }
                   2293:     } elsif ($currrole_expired) {
1.269.2.2  raeburn  2294:         $msg .= '<p class="LC_warning">';
1.260     raeburn  2295:         if (&Apache::loncommon::show_course()) {
                   2296:             $msg .= &mt('Your role in the current course has expired.');
                   2297:         } else {
                   2298:             $msg .= &mt('Your current role has expired.');
                   2299:         }
1.269.2.2  raeburn  2300:         $msg .= '<br />'.&mt('However you can continue to use this role until you logout, click the "Re-Select" button, or your session has been idle for more than 24 hours.').'</p>';
1.260     raeburn  2301:     }
1.269.2.6  raeburn  2302:     &Apache::lonnet::set_userprivs(\%userroles,\%allroles,\%allgroups,\%groups_roles);
                   2303:     my ($curr_is_adv,$curr_role_adv,$curr_author,$curr_role_author);
                   2304:     $curr_author = $env{'user.author'};
                   2305:     if (($env{'request.role'} =~/^au/) || ($env{'request.role'} =~/^ca/) ||
                   2306:         ($env{'request.role'} =~/^aa/)) {
                   2307:         $curr_role_author=1;
                   2308:     }
                   2309:     $curr_is_adv = $env{'user.adv'};
                   2310:     $curr_role_adv = $env{'request.role.adv'};
                   2311:     if (keys(%userroles) > 0) {
                   2312:         foreach my $role (@changed_roles) {
                   2313:             unless(grep(/^\Q$role\E$/,@rolecodes)) {
                   2314:                 push(@rolecodes,$role);
                   2315:             }
                   2316:         }
                   2317:         unless(grep(/^\Qcm\E$/,@rolecodes)) {
                   2318:             push(@rolecodes,'cm');
                   2319:         }
                   2320:         &Apache::lonnet::appenv(\%userroles,\@rolecodes);
                   2321:     }
                   2322:     my %newenv;
                   2323:     if (&Apache::lonnet::is_advanced_user($env{'user.domain'},$env{'user.name'})) {
                   2324:         unless ($curr_is_adv) {
                   2325:             $newenv{'user.adv'} = 1;
                   2326:         }
                   2327:     } elsif ($curr_is_adv && !$curr_role_adv) {
                   2328:         &Apache::lonnet::delenv('user.adv');
                   2329:     }
                   2330:     my %authorroleshash =
                   2331:         &Apache::lonnet::get_my_roles('','','userroles',['active'],['au','ca','aa']);
                   2332:     if (keys(%authorroleshash)) {
                   2333:         unless ($curr_author) {
                   2334:             $newenv{'user.author'} = 1;
                   2335:         }
                   2336:     } elsif ($curr_author && !$curr_role_author) {
                   2337:         &Apache::lonnet::delenv('user.author');
                   2338:     }
                   2339:     if ($env{'request.course.id'}) {
                   2340:         my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   2341:         my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   2342:         my (@activecrsgroups,$crsgroupschanged);
                   2343:         if ($env{'request.course.groups'}) {
                   2344:             @activecrsgroups = split(/:/,$env{'request.course.groups'});
                   2345:             foreach my $item (keys(%deletedroles)) {
                   2346:                 if ($item =~ m{^gr\./\Q$cdom\E/\Q$cnum\E/(\w+)$}) {
                   2347:                     if (grep(/^\Q$1\E$/,@activecrsgroups)) {
                   2348:                         $crsgroupschanged = 1;
                   2349:                         last;
                   2350:                     }
                   2351:                 }
                   2352:             }
                   2353:         }
                   2354:         unless ($crsgroupschanged) {
                   2355:             foreach my $item (keys(%newgroup)) {
                   2356:                 if ($item =~ m{^gr\./\Q$cdom\E/\Q$cnum\E/(\w+)$}) {
                   2357:                     if ($newgroup{$item} eq 'active') {
                   2358:                         $crsgroupschanged = 1;
                   2359:                         last;
                   2360:                     }
                   2361:                 }
                   2362:             }
                   2363:         }
                   2364:         if ((ref($changed_groups{$env{'request.course.id'}}) eq 'HASH') ||
                   2365:             (ref($groupchange{"/$cdom/$cnum"}) eq 'HASH') ||
                   2366:             ($crsgroupschanged)) {
                   2367:             my %grouproles =  &Apache::lonnet::get_my_roles('','','userroles',
                   2368:                                                             ['active'],['gr'],[$cdom],1);
                   2369:             my @activegroups;
                   2370:             foreach my $item (keys(%grouproles)) {
                   2371:                 next unless($item =~ /^\Q$cnum\E:\Q$cdom\E/);
                   2372:                 my $group;
                   2373:                 my ($crsn,$crsd,$role,$remainder) = split(/:/,$item,4);
                   2374:                 if ($remainder =~ /:/) {
                   2375:                     (my $other,$group) = ($remainder =~ /^([\w:]+):([^:]+)$/);
                   2376:                 } else {
                   2377:                     $group = $remainder;
                   2378:                 }
                   2379:                 if ($group ne '') {
                   2380:                     push(@activegroups,$group);
                   2381:                 }
                   2382:             }
                   2383:             $newenv{'request.course.groups'} = join(':',@activegroups);
                   2384:         }
                   2385:     }
                   2386:     if (keys(%newenv)) {
                   2387:         &Apache::lonnet::appenv(\%newenv);
                   2388:     }
1.260     raeburn  2389:     if (!@changed_roles || !(keys(%changed_groups))) {
1.264     raeburn  2390:         my ($rolesmsg,$groupsmsg);
1.260     raeburn  2391:         if (!@changed_roles) {
                   2392:             if (&Apache::loncommon::show_course()) {
1.264     raeburn  2393:                 $rolesmsg = &mt('No new courses or communities');
1.260     raeburn  2394:             } else {
1.264     raeburn  2395:                 $rolesmsg = &mt('No role changes');
1.260     raeburn  2396:             }
                   2397:         }
                   2398:         if ($hasgroups && !(keys(%changed_groups)) && !(grep(/gr/,@changed_roles))) {
1.264     raeburn  2399:             $groupsmsg = &mt('No changes in course/community groups');
1.260     raeburn  2400:         }
                   2401:         if (!@changed_roles && !(keys(%changed_groups))) {
1.264     raeburn  2402:             if (($msg ne '') || ($groupsmsg ne '')) {
                   2403:                 $msg .= '<ul>';
                   2404:                 if ($rolesmsg) {
                   2405:                     $msg .= '<li>'.$rolesmsg.'</li>';
                   2406:                 }
                   2407:                 if ($groupsmsg) {
                   2408:                     $msg .= '<li>'.$groupsmsg.'</li>';
                   2409:                 }
                   2410:                 $msg .= '</ul>';
                   2411:             } else {
1.269.2.2  raeburn  2412:                 $msg = '&nbsp;<span class="LC_cusr_emph">'.$rolesmsg.'</span><br />';
1.264     raeburn  2413:             }
1.260     raeburn  2414:             return $msg;
                   2415:         }
                   2416:     }
                   2417:     my $changemsg;
                   2418:     if (@changed_roles > 0) {
                   2419:         if (keys(%newgroup) > 0) {
                   2420:             my $groupmsg;
1.269.2.6  raeburn  2421:             my (%curr_groups,%groupdescs,$currcrs);
1.260     raeburn  2422:             foreach my $item (sort(keys(%newgroup))) {
                   2423:                 if (&is_active_course($item,$refresh,$update,\%roleshash)) {
1.269.2.6  raeburn  2424:                     if ($item =~ m{^gr\./($match_domain/$match_courseid)/(\w+)$}) {
                   2425:                         my ($cdom,$cnum) = split(/\//,$1);
                   2426:                         my $group = $2;
                   2427:                         if ($currcrs ne $cdom.'_'.$cnum) {
                   2428:                             if ($currcrs) {
                   2429:                                 $groupmsg .= '</ul><li>';
                   2430:                             }
                   2431:                             $groupmsg .= '<li><b>'.
                   2432:                                          $env{'course.'.$cdom.'_'.$cnum.'.description'}.'</b><ul>';
1.269.2.7  raeburn  2433:                             $currcrs = $cdom.'_'.$cnum;
1.269.2.6  raeburn  2434:                         }
                   2435:                         my $groupdesc;
                   2436:                         unless (ref($curr_groups{$cdom.'_'.$cnum}) eq 'HASH') {
                   2437:                             %{$curr_groups{$cdom.'_'.$cnum}} =
                   2438:                                 &Apache::longroup::coursegroups($cdom,$cnum);
                   2439:                         }
                   2440:                         unless ((ref($groupdescs{$cdom.'_'.$cnum}) eq 'HASH') &&
                   2441:                             ($groupdescs{$cdom.'_'.$cnum}{$group})) {
                   2442: 
                   2443:                             my %groupinfo =
                   2444:                                 &Apache::longroup::get_group_settings($curr_groups{$cdom.'_'.$cnum}{$group});
                   2445:                             $groupdescs{$cdom.'_'.$cnum}{$group} =
                   2446:                                 &unescape($groupinfo{'description'});
                   2447:                         }
                   2448:                         $groupdesc = $groupdescs{$cdom.'_'.$cnum}{$group};
1.269.2.9! raeburn  2449:                         if ($groupdesc) {
        !          2450:                             $groupmsg .= '<li>'.
        !          2451:                                          &mt('[_1] with status: [_2].',
        !          2452:                                          '<b>'.$groupdesc.'</b>',$newgroup{$item}).'</li>';
        !          2453:                         }
1.269.2.6  raeburn  2454:                     }
                   2455:                 }
                   2456:                 if ($groupmsg) {
                   2457:                     $groupmsg .= '</ul></li>';
1.260     raeburn  2458:                 }
                   2459:             }
                   2460:             if ($groupmsg) {
                   2461:                 $changemsg .= '<li>'.
                   2462:                               &mt('Courses with new groups').'</li>'.
                   2463:                               '<ul>'.$groupmsg.'</ul></li>';
                   2464:             }
                   2465:         }
                   2466:         if (keys(%newrole) > 0) {
1.269.2.9! raeburn  2467:             my $newmsg;
1.260     raeburn  2468:             foreach my $item (sort(keys(%newrole))) {
1.269.2.6  raeburn  2469:                 my $desc = &role_desc($item,$update,$refresh,$now);
1.269.2.9! raeburn  2470:                 if ($desc) {
        !          2471:                     $newmsg .= '<li>'.
        !          2472:                                &mt('[_1] with status: [_2].',
        !          2473:                                $desc,$newrole{$item}).'</li>';
        !          2474:                 }
        !          2475:             }
        !          2476:             if ($newmsg) {
        !          2477:                 $changemsg .= '<li>'.&mt('New roles').
        !          2478:                               '<ul>'.$newmsg.'</ul>'.
        !          2479:                               '</li>';
1.260     raeburn  2480:             }
                   2481:         }
                   2482:         if (keys(%customprivchg) > 0) {
1.269.2.9! raeburn  2483:             my $privmsg;
1.260     raeburn  2484:             foreach my $item (sort(keys(%customprivchg))) {
1.269.2.6  raeburn  2485:                 my $desc = &role_desc($item,$update,$refresh,$now);
1.269.2.9! raeburn  2486:                 if ($desc) {
        !          2487:                     $privmsg .= '<li>'.$desc.'</li>';
        !          2488:                 }
1.260     raeburn  2489:             }
1.269.2.9! raeburn  2490:             if ($privmsg) {
        !          2491:                 $changemsg .= '<li>'.
        !          2492:                               &mt('Custom roles with privilege changes').
        !          2493:                               '<ul>'.$privmsg.'</ul>'.
        !          2494:                               '</li>';
        !          2495:              }
1.260     raeburn  2496:         }
                   2497:         if (keys(%rolechange) > 0) {
1.269.2.9! raeburn  2498:             my $rolemsg;
1.260     raeburn  2499:             foreach my $item (sort(keys(%rolechange))) {
1.269.2.9! raeburn  2500:                 my $desc = &role_desc($item,$update,$refresh,$now);  
        !          2501:                 if ($desc) {
        !          2502:                     $rolemsg .= '<li>'.
        !          2503:                                 &mt('[_1] status now: [_2].',$desc,
        !          2504:                                 $rolechange{$item}).'</li>';
        !          2505:                 }
        !          2506:             }
        !          2507:             if ($rolemsg) {
1.260     raeburn  2508:                 $changemsg .= '<li>'.
1.269.2.9! raeburn  2509:                               &mt('Existing roles with status changes').'</li>'.
        !          2510:                               '<ul>'.$rolemsg.'</ul>'.
        !          2511:                               '</li>';
1.260     raeburn  2512:             }
                   2513:         }
                   2514:         if (keys(%deletedroles) > 0) {
1.269.2.9! raeburn  2515:             my $delmsg;
1.260     raeburn  2516:             foreach my $item (sort(keys(%deletedroles))) {
1.269.2.6  raeburn  2517:                 my $desc = &role_desc($item,$update,$refresh,$now);
1.269.2.9! raeburn  2518:                 if ($desc) {
        !          2519:                     $delmsg .= '<li>'.$desc.'</li>';
        !          2520:                 }
        !          2521:             }
        !          2522:             if ($delmsg) {
        !          2523:                 $changemsg .= '<li>'.
        !          2524:                               &mt('Existing roles now expired').'</li>'.
        !          2525:                               '<ul>'.$delmsg.'</ul>'.
        !          2526:                               '</li>';
1.260     raeburn  2527:             }
                   2528:         }
                   2529:     }
                   2530:     if ((keys(%changed_groups) > 0) || (keys(%groupchange) > 0)) {
                   2531:         my $groupchgmsg;
                   2532:         foreach my $key (sort(keys(%changed_groups))) {
                   2533:             my $crs = 'gr/'.$key;
                   2534:             $crs =~ s/_/\//;
                   2535:             if (&is_active_course($crs,$refresh,$update,\%roleshash)) {
                   2536:                 if (ref($changed_groups{$key}) eq 'HASH') {
                   2537:                     my @showgroups;
                   2538:                     foreach my $group (sort(keys(%{$changed_groups{$key}}))) {
                   2539:                         if ($changed_groups{$key}{$group} eq 'active') {
                   2540:                             push(@showgroups,$group);
                   2541:                         }
                   2542:                     }
                   2543:                     if (@showgroups > 0) {
                   2544:                         $groupchgmsg .= '<li>'.
                   2545:                                         &mt('Course: [_1], groups: [_2].',$key,
                   2546:                                         join(', ',@showgroups)).
                   2547:                                         '</li>';
                   2548:                     }
                   2549:                 }
                   2550:             }
                   2551:         }
                   2552:         if (keys(%groupchange) > 0) {
                   2553:             $groupchgmsg .= '<li>'.
                   2554:                           &mt('Existing course/community groups with status changes').'</li>'.
                   2555:                           '<ul>';
                   2556:             foreach my $crs (sort(keys(%groupchange))) {
1.269.2.6  raeburn  2557:                 my $cid = $crs;
                   2558:                 $cid=~s{^/}{};
                   2559:                 $cid=~s{/}{_};
                   2560:                 my $crsdesc = $env{'course.'.$cid.'.description'};
                   2561:                 my $cdom = $env{'course.'.$cid.'.domain'};
                   2562:                 my $cnum = $env{'course.'.$cid.'.num'};
                   2563:                 my %curr_groups = &Apache::longroup::coursegroups($cdom,$cnum);
                   2564:                 my %groupdesc;
1.260     raeburn  2565:                 if (ref($groupchange{$crs}) eq 'HASH') {
1.269.2.6  raeburn  2566:                     $groupchgmsg .= '<li>'.&mt('Course/Community: [_1]','<b>'.$crsdesc.'</b><ul>');
1.260     raeburn  2567:                     foreach my $group (sort(keys(%{$groupchange{$crs}}))) {
1.269.2.6  raeburn  2568:                         unless ($groupdesc{$group}) {
                   2569:                             my %groupinfo = &Apache::longroup::get_group_settings($curr_groups{$group});
                   2570:                             $groupdesc{$group} =  &unescape($groupinfo{'description'});
                   2571:                         }
                   2572:                         $groupchgmsg .= '<li>'.&mt('Group: [_1] status now: [_2].','<b>'.$groupdesc{$group}.'</b>',$groupchange{$crs}{$group}).'</li>';
1.260     raeburn  2573:                     }
                   2574:                     $groupchgmsg .= '</ul></li>';
                   2575:                 }
                   2576:             }
                   2577:             $groupchgmsg .= '</ul></li>';
                   2578:         }
                   2579:         if ($groupchgmsg) {
                   2580:             $changemsg .= '<li>'.
                   2581:                           &mt('Courses with changes in groups').'</li>'.
                   2582:                           '<ul>'.$groupchgmsg.'</ul></li>';
                   2583:         }
                   2584:     }
                   2585:     if ($changemsg) {
                   2586:         $msg .= '<ul>'.$changemsg.'</ul>';
1.269.2.9! raeburn  2587:     } else {
        !          2588:         if (&Apache::loncommon::show_course()) {
        !          2589:             $msg = &mt('No new courses or communities');
        !          2590:         } else {
        !          2591:             $msg = &mt('No role changes');
        !          2592:         }
1.260     raeburn  2593:     }
1.269.2.6  raeburn  2594:     return $msg;
                   2595: }
                   2596: 
                   2597: sub role_desc {
                   2598:     my ($item,$update,$refresh,$now) = @_;
                   2599:     my ($where,$trolecode,$role,$tstatus,$tend,$tstart,$twhere,
                   2600:         $trole,$tremark);
1.269.2.8  raeburn  2601:     &Apache::lonnet::role_status('user.role.'.$item,$update,$refresh,
                   2602:                                  $now,\$role,\$where,\$trolecode,
1.269.2.6  raeburn  2603:                                  \$tstatus,\$tstart,\$tend);
1.269.2.9! raeburn  2604:     return unless ($role);
1.269.2.6  raeburn  2605:     if ($role =~ /^cr\//) {
                   2606:         my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$role);
                   2607:         $tremark = &mt('Customrole defined by [_1].',$rauthor.':'.$rdomain);
                   2608:     }
                   2609:     $trole=Apache::lonnet::plaintext($role);
                   2610:     my ($tdom,$trest,$tsection)=
                   2611:         split(/\//,Apache::lonnet::declutter($where));
                   2612:     if (($role eq 'ca') || ($role eq 'aa')) {
                   2613:         my $home = &Apache::lonnet::homeserver($trest,$tdom);
                   2614:         $home = &Apache::lonnet::hostname($home);
                   2615:         $twhere=&mt('User').':&nbsp;'.$trest.'&nbsp; '.&mt('Domain').
                   2616:                 ':&nbsp;'.$tdom.'&nbsp; '.&mt('Server').':&nbsp;'.$home;
                   2617:     } elsif ($role eq 'au') {
                   2618:         my $home = &Apache::lonnet::homeserver
                   2619:                        ($env{'user.name'},$env{'user.domain'});
                   2620:         $home = &Apache::lonnet::hostname($home);
                   2621:         $twhere=&mt('Domain').':&nbsp;'.$tdom.'&nbsp; '.&mt('Server').
                   2622:                         ':&nbsp;'.$home;
                   2623:     } elsif ($trest) {
                   2624:         my $tcourseid=$tdom.'_'.$trest;
                   2625:         my $crstype = &Apache::loncommon::course_type($tcourseid);
                   2626:         $trole = &Apache::lonnet::plaintext($role,$crstype,$tcourseid);
                   2627:         if ($env{'course.'.$tcourseid.'.description'}) {
                   2628:             $twhere=$env{'course.'.$tcourseid.'.description'};
                   2629:         } else {
                   2630:             my %newhash=&Apache::lonnet::coursedescription($tcourseid);
                   2631:             if (%newhash) {
                   2632:                 $twhere=$newhash{'description'};
                   2633:             } else {
                   2634:                 $twhere=&mt('Currently not available');
1.260     raeburn  2635:             }
                   2636:         }
1.269.2.6  raeburn  2637:         if ($tsection) {
                   2638:             $twhere.= '&nbsp; '.&mt('Section').':&nbsp;'.$tsection;
1.260     raeburn  2639:         }
1.269.2.6  raeburn  2640:         if ($role ne 'st') {
                   2641:             $twhere.= '&nbsp; '.&mt('Domain').':&nbsp;'.$tdom;
1.260     raeburn  2642:         }
1.269.2.6  raeburn  2643:     } elsif ($tdom) {
                   2644:         $twhere = &mt('Domain').':&nbsp;'.$tdom;
1.260     raeburn  2645:     }
1.269.2.9! raeburn  2646:     my $output;
        !          2647:     if ($trole) {
        !          2648:         $output = $trole;
        !          2649:         if ($twhere) {
        !          2650:             $output .= " -- $twhere";
        !          2651:         }
        !          2652:         if ($tremark) {
        !          2653:             $output .= '<br />'.$tremark;
        !          2654:         }
1.260     raeburn  2655:     }
1.269.2.6  raeburn  2656:     return $output;
1.260     raeburn  2657: }
                   2658: 
                   2659: sub curr_role_status {
                   2660:     my ($start,$end,$refresh,$update) = @_;
                   2661:     if (($start) && ($start<0)) { return 'deleted' };
                   2662:     my $status = 'active';
                   2663:     if (($end) && ($end<=$update)) {
                   2664:         $status = 'previous';
                   2665:     }
                   2666:     if (($start) && ($refresh<$start)) {
                   2667:         $status = 'future';
                   2668:     }
                   2669:     return $status;
                   2670: }
                   2671: 
                   2672: sub gather_roleprivs {
                   2673:     my ($allroles,$allgroups,$userroles,$area,$role,$tstart,$tend,$status) = @_;
                   2674:     return unless ((ref($allroles) eq 'HASH') && (ref($allgroups) eq 'HASH') && (ref($userroles) eq 'HASH'));
                   2675:     if (($area ne '') && ($role ne '')) {
                   2676:         &Apache::lonnet::userrolelog($role,$env{'user.name'},$env{'user.domain'},
                   2677:                                      $area,$tstart,$tend);
                   2678:         my $spec=$role.'.'.$area;
                   2679:         $userroles->{'user.role.'.$spec} = $tstart.'.'.$tend;
                   2680:         my ($tdummy,$tdomain,$trest)=split(/\//,$area);
                   2681:         if ($status eq 'active') { 
                   2682:             if ($role =~ /^cr\//) {
                   2683:                 &Apache::lonnet::custom_roleprivs($allroles,$role,$tdomain,$trest,$spec,$area);
                   2684:             } elsif ($role eq 'gr') {
                   2685:                 my %rolehash = &Apache::lonnet::get('roles',[$area.'_'.$role],
                   2686:                                                     $env{'user.domain'},
                   2687:                                                     $env{'user.name'});
                   2688:                 my ($trole) = split(/_/,$rolehash{$area.'_'.$role},2);
                   2689:                 (undef,my $group_privs) = split(/\//,$trole);
                   2690:                 $group_privs = &unescape($group_privs);
                   2691:                 &Apache::lonnet::group_roleprivs($allgroups,$area,$group_privs,$tend,$tstart);
                   2692:             } else {
                   2693:                 &Apache::lonnet::standard_roleprivs($allroles,$role,$tdomain,$spec,$trest,$area);
                   2694:             }
                   2695:         }
                   2696:     }
                   2697:     return;
                   2698: }
                   2699: 
                   2700: sub is_active_course {
                   2701:     my ($rolekey,$refresh,$update,$roleshashref) = @_;
                   2702:     return unless(ref($roleshashref) eq 'HASH');
                   2703:     my ($role,$cdom,$cnum) = split(/\//,$rolekey);
                   2704:     my $is_active;
                   2705:     foreach my $key (keys(%{$roleshashref})) {
                   2706:         if ($key =~ /^\Q$cnum\E:\Q$cdom\E:/) {
                   2707:             my ($tstart,$tend) = split(/:/,$roleshashref->{$key});
                   2708:             my $status = &curr_role_status($tstart,$tend,$refresh,$update);
                   2709:             if ($status eq 'active') {
                   2710:                 $is_active = 1;
                   2711:                 last;
                   2712:             }
                   2713:         }
                   2714:     }
                   2715:     return $is_active;
                   2716: }
                   2717: 
1.269.2.2  raeburn  2718: sub get_roles_functions {
                   2719:     my ($rolescount) = @_;
                   2720:     my @links;
                   2721:     push(@links,["javascript:rolesView('doupdate');",'start-here-22x22',&mt('Check for changes')]);
                   2722:     if ($env{'environment.canrequest.author'}) {
                   2723:         unless (&Apache::loncoursequeueadmin::is_active_author()) {
                   2724:             push(@links,["javascript:rolesView('requestauthor');",'list-add-22x22',&mt('Request author role')]);
                   2725:         }
                   2726:     }
1.269.2.6  raeburn  2727:     if (($rolescount > 3) || ($env{'environment.recentroles'})) {
                   2728:         push(@links,['/adm/preferences?action=changerolespref&amp;returnurl=/adm/roles','role_hotlist-22x22',&mt('Hotlist')]);
                   2729:     }
1.269.2.2  raeburn  2730:     if (&Apache::lonmenu::check_for_rcrs()) {
                   2731:         push(@links,['/adm/requestcourse','rcrs-22x22',&mt('Request course')]);
                   2732:     }
                   2733:     if ($env{'form.state'} eq 'queued') {
                   2734:         push(@links,["javascript:rolesView('noqueued');",'selfenrl-queue-22x22',&mt('Hide queued')]);
                   2735:     } else {
                   2736:         push(@links,["javascript:rolesView('queued');",'selfenrl-queue-22x22',&mt('Show queued')]);
                   2737:     }
1.269.2.6  raeburn  2738:     if ($env{'user.adv'}) {
                   2739:         if ($env{'form.display'} eq 'showall') {
                   2740:             push(@links,["javascript:rolesView('noshowall');",'edit-redo-22x22',&mt('Exclude expired roles')]);
                   2741:         } else {
                   2742:             push(@links,["javascript:rolesView('showall');",'edit-undo-22x22',&mt('Include expired roles')]);
                   2743:         }
1.269.2.2  raeburn  2744:     }
                   2745:     my $funcs = &Apache::lonhtmlcommon::start_funclist();
                   2746:     foreach my $link (@links) {
                   2747:         $funcs .= &Apache::lonhtmlcommon::add_item_funclist(
                   2748:                       '<a href="'.$link->[0].'" class="LC_menubuttons_link">'.
                   2749:                       '<img src="/res/adm/pages/'.$link->[1].'.png" class="LC_icon" alt="'.$link->[2].'" />'.
                   2750:                       $link->[2].'</a>');
                   2751:     }
                   2752:     $funcs .= &Apache::lonhtmlcommon::end_funclist();
                   2753:     return &Apache::loncommon::head_subbox($funcs);
                   2754: }
                   2755: 
                   2756: sub get_queued {
                   2757:     my ($output,%reqcrs);
                   2758:     my ($types,$typenames) = &Apache::loncommon::course_types();
                   2759:     my %statusinfo = &Apache::lonnet::dump('courserequests',$env{'user.domain'},
                   2760:                                            $env{'user.name'},'^status:');
                   2761:     foreach my $key (keys(%statusinfo)) {
                   2762:         next unless (($statusinfo{$key} eq 'approval') || ($statusinfo{$key} eq 'pending'));
                   2763:         (undef,my($cdom,$cnum)) = split(':',$key);
                   2764:         my $requestkey = $cdom.'_'.$cnum;
                   2765:         if ($requestkey =~ /^($match_domain)_($match_courseid)$/) {
                   2766:             my %history = &Apache::lonnet::restore($requestkey,'courserequests',
                   2767:                                                    $env{'user.domain'},$env{'user.name'});
                   2768:             next if ((exists($history{'status'})) && ($history{'status'} eq 'created'));
                   2769:             my $reqtime = $history{'reqtime'};
                   2770:             my $lastupdate = $history{'timestamp'};
                   2771:             my $showtype = $history{'crstype'};
                   2772:             if (defined($typenames->{$history{'crstype'}})) {
                   2773:                 $showtype = $typenames->{$history{'crstype'}};
                   2774:             }
                   2775:             my $description;
                   2776:             if (ref($history{'details'}) eq 'HASH') {
                   2777:                 $description = $history{details}{'cdescr'};
                   2778:             }
                   2779:             @{$reqcrs{$reqtime}} = ($description,$showtype);
                   2780:         }
                   2781:     }
                   2782:     my @sortedtimes = sort {$a <=> $b} (keys(%reqcrs));
                   2783:     if (@sortedtimes > 0) {
                   2784:         $output .= '<p><b>'.&mt('Course/Community requests').'</b><br />'.
                   2785:                    &Apache::loncommon::start_data_table().
                   2786:                    &Apache::loncommon::start_data_table_header_row().
                   2787:                    '<th>'.&mt('Date requested').'</th>'.
                   2788:                    '<th>'.&mt('Course title').'</th>'.
                   2789:                    '<th>'.&mt('Course type').'</th>';
                   2790:                    &Apache::loncommon::end_data_table_header_row();
                   2791:         foreach my $reqtime (@sortedtimes) {
                   2792:             next unless (ref($reqcrs{$reqtime}) eq 'ARRAY');
                   2793:             $output .= &Apache::loncommon::start_data_table_row().
                   2794:                        '<td>'.&Apache::lonlocal::locallocaltime($reqtime).'</td>'.
                   2795:                        '<td>'.join('</td><td>',@{$reqcrs{$reqtime}}).'</td>'.
                   2796:                        &Apache::loncommon::end_data_table_row();
                   2797:         }
                   2798:         $output .= &Apache::loncommon::end_data_table().
                   2799:                    '<br /></p>';
                   2800:     }
                   2801:     my $queuedselfenroll = &Apache::loncoursequeueadmin::queued_selfenrollment(1);
                   2802:     if ($queuedselfenroll) {
                   2803:         $output .= '<p><b>'.&mt('Enrollment requests').'</b><br />'.
                   2804:                    $queuedselfenroll.'<br /></p>';
                   2805:     }
                   2806:     if ($env{'environment.canrequest.author'}) {
                   2807:         unless (&Apache::loncoursequeueadmin::is_active_author()) {
                   2808:             my $requestauthor;
                   2809:             my ($status,$timestamp) = split(/:/,$env{'environment.requestauthorqueued'});
                   2810:             if (($status eq 'approval') || ($status eq 'approved')) {
                   2811:                 $output .= '<p><b>'.&mt('Author role request').'</b><br />';
                   2812:                 if ($status eq 'approval') {
                   2813:                     $output .= &mt('A request for authoring space submitted on [_1] is awaiting approval',
                   2814:                                   &Apache::lonlocal::locallocaltime($timestamp));
                   2815:                 } elsif ($status eq 'approved') {
                   2816:                     my %roleshash =
                   2817:                         &Apache::lonnet::get_my_roles($env{'user.name'},$env{'user.domain'},'userroles',
                   2818:                                                       ['active'],['au'],[$env{'user.domain'}]);
                   2819:                     if (keys(%roleshash)) {
                   2820:                         $output .= '<span class="LC_info">'.
                   2821:                                    &mt('Your request for an author role has been approved.').'<br />'.
                   2822:                                    &mt('Use the "Check for changes" link to update your list of roles.').
                   2823:                                    '</span>';
                   2824:                     }
                   2825:                 }
                   2826:                 $output .= '</p>';
                   2827:             }
                   2828:         }
                   2829:     }
                   2830:     unless ($output) {
                   2831:         if ($env{'environment.canrequest.author'} || $env{'environment.canrequest.official'} ||
                   2832:             $env{'environment.canrequest.unofficial'} || $env{'environment.canrequest.community'}) {
                   2833:             $output = &mt('No requests for courses, communities or authoring currently queued');
                   2834:         } else {
                   2835:             $output = &mt('No enrollment requests currently queued awaiting approval');
                   2836:         }
                   2837:     }
                   2838:     return '<div class="LC_left_float"><fieldset><legend>'.&mt('Queued requests').'</legend>'.
                   2839:            $output.'</fieldset></div><br clear="all" />';
                   2840: }
                   2841: 
1.1       harris41 2842: 1;
                   2843: __END__
1.32      harris41 2844: 
                   2845: =head1 NAME
                   2846: 
                   2847: Apache::lonroles - User Roles Screen
                   2848: 
                   2849: =head1 SYNOPSIS
                   2850: 
                   2851: Invoked by /etc/httpd/conf/srm.conf:
                   2852: 
                   2853:  <Location /adm/roles>
                   2854:  PerlAccessHandler       Apache::lonacc
                   2855:  SetHandler perl-script
                   2856:  PerlHandler Apache::lonroles
                   2857:  ErrorDocument     403 /adm/login
                   2858:  ErrorDocument	  500 /adm/errorhandler
                   2859:  </Location>
1.64      bowersj2 2860: 
                   2861: =head1 OVERVIEW
                   2862: 
                   2863: =head2 Choosing Roles
                   2864: 
                   2865: C<lonroles> is a handler that allows a user to switch roles in
                   2866: mid-session. LON-CAPA attempts to work with "No Role Specified", the
                   2867: default role that a user has before selecting a role, as widely as
                   2868: possible, but certain handlers for example need specification which
                   2869: course they should act on, etc. Both in this scenario, and when the
                   2870: handler determines via C<lonnet>'s C<&allowed> function that a certain
                   2871: action is not allowed, C<lonroles> is used as error handler. This
                   2872: allows the user to select another role which may have permission to do
1.246     droeschl 2873: what they were trying to do.
1.64      bowersj2 2874: 
                   2875: =begin latex
                   2876: 
                   2877: \begin{figure}
                   2878: \begin{center}
                   2879: \includegraphics[width=0.45\paperwidth,keepaspectratio]{Sample_Roles_Screen}
                   2880:   \caption{\label{Sample_Roles_Screen}Sample Roles Screen} 
                   2881: \end{center}
                   2882: \end{figure}
                   2883: 
                   2884: =end latex
                   2885: 
                   2886: =head2 Role Initialization
                   2887: 
                   2888: 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 2889: 
                   2890: =head1 INTRODUCTION
                   2891: 
                   2892: This module enables a user to select what role he wishes to
                   2893: operate under (instructor, student, teaching assistant, course
                   2894: coordinator, etc).  These roles are pre-established by the actions
                   2895: of upper-level users.
                   2896: 
                   2897: This is part of the LearningOnline Network with CAPA project
                   2898: described at http://www.lon-capa.org.
                   2899: 
                   2900: =head1 HANDLER SUBROUTINE
                   2901: 
                   2902: This routine is called by Apache and mod_perl.
                   2903: 
                   2904: =over 4
                   2905: 
                   2906: =item *
                   2907: 
                   2908: Roles Initialization (yes/no)
                   2909: 
                   2910: =item *
                   2911: 
                   2912: Get Error Message from Environment
                   2913: 
                   2914: =item *
                   2915: 
                   2916: Who is this?
                   2917: 
                   2918: =item *
                   2919: 
                   2920: Generate Page Output
                   2921: 
                   2922: =item *
                   2923: 
                   2924: Choice or no choice
                   2925: 
                   2926: =item *
                   2927: 
                   2928: Table
                   2929: 
                   2930: =item *
                   2931: 
                   2932: Privileges
                   2933: 
                   2934: =back
                   2935: 
                   2936: =cut

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