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