--- loncom/interface/lonfeedback.pm 2023/09/15 23:02:08 1.370.2.7
+++ loncom/interface/lonfeedback.pm 2021/12/31 20:34:24 1.387
@@ -1,7 +1,7 @@
# The LearningOnline Network
# Feedback
#
-# $Id: lonfeedback.pm,v 1.370.2.7 2023/09/15 23:02:08 raeburn Exp $
+# $Id: lonfeedback.pm,v 1.387 2021/12/31 20:34:24 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -118,10 +118,16 @@ sub list_discussion {
$outputtarget = 'export';
}
}
+ my ($nofooter,$nodisclink,$nofdbklink);
if (not &discussion_visible($status)) {
if ($mode ne 'board') {
- &Apache::lonenc::check_encrypt(\$ressymb);
- return '
'.&send_message_link($ressymb)."
";
+ ($nofooter,$nodisclink,$nofdbklink) = &check_menucoll();
+ if ($nofooter || $nofdbklink) {
+ return '
';
+ } else {
+ &Apache::lonenc::check_encrypt(\$ressymb);
+ return '
'.&send_message_link($ressymb)."
";
+ }
}
}
if ($group ne '' && $mode eq 'board') {
@@ -130,17 +136,27 @@ sub list_discussion {
}
}
- my ($blocked,$blocktext) =
- &Apache::loncommon::blocking_status('boards');
- if ($blocked) {
- $blocktext = '
'.$blocktext."";
- &Apache::lonenc::check_encrypt(\$ressymb);
- if ($mode ne 'board') {
- $blocktext.=&send_message_link($ressymb).'
';
- }else{
- $blocktext.="";
+ unless ($outputtarget eq 'export') {
+ ($nofooter,$nodisclink,$nofdbklink) = &check_menucoll();
+ }
+
+ unless ($nofooter) {
+ my ($blocked,$blocktext) =
+ &Apache::loncommon::blocking_status('boards');
+ if ($blocked) {
+ my $footer = '
';
+ unless ($nodisclink) {
+ $footer .= ''.$blocktext.'';
+ }
+ &Apache::lonenc::check_encrypt(\$ressymb);
+ if ($mode ne 'board') {
+ unless ($nofdbklink) {
+ $footer.=&send_message_link($ressymb);
+ }
+ }
+ $footer.='
';
+ return $footer;
}
- return $blocktext;
}
my @bgcols = ("LC_disc_old_item","LC_disc_new_item");
@@ -674,7 +690,7 @@ END
$newpostsflag,$group,
$prevread,$markondisp,$seehidden);
$discussion .= "\n";
- }
+ }
if ($outputtarget eq 'export') {
if ($manifestok) {
while ($currdepth > 0) {
@@ -774,33 +790,60 @@ END
&mt('This discussion is closed.').'';
}
} elsif ($outputtarget ne 'tex') {
- $discussion.='';
- if (&discussion_open($status) &&
- &Apache::lonnet::allowed('pch',
- $env{'request.course.id'}.
- ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
- $discussion.= &send_feedback_link($ressymb);
- if ($env{'request.role.adv'}) {
- my $close = &Apache::lonnet::EXT('resource.0.discussend',$ressymb);
- my $canvote = &Apache::lonnet::EXT('resource.0.discussvote',$ressymb);
- if (defined($close) && $close ne '' && $close < time) {
- if ($canvote eq 'notended') {
- $discussion .= ' '.&mt('(Posting and voting closed for [_1] roles)',
- &Apache::lonnet::plaintext('st',$crstype));
- } else {
- $discussion .= ' '.&mt('(Closed for [_1] roles)',
- &Apache::lonnet::plaintext('st',$crstype));
+ unless ($nofooter) {
+ $discussion.='
';
+ unless ($nodisclink) {
+ if (&discussion_open($status) &&
+ &Apache::lonnet::allowed('pch',
+ $env{'request.course.id'}.
+ ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
+ $discussion.= &send_feedback_link($ressymb);
+ if ($env{'request.role.adv'}) {
+ my $close = &Apache::lonnet::EXT('resource.0.discussend',$ressymb);
+ my $canvote = &Apache::lonnet::EXT('resource.0.discussvote',$ressymb);
+ if (defined($close) && $close ne '' && $close < time) {
+ if ($canvote eq 'notended') {
+ $discussion .= ' '.&mt('(Posting and voting closed for [_1] roles)',
+ &Apache::lonnet::plaintext('st',$crstype));
+ } else {
+ $discussion .= ' '.&mt('(Closed for [_1] roles)',
+ &Apache::lonnet::plaintext('st',$crstype));
+ }
+ }
}
+ } else {
+ $discussion.= ''.&mt('This discussion is closed.').'';
}
}
- } else {
- $discussion.= ''.&mt('This discussion is closed.').'';
+ unless ($nofdbklink) {
+ $discussion.= &send_message_link($ressymb);
+ }
+ $discussion.='
';
}
- $discussion.= &send_message_link($ressymb).'
';
}
return $discussion;
}
+sub check_menucoll {
+ my ($nofooter,$nodisclink,$nofdbklink);
+ my ($menucoll,$deeplinkmenu,$menuref) = &Apache::loncommon::menucoll_in_effect();
+ if ($menucoll) {
+ if (ref($menuref) eq 'HASH') {
+ if ($menuref->{'foot'} eq 'n') {
+ $nofooter = 1;
+ } else {
+ unless ($menuref->{'disc'}) {
+ $nodisclink = 1;
+ }
+ unless ($menuref->{'fdbk'}) {
+ $nofdbklink = 1;
+ }
+ }
+ }
+ }
+ return ($nofooter,$nodisclink,$nofdbklink);
+}
+
sub can_see_hidden {
my ($mode,$ressymb,$feedurl,$group,$cdom,$cnum,$crs) = @_;
my $seehidden;
@@ -960,9 +1003,14 @@ sub postingform_display {
}
}
}
+ my $postanon;
+ if (&Apache::lonnet::allowed('pac',$env{'request.course.id'}.
+ ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
+ $postanon = '';
+ }
$postingform .= (<
-
+$postanon
@@ -2067,7 +2115,7 @@ END
$r->print('');
}
$r->print(<
+
END
@@ -2703,46 +2751,29 @@ sub get_post_attachments {
$$attachments{'0'}{'filename'} = $attachmenturls;
$$attachments{'0'}{'0'} = 'n';
}
+
return;
}
sub fail_redirect {
- my ($r,$feedurl,$delay) = @_;
+ my ($r,$feedurl) = @_;
if ($feedurl=~/^\/adm\//) { $feedurl.='?register=1' };
my %lt = &Apache::lonlocal::texthash(
'sorr' => 'Sorry, no recipients ...',
);
my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
- my %parms=('only_body' => 1);
- if ($delay !~ /^\d+(|\.\d+)$/) {
- $delay = 2;
- }
- if ($env{'form.modal'}) {
- my $onload = 'document.forms.reldt.submit()';
- if ($delay) {
- my $js_delay = int(1000 * $delay);
- $onload = "setTimeout(function(){
- document.forms.reldt.submit();
- },$js_delay);";
- }
- $parms{'add_entries'}={'onload' => $onload};
- } else {
- $parms{'redirect'}=[$delay,$feedurl];
- }
- $r->print(&Apache::loncommon::start_page('Feedback not sent',undef,\%parms));
- my $windowname = 'loncapaclient';
+ $r->print(&Apache::loncommon::start_page('Feedback not sent',undef,
+ {'redirect' => [2,$feedurl],
+ 'only_body' => 1,}));
$r->print(<
$lt{'sorr'}
-
ENDFAILREDIR
$r->print(&Apache::loncommon::end_page());
}
sub redirect_back {
- my ($r,$feedurl,$typestyle,$sendsomething,$sendposts,$blog,$status,$previous,$sort,
- $rolefilter,$statusfilter,$sectionpick,$grouppick,$numpicks,$group,$toolarge,$delay) = @_;
+ my ($r,$feedurl,$typestyle,$sendsomething,$sendposts,$blog,$status,$previous,$sort,$rolefilter,$statusfilter,$sectionpick,$grouppick,$numpicks,$group,$toolarge) = @_;
my $sorttag = '';
my $roletag = '';
my $statustag = '';
@@ -2841,24 +2872,18 @@ sub redirect_back {
&Apache::lonenc::check_encrypt(\$feedurl);
my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
my %parms=('only_body' => 1);
- if ($delay !~ /^\d+(|\.\d+)$/) {
- $delay = 0;
- }
if ($env{'form.modal'}) {
- my $onload = 'document.forms.reldt.submit()';
- if ($delay) {
- my $js_delay = int(1000 * $delay);
- $onload = "setTimeout(function(){
- document.forms.reldt.submit();
- },$js_delay);";
- }
- $parms{'add_entries'}={'onload' => $onload};
+ $parms{'add_entries'}={'onLoad' => 'document.forms.reldt.submit()'};
} else {
- $parms{'redirect'}=[$delay,$feedurl];
+ $parms{'redirect'}=[0,$feedurl];
}
my $start_page=
&Apache::loncommon::start_page('Feedback sent',undef,\%parms);
my $end_page = &Apache::loncommon::end_page();
+ my $windowname = 'loncapaclient';
+ if ($env{'request.lti.login'}) {
+ $windowname .= 'lti';
+ }
$r->print(<
@@ -2867,7 +2892,7 @@ $typestyle
$blog
$toolarge
$status
-
-ENDFORM
- }
- } else {
- if (($feedurl !~ m{^/adm/feedback}) && ($feedurl ne '')) {
- $parms{'redirect'}=[$delay,$feedurl];
- }
+
+ my %onload;
+
+ my %body_options = ('only_body' => 1,
+ 'bgcolor' => '#FFFFFF',
+ 'add_entries' => \%onload,);
+
+ if ($feedurl !~ m{^/adm/feedback}) {
+ $body_options{'redirect'} = [2,$feedurl];
}
my $start_page=
&Apache::loncommon::start_page('Feedback not sent',undef,
- \%parms);
-
+ \%body_options);
+
my $end_page = &Apache::loncommon::end_page();
+ &Apache::lonenc::check_encrypt(\$feedurl);
my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
$r->print (<
$nofeed
-$form_for_modal
$end_page
ENDNOREDIRTWO
}
sub screen_header {
my ($feedurl,$symb,$group) = @_;
- my %default = &Apache::lonlocal::texthash (
- question => 'Question about resource content',
- comment => 'Question/Comment/Feedback about course content',
- policy => 'Question/Comment/Feedback about course policy',
- );
+ my $crscontent = &mt('Question/Comment/Feedback about course content');
+ my $crspolicy = &mt('Question/Comment/Feedback about course policy');
my $contribdisc = &mt('Contribution to course discussion of resource');
my $anoncontrib = &mt('Anonymous contribution to course discussion of resource');
my $namevis = &mt('name only visible to course faculty');
@@ -2942,8 +2947,8 @@ sub screen_header {
if ($env{'request.course.id'}) {
$crstype = &Apache::loncommon::course_type();
if ($crstype eq 'Community') {
- $default{'comment'} = &mt('Question/Comment/Feedback about community content');
- $default{'policy'} = &mt('Question/Comment/Feedback about community policy');
+ $crscontent = &mt('Question/Comment/Feedback about community content');
+ $crspolicy = &mt('Question/Comment/Feedback about community policy');
$contribdisc = &mt('Contribution to community discussion of resource');
$anoncontrib = &mt('Anonymous contribution to community discussion of resource');
$namevis = &mt('name only visible to community facilitators');
@@ -2951,76 +2956,58 @@ sub screen_header {
}
my $msgoptions='';
my $discussoptions='';
- my $checkradio = '';
- my $blockblog;
- my (%fdbkoptions,%discoptions);
unless (($env{'form.replydisc'}) || ($env{'form.editdisc'})) {
- if (($feedurl=~/^\/res\//) && ($feedurl!~/^\/res\/adm/) && ($env{'user.adv'})) {
- $fdbkoptions{'author'} = 1;
- }
- if (&feedback_available(1)) {
- $fdbkoptions{'question'} = 1;
- }
- if (&feedback_available(0,1)) {
- $fdbkoptions{'course'} = 1;
- }
- if (&feedback_available(0,0,1)) {
- $fdbkoptions{'policy'} = 1;
- }
+ if (($feedurl=~/^\/res\//) && ($feedurl!~/^\/res\/adm/) && ($env{'user.adv'})) {
+ $msgoptions=
+ '
';
+ }
+ my %optionhash=();
+ foreach my $type ('question','comment','policy') {
+ $optionhash{$type}=$env{'course.'.$env{'request.course.id'}.'.'.$type.'.email.text'};
+ }
+ if (&feedback_available(1)) {
+ $msgoptions.=
+ '
';
+ }
+ if (&feedback_available(0,1)) {
+ $msgoptions.=
+ '
';
+ }
+ if (&feedback_available(0,0,1)) {
+ $msgoptions.=
+ '
';
+ }
}
if (($env{'request.course.id'}) && (!$env{'form.sendmessageonly'})) {
my ($blocked,$blocktext) = &Apache::loncommon::blocking_status('boards');
my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
my $realsymb = &get_realsymb($symb);
- if (!$blocked && &discussion_open(undef,$realsymb) &&
- (&Apache::lonnet::allowed('pch',
- $env{'request.course.id'}.
- ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'')) ||
+ if (!$blocked && &discussion_open(undef,$realsymb) &&
+ (&Apache::lonnet::allowed('pch',
+ $env{'request.course.id'}.
+ ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'')) ||
(($group ne '') && ($symb =~ m{^bulletin___\d+___adm/wrapper/adm/\Q$cdom\E/\Q$cnum\E/\d+/bulletinboard$}) && (&check_group_priv($group,'pgd') eq 'ok')))) {
- $discoptions{'nonanon'} = 1;
- $discoptions{'anon'} = 1;
- $blockblog = &Apache::loncommon::blocking_status('blogs');
- }
- }
- my $total = scalar(keys(%fdbkoptions)) + scalar(keys(%discoptions));
- return if (!$total);
- if ($total == 1) {
- $checkradio = ' checked="checked"';
- }
- if (keys(%fdbkoptions)) {
- if ($fdbkoptions{'author'}) {
- $msgoptions =
- '
';
- }
- foreach my $item ('question','comment','policy') {
- my $type = $item;
- if ($item eq 'comment') {
- $type = 'course';
- }
- my $optionhash=$env{'course.'.$env{'request.course.id'}.'.'.$item.'.email.text'};
- if ($fdbkoptions{$type}) {
- $msgoptions .=
- '
';
- }
- }
- }
- if (keys(%discoptions)) {
- if ($discoptions{'nonanon'}) {
$discussoptions='';
- }
- if ($discoptions{'anon'}) {
- $discussoptions .= '
'.
- ''.&mt('Change Screenname').'';
- }
- if (!$blockblog) {
- $discussoptions.= &add_blog_checkbox($crstype);
+ '';
+ if (&Apache::lonnet::allowed('pac',$env{'request.course.id'}.
+ ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
+ $discussoptions .= '
'.
+ ''.&mt('Change Screenname').'';
+ }
+ my $blockblog = &Apache::loncommon::blocking_status('blogs');
+ if (!$blockblog) {
+ $discussoptions.= &add_blog_checkbox($crstype);
+ }
}
}
if ($msgoptions) {
@@ -3108,17 +3095,9 @@ sub feedback_available {
}
sub send_msg {
- my ($title,$feedurl,$email,$citations,$attachmenturl,$symb,$clientip,%to)=@_;
+ my ($title,$feedurl,$email,$citations,$attachmenturl,$symb,%to)=@_;
my $status='';
my $sendsomething=0;
- my $delay;
- my $senthide;
- my %setters;
- my ($startblock,$endblock,$triggerblock,$by_ip,$blockdom) =
- &Apache::loncommon::blockcheck(\%setters,'com',$clientip);
- if ($by_ip) {
- $senthide = 1;
- }
my $restitle = &get_resource_title($symb,$feedurl);
if ($title=~/^Error/) { $title=&mt('Feedback').': '.$title; }
unless ($title=~/\w/) { $title=&mt('Feedback'); }
@@ -3132,8 +3111,7 @@ sub send_msg {
} else {
unless (&Apache::lonmsg::user_normal_msg($user,$domain,
$title.' ['.$restitle.']',$email,$citations,$feedurl,
- $attachmenturl,undef,undef,$symb,$restitle,undef,
- undef,undef,undef,$senthide)=~/ok/) {
+ $attachmenturl,undef,undef,$symb,$restitle)=~/ok/) {
$status.='
'.&mt('Error sending message to').' '.$key.'
';
} else {
$sendsomething++;
@@ -3141,24 +3119,6 @@ sub send_msg {
}
}
}
- if ($sendsomething && $senthide) {
- if ($by_ip) {
- my $showdom = &Apache::lonnet::domain($blockdom);
- if ($showdom eq '') {
- $showdom = $blockdom;
- }
- $delay = 4;
- $status.='
'.&mt("Message content of feedback you send to instructor(s) from your current IP address: [_1] will be unavailable in your 'Sent' folder.",$clientip).
- '- '.
- &mt('This does not affect delivery of feedback to your instructor(s).').
- '
- '.
- &mt('Note: some types of communication functionality are blocked for certain IP address(es).').
- '
- '.
- &mt('This restriction was set by an administrator in the [_1] LON-CAPA domain.',
- $showdom).
- '
';
- }
- }
# Records of number of feedback messages are kept under the "symb" called "_feedback"
# There are two entries within the framework of a course:
@@ -3176,7 +3136,7 @@ sub send_msg {
}
}
}
- return ($status,$sendsomething,$delay);
+ return ($status,$sendsomething);
}
# Routine to get the complete feedback records
@@ -3600,7 +3560,7 @@ sub modify_attachments {
document.modattachments.action = document.modattachments.origpage.value;
document.modattachments.submit();
}
-
+
END
@@ -3987,9 +3947,8 @@ sub handler {
my $symb=(split(/\:\:\:/,$env{'form.editdisc'}))[0];
my ($map,$id,$url)=&Apache::lonnet::decode_symb($symb);
my $feedurl=&Apache::lonnet::clutter($url);
- &redirect_back($r,$feedurl,&mt('Editing not permitted').'
',
- '0','0','','',$env{'form.previous'},undef,undef,undef,
- undef,undef,undef,$group);
+ &redirect_back($r,$feedurl,&mt('Editing not permitted').'
', '0','0','','',$env{'form.previous'},undef,undef,undef,
+ undef,undef,undef,$group);
return OK;
}
}
@@ -4132,11 +4091,15 @@ sub handler {
'only_body' => 1,
'add_entries' => \%onload});
my $end_page = &Apache::loncommon::end_page();
+ my $windowname = 'loncapaclient';
+ if ($env{'request.lti.login'}) {
+ $windowname .= 'lti';
+ }
$r->print (<
$textline
-
$end_page
@@ -4196,7 +4159,7 @@ ENDREDIR
unless (($seehidden) || (&editing_allowed($env{'form.hide'},$group))) {
&redirect_back($r,$feedurl,&mt('Hiding not permitted').'
',
'0','0','','',$env{'form.previous'},'','','','',
- undef,undef,$group);
+ undef,undef,$group,);
return OK;
}
@@ -4628,12 +4591,6 @@ ENDREDIR
$r->internal_redirect('/adm/ambiguous');
return OK;
}
- if ($feedurl eq '') {
- &Apache::loncommon::content_type($r,'text/html');
- $r->send_http_header;
- &no_redirect_back($r);
- return OK;
- }
# Go ahead with feedback, no ambiguous reference
unless (
(
@@ -4643,12 +4600,14 @@ ENDREDIR
($env{'request.course.id'} && ($feedurl!~m:^/adm:))
||
($env{'request.course.id'} && ($symb=~/^bulletin\_\_\_/))
+ ||
+ (($env{'request.course.id'}) && ($feedurl =~ /ext\.tool$/))
) {
&Apache::loncommon::content_type($r,'text/html');
$r->send_http_header;
# Unable to give feedback
&Apache::lonenc::check_encrypt(\$feedurl);
- &no_redirect_back($r,$feedurl,2);
+ &no_redirect_back($r,$feedurl);
return OK;
}
# --------------------------------------------------- Print login screen header
@@ -4668,7 +4627,7 @@ ENDREDIR
if ($options) {
&mail_screen($r,$feedurl,$options,$symb,$attachmax{'text'});
} else {
- &fail_redirect($r,$feedurl,2);
+ &fail_redirect($r,$feedurl);
}
return OK;
}
@@ -4687,7 +4646,7 @@ ENDREDIR
my $usersymb = &Apache::lonenc::check_encrypt($symb);
my $useranswer=
&Apache::loncommon::get_student_answers(
- $symb,$env{'user.name'},$env{'user.domain'},
+ $usersymb,$env{'user.name'},$env{'user.domain'},
$env{'request.course.id'});
&Apache::lonnet::delenv('allowed.vgr');
# Get attachments, if any, and not too large
@@ -4734,10 +4693,9 @@ ENDREDIR
my ($typestyle,%to) = &Apache::lonmsg::decide_receiver($feedurl);
# Actually send mail
- my $clientip = &Apache::lonnet::get_requestor_ip($r);
- my ($status,$numsent,$delay)=&send_msg(&clear_out_html($env{'form.subject'}),
- $feedurl,$email,$citations,
- $attachmenturl,$usersymb,$clientip,%to);
+ my ($status,$numsent)=&send_msg(&clear_out_html($env{'form.subject'}),
+ $feedurl,$email,$citations,
+ $attachmenturl,$usersymb,%to);
# Discussion? Store that.
my $numpost=0;
@@ -4745,7 +4703,11 @@ ENDREDIR
&& $env{'form.discuss'} !~ /^(?:author|question|course|policy)/)
|| $env{'form.anondiscuss'} ne '') {
my $subject = &clear_out_html($env{'form.subject'});
- my $anonmode=($env{'form.discuss'} eq 'anon' || $env{'form.anondiscuss'} );
+ my $anonmode;
+ if (&Apache::lonnet::allowed('pac',$env{'request.course.id'}.
+ ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
+ $anonmode=($env{'form.discuss'} eq 'anon' || $env{'form.anondiscuss'} );
+ }
$typestyle.=&adddiscuss($symb,$message,$anonmode,$attachmenturl,
$subject,$group);
$numpost++;
@@ -4768,8 +4730,7 @@ ENDREDIR
}
# Receipt screen and redirect back to where came from
- &redirect_back($r,$feedurl,$typestyle,$numsent,$numpost,$blog,$status,$env{'form.previous'},
- undef,undef,undef,undef,undef,undef,$group,$toolarge,$delay);
+ &redirect_back($r,$feedurl,$typestyle,$numsent,$numpost,$blog,$status,$env{'form.previous'},undef,undef,undef,undef,undef,undef,$group,$toolarge);
}
return OK;
}