version 1.224, 2007/12/24 16:00:13
|
version 1.225, 2007/12/31 01:58:17
|
Line 2030 END
|
Line 2030 END
|
if ($env{'form.action'} eq 'singlestudent') { |
if ($env{'form.action'} eq 'singlestudent') { |
&enroll_single_student($r,$uhome,$amode,$genpwd,$now,$newuser); |
&enroll_single_student($r,$uhome,$amode,$genpwd,$now,$newuser); |
} else { |
} else { |
my $rolechanges = &update_roles($r); |
my @rolechanges = &update_roles($r); |
if (!$rolechanges && $namechanged) { |
if ($namechanged) { |
if ($context eq 'course') { |
if ($context eq 'course') { |
if (@userroles > 0) { |
if (@userroles > 0) { |
if (grep(/^st$/,@userroles)) { |
if ((@rolechanges == 0) || |
my $classlistupdated = |
(!(grep(/^st$/,@rolechanges)))) { |
&Apache::lonuserutils::update_classlist($cdom, |
if (grep(/^st$/,@userroles)) { |
|
my $classlistupdated = |
|
&Apache::lonuserutils::update_classlist($cdom, |
$cnum,$env{'form.ccdomain'}, |
$cnum,$env{'form.ccdomain'}, |
$env{'form.ccuname'},\%userupdate); |
$env{'form.ccuname'},\%userupdate); |
|
} |
} |
} |
} |
} |
} |
} |
Line 2050 END
|
Line 2053 END
|
sub update_roles { |
sub update_roles { |
my ($r) = @_; |
my ($r) = @_; |
my $now=time; |
my $now=time; |
my $rolechanges = 0; |
my @rolechanges; |
my %disallowed; |
my %disallowed; |
$r->print('<h3>'.&mt('Modifying Roles').'</h3>'); |
$r->print('<h3>'.&mt('Modifying Roles').'</h3>'); |
foreach my $key (keys (%env)) { |
foreach my $key (keys (%env)) { |
Line 2074 sub update_roles {
|
Line 2077 sub update_roles {
|
$now); |
$now); |
$r->print($result); |
$r->print($result); |
} |
} |
|
if (!grep(/^\Q$role\E$/,@rolechanges)) { |
|
push(@rolechanges,$role); |
|
} |
} |
} |
if ($key=~m{^form\.rev\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}s) { |
if ($key=~m{^form\.rev\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}s) { |
# Revoke custom role |
# Revoke custom role |
Line 2082 sub update_roles {
|
Line 2088 sub update_roles {
|
&Apache::lonnet::revokecustomrole($env{'form.ccdomain'}, |
&Apache::lonnet::revokecustomrole($env{'form.ccdomain'}, |
$env{'form.ccuname'},$1,$2,$3,$4). |
$env{'form.ccuname'},$1,$2,$3,$4). |
'</b><br />'); |
'</b><br />'); |
|
if (!grep(/^cr$/,@rolechanges)) { |
|
push(@rolechanges,'cr'); |
|
} |
} |
} |
$rolechanges ++; |
|
} elsif ($key=~/^form\.del/) { |
} elsif ($key=~/^form\.del/) { |
if ($key=~/^form\.del\:([^\_]+)\_([^\_\.]+)$/) { |
if ($key=~/^form\.del\:([^\_]+)\_([^\_\.]+)$/) { |
# Delete standard role |
# Delete standard role |
Line 2101 sub update_roles {
|
Line 2109 sub update_roles {
|
$now); |
$now); |
$r->print($result); |
$r->print($result); |
} |
} |
|
if (!grep(/^\Q$role\E$/,@rolechanges)) { |
|
push(@rolechanges,$role); |
|
} |
} |
} |
if ($key=~m{^form\.del\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}) { |
if ($key=~m{^form\.del\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}) { |
my ($url,$rdom,$rnam,$rolename) = ($1,$2,$3,$4); |
my ($url,$rdom,$rnam,$rolename) = ($1,$2,$3,$4); |
Line 2110 sub update_roles {
|
Line 2121 sub update_roles {
|
&Apache::lonnet::assigncustomrole($env{'form.ccdomain'}, |
&Apache::lonnet::assigncustomrole($env{'form.ccdomain'}, |
$env{'form.ccuname'},$url,$rdom,$rnam,$rolename,$now, |
$env{'form.ccuname'},$url,$rdom,$rnam,$rolename,$now, |
0,1).'</b><br />'); |
0,1).'</b><br />'); |
|
if (!grep(/^cr$/,@rolechanges)) { |
|
push(@rolechanges,'cr'); |
|
} |
} |
} |
$rolechanges ++; |
|
} elsif ($key=~/^form\.ren/) { |
} elsif ($key=~/^form\.ren/) { |
my $udom = $env{'form.ccdomain'}; |
my $udom = $env{'form.ccdomain'}; |
my $uname = $env{'form.ccuname'}; |
my $uname = $env{'form.ccuname'}; |
Line 2144 sub update_roles {
|
Line 2157 sub update_roles {
|
$role,$url,$result).'<br />'; |
$role,$url,$result).'<br />'; |
} |
} |
$r->print($output); |
$r->print($output); |
|
if (!grep(/^\Q$role\E$/,@rolechanges)) { |
|
push(@rolechanges,$role); |
|
} |
} |
} |
# Re-enable custom role |
# Re-enable custom role |
if ($key=~m{^form\.ren\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}) { |
if ($key=~m{^form\.ren\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}) { |
Line 2153 sub update_roles {
|
Line 2169 sub update_roles {
|
$url,$rdom,$rnam,$rolename,0,$now); |
$url,$rdom,$rnam,$rolename,0,$now); |
$r->print(&mt('Re-enabling custom role [_1] by [_2]@[_3] in [_4] : <b>[_5]</b>', |
$r->print(&mt('Re-enabling custom role [_1] by [_2]@[_3] in [_4] : <b>[_5]</b>', |
$rolename,$rnam,$rdom,$url,$result).'<br />'); |
$rolename,$rnam,$rdom,$url,$result).'<br />'); |
|
if (!grep(/^cr$/,@rolechanges)) { |
|
push(@rolechanges,'cr'); |
|
} |
} |
} |
$rolechanges ++; |
|
} elsif ($key=~/^form\.act/) { |
} elsif ($key=~/^form\.act/) { |
my $udom = $env{'form.ccdomain'}; |
my $udom = $env{'form.ccdomain'}; |
my $uname = $env{'form.ccuname'}; |
my $uname = $env{'form.ccuname'}; |
Line 2189 sub update_roles {
|
Line 2207 sub update_roles {
|
$r->print(&Apache::loncommon::commit_customrole($udom,$uname,$securl,$three,$four,$five,$start,$end)); |
$r->print(&Apache::loncommon::commit_customrole($udom,$uname,$securl,$three,$four,$five,$start,$end)); |
} |
} |
} |
} |
|
if (!grep(/^cr$/,@rolechanges)) { |
|
push(@rolechanges,'cr'); |
|
} |
} elsif ($key=~/^form\.act\_($match_domain)\_($match_name)\_([^\_]+)$/) { |
} elsif ($key=~/^form\.act\_($match_domain)\_($match_name)\_([^\_]+)$/) { |
# Activate roles for sections with 3 id numbers |
# Activate roles for sections with 3 id numbers |
# set start, end times, and the url for the class |
# set start, end times, and the url for the class |
Line 2227 sub update_roles {
|
Line 2248 sub update_roles {
|
if ($emptysec) { |
if ($emptysec) { |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$three,$start,$end,$one,$two,'')); |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$three,$start,$end,$one,$two,'')); |
} |
} |
} |
} |
|
if (!grep(/^\Q$three\E$/,@rolechanges)) { |
|
push(@rolechanges,$three); |
|
} |
} elsif ($key=~/^form\.act\_([^\_]+)\_([^\_]+)$/) { |
} elsif ($key=~/^form\.act\_([^\_]+)\_([^\_]+)$/) { |
# Activate roles for sections with two id numbers |
# Activate roles for sections with two id numbers |
# set start, end times, and the url for the class |
# set start, end times, and the url for the class |
Line 2237 sub update_roles {
|
Line 2261 sub update_roles {
|
my $end = ( $env{'form.end_'.$1.'_'.$2} ? |
my $end = ( $env{'form.end_'.$1.'_'.$2} ? |
$env{'form.end_'.$1.'_'.$2} : |
$env{'form.end_'.$1.'_'.$2} : |
0 ); |
0 ); |
my $url='/'.$1.'/'; |
my $one = $1; |
|
my $two = $2; |
|
my $url='/'.$one.'/'; |
# split multiple sections |
# split multiple sections |
my %sections = (); |
my %sections = (); |
my $num_sections = &build_roles($env{'form.sec_'.$1.'_'.$2},\%sections,$2); |
my $num_sections = &build_roles($env{'form.sec_'.$one.'_'.$two},\%sections,$two); |
if ($num_sections == 0) { |
if ($num_sections == 0) { |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$2,$start,$end,$1,undef,'')); |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$two,$start,$end,$one,undef,'')); |
} else { |
} else { |
my $emptysec = 0; |
my $emptysec = 0; |
foreach my $sec (sort {$a cmp $b} keys %sections) { |
foreach my $sec (sort {$a cmp $b} keys %sections) { |
if ($sec ne '') { |
if ($sec ne '') { |
my $securl = $url.'/'.$sec; |
my $securl = $url.'/'.$sec; |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$securl,$2,$start,$end,$1,undef,$sec)); |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$securl,$two,$start,$end,$one,undef,$sec)); |
} else { |
} else { |
$emptysec = 1; |
$emptysec = 1; |
} |
} |
} |
} |
if ($emptysec) { |
if ($emptysec) { |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$2,$start,$end,$1,undef,'')); |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$two,$start,$end,$one,undef,'')); |
} |
} |
} |
} |
|
if (!grep(/^\Q$two\E$/,@rolechanges)) { |
|
push(@rolechanges,$two); |
|
} |
} else { |
} else { |
$r->print('<p><span class="LC_error">'.&mt('ERROR').': '.&mt('Unknown command').' <tt>'.$key.'</tt></span></p><br />'); |
$r->print('<p><span class="LC_error">'.&mt('ERROR').': '.&mt('Unknown command').' <tt>'.$key.'</tt></span></p><br />'); |
} |
} |
Line 2268 sub update_roles {
|
Line 2297 sub update_roles {
|
} |
} |
$r->print(' '.&mt('Please <a href="javascript:history.go(-1)">go back</a> and choose a different section name.').'</p><br />'); |
$r->print(' '.&mt('Please <a href="javascript:history.go(-1)">go back</a> and choose a different section name.').'</p><br />'); |
} |
} |
$rolechanges ++; |
|
} |
} |
} # End of foreach (keys(%env)) |
} # End of foreach (keys(%env)) |
# Flush the course logs so reverse user roles immediately updated |
# Flush the course logs so reverse user roles immediately updated |
&Apache::lonnet::flushcourselogs(); |
&Apache::lonnet::flushcourselogs(); |
if (!$rolechanges) { |
if (@rolechanges == 0) { |
$r->print(&mt('No roles to modify')); |
$r->print(&mt('No roles to modify')); |
} |
} |
return $rolechanges; |
return @rolechanges; |
} |
} |
|
|
sub enroll_single_student { |
sub enroll_single_student { |