Annotation of loncom/interface/lonfeedback.pm, revision 1.32

1.1       www         1: # The LearningOnline Network
                      2: # Feedback
                      3: #
1.32    ! albertel    4: # $Id: lonfeedback.pm,v 1.31 2002/09/11 13:36:50 www Exp $
1.19      albertel    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.1       www        28: # (Internal Server Error Handler
                     29: #
                     30: # (Login Screen
                     31: # 5/21/99,5/22,5/25,5/26,5/31,6/2,6/10,7/12,7/14,
                     32: # 1/14/00,5/29,5/30,6/1,6/29,7/1,11/9 Gerd Kortemeyer)
                     33: #
                     34: # 3/1/1 Gerd Kortemeyer)
                     35: #
1.5       www        36: # 3/1,2/3,2/5,2/6,2/8 Gerd Kortemeyer
1.7       albertel   37: # 2/9 Guy Albertelli
1.8       www        38: # 2/10 Gerd Kortemeyer
1.9       albertel   39: # 2/13 Guy Albertelli
1.10      www        40: # 7/25 Gerd Kortemeyer
1.13      www        41: # 7/26 Guy Albertelli
1.21      www        42: # 7/26,8/10,10/1,11/5,11/6,12/27,12/29 Gerd Kortemeyer
1.22      www        43: # YEAR=2002
1.23      www        44: # 1/1,1/16 Gerd Kortemeyer
1.22      www        45: #
1.7       albertel   46: 
1.1       www        47: package Apache::lonfeedback;
                     48: 
                     49: use strict;
                     50: use Apache::Constants qw(:common);
1.3       www        51: use Apache::lonmsg();
1.9       albertel   52: use Apache::loncommon();
1.1       www        53: 
1.6       albertel   54: sub mail_screen {
                     55:   my ($r,$feedurl,$options) = @_;
1.29      www        56:   my $bodytag=&Apache::loncommon::bodytag('Resource Feedback and Discussion',
                     57:                                           '','onLoad="window.focus();"');
1.6       albertel   58:   $r->print(<<ENDDOCUMENT);
1.1       www        59: <html>
                     60: <head>
                     61: <title>The LearningOnline Network with CAPA</title>
1.7       albertel   62: <meta http-equiv="pragma" content="no-cache"></meta>
1.5       www        63: <script>
                     64:     function gosubmit() {
                     65:         var rec=0;
1.12      albertel   66:         if (typeof(document.mailform.elements.author)!="undefined") {
1.5       www        67:           if (document.mailform.elements.author.checked) {
                     68:              rec=1;
                     69:           } 
                     70:         }
1.12      albertel   71:         if (typeof(document.mailform.elements.question)!="undefined") {
1.5       www        72:           if (document.mailform.elements.question.checked) {
                     73:              rec=1;
                     74:           } 
                     75:         }
1.12      albertel   76:         if (typeof(document.mailform.elements.course)!="undefined") {
1.5       www        77:           if (document.mailform.elements.course.checked) {
                     78:              rec=1;
                     79:           } 
                     80:         }
1.12      albertel   81:         if (typeof(document.mailform.elements.policy)!="undefined") {
1.5       www        82:           if (document.mailform.elements.policy.checked) {
                     83:              rec=1;
                     84:           } 
                     85:         }
1.12      albertel   86:         if (typeof(document.mailform.elements.discuss)!="undefined") {
1.10      www        87:           if (document.mailform.elements.discuss.checked) {
                     88:              rec=1;
                     89:           } 
                     90:         }
1.14      www        91:         if (typeof(document.mailform.elements.anondiscuss)!="undefined") {
                     92:           if (document.mailform.elements.anondiscuss.checked) {
                     93:              rec=1;
                     94:           } 
                     95:         }
1.5       www        96: 
                     97:         if (rec) {
                     98: 	    document.mailform.submit();
                     99:         } else {
                    100:             alert('Please check a feedback type.');
                    101: 	}
                    102:     }
                    103: </script>
1.1       www       104: </head>
1.29      www       105: $bodytag
1.2       www       106: <h2><tt>$feedurl</tt></h2>
1.5       www       107: <form action="/adm/feedback" method=post name=mailform>
1.2       www       108: <input type=hidden name=postdata value="$feedurl">
1.5       www       109: Please check at least one of the following feedback types:
1.2       www       110: $options<hr>
                    111: My question/comment/feedback:<p>
1.16      www       112: <textarea name=comment cols=60 rows=10 wrap=hard>
1.2       www       113: </textarea><p>
1.5       www       114: <input type=hidden name=sendit value=1>
                    115: <input type=button value="Send Feedback" onClick='gosubmit();'></input>
1.2       www       116: </form>
1.1       www       117: </body>
                    118: </html>
                    119: ENDDOCUMENT
1.6       albertel  120: }
                    121: 
                    122: sub fail_redirect {
                    123:   my ($r,$feedurl) = @_;
                    124:   $r->print (<<ENDFAILREDIR);
1.5       www       125: <head><title>Feedback not sent</title>
1.7       albertel  126: <meta http-equiv="pragma" content="no-cache"></meta>
1.5       www       127: <meta HTTP-EQUIV="Refresh" CONTENT="2; url=$feedurl">
                    128: </head>
                    129: <html>
                    130: <body bgcolor="#FFFFFF">
1.8       www       131: <img align=right src=/adm/lonIcons/lonlogos.gif>
                    132: <b>Sorry, no recipients  ...</b>
1.5       www       133: </body>
                    134: </html>
                    135: ENDFAILREDIR
                    136: }
1.4       www       137: 
1.6       albertel  138: sub redirect_back {
1.32    ! albertel  139:   my ($r,$feedurl,$typestyle,$sendsomething,$sendposts,$status) = @_;
1.6       albertel  140:   $r->print (<<ENDREDIR);
1.3       www       141: <head>
                    142: <title>Feedback sent</title>
1.7       albertel  143: <meta http-equiv="pragma" content="no-cache"></meta>
1.5       www       144: <meta HTTP-EQUIV="Refresh" CONTENT="2; url=$feedurl">
1.2       www       145: </head>
                    146: <html>
                    147: <body bgcolor="#FFFFFF">
1.8       www       148: <img align=right src=/adm/lonIcons/lonlogos.gif>
1.5       www       149: $typestyle
1.32    ! albertel  150: <b>Sent $sendsomething message(s), and $sendposts post(s).</b>
1.3       www       151: <font color=red>$status</font>
1.2       www       152: </body>
                    153: </html>
                    154: ENDREDIR
                    155: }
1.6       albertel  156: 
                    157: sub no_redirect_back {
                    158:   my ($r,$feedurl) = @_;
                    159:   $r->print (<<ENDNOREDIR);
1.2       www       160: <head><title>Feedback not sent</title>
1.7       albertel  161: <meta http-equiv="pragma" content="no-cache"></meta>
                    162: ENDNOREDIR
                    163: 
1.8       www       164:   if ($feedurl!~/^\/adm\/feedback/) { 
1.7       albertel  165:     $r->print('<meta HTTP-EQUIV="Refresh" CONTENT="2; url='.$feedurl.'">');
                    166:   }
                    167:   
1.8       www       168:   $r->print (<<ENDNOREDIRTWO);
1.2       www       169: </head>
                    170: <html>
                    171: <body bgcolor="#FFFFFF">
1.8       www       172: <img align=right src=/adm/lonIcons/lonlogos.gif>
                    173: <b>Sorry, no feedback possible on this resource  ...</b>
1.2       www       174: </body>
                    175: </html>
1.8       www       176: ENDNOREDIRTWO
1.2       www       177: }
1.6       albertel  178: 
                    179: sub screen_header {
                    180:   my ($feedurl) = @_;
                    181:   my $options='';
                    182:   if (($feedurl=~/^\/res/) && ($feedurl!~/^\/res\/adm/)) {
                    183:     $options= 
                    184:       '<p><input type=checkbox name=author> Feedback to resource author';
                    185:   }
                    186:   if ($ENV{'course.'.$ENV{'request.course.id'}.'.question.email'}) {
                    187:     $options.=
1.8       www       188:     '<br><input type=checkbox name=question> Question about resource content';
1.6       albertel  189:   }
                    190:   if ($ENV{'course.'.$ENV{'request.course.id'}.'.comment.email'}) {
                    191:     $options.=
                    192:       '<br><input type=checkbox name=course> '.
                    193: 	'Question/Comment/Feedback about course content';
                    194:   }
                    195:   if ($ENV{'course.'.$ENV{'request.course.id'}.'.policy.email'}) {
                    196:     $options.=
                    197:       '<br><input type=checkbox name=policy> '.
                    198: 	'Question/Comment/Feedback about course policy';
1.10      www       199:   }
1.20      www       200: 
1.10      www       201:   if ($ENV{'request.course.id'}) {
1.23      www       202:       if (&Apache::lonnet::allowed('pch',
                    203:         $ENV{'request.course.id'}.
                    204:         ($ENV{'request.course.sec'}?'/'.$ENV{'request.course.sec'}:''))) {
1.10      www       205:     $options.='<br><input type=checkbox name=discuss> '.
                    206: 	'<b>Contribution to course discussion of resource</b>';
1.14      www       207:     $options.='<br><input type=checkbox name=anondiscuss> '.
                    208: 	'<b>Anonymous contribution to course discussion of resource</b>'.
                    209:         ' (name only visible to course faculty)';
1.20      www       210:       }
1.14      www       211:   }
1.6       albertel  212:   return $options;
                    213: }
                    214: 
                    215: sub resource_output {
                    216:   my ($feedurl) = @_;
                    217:   my $usersaw=&Apache::lonnet::ssi($feedurl);
                    218:   $usersaw=~s/\<body[^\>]*\>//gi;
                    219:   $usersaw=~s/\<\/body\>//gi;
                    220:   $usersaw=~s/\<html\>//gi;
                    221:   $usersaw=~s/\<\/html\>//gi;
                    222:   $usersaw=~s/\<head\>//gi;
                    223:   $usersaw=~s/\<\/head\>//gi;
                    224:   $usersaw=~s/action\s*\=/would_be_action\=/gi;
                    225:   return $usersaw;
                    226: }
                    227: 
                    228: sub clear_out_html {
                    229:   my $message=$ENV{'form.comment'};
                    230:   $message=~s/\</\&lt\;/g;
                    231:   $message=~s/\>/\&gt\;/g;
                    232:   return $message;
                    233: }
                    234: 
                    235: sub assemble_email {
                    236:   my ($feedurl,$message,$prevattempts,$usersaw)=@_;
                    237:   my $email=<<"ENDEMAIL";
                    238: Refers to <a href="$feedurl">$feedurl</a>
                    239: 
                    240: $message
                    241: ENDEMAIL
                    242:     my $citations=<<"ENDCITE";
                    243: <h2>Previous attempts of student (if applicable)</h2>
                    244: $prevattempts
                    245: <p><hr>
                    246: <h2>Original screen output (if applicable)</h2>
                    247: $usersaw
                    248: ENDCITE
                    249:   return ($email,$citations);
                    250: }
                    251: 
                    252: sub decide_receiver {
                    253:   my ($feedurl) = @_;
                    254:   my $typestyle='';
                    255:   my %to=();
                    256:   if ($ENV{'form.author'}) {
1.8       www       257:     $typestyle.='Submitting as Author Feedback<br>';
1.6       albertel  258:     $feedurl=~/^\/res\/(\w+)\/(\w+)\//;
                    259:     $to{$2.':'.$1}=1;
                    260:   }
                    261:   if ($ENV{'form.question'}) {
1.8       www       262:     $typestyle.='Submitting as Question<br>';
1.24      harris41  263:     foreach (split(/\,/,
                    264: 		   $ENV{'course.'.$ENV{'request.course.id'}.'.question.email'})
                    265: 	     ) {
1.6       albertel  266:       $to{$_}=1;
1.24      harris41  267:     } 
1.6       albertel  268:   }
                    269:   if ($ENV{'form.course'}) {
1.8       www       270:     $typestyle.='Submitting as Comment<br>';
1.24      harris41  271:     foreach (split(/\,/,
                    272: 		   $ENV{'course.'.$ENV{'request.course.id'}.'.comment.email'})
                    273: 	     ) {
1.6       albertel  274:       $to{$_}=1;
1.24      harris41  275:     } 
1.6       albertel  276:   }
                    277:   if ($ENV{'form.policy'}) {
1.8       www       278:     $typestyle.='Submitting as Policy Feedback<br>';
1.24      harris41  279:     foreach (split(/\,/,
                    280: 		   $ENV{'course.'.$ENV{'request.course.id'}.'.policy.email'})
                    281: 	     ) {
1.6       albertel  282:       $to{$_}=1;
1.24      harris41  283:     } 
1.6       albertel  284:   }
                    285:   return ($typestyle,%to);
                    286: }
                    287: 
                    288: sub send_msg {
                    289:   my ($feedurl,$email,$citations,%to)=@_;
                    290:   my $status='';
                    291:   my $sendsomething=0;
1.24      harris41  292:   foreach (keys %to) {
1.6       albertel  293:     if ($_) {
1.22      www       294:       my $declutter=&Apache::lonnet::declutter($feedurl);
1.8       www       295:       unless (&Apache::lonmsg::user_normal_msg(split(/\:/,$_),
1.22      www       296:                'Feedback ['.$declutter.']',$email,$citations) eq 'ok') {
1.6       albertel  297: 	$status.='<br>Error sending message to '.$_.'<br>';
                    298:       } else {
                    299: 	$sendsomething++;
                    300:       }
                    301:     }
1.24      harris41  302:   }
1.18      www       303: 
                    304:     my %record=&Apache::lonnet::restore('_feedback');
                    305:     my ($temp)=keys %record;
                    306:     unless ($temp=~/^error\:/) {
                    307:        my %newrecord=();
                    308:        $newrecord{'resource'}=$feedurl;
                    309:        $newrecord{'subnumber'}=$record{'subnumber'}+1;
                    310:        unless (&Apache::lonnet::cstore(\%newrecord,'_feedback') eq 'ok') {
                    311: 	   $status.='<br>Not registered<br>';
                    312:        }
                    313:     }
                    314:        
1.6       albertel  315:   return ($status,$sendsomething);
                    316: }
                    317: 
1.13      www       318: sub adddiscuss {
1.14      www       319:     my ($symb,$email,$anon)=@_;
1.13      www       320:     my $status='';
1.23      www       321:     if (&Apache::lonnet::allowed('pch',$ENV{'request.course.id'}.
                    322:         ($ENV{'request.course.sec'}?'/'.$ENV{'request.course.sec'}:''))) {
1.20      www       323: 
1.13      www       324:     my %contrib=('message'      => $email,
                    325:                  'sendername'   => $ENV{'user.name'},
1.26      www       326:                  'senderdomain' => $ENV{'user.domain'},
                    327:                  'screenname'   => $ENV{'environment.screenname'},
                    328:                  'plainname'    => $ENV{'environment.firstname'}.' '.
                    329: 		                   $ENV{'environment.middlename'}.' '.
                    330:                                    $ENV{'environment.lastname'}.' '.
                    331:                                    $ENV{'enrironment.generation'});
1.14      www       332:     if ($anon) {
                    333: 	$contrib{'anonymous'}='true';
                    334:     }
1.13      www       335:     if (($symb) && ($email)) {
1.14      www       336:        $status='Adding to class discussion'.($anon?' (anonymous)':'').': '.
1.13      www       337:         &Apache::lonnet::store(\%contrib,$symb,$ENV{'request.course.id'},
                    338:                      $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
1.17      www       339: 		     $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
1.21      www       340:         my %storenewentry=($symb => time);
                    341:         $status.='<br>Updating discussion time: '.
                    342:         &Apache::lonnet::put('discussiontimes',\%storenewentry,
                    343:                      $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
                    344: 		     $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
1.13      www       345:     }
1.17      www       346:     my %record=&Apache::lonnet::restore('_discussion');
                    347:     my ($temp)=keys %record;
                    348:     unless ($temp=~/^error\:/) {
                    349:        my %newrecord=();
                    350:        $newrecord{'resource'}=$symb;
                    351:        $newrecord{'subnumber'}=$record{'subnumber'}+1;
1.21      www       352:        $status.='<br>Registering: '.
                    353:                &Apache::lonnet::cstore(\%newrecord,'_discussion');
1.20      www       354:     }
                    355:     } else {
                    356: 	$status.='Failed.';
1.17      www       357:     }
                    358:     return $status.'<br>';   
1.13      www       359: }
                    360: 
1.6       albertel  361: sub handler {
                    362:   my $r = shift;
1.8       www       363:   if ($r->header_only) {
                    364:      $r->content_type('text/html');
                    365:      $r->send_http_header;
                    366:      return OK;
                    367:   }
1.15      www       368: 
                    369: # --------------------------- Get query string for limited number of parameters
                    370: 
1.27      stredwic  371:    &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
                    372:                                            ['hide','unhide','postdata']);
1.15      www       373: 
                    374:   if (($ENV{'form.hide'}) || ($ENV{'form.unhide'})) {
                    375: # ----------------------------------------------------------------- Hide/unhide
                    376:     $r->content_type('text/html');
                    377:     $r->send_http_header;
                    378: 
                    379:     my $entry=$ENV{'form.hide'}?$ENV{'form.hide'}:$ENV{'form.unhide'};
                    380: 
                    381:     my ($symb,$idx)=split(/\:\:\:/,$entry);
                    382:     my ($map,$ind,$url)=split(/\_\_\_/,$symb);
                    383: 
                    384:     my %contrib=&Apache::lonnet::restore($symb,$ENV{'request.course.id'},
                    385:                      $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
                    386: 		     $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
                    387: 
                    388:         
                    389:     my $currenthidden=$contrib{'hidden'};
                    390:     
                    391:     if ($ENV{'form.hide'}) {
                    392: 	$currenthidden.='.'.$idx.'.';
                    393:     } else {
                    394:         $currenthidden=~s/\.$idx\.//g;
                    395:     }
                    396:     my %newhash=('hidden' => $currenthidden);
                    397: 
                    398:     &Apache::lonnet::store(\%newhash,$symb,$ENV{'request.course.id'},
                    399:                      $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
                    400: 		     $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
                    401: 
1.30      www       402:     &redirect_back($r,&Apache::lonnet::clutter($url),
1.32    ! albertel  403:        'Changed discussion status<p>','0','0');
1.15      www       404:   } else {
                    405: # ------------------------------------------------------------- Normal feedback
1.6       albertel  406:   my $feedurl=$ENV{'form.postdata'};
                    407:   $feedurl=~s/^http\:\/\///;
                    408:   $feedurl=~s/^$ENV{'SERVER_NAME'}//;
                    409:   $feedurl=~s/^$ENV{'HTTP_HOST'}//;
1.8       www       410: 
                    411:   my $symb=&Apache::lonnet::symbread($feedurl);
1.31      www       412:   unless ($symb) {
                    413:       $symb=$ENV{'form.symb'};
                    414:       if ($symb) {
                    415: 	  my ($map,$id,$url)=split(/\_\_\_/,$symb);
                    416:           $feedurl=&Apache::lonnet::clutter($url);
                    417:       }
                    418:   }
1.8       www       419:   my $goahead=1;
                    420:   if ($feedurl=~/\.(problem|exam|quiz|assess|survey|form)$/) {
                    421:       unless ($symb) { $goahead=0; }
                    422:   }
                    423: 
                    424:   if ($goahead) {
                    425: # Go ahead with feedback, no ambiguous reference
                    426:     $r->content_type('text/html');
                    427:     $r->send_http_header;
1.6       albertel  428:   
1.8       www       429:     if (
1.7       albertel  430:       (
                    431:        ($feedurl=~m:^/res:) && ($feedurl!~m:^/res/adm:)
                    432:       ) 
                    433:       || 
                    434:       ($ENV{'request.course.id'} && ($feedurl!~m:^/adm:))
1.31      www       435:       ||
                    436:       ($ENV{'request.course.id'} && ($symb=~/^bulletin\_\_\_/))
1.7       albertel  437:      ) {
1.6       albertel  438: # --------------------------------------------------- Print login screen header
                    439:     unless ($ENV{'form.sendit'}) {
                    440:       my $options=&screen_header($feedurl);
                    441:       if ($options) {
                    442: 	&mail_screen($r,$feedurl,$options);
                    443:       } else {
                    444: 	&fail_redirect($r,$feedurl);
                    445:       }
                    446:     } else {
                    447:       
                    448: # Get previous user input
1.9       albertel  449:       my $prevattempts=&Apache::loncommon::get_previous_attempt(
1.11      albertel  450:             $symb,$ENV{'user.name'},$ENV{'user.domain'},
1.9       albertel  451:             $ENV{'request.course.id'});
1.6       albertel  452: 
                    453: # Get output from resource
                    454:       my $usersaw=&resource_output($feedurl);
                    455: 
                    456: # Filter HTML out of message (could be nasty)
                    457:       my $message=&clear_out_html;
                    458: 
                    459: # Assemble email
1.8       www       460:       my ($email,$citations)=&assemble_email($feedurl,$message,$prevattempts,
                    461:           $usersaw);
1.6       albertel  462: 
                    463: # Who gets this?
                    464:       my ($typestyle,%to) = &decide_receiver($feedurl);
                    465: 
                    466: # Actually send mail
                    467:       my ($status,$numsent)=&send_msg($feedurl,$email,$citations,%to);
1.13      www       468: 
                    469: # Discussion? Store that.
                    470: 
1.32    ! albertel  471:       my $numpost=0;
1.13      www       472:       if ($ENV{'form.discuss'}) {
                    473: 	  $typestyle.=&adddiscuss($symb,$message);
1.32    ! albertel  474: 	  $numpost++;
1.13      www       475:       }
1.6       albertel  476: 
1.14      www       477:       if ($ENV{'form.anondiscuss'}) {
                    478: 	  $typestyle.=&adddiscuss($symb,$message,1);
1.32    ! albertel  479: 	  $numpost++;
1.14      www       480:       }
                    481: 
                    482: 
1.6       albertel  483: # Receipt screen and redirect back to where came from
1.32    ! albertel  484:       &redirect_back($r,$feedurl,$typestyle,$numsent,$numpost,$status);
1.6       albertel  485: 
                    486:     }
1.8       www       487:    } else {
1.7       albertel  488: # Unable to give feedback
1.6       albertel  489:     &no_redirect_back($r,$feedurl);
1.8       www       490:    }
                    491:   } else {
                    492: # Ambiguous Problem Resource
                    493:     $r->internal_redirect('/adm/ambiguous');
1.6       albertel  494:   }
1.15      www       495: }
1.6       albertel  496:   return OK;
1.1       www       497: } 
                    498: 
                    499: 1;
                    500: __END__

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>