--- loncom/interface/loncreateuser.pm 2010/11/01 13:54:00 1.295.2.36
+++ loncom/interface/loncreateuser.pm 2009/08/04 19:59:19 1.302
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Create a user
#
-# $Id: loncreateuser.pm,v 1.295.2.36 2010/11/01 13:54:00 raeburn Exp $
+# $Id: loncreateuser.pm,v 1.302 2009/08/04 19:59:19 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -51,14 +51,13 @@ In LON-CAPA, roles are actually collecti
Assistant", "Course Coordinator", and other such roles are really just
collection of privileges that are useful in many circumstances.
-Custom roles can be defined by a Domain Coordinator, Course Coordinator
-or Community Coordinator via the Manage User functionality.
-The custom role editor screen will show all privileges which can be
-assigned to users. For a complete list of privileges, please see
-C.
+Creating custom roles can be done by the Domain Coordinator through
+the Create User functionality. That screen will show all privileges
+that can be assigned to users. For a complete list of privileges,
+please see C.
-Custom role definitions are stored in the C '.&mt('The following were enrolled in the course:').''."\n".
- ' '."\n".
- &Apache::loncommon::start_data_table_row()."\n";
- if ($context eq 'requestcourses') {
- my ($curroption,$currlimit);
- if ($userenv{$context.'.'.$item} ne '') {
- $curroption = $userenv{$context.'.'.$item};
- } else {
- my (@inststatuses);
- $curroption =
- &Apache::loncoursequeueadmin::get_processtype($ccuname,$ccdomain,$isadv,$ccdomain,
- $item,\@inststatuses,\%domconfig);
- }
- if (!$curroption) {
- $curroption = 'norequest';
- }
- if ($curroption =~ /^autolimit=(\d*)$/) {
- $currlimit = $1;
- if ($currlimit eq '') {
- $currdisp = &mt('Yes, automatic creation');
- } else {
- $currdisp = &mt('Yes, up to [quant,_1,request]/user',$currlimit);
- }
- } else {
- $currdisp = $reqdisplay{$curroption};
- }
- $custdisp = ''.$lt{$item}.' '."\n".
+ ' '.$lt{$item}.' '."\n".
' ';
- foreach my $option (@options) {
- my $val = $option;
- if ($option eq 'norequest') {
- $val = 0;
- }
- if ($option eq 'validate') {
- my $canvalidate = 0;
- if (ref($validations{$item}) eq 'HASH') {
- if ($validations{$item}{'_custom_'}) {
- $canvalidate = 1;
- }
- }
- next if (!$canvalidate);
- }
- my $checked = '';
- if ($option eq $curroption) {
- $checked = ' checked="checked"';
- } elsif ($option eq 'autolimit') {
- if ($curroption =~ /^autolimit/) {
- $checked = ' checked="checked"';
- }
- }
- $custdisp .= '
';
- $custradio = ' ';
- }
- $custdisp .= ' ';
- if ($option eq 'autolimit') {
- $custdisp .= '
'.
- $reqtitles{'unlimited'};
- } else {
- $custdisp .= '';
- }
- $custdisp .= ''.&mt('Custom setting').'
'.$custdisp;
- } else {
- $currdisp = ($curr_access?&mt('Yes'):&mt('No'));
- $custdisp = ' ';
- $custradio = (' 'x2).'--'.$lt{'cusa'}.': '.$custdisp.
- '';
- }
- $output .= ' '.$custom_access.(' 'x4).
- $lt{'avai'}.': '.$currdisp.' '."\n".
+ &Apache::loncommon::start_data_table_row()."\n".
+ ' '.&mt('Availability determined currently from [_1] setting.',$custom_access).
+ ' '.$lt{'avai'}.': '.
+ ($curr_access?&mt('Yes'):&mt('No')).' '."\n".
&Apache::loncommon::end_data_table_row()."\n".
&Apache::loncommon::start_data_table_row()."\n".
- ' '.
- $lt{'chse'}.': '.
+ ' '."\n".
&Apache::loncommon::end_data_table_row()."\n";
}
return $output;
@@ -379,7 +288,7 @@ sub build_tools_display {
sub coursereq_externaluser {
my ($ccuname,$ccdomain,$cdom) = @_;
- my (@usertools,@options,%validations,%userenv,$output);
+ my (@usertools,%userenv,$output);
my %lt = &Apache::lonlocal::texthash (
'official' => 'Can request creation of official courses',
'unofficial' => 'Can request creation of unofficial courses',
@@ -390,96 +299,31 @@ sub coursereq_externaluser {
'reqcrsotherdom.official','reqcrsotherdom.unofficial',
'reqcrsotherdom.community');
@usertools = ('official','unofficial','community');
- @options = ('approval','validate','autolimit');
- %validations = &Apache::lonnet::auto_courserequest_checks($cdom);
- my $optregex = join('|',@options);
- my %reqtitles = &courserequest_titles();
foreach my $item (@usertools) {
- my ($curroption,$currlimit,$tooloff);
+ my ($tool_on,$tool_off);
+ $tool_off = 'checked="checked" ';
if ($userenv{'reqcrsotherdom.'.$item} ne '') {
my @curr = split(',',$userenv{'reqcrsotherdom.'.$item});
- foreach my $req (@curr) {
- if ($req =~ /^\Q$cdom\E\:($optregex)=?(\d*)$/) {
- $curroption = $1;
- $currlimit = $2;
- last;
- }
- }
- if (!$curroption) {
- $curroption = 'norequest';
- $tooloff = ' checked="checked"';
- }
- } else {
- $curroption = 'norequest';
- $tooloff = ' checked="checked"';
- }
- $output.= &Apache::loncommon::start_data_table_row()."\n".
- ' '.$lt{$item}.': '.
- ' '."\n".
+ $output .= &Apache::loncommon::start_data_table_row()."\n".
+ ' '."\n".
- ' ';
- foreach my $option (@options) {
- if ($option eq 'validate') {
- my $canvalidate = 0;
- if (ref($validations{$item}) eq 'HASH') {
- if ($validations{$item}{'_external_'}) {
- $canvalidate = 1;
- }
- }
- next if (!$canvalidate);
- }
- my $checked = '';
- if ($option eq $curroption) {
- $checked = ' checked="checked"';
- }
- $output .= ' ';
}
- $output .= '
'.$reqtitles{'unlimited'};
- } else {
- $output .= '';
+ if (grep(/^\Q$cdom\E$/,@curr)) {
+ $tool_on = 'checked="checked" ';
+ $tool_off = '';
}
- $output .= ''.$lt{$item}.': '."\n".
&Apache::loncommon::end_data_table_row()."\n";
}
return $output;
}
-sub courserequest_titles {
- my %titles = &Apache::lonlocal::texthash (
- official => 'Official',
- unofficial => 'Unofficial',
- community => 'Communities',
- norequest => 'Not allowed',
- approval => 'Approval by Dom. Coord.',
- validate => 'With validation',
- autolimit => 'Numerical limit',
- unlimited => '(blank for unlimited)',
- );
- return %titles;
-}
-
-sub courserequest_display {
- my %titles = &Apache::lonlocal::texthash (
- approval => 'Yes, need approval',
- validate => 'Yes, with validation',
- norequest => 'No',
- );
- return %titles;
-}
-
# =================================================================== Phase one
sub print_username_entry_form {
- my ($r,$context,$response,$srch,$forcenewuser,$crstype) = @_;
+ my ($r,$context,$response,$srch,$forcenewuser) = @_;
my $defdom=$env{'request.role.domain'};
my $formtoset = 'crtuser';
if (exists($env{'form.startrolename'})) {
@@ -498,15 +342,10 @@ sub print_username_entry_form {
'// ]]>'."\n".
''."\n";
- my %existingroles=&Apache::lonuserutils::my_custom_roles($crstype);
- if (($env{'form.action'} eq 'custom') && (keys(%existingroles) > 0)
- && (&Apache::lonnet::allowed('mcr','/'))) {
- $jscript .= &customrole_javascript();
- }
my %loaditems = (
'onload' => "javascript:setFormElements(document.$formtoset)",
);
- my %breadcrumb_text = &singleuser_breadcrumb($crstype);
+ my %breadcrumb_text = &singleuser_breadcrumb();
my $start_page =
&Apache::loncommon::start_page('User Management',
$jscript,{'add_entries' => \%loaditems,});
@@ -528,112 +367,48 @@ sub print_username_entry_form {
}
my $crumbs = &Apache::lonhtmlcommon::breadcrumbs('User Management',
$helpitem);
+ my %existingroles=&Apache::lonuserutils::my_custom_roles();
+ my $choice=&Apache::loncommon::select_form('make new role','rolename',
+ ('make new role' => 'Generate new role ...',%existingroles));
my %lt=&Apache::lonlocal::texthash(
'srst' => 'Search for a user and enroll as a student',
- 'srme' => 'Search for a user and enroll as a member',
'srad' => 'Search for a user and modify/add user information or roles',
'usr' => "Username",
'dom' => "Domain",
- 'ecrp' => "Define or Edit Custom Role",
- 'nr' => "role name",
+ 'ecrp' => "Edit Custom Role Privileges",
+ 'nr' => "Name of Role",
'cre' => "Next",
);
$r->print($start_page."\n".$crumbs);
if ($env{'form.action'} eq 'custom') {
if (&Apache::lonnet::allowed('mcr','/')) {
- my $newroletext = &mt('Define new custom role:');
- $r->print('');
+ $r->print(<$lt{'ecrp'}
+$choice $lt{'nr'}:
+
+
+ENDCUSTOM
}
} else {
my $actiontext = $lt{'srad'};
if ($env{'form.action'} eq 'singlestudent') {
- if ($crstype eq 'Community') {
- $actiontext = $lt{'srme'};
- } else {
- $actiontext = $lt{'srst'};
- }
+ $actiontext = $lt{'srst'};
}
- $r->print("$actiontext
");
+ $r->print("
+$actiontext
");
if ($env{'form.origform'} ne 'crtusername') {
$r->print("\n".$response);
}
- $r->print(&entry_form($defdom,$srch,$forcenewuser,$context,$response,$crstype));
+ $r->print(&entry_form($defdom,$srch,$forcenewuser,$context,$response));
}
$r->print(&Apache::loncommon::end_page());
}
-sub customrole_javascript {
- my $js = <<"END";
-
-END
- return $js;
-}
-
sub entry_form {
- my ($dom,$srch,$forcenewuser,$context,$responsemsg,$crstype) = @_;
+ my ($dom,$srch,$forcenewuser,$context,$responsemsg) = @_;
my %domconf = &Apache::lonnet::get_dom('configuration',['usercreation'],$dom);
my ($usertype,$inexact);
if (ref($srch) eq 'HASH') {
@@ -673,7 +448,6 @@ ENDBLOCK
my $domform = &Apache::loncommon::select_dom_form($defdom,'srchdomain');
my %lt=&Apache::lonlocal::texthash(
'enro' => 'Enroll one student',
- 'enrm' => 'Enroll one member',
'admo' => 'Add/modify a single user',
'crea' => 'create new user if required',
'uskn' => "username is known",
@@ -686,11 +460,7 @@ ENDBLOCK
my $sellink=&Apache::loncommon::selectstudent_link('crtusername','srchterm','srchdomain');
my ($title,$buttontext,$showresponse);
if ($env{'form.action'} eq 'singlestudent') {
- if ($crstype eq 'Community') {
- $title = $lt{'enrm'};
- } else {
- $title = $lt{'enro'};
- }
+ $title = $lt{'enro'};
$buttontext = $lt{'enrl'};
} else {
$title = $lt{'admo'};
@@ -737,7 +507,6 @@ sub user_modification_js {
return <
");
- $r->print(&entry_form($srch->{'srchdomain'},$srch,undef,$context,undef,$crstype));
+ $r->print(&entry_form($srch->{'srchdomain'},$srch,undef,$context));
$r->print(''.$lt{'usel'}.'
');
} elsif ($env{'form.action'} eq 'singlestudent') {
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management',
'Course_Add_Student'));
- $r->print($jscript."");
- if ($crstype eq 'Community') {
- $r->print($lt{'memsrch'});
- } else {
- $r->print($lt{'stusrch'});
- }
- $r->print("
");
- $r->print(&entry_form($srch->{'srchdomain'},$srch,undef,$context,undef,$crstype));
- $r->print('');
- if ($crstype eq 'Community') {
- $r->print($lt{'memsel'});
- } else {
- $r->print($lt{'stusel'});
- }
- $r->print('
');
+ $r->print($jscript."$lt{'stusrch'}
");
+ $r->print(&entry_form($srch->{'srchdomain'},$srch,undef,$context));
+ $r->print(''.$lt{'stusel'}.'
');
}
}
$r->print('');
+ } else {
+ $r->print(&mt('There are currently no enrollment requests.'));
+ }
+ return;
+}
+
+sub update_selfenroll_queue {
+ my ($r,$context,$permission,$cid,$cnum,$cdom) = @_;
+ my @approvals = &Apache::loncommon::get_env_multiple('form.approvereq');
+ my @rejections = &Apache::loncommon::get_env_multiple('form.rejectreq');
+ my $access_start = $env{'course.'.$cid.'.internal.selfenroll_start_access'};
+ my $access_end = $env{'course.'.$cid.'.internal.selfenroll_end_access'};
+ my $limit = $env{'course.'.$cid.'.internal.selfenroll_limit'};
+ my $cap = $env{'course.'.$cid.'.internal.selfenroll_cap'};
+ my $notifylist = $env{'course.'.$cid.'.internal.selfenroll_notifylist'};
+ my $namespace = 'selfenrollrequests';
+ my ($stucounts,$idx,$classlist) = &get_student_counts($cdom,$cnum);
+ my %requesthash = &Apache::lonnet::dump($namespace,$cdom,$cnum);
+ my $coursedesc = $env{'course.'.$cid.'.description'};
+ my $chome = &Apache::lonnet::homeserver($cnum,$cdom);
+ my $hostname = &Apache::lonnet::hostname($chome);
+ my $protocol = $Apache::lonnet::protocol{$chome};
+ $protocol = 'http' if ($protocol ne 'https');
+ my (@existing,@missingreq,@invalidusers,@limitexceeded,@enrolled,
+ @enrollerrors,@warn_approves,@warn_rejects);
+ my $now = time;
+ my $sender = $env{'user.name'}.':'.$env{'user.domain'};
+ my $approvedmsg = [{
+ mt => 'Your request for enrollment has been approved.',
+ },
+ {
+ mt => 'Visit [_1], to log-in and access the course',
+ args => [$protocol.'://'.$hostname],
+ }];
+
+ my $rejectedmsg = [{
+ mt => 'Your request for enrollment has not been approved.',
+ }];
+ foreach my $item (sort {$a <=> $b} @approvals) {
+ my ($num,$uname,$udom,$usec) = split(/:/,$item);
+ my $uhome = &Apache::lonnet::homeserver($uname,$udom);
+ if ($uhome ne 'no_host') {
+ if (exists($requesthash{$uname.':'.$udom})) {
+
+ if (exists($classlist->{$uname.':'.$udom})) {
+ if (ref($classlist->{$uname.':'.$udom}) eq 'ARRAY') {
+ if (($classlist->{$uname.':'.$udom}->[$idx->{'status'}] eq 'Active') ||
+ ($classlist->{$uname.':'.$udom}->[$idx->{'status'}] eq 'Future')) {
+ push(@existing,$uname.':'.$udom);
+ next;
+ }
+ }
+ }
+ } else {
+ push(@missingreq,$uname.':'.$udom);
+ next;
+ }
+ if (!grep(/^\Q$item\E$/,@rejections)) {
+ if ($limit eq 'allstudents') {
+ if ($stucounts->{$limit} >= $cap) {
+ push(@limitexceeded,$uname.':'.$udom);
+ last;
+ }
+ } elsif ($limit eq 'selfenrolled') {
+ if ($stucounts->{$limit} >= $cap) {
+ push(@limitexceeded,$uname.':'.$udom);
+ last;
+ }
+ }
+ my $result =
+ &Apache::lonnet::modify_student_enrollment($udom,$uname,undef,undef,undef,undef,undef,$usec,$access_end,$access_start,'selfenroll',undef,$cdom.'_'.$cnum,1);
+ if ($result eq 'ok') {
+ push(@enrolled,$uname.':'.$udom);
+ $stucounts->{'allstudents'} ++;
+ $stucounts->{'selfenrolled'} ++;
+ &Apache::selfenroll::send_notification($uname.':'.$udom,$approvedmsg,$cid,
+ $coursedesc,$now,'enroller',$sender);
+ my %userrequest = (
+ $cdom.'_'.$cnum => {
+ timestamp => $now,
+ section => $usec,
+ adjudicator => $env{'user.name'}.':'.$env{'user.domain'},
+ status => 'approved',
+ }
+ );
+ my $userresult =
+ &Apache::lonnet::put($namespace,\%userrequest,$udom,$uname);
+ if ($userresult ne 'ok') {
+ push(@warn_approves,$uname.':'.$udom);
+ }
+ } else {
+ push(@enrollerrors,$uname.':'.$udom);
+ }
+ }
+ } else {
+ push(@invalidusers,$uname.':'.$udom);
+ }
+ }
+ my @changes = (@enrolled,@rejections);
+ if (@rejections) {
+ foreach my $user (@rejections) {
+ &Apache::selfenroll::send_notification($user,$rejectedmsg,$cid,
+ $coursedesc,$now,'enroller',$sender);
+ my ($uname,$udom) = split(/:/,$user);
+ my %userrequest = (
+ $cdom.'_'.$cnum => {
+ timestamp => $now,
+ adjudicator => $env{'user.name'}.':'.$env{'user.domain'},
+ status => 'rejected',
+ }
+ );
+ my $userresult =
+ &Apache::lonnet::put($namespace,\%userrequest,$udom,$uname);
+ if ($userresult ne 'ok') {
+ push(@warn_rejects,$user);
+ }
+ }
+ }
+ if (@changes) {
+ my $delresult = &Apache::lonnet::del($namespace,\@changes,$cdom,$cnum);
+ if ($delresult eq 'ok') {
+ my $namelink =
+ &Apache::loncommon::plainname($env{'user.name'},$env{'user.domain'}).' ('.$env{'user.name'}.':'.$env{'user.domain'}.')';
+ my $chgmsg = "'Action was taken on the following enrollment requests by [_1].',$namelink";
+ my ($approvedlist,$rejectedlist);
+ if (@enrolled) {
+ $approvedlist = join("\n",@enrolled);
+ $r->print('');
+ foreach my $user (@enrolled) {
+ my ($uname,$udom) = split(/:/,$user);
+ my $userlink =
+ &Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$udom),$uname,$udom);
+ $r->print('
'.&mt('The following enrollment requests were rejected:').'
'.&mt('The following enrollment requests were deleted because the user is already enrolled in the course:').'
'.&mt('The following enrollment requests were ignored because the request is no longer in the enrollment queue:').'
'.&mt('The following enrollment requests were deleted because the requestor does not have a LON-CAPA account:').'
'.&mt('The following enrollment requests were skipped because the enrollment limit has been reached for the course:').'
'.&mt('The following enrollment requests could not be processed because an error occurred:').'
'.&mt("For the following users, an error occurred when updating the user's own self-enroll requests record:").'
'.&mt("For the following users, an error occurred when updating the user's own self-enroll requests record:").'
' + .&mt('There are no records to display.') + .'
' + ); + $r->print($form_footer); + return; } - if ($showntablehdr) { - $r->print(&Apache::loncommon::end_data_table().''.&mt('Previous [_1] changes',$curr{'show'}).' | '); - } - if ($more_records) { - $r->print(''.&mt('Next [_1] changes',$curr{'show'}).' | '); - } - $r->print('
'. - &mt('There are no records to display'). - '
'); - } - $r->print(''. - ''); + # Navigation Buttons + my $nav_links; + $nav_links = ''; + if (($curr{'page'} > 1) || ($more_records)) { + if ($curr{'page'} > 1) { + $nav_links .= ' '; + } + if ($more_records) { + $nav_links .= ''; + } + } + $nav_links .= '
'; + + # Table Header + my $tableheader = + &Apache::loncommon::start_data_table() + .&Apache::loncommon::start_data_table_header_row() + .''.
''.&mt('Changes/page:').' '. @@ -5328,23 +5178,27 @@ sub role_display_filter { &Apache::lonhtmlcommon::date_setter($formname,'rolelog_end_date', $curr->{'rolelog_end_date'},undef, undef,undef,undef,undef,undef,undef,$nolink); - my %lt = &rolechg_contexts($crstype); - $output .= ' | '.&mt('Window during which changes occurred:').'
| '. + my %lt = &rolechg_contexts(); + $output .= ' | '.&mt('Window during which changes occurred:').' '. + '
| '.
+ ''. ' | '.&mt('Role:').' '. ' | '. + $output .= ' | '. + ''. + ' | '.
&mt('Context:').' | '
- .'
' - .'' - .'
'; - - # Server version info - $output .= '' - .&mt('Only changes made from servers running LON-CAPA [_1] or later are displayed.' - ,'2.6.99.0'); + $output .= ''. + '