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