File:  [LON-CAPA] / loncom / interface / lonfeedback.pm
Revision 1.350: download - view: text, annotated - select for diffs
Sat Mar 17 04:55:10 2012 UTC (12 years, 2 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- Bug 6087.

    1: # The LearningOnline Network
    2: # Feedback
    3: #
    4: # $Id: lonfeedback.pm,v 1.350 2012/03/17 04:55:10 raeburn Exp $
    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: #
   28: ###
   29: 
   30: package Apache::lonfeedback;
   31: 
   32: use strict;
   33: use Apache::Constants qw(:common);
   34: use Apache::lonmsg();
   35: use Apache::loncommon();
   36: use Apache::lontexconvert();
   37: use Apache::lonlocal; # must not have ()
   38: use Apache::lonnet;
   39: use Apache::lonhtmlcommon();
   40: use Apache::lonnavmaps;
   41: use Apache::lonenc();
   42: use Apache::lonrss();
   43: use HTML::LCParser();
   44: #use HTML::Tidy::libXML;
   45: use Apache::lonspeller();
   46: use Apache::longroup;
   47: use Cwd;
   48: use LONCAPA;
   49: 
   50: sub discussion_open {
   51:     my ($status,$symb)=@_;
   52: # Advanced roles can always discuss
   53:     if ($env{'request.role.adv'}) { return 1; }
   54: # Get discussion closing date
   55:     my $close=&Apache::lonnet::EXT('resource.0.discussend',$symb);
   56: # If it is defined and in the future, the instructor wants this discussion to be open
   57:     if (defined($close) && $close ne '' && $close > time) {
   58:         return 1;
   59:     }
   60: # It was not explicitly open, check if the problem is available.
   61: # If the problem is not available, close the discussion 
   62:     if (defined($status) &&
   63: 	!($status eq 'CAN_ANSWER' || $status eq 'CANNOT_ANSWER'
   64: 	  || $status eq 'OPEN')) {
   65: 	return 0;
   66:     }
   67: # The problem is available, but check if the instructor explictly closed discussion
   68:     if (defined($close) && $close ne '' && $close < time) {
   69: 	return 0;
   70:     }
   71:     return 1;
   72: }
   73: 
   74: sub discussion_visible {
   75:     my ($status)=@_;
   76:     if (not &discussion_open($status)) {
   77: 	my $hidden=&Apache::lonnet::EXT('resource.0.discusshide');
   78: 	if (lc($hidden) eq 'yes' or $hidden eq '' or !defined($hidden))  {
   79: 	    if (!$env{'request.role.adv'}) { return 0; }
   80: 	}
   81:     }
   82:     return 1;
   83: }
   84: 
   85: sub discussion_vote_available {
   86:     my ($status,$symb)=@_;
   87:     my $canvote=&Apache::lonnet::EXT('resource.0.discussvote',$symb);
   88:     if ((lc($canvote) eq 'yes') || 
   89:         ((lc($canvote) eq 'notended') && (&discussion_open($status,$symb)))) {
   90:         return 1;
   91:     }
   92: }
   93: 
   94: sub get_realsymb {
   95:     my ($symb) = @_;
   96:     my $realsymb = $symb;
   97:     if ($symb=~/^bulletin___/) {
   98:         my $filename=(&Apache::lonnet::decode_symb($symb))[2];
   99:         $filename=~s{^adm/wrapper/}{};
  100:         $realsymb=&Apache::lonnet::symbread($filename);
  101:     }
  102:     return $realsymb;
  103: }
  104: 
  105: sub list_discussion {
  106:     my ($mode,$status,$ressymb,$imsextras,$group)=@_;
  107:     unless ($ressymb) { $ressymb=&Apache::lonnet::symbread(); }
  108:     unless ($ressymb) { return ''; }
  109:     $ressymb=&wrap_symb($ressymb);
  110:     my $outputtarget=$env{'form.grade_target'};
  111:     if (defined($env{'form.export'})) {
  112: 	if($env{'form.export'}) {
  113:             $outputtarget = 'export';
  114:         }
  115:     }
  116:     if (defined($imsextras)) {
  117:         if ($$imsextras{'caller'} eq 'imsexport') {
  118:             $outputtarget = 'export';
  119:         }
  120:     }
  121:     if (not &discussion_visible($status)) {
  122:         if ($mode ne 'board') {
  123:             &Apache::lonenc::check_encrypt(\$ressymb); 
  124:             return '<br /><div class="LC_feedback_link">'.&send_message_link($ressymb)."</div>";
  125:         }
  126:     }
  127:     if ($group ne '' && $mode eq 'board') {
  128:         if (&check_group_priv($group,'vgb') ne 'ok') {
  129:             return '';
  130:         }
  131:     }
  132: 
  133:     my ($blocked,$blocktext) = 
  134:         &Apache::loncommon::blocking_status('boards');
  135:     if ($blocked) {
  136:         $blocktext = '<br /><div class="LC_feedback_link"><span class="LC_feedback_link">'.$blocktext."</span>";
  137:         &Apache::lonenc::check_encrypt(\$ressymb);
  138:         if ($mode ne 'board') {
  139:             $blocktext.=&send_message_link($ressymb).'</div>';
  140:         }else{
  141:             $blocktext.="</div>";
  142:         }
  143:         return $blocktext; 
  144:     }
  145: 
  146:     my @bgcols = ("LC_disc_old_item","LC_disc_new_item");
  147:     my $discussiononly=0;
  148:     if ($mode eq 'board') { $discussiononly=1; }
  149:     unless ($env{'request.course.id'}) { return ''; }
  150:     my $crs='/'.$env{'request.course.id'};
  151:     my $cid=$env{'request.course.id'};
  152:     if ($env{'request.course.sec'}) {
  153: 	$crs.='_'.$env{'request.course.sec'};
  154:     }
  155:     $crs=~s/\_/\//g;
  156:     my $encsymb=&Apache::lonenc::check_encrypt($ressymb);
  157:     my $viewgrades=(&Apache::lonnet::allowed('vgr',$crs)
  158: 		  && ($ressymb=~/$LONCAPA::assess_re/));
  159:     
  160:     my %usernamesort = ();
  161:     my %namesort =();
  162:     my %subjectsort = ();
  163: 
  164: # Get discussion display settings for this discussion
  165:     my $lastkey = $ressymb.'_lastread';
  166:     my $showkey = $ressymb.'_showonlyunread';
  167:     my $markkey = $ressymb.'_showonlyunmark',
  168:     my $visitkey = $ressymb.'_visit';
  169:     my $ondispkey = $ressymb.'_markondisp';
  170:     my $userpickkey = $ressymb.'_userpick';
  171:     my $toggkey = $ressymb.'_readtoggle';
  172:     my $readkey = $ressymb.'_read';
  173:     $ressymb=$encsymb;
  174:     my %dischash = &Apache::lonnet::get('nohist_'.$cid.'_discuss',[$lastkey,$showkey,$markkey,$visitkey,$ondispkey,$userpickkey,$toggkey,$readkey],$env{'user.domain'},$env{'user.name'});
  175:     my %discinfo = ();
  176:     my $showonlyunread = 0;
  177:     my $showunmark = 0; 
  178:     my $markondisp = 0;
  179:     my $prevread = 0;
  180:     my $previous = 0;
  181:     my $visit = 0;
  182:     my $newpostsflag = 0;
  183:     my @posters = split(/\&/,$dischash{$userpickkey});
  184: 
  185: # Retain identification of "NEW" posts identified in last display, if continuing 'previous' browsing of posts.
  186:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['previous','sortposts','rolefilter','statusfilter','sectionpick','grouppick','totposters']);
  187:     my $sortposts = $env{'form.sortposts'};
  188:     my $statusfilter = $env{'form.statusfilter'};
  189:     my @sectionpick = split(/,/,$env{'form.sectionpick'});
  190:     my @grouppick   = split(/,/,$env{'form.grouppick'});
  191:     my @rolefilter  = split(/,/,$env{'form.rolefilter'});
  192: 
  193:     my $totposters = $env{'form.totposters'};
  194:     $previous = $env{'form.previous'};
  195:     if ($previous > 0) {
  196:         $prevread = $previous;
  197:     } elsif (defined($dischash{$lastkey})) {
  198:         unless ($dischash{$lastkey} eq '') {
  199:             $prevread = $dischash{$lastkey};
  200:         }
  201:     }
  202: 
  203:     my $cdom = $env{'course.'.$cid.'.domain'};
  204:     my $cnum = $env{'course.'.$cid.'.num'};
  205:     my $crstype = &Apache::loncommon::course_type();
  206: 
  207: # Get information about students and non-students in course for filtering display of posts
  208:     my %roleshash = ();
  209:     my %roleinfo = ();
  210:     my ($classgroups,$studentgroups);
  211:     if ($env{'form.rolefilter'}) {
  212:         %roleshash = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
  213:         foreach my $rolekey (keys(%roleshash)) {
  214:             my ($role,$uname,$udom,$sec) = split(/:/,$rolekey);
  215:             if ($role =~ /^cr/) {
  216:                 $role = 'cr';
  217:             }
  218:             my ($end,$start) = split(/:/,$roleshash{$rolekey});
  219:             my $now = time;
  220:             my $status = 'Active';
  221:             if (($now < $start) || ($end > 0 && $now > $end)) {
  222:                 $status = 'Expired';
  223:             }
  224:             if ($uname && $udom) { 
  225:                 push(@{$roleinfo{$uname.':'.$udom}}, $role.':'.$sec.':'.$status);
  226:             }
  227:         }
  228:         my ($classlist,$keylist) =
  229:                          &Apache::loncoursedata::get_classlist($cdom,$cnum);
  230:         my $sec_index = &Apache::loncoursedata::CL_SECTION();
  231:         my $status_index = &Apache::loncoursedata::CL_STATUS();
  232:         while (my ($student,$data) = each %$classlist) {
  233:             my ($section,$status) = ($data->[$sec_index],
  234:                                  $data->[$status_index]);
  235:             push(@{$roleinfo{$student}}, 'st:'.$section.':'.$status);
  236:         }
  237: 	($classgroups,$studentgroups) = 
  238: 	    &Apache::loncoursedata::get_group_memberships($classlist,$keylist,
  239: 							  $cdom,$cnum);
  240:     }
  241: 
  242: # Get discussion display default settings for user
  243:     if ($env{'environment.discdisplay'} eq 'unread') {
  244:         $showonlyunread = 1;
  245:     }
  246:     if ($env{'environment.discmarkread'} eq 'ondisp') {
  247:         $markondisp = 1;
  248:     }
  249: 
  250: # Override user's default if user specified display setting for this discussion
  251:     if (defined($dischash{$ondispkey})) {
  252:         unless ($dischash{$ondispkey} eq '') {
  253:             $markondisp = $dischash{$ondispkey};
  254:         }
  255:     }
  256:     if ($markondisp) {
  257:         $discinfo{$lastkey} = time;
  258:     }
  259: 
  260:     if (defined($dischash{$showkey})) {
  261:         unless ($dischash{$showkey} eq '') {
  262:             $showonlyunread = $dischash{$showkey};
  263:         }
  264:     }
  265: 
  266:     if (defined($dischash{$markkey})) {
  267:         unless ($dischash{$markkey} eq '') {
  268:             $showunmark = $dischash{$markkey};
  269:         }
  270:     }
  271: 
  272:     if (defined($dischash{$visitkey})) {
  273:         unless ($dischash{$visitkey} eq '') {
  274:             $visit = $dischash{$visitkey};
  275:         }
  276:     }
  277:     $visit ++;
  278: 
  279:     my $seeid;
  280:     if (&Apache::lonnet::allowed('rin',$env{'request.course.id'}.($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
  281:         $seeid = 1;
  282:     }
  283:     my $seehidden = &can_see_hidden($mode,$ressymb,undef,$group,$cdom,$cnum,$crs);
  284: 
  285: # Is voting on discussions available
  286:     my $realsymb = &get_realsymb($ressymb);
  287:     my $canvote = &discussion_vote_available($status,$realsymb);
  288: 
  289:     my @discussionitems=();
  290:     my %shown = ();
  291:     my @posteridentity=();
  292: 
  293:     my $current=0;
  294:     my $visible=0;
  295:     my @depth=();
  296:     my @replies = ();
  297:     my %alldiscussion=();
  298:     my %imsitems=();
  299:     my %imsfiles=();
  300:     my %notshown = ();
  301:     my %newitem = ();
  302:     my $maxdepth=0;
  303:     my %anonhash=();
  304:     my $anoncnt=0;
  305: 
  306:     my $now = time;
  307:     $discinfo{$visitkey} = $visit;
  308: 
  309:     &Apache::lonnet::put('nohist_'.$cid.'_discuss',\%discinfo,$env{'user.domain'},$env{'user.name'});
  310:     &build_posting_display(\%usernamesort,\%subjectsort,\%namesort,\%notshown,\%newitem,\%dischash,\%shown,\%alldiscussion,\%imsitems,\%imsfiles,\%roleinfo,\@discussionitems,\@replies,\@depth,\@posters,\$maxdepth,\$visible,\$newpostsflag,\$current,$status,$viewgrades,$seeid,$seehidden,$canvote,$prevread,$sortposts,$encsymb,$readkey,$showunmark,$showonlyunread,$totposters,\@rolefilter,\@sectionpick,\@grouppick,$classgroups,$statusfilter,$toggkey,$outputtarget,\%anonhash,$anoncnt,$group);
  311: 
  312:     my $discussion='';
  313:     my $manifestfile;
  314:     my $manifestok=0;
  315:     my $tempexport;
  316:     my $imsresources;
  317:     my $copyresult;
  318: 
  319:     my $function = &Apache::loncommon::get_users_function();
  320:     my %lt = &Apache::lonlocal::texthash(
  321:         'cuse' => 'My settings for this discussion',
  322:         'allposts' => 'All posts',
  323:         'unread' => 'New posts only',
  324:         'unmark' => 'Unread only',
  325:         'ondisp' => 'Once displayed',
  326:         'onmark' => 'Once marked not NEW',
  327:         'toggoff' => 'Off',
  328:         'toggon' => 'On',
  329:         'disa' => 'Posts to be displayed',
  330:         'npce' => 'Posts cease to be marked "NEW"',
  331:         'epcb' => 'Each post can be toggled read/unread', 
  332:         'chgt' => 'Change',
  333:         'disp' => 'Display',
  334:         'nolo' => 'Not new',
  335:         'togg' => 'Toggle read/unread',
  336:         'aner' => 'An error occurred opening the manifest file.',
  337:         'difo' => 'Discussion for',
  338:         'aerr' => 'An error occurred opening the export file for posting',
  339:         'aysu' => 'Are you sure you want to delete this post?',
  340:         'dpwn' => 'Deleted posts will no longer be visible to you and other students',
  341:         'bwco' => 'but will continue to be visible to your instructor',
  342:         'depo' => 'Deleted posts will no longer be visible to you or anyone else.',
  343:         'discussions' => 'DISCUSSIONS'
  344:     );
  345: 
  346:     my $currdisp = $lt{'allposts'};
  347:     my $currmark = $lt{'onmark'};
  348:     my $currtogg = $lt{'toggoff'};
  349:     my $dispchange = $lt{'unread'};
  350:     my $markchange = $lt{'ondisp'};
  351:     my $toggchange = $lt{'toggon'};
  352:     my $chglink = '/adm/feedback?modifydisp='.$ressymb;
  353:     my $displinkA = 'onlyunread';
  354:     my $displinkB = 'onlyunmark';
  355:     my $marklink = 'markondisp';
  356:     my $togglink = 'toggon';
  357: 
  358:     if ($markondisp) {
  359:         $currmark = $lt{'ondisp'};
  360:         $markchange = $lt{'onmark'};
  361:         $marklink = 'markonread';
  362:     }
  363: 
  364:     if ($showonlyunread) {
  365:         $currdisp = $lt{'unread'};
  366:         $dispchange = $lt{'allposts'};
  367:         $displinkA = 'allposts';
  368:     }
  369: 
  370:     if ($showunmark) {
  371:         $currdisp = $lt{'unmark'};
  372:         $dispchange = $lt{'unmark'};
  373:         $displinkA='allposts';
  374:         $displinkB='onlyunread';
  375:         $showonlyunread = 0;
  376:     }
  377: 
  378:     if ($dischash{$toggkey}) {
  379:         $currtogg = $lt{'toggon'};
  380:         $toggchange = $lt{'toggoff'};
  381:         $togglink = 'toggoff';
  382:     } 
  383:    
  384:     $chglink .= '&amp;changes='.$displinkA.'_'.$displinkB.'_'.$marklink.'_'.$togglink;
  385: 
  386:     if ($newpostsflag) {
  387:         $chglink .= '&amp;previous='.$prevread;
  388:     }
  389:     $chglink.=&group_args($group);
  390: 
  391:     if ($visible) {
  392: # Print the discusssion
  393:         if ($outputtarget eq 'tex') {
  394:             $discussion.='<tex>{\tiny \vskip 0 mm\noindent\makebox[2 cm][b]{\hrulefill}'.
  395:                          '\textbf{'.$lt{'discussions'}.'}\makebox[2 cm][b]{\hrulefill}\vskip 0 mm'.
  396:                          '\noindent\textbf{'.$lt{'disa'}.'}: \textit{'.$currdisp.'}\vskip 0 mm'.
  397:                          '\noindent\textbf{'.$lt{'npce'}.'}: \textit{'.$currmark.'}}</tex>';
  398:         } elsif ($outputtarget eq 'export') {
  399: # Create temporary directory if this is an export
  400:             my $now = time;
  401:             if ((defined($imsextras)) && ($$imsextras{'caller'} eq 'imsexport')) {
  402:                 $tempexport = $$imsextras{'tempexport'};
  403:                 if (!-e $tempexport) {
  404:                     mkdir($tempexport,0700);
  405:                 }
  406:                 $tempexport .= '/'.$$imsextras{'count'};
  407:                 if (!-e $tempexport) {
  408:                     mkdir($tempexport,0700);
  409:                 }
  410:             } else {
  411:                 $tempexport = $Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/ims_exports';
  412:                 if (!-e $tempexport) {
  413:                     mkdir($tempexport,0700);
  414:                 }
  415:                 $tempexport .= '/'.$now;
  416:                 if (!-e $tempexport) {
  417:                     mkdir($tempexport,0700);
  418:                 }
  419:                 $tempexport .= '/'.$env{'user.domain'}.'_'.$env{'user.name'};
  420:             }
  421:             if (!-e $tempexport) {
  422:                 mkdir($tempexport,0700);
  423:             }
  424: # open manifest file
  425:             my $manifest = '/imsmanifest.xml';
  426:             my $manifestfilename = $tempexport.$manifest;
  427:             if ($manifestfile = Apache::File->new('>'.$manifestfilename)) {
  428:                 $manifestok=1;
  429:                 print $manifestfile qq|<?xml version="1.0" encoding="UTF-8"?>
  430: <manifest xmlns="http://www.imsglobal.org/xsd/imscp_v1p1" xmlns:imsmd="http://www.imsglobal.org/xsd/imsmd_v1p2" 
  431: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  432: identifier="MANIFEST-$ressymb" xsi:schemaLocation="http://www.imsglobal.org/xsd/imscp_v1p1 
  433: imscp_v1p1.xsd http://www.imsglobal.org/xsd/imsmd_v1p2 imsmd_v1p2p2.xsd">
  434:   <organizations default="$ressymb">
  435:     <organization identifier="$ressymb">
  436:       <title>$lt{'difo'} $ressymb</title>\n|;
  437:             } else {
  438:                 $discussion .= $lt{'aner'}.'<br />';
  439:             }
  440: 	} else {
  441:             my $colspan=$maxdepth+1;
  442:             $discussion.= &Apache::lonhtmlcommon::scripttag(qq|
  443:    function verifydelete (caller,symb,idx,newflag,previous,groupparm) {
  444:        var symbparm = symb+':::'+idx
  445:        var prevparm = ""
  446:        if (newflag == 1) {
  447:            prevparm = "&amp;previous="+previous
  448:        }
  449:        if (caller == 'studentdelete') {
  450:            if (confirm("$lt{'aysu'}\\n$lt{'dpwn'},\\n$lt{'bwco'}")) {
  451:                document.location.href = "/adm/feedback?hide="+symbparm+prevparm+groupparm
  452:            }
  453:        } else {
  454:            if (caller == 'seeiddelete') {
  455:                if (confirm("$lt{'aysu'}\\n$lt{'depo'}")) {
  456:                    document.location.href = "/adm/feedback?deldisc="+symbparm+prevparm+groupparm
  457:                }
  458:            }
  459:        }
  460:    }
  461:             |);
  462: 	    $discussion.='<form name="readchoices" method="post" action="/adm/feedback?chgreads='.$ressymb.'" >'.
  463:                          "\n".'<table width="100%" class="LC_discussion">';
  464:             $discussion .= &action_links_bar($colspan,$ressymb,$visible,
  465:                                              $newpostsflag,$group,
  466:                                              $prevread,$markondisp,$seehidden);
  467:             my $escsymb=&escape($ressymb);
  468:             my $numhidden = keys(%notshown);
  469:             if ($numhidden > 0) {
  470:                 my $colspan = $maxdepth+1;
  471:                 $discussion.="\n".'<tr><td bgcolor="#CCCCCC" colspan="'.$colspan.'">'.
  472:                          '<a href="/adm/feedback?allposts=1&amp;symb='.$escsymb;
  473:                 if ($newpostsflag) {
  474:                     $discussion .= '&amp;previous='.$prevread;
  475:                 }
  476: 		$discussion .= &group_args($group);
  477:                 $discussion .= '">'.&mt('Show all posts').'</a> '.&mt('to display').' '.
  478:                          $numhidden.' ';
  479:                 if ($showunmark) {
  480:                     $discussion .= &mt('posts previously marked read');
  481:                 } else {
  482:                     $discussion .= &mt('previously viewed posts');
  483:                 }
  484:                 $discussion .= '<br/></td></tr>';
  485:             }
  486:         }
  487: 
  488: # Choose sort mechanism
  489:         my @showposts = ();
  490:         if ($sortposts eq 'descdate') {
  491:             @showposts = (sort { $b <=> $a } keys(%alldiscussion));
  492:         } elsif ($sortposts eq 'thread') {
  493:             @showposts = (sort { $a <=> $b } keys(%alldiscussion));
  494:         } elsif ($sortposts eq 'subject') {
  495:             foreach my $key (sort(keys(%subjectsort))) {
  496:                 push(@showposts, @{$subjectsort{$key}});
  497:             }
  498:         } elsif ($sortposts eq 'username') {
  499:             foreach my $domain (sort(keys(%usernamesort))) {
  500:                 foreach my $key (sort(keys(%{$usernamesort{$domain}}))) {
  501:                     push(@showposts, @{$usernamesort{$domain}{$key}});
  502:                 }
  503:             }
  504:         } elsif ($sortposts eq 'lastfirst') {
  505:             foreach my $last (sort(keys(%namesort))) {
  506:                  foreach my $key (sort(keys(%{$namesort{$last}}))) {
  507:                      push(@showposts, @{$namesort{$last}{$key}});
  508:                  }
  509:             }
  510:         } else {
  511:             @showposts =  (sort { $a <=> $b } keys(%alldiscussion));
  512:         }
  513:         my $currdepth = 0;
  514:         my $firstidx = $alldiscussion{$showposts[0]};
  515:         foreach my $post (@showposts) {
  516:             unless (($sortposts eq 'thread') || 
  517:                     (($sortposts eq '') && (!$env{'environment.unthreadeddiscussion'})) || 
  518:                     ($outputtarget eq 'export')) {
  519:                 $alldiscussion{$post} = $post;
  520:             }
  521:             unless ( ($notshown{$alldiscussion{$post}} eq '1') || ($shown{$alldiscussion{$post}} == 0) ) {
  522:                 if ($outputtarget ne 'tex' && $outputtarget ne 'export') {
  523: 		    $discussion.="\n<tr>";
  524: 		}
  525: 	        my $thisdepth=$depth[$alldiscussion{$post}];
  526:                 if ($outputtarget ne 'tex' && $outputtarget ne 'export') {
  527: 		    for (1..$thisdepth) {
  528: 			$discussion.='<td>&nbsp;&nbsp;&nbsp;&nbsp;</td>';
  529: 		    }
  530: 		}
  531: 	        my $colspan=$maxdepth-$thisdepth+1;
  532:                 if ($outputtarget eq 'tex') {
  533: 		    #cleanup block
  534: 		    $discussionitems[$alldiscussion{$post}]=~s/<table([^>]*)>/<table TeXwidth="90 mm">/;
  535: 		    $discussionitems[$alldiscussion{$post}]=~s/<tr([^>]*)><td([^>]*)>/<tr><td TeXwidth="20 mm" align="left">/;
  536:                     my $threadinsert='';
  537:                     if ($thisdepth > 0) {
  538: 			$threadinsert='<br /><strong>Reply: '.$thisdepth.'</strong>';
  539: 		    }
  540: 		    $discussionitems[$alldiscussion{$post}]=~s/<\/td><td([^>]*)>/$threadinsert<\/td><td TeXwidth="65 mm" align="left">/;
  541:                     $discussionitems[$alldiscussion{$post}]=~s/(<b>|<\/b>|<\/a>|<a([^>]+)>)//g;
  542: 
  543: 		    $discussionitems[$alldiscussion{$post}]='<tex>\vskip 0 mm\noindent\makebox[2 cm][b]{\hrulefill}</tex>'.$discussionitems[$alldiscussion{$post}];
  544: 		    $discussion.=$discussionitems[$alldiscussion{$post}];
  545: 		} elsif ($outputtarget eq 'export') {
  546:                     my $postfilename = $alldiscussion{$post}.'-'.$imsitems{$alldiscussion{$post}}{'timestamp'}.'.html';
  547:                     if ($manifestok) {
  548:                         if (($depth[$alldiscussion{$post}] <= $currdepth) && ($alldiscussion{$post} != $firstidx)) {
  549:                             print $manifestfile '  </item>'."\n";
  550:                         }
  551:                         $currdepth = $depth[$alldiscussion{$post}];
  552:                         print $manifestfile "\n". 
  553:       '<item identifier="ITEM-'.$ressymb.'-'.$alldiscussion{$post}.'" isvisible="'.
  554:         $imsitems{$alldiscussion{$post}}{'isvisible'}.'" identifieref="RES-'.$ressymb.'-'.$alldiscussion{$post}.'">'.
  555:         '<title>'.$imsitems{$alldiscussion{$post}}{'title'}.'</title></item>';
  556:                         $imsresources .= "\n".
  557:     '<resource identifier="RES-'.$ressymb.'-'.$alldiscussion{$post}.'" type="webcontent" href="'.$postfilename.'">'."\n".
  558:       '<file href="'.$postfilename.'">'."\n".
  559:       $imsfiles{$alldiscussion{$post}}{$imsitems{$alldiscussion{$post}}{'currversion'}}.'</file>'."\n".
  560:     '</resource>';
  561:                     }
  562:                     my $postingfile;
  563:                     my $postingfilename = $tempexport.'/'.$postfilename;
  564:                     if ($postingfile = Apache::File->new('>'.$postingfilename)) {
  565:                         print $postingfile '<html><head><title>Discussion Post</title></head><body>'.
  566:                                            $imsitems{$alldiscussion{$post}}{'title'}.' '.
  567:                                            $imsitems{$alldiscussion{$post}}{'sender'}.
  568:                                            $imsitems{$alldiscussion{$post}}{'timestamp'}.'<br /><br />'.
  569:                                            $imsitems{$alldiscussion{$post}}{'message'}.'<br />'.
  570:                                            $imsitems{$alldiscussion{$post}}{'attach'}.'</body></html>'."\n"; 
  571:                         close($postingfile);
  572:                     } else {
  573:                         $discussion .= $lt{'aerr'}.' '.$alldiscussion{$post}.'<br />';
  574:                     }
  575:                     $copyresult.=&replicate_attachments($imsitems{$alldiscussion{$post}}{'allattachments'},$tempexport);
  576:                 } else {
  577:                     $discussion.='<td class="'.$bgcols[$newitem{$alldiscussion{$post}}].
  578:                        '" colspan="'.$colspan.'">'. $discussionitems[$alldiscussion{$post}].
  579:                        '</td></tr>';
  580:                 }
  581: 	    }
  582:         }
  583: 	unless ($outputtarget eq 'tex' || $outputtarget eq 'export') {
  584:             my $colspan=$maxdepth+1;
  585:             $discussion .= <<END;
  586:             <tr>
  587:              <td colspan="$colspan">
  588:               <table width="100%">
  589:                <tr>
  590:                 <td class="LC_disc_action_left">
  591:                     <font size="-1"><b>$lt{'cuse'}</b>:&nbsp;
  592: END
  593:             if ($newpostsflag) {
  594:                 $discussion .= 
  595:                    '1.&nbsp;'.$lt{'disp'}.'&nbsp;-&nbsp;<i>'.$currdisp.'</i>&nbsp;&nbsp;2.&nbsp;'.$lt{'nolo'}.'&nbsp;-&nbsp;<i>'.$currmark.'</i>';
  596:                 if ($dischash{$toggkey}) {
  597:                    $discussion .= '&nbsp;&nbsp;3.&nbsp;'.$lt{'togg'}.'&nbsp;-&nbsp;<i>'.$currtogg.'</i>';
  598:                 }
  599:             } else {
  600:                 if ($dischash{$toggkey}) {
  601:                    $discussion .= '1.&nbsp;'.$lt{'disp'}.'&nbsp;-&nbsp;<i>'.$currdisp.'</i>&nbsp;2.&nbsp;'.$lt{'togg'}.'&nbsp;-&nbsp;<i>'.$currtogg.'</i>';
  602:                 } else {
  603:                     $discussion .=
  604:                          $lt{'disp'}.'&nbsp;-&nbsp;<i>'.$currdisp.'</i>';
  605:                 }
  606:             }
  607:             $discussion .= <<END;
  608:                    &nbsp;&nbsp;<b><a href="$chglink">$lt{'chgt'}</a></b></font>
  609:                 </td>
  610: END
  611:             if ($sortposts) {
  612:                 my %sort_types = ();
  613:                 my %role_types = ();
  614:                 my %status_types = ();
  615:                 &sort_filter_names(\%sort_types,\%role_types,\%status_types,$crstype);
  616: 
  617:                 $discussion .= '<td class="LC_disc_action_right"><font size="-1"><b>'.&mt('Sorted by').'</b>: '.$sort_types{$sortposts}.'<br />';
  618:                 if (defined($env{'form.totposters'})) {
  619:                     $discussion .= &mt('Posts by').':';
  620:                     if ($totposters > 0) {
  621:                         foreach my $poster (@posters) {
  622:                             $discussion .= ' '.$poster.',';
  623:                         }
  624:                         $discussion =~ s/,$//;
  625:                     } else {
  626:                         $discussion .= &mt('None selected');
  627:                     }
  628:                 } else {
  629:                     my $filterchoice ='';
  630:                     if (@sectionpick > 0) {
  631:                         $filterchoice = '<i>'.&mt('sections').'</i>-&nbsp;'.$env{'form.sectionpick'};
  632:                         $filterchoice .= '&nbsp;&nbsp;&nbsp; ';
  633:                     }
  634:                     if (@grouppick > 0) {
  635:                         $filterchoice = '<i>'.&mt('groups').'</i>-&nbsp;'.$env{'form.grouppick'};
  636:                         $filterchoice .= '&nbsp;&nbsp;&nbsp; ';
  637:                     }
  638:                     if (@rolefilter > 0) {
  639:                         $filterchoice .= '<i>'.&mt('roles').'</i>-';
  640:                         foreach my $role (@rolefilter) {
  641:                             $filterchoice .= '&nbsp;'.$role_types{$role}.',';
  642:                         }
  643:                         $filterchoice =~ s/,$//;
  644:                         $filterchoice .= '<br />'.('&nbsp;' x8);
  645:                     }
  646:                     if ($statusfilter) {
  647:                         $filterchoice .= '<i>'.&mt('status').'</i>-&nbsp;'.$status_types{$statusfilter};
  648:                     }
  649:                     if ($filterchoice) {
  650:                         $discussion .= '<b>'.&mt('Filters').'</b>:&nbsp;'.$filterchoice;
  651:                     }
  652:                 }
  653:                 $discussion .= '</font></td>';
  654: 
  655:             }
  656:             if ($dischash{$toggkey}) {
  657:                 my $storebutton = &mt('Save read/unread changes');
  658:                 $discussion.='<td align="right">'.
  659:               '<input type="hidden" name="discsymb" value="'.$ressymb.'" />'."\n".
  660:               '<input type="button" name="readoptions" value="'.$storebutton.'"'.
  661:               ' onclick="this.form.submit();" />'."\n".
  662:               '</td>';
  663:             }
  664:             $discussion .= (<<END);
  665:                </tr>
  666:               </table>
  667:              </td>
  668:             </tr>
  669: END
  670:             $discussion .= &action_links_bar($colspan,$ressymb,$visible,
  671:                                              $newpostsflag,$group,
  672:                                              $prevread,$markondisp,$seehidden);
  673:             $discussion .= "</table></form>\n";
  674:         } 
  675:         if ($outputtarget eq 'export') {
  676:             if ($manifestok) {
  677:                 while ($currdepth > 0) {
  678:                     print $manifestfile "    </item>\n";
  679:                     $currdepth --;
  680:                 }
  681:                 print $manifestfile qq|
  682:     </organization>
  683:   </organizations>
  684:   <resources>
  685:     $imsresources
  686:   </resources>
  687: </manifest>
  688:                 |;
  689:                 close($manifestfile);
  690:                 if ((defined($imsextras)) && ($$imsextras{'caller'} eq 'imsexport')) {
  691:                     $discussion = $copyresult;
  692:                 } else {
  693: 
  694: #Create zip file in prtspool
  695: 
  696:                     my $imszipfile = '/prtspool/'.
  697:                     $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
  698:                          time.'_'.rand(1000000000).'.zip';
  699:                     my $cwd = &getcwd(); 
  700:                     my $imszip = '/home/httpd/'.$imszipfile;
  701:                     chdir $tempexport;
  702:                     open(OUTPUT, "zip -r $imszip *  2> /dev/null |");
  703:                     close(OUTPUT);
  704:                     chdir $cwd;
  705:                     $discussion .= &mt('Download the zip file from [_1]Discussion Posting Archive','<a href="'.$imszipfile.'">').'</a><br />';
  706:                     if ($copyresult) {
  707:                         $discussion .= &mt('The following errors occurred during export').' - <br />'.$copyresult;
  708:                     }
  709:                 }
  710:             } else {
  711:                 $discussion .= '<br />'.&mt('Unfortunately you will not be able to retrieve an archive of the discussion posts at this time, because there was a problem creating a manifest file.').'<br />';
  712:             }
  713:             return $discussion;
  714:         }
  715:     }
  716:     if ($discussiononly) {
  717:         my $now = time;
  718:         my $attachnum = 0;
  719:         my $currnewattach = [];
  720:         my $currdelold = [];
  721:         my $comment = '';
  722:         my $subject = '';
  723:         if ($env{'form.origpage'}) {
  724:             &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['addnewattach','deloldattach','delnewattach','timestamp','idx','subject','comment']);
  725:             $subject = &unescape($env{'form.subject'});
  726:             $comment = &unescape($env{'form.comment'});
  727:             my @keepold = ();
  728:             &process_attachments($currnewattach,$currdelold,\@keepold);
  729:             if (@{$currnewattach} > 0) {
  730:                 $attachnum += @{$currnewattach};
  731:             }
  732:         }
  733: 	if ((&discussion_open($status)) && ($outputtarget ne 'tex')) {
  734:             if (($group ne '') && ($mode eq 'board')) {  
  735:                 if ((&check_group_priv($group,'pgd') eq 'ok') && 
  736:                    ($ressymb =~ m{^bulletin___\d+___adm/wrapper/adm/\Q$cdom\E/\Q$cnum\E/\d+/bulletinboard$})) {
  737:                     $discussion .=
  738: 			&postingform_display($mode,$ressymb,$now,$subject,
  739: 					     $comment,$outputtarget,$attachnum,
  740: 					     $currnewattach,$currdelold,
  741: 					     $group,$crstype);
  742:                 }
  743:             } else {
  744:                 if (&Apache::lonnet::allowed('pch',$env{'request.course.id'}.
  745:                     ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
  746: 
  747: 	            $discussion.= 
  748: 		        &postingform_display($mode,$ressymb,$now,$subject,
  749: 					     $comment,$outputtarget,$attachnum,
  750: 					     $currnewattach,$currdelold,'',$crstype);
  751:                 } else {
  752:                     $discussion.= '<span class="LC_feedback_link">'.
  753:                                   &mt('This discussion is closed.').'</span>';
  754:                 }
  755:             }
  756: 	}
  757:         if (!(&discussion_open($status)) && ($outputtarget ne 'tex')) {
  758:             $discussion.= '<span class="LC_feedback_link">'.
  759:                           &mt('This discussion is closed.').'</span>';
  760:         }
  761:     } elsif ($outputtarget ne 'tex') {
  762:         $discussion.='<div class="LC_feedback_link">';
  763:         if (&discussion_open($status) &&
  764:             &Apache::lonnet::allowed('pch',
  765:     	        $env{'request.course.id'}.
  766: 	        ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
  767:             $discussion.= &send_feedback_link($ressymb);
  768:             if ($env{'request.role.adv'}) {
  769:                 my $close = &Apache::lonnet::EXT('resource.0.discussend',$ressymb);
  770:                 my $canvote = &Apache::lonnet::EXT('resource.0.discussvote',$ressymb);
  771:                 if (defined($close) && $close ne '' && $close < time) {
  772:                     if ($canvote eq 'notended') {
  773:                         $discussion .= '&nbsp;'.&mt('(Posting and voting closed for [_1] roles)',
  774:                                                     &Apache::lonnet::plaintext('st',$crstype));
  775:                     } else {
  776:                         $discussion .= '&nbsp;'.&mt('(Closed for [_1] roles)',
  777:                                                     &Apache::lonnet::plaintext('st',$crstype));
  778:                     }
  779:                 }
  780:             }
  781: 	} else {
  782:             $discussion.= '<span class="LC_feedback_link">'.&mt('This discussion is closed.').'</span>';
  783:         }
  784: 	$discussion.= &send_message_link($ressymb).'</div>';
  785:     }
  786:     return $discussion;
  787: }
  788: 
  789: sub can_see_hidden {
  790:     my ($mode,$ressymb,$feedurl,$group,$cdom,$cnum,$crs) = @_;
  791:     my $seehidden;
  792:     if ($env{'request.course.id'}) {
  793:         unless ($cdom ne '' && $cnum ne '') {
  794:             $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
  795:             $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
  796:         }
  797:         if ($crs eq '') {
  798:             $crs = '/'.$env{'request.course.id'};
  799:             if ($env{'request.course.sec'}) {
  800:                 $crs.='_'.$env{'request.course.sec'};
  801:             }
  802:             $crs=~s{_}{/}g;
  803:         }
  804:         if ($mode eq '') {
  805:             $mode='board';
  806:             if ($feedurl =~ /$LONCAPA::assess_re/) {
  807:                 $mode='problem';
  808:             }
  809:         }
  810:         if (($group ne '') && ($mode eq 'board') &&
  811:             ($ressymb =~ m{^bulletin___\d+\Q___adm/wrapper/adm/$cdom/$cnum/\E\d+/bulletinboard$})) {
  812:             if (&check_group_priv($group,'dgp') eq 'ok') {
  813:                 $seehidden = 1;
  814:             }
  815:         } else {
  816:             $seehidden=&Apache::lonnet::allowed('rin',$crs);
  817:         }
  818:     }
  819:     return $seehidden;
  820: }
  821: 
  822: sub discussion_link {
  823:    my ($ressymb,$linktext,$cmd,$item,$flag,$prev,$adds,$title)=@_;
  824:    my $link='/adm/feedback?inhibitmenu=yes&modal=yes&'.$cmd.'='.&escape($ressymb).':::'.$item;
  825:    if ($flag) { $link .= '&amp;previous='.$prev; }
  826:    if ($adds) { $link .= $adds; }
  827:    my $width=600;
  828:    my $height=600;
  829:    if (($cmd eq 'hide') || ($cmd eq 'unhide') || ($cmd eq 'like') || ($cmd eq 'unlike')) {
  830:        $width=300;
  831:        $height=200;
  832:    }
  833:    return &Apache::loncommon::modal_link($link,$linktext,$width,$height,undef,undef,$title);
  834: }
  835: 
  836: 
  837: sub send_feedback_link {
  838:     my ($ressymb) = @_;
  839:     return '<span class="LC_feedback_link">'.
  840:                  &discussion_link($ressymb,
  841:                     '<img alt="" class="LC_noBorder" src="'.
  842:                     &Apache::loncommon::lonhttpdurl('/adm/lonMisc/chat.gif').
  843:                     '" border="0" /><span class="LC_menubuttons_inline_text">'.&mt('Post Discussion').'</span>',
  844:                     'replydisc').
  845:            '</span>';
  846: }
  847: 
  848: sub send_message_link {
  849:     my ($ressymb) = @_;
  850:     my $output = '<span class="LC_message_link">'.
  851:                  &discussion_link($ressymb,
  852:                     '<img alt="" class="LC_noBorder" src="'.
  853:                     &Apache::loncommon::lonhttpdurl('/res/adm/pages/feedback.png').
  854:                     '" border="0" /><span class="LC_menubuttons_inline_text">'.&mt('Send Feedback').'</span>',
  855:                     'sendmessageonly').
  856:                  '</span>';
  857:     return $output;
  858: }
  859: 
  860: sub action_links_bar {
  861:     my ($colspan,$ressymb,$visible,$newpostsflag,$group,$prevread,$markondisp,
  862:         $seehidden) = @_;
  863:     my $discussion = '<tr><td colspan="'.$colspan.'">'.
  864:                      '<table width="100%"><tr>'.
  865:                      '<td class="LC_disc_action_left">';
  866:     my $escsymb=&escape($ressymb);
  867:     if ($visible) {
  868:         $discussion .= '<a href="/adm/feedback?cmd=threadedon&amp;symb='.$escsymb;
  869:         if ($newpostsflag) {
  870:             $discussion .= '&amp;previous='.$prevread;
  871:         }
  872:         $discussion .= &group_args($group);
  873:         $discussion .='">'.&mt('Threaded View').'</a>&nbsp;&nbsp;'.
  874:                       '<a href="/adm/feedback?cmd=threadedoff&amp;symb='.$escsymb;
  875:         if ($newpostsflag) {
  876:             $discussion .= '&amp;previous='.$prevread;
  877:         }
  878:         $discussion .= &group_args($group);
  879:         $discussion .='">'.&mt('Chronological View').'</a>&nbsp;&nbsp;';
  880: 
  881:         my $otherviewurl='/adm/feedback?cmd=sortfilter&amp;symb='.$escsymb.'&amp;inhibitmenu=yes&amp;modal=yes';
  882:         if ($newpostsflag) {
  883:             $otherviewurl .= '&amp;previous='.$prevread;
  884:         }
  885:         $otherviewurl .= &group_args($group);
  886:         $discussion .= &Apache::loncommon::modal_link($otherviewurl,&mt('Other Views ...'),800,340);
  887:         $discussion .= '<br />';
  888:     }
  889:     $discussion .='<a href="/adm/feedback?export='.$escsymb;
  890:     if ($newpostsflag) {
  891:         $discussion .= '&amp;previous='.$prevread;
  892:     }
  893:     $discussion .= &group_args($group);
  894:     $discussion .= '">'.&mt('Export').'</a>';
  895:     if ($seehidden) {
  896:         $discussion .= '&nbsp;&nbsp;';
  897:         $discussion .='<a href="/adm/feedback?undeleteall='.$escsymb;
  898:         if ($newpostsflag) {
  899:             $discussion .= '&amp;previous='.$prevread;
  900:         }
  901:         $discussion .= &group_args($group);
  902:         $discussion .= '">'.&mt('Undelete all deleted entries').'</a>';
  903:     }
  904:     $discussion.='</td>';
  905:     if ($newpostsflag) {
  906:         if (!$markondisp) {
  907:             $discussion .='<td class="LC_disc_action_right"><a href="/adm/preferences?action=changediscussions';
  908:             $discussion .= &group_args($group);
  909:             $discussion .= '">'.
  910:                            &mt('My general preferences on what is marked as NEW').
  911:                            '</a><br /><a href="/adm/feedback?markread=1&amp;symb='.$escsymb;
  912:             $discussion .= &group_args($group);
  913:             $discussion .= '">'.&mt('Mark NEW posts no longer new').'</a></td>';
  914:         } else {
  915:             $discussion .= '<td>&nbsp;</td>';
  916:         }
  917:     } else {
  918:         $discussion .= '<td>&nbsp;</td>';
  919:     }
  920:     $discussion .= '</tr></table></td></tr>';
  921:     return $discussion;
  922: }
  923: 
  924: sub postingform_display {
  925:     my ($mode,$ressymb,$now,$subject,$comment,$outputtarget,$attachnum,
  926:         $currnewattach,$currdelold,$group,$crstype) = @_;
  927:     my $newattachmsg;
  928:     my %lt = &Apache::lonlocal::texthash(
  929:               'note' => 'Note: in anonymous discussion, your name is visible only to course faculty',
  930:              'title' => 'Title',
  931:              'podi' => 'Post Discussion',
  932:              'poan' => 'Post Anonymous Discussion',
  933:              'newa' => 'New attachments',
  934:     );
  935:     if ($crstype eq 'Community') {
  936:         $lt{'note'} = &mt('Note: in anonymous discussion, your name is visible only to community facilitators');
  937:     }
  938:     my ($postingform,$textareaclass);
  939:     if (&Apache::lonhtmlcommon::htmlareabrowser()) {
  940:         $postingform = &Apache::lonhtmlcommon::htmlareaselectactive();
  941:         $textareaclass = 'class="LC_richDefaultOff"';
  942:         if ($env{'request.course.id'}) {
  943:             unless (($env{'course.'.$env{'request.course.id'}.'.allow_limited_html_in_feedback'} =~ /^\s*yes\s*$/i) || ($env{'form.sendmessageonly'})) {
  944:                 undef($textareaclass);
  945:             }
  946:         }
  947:     }
  948:     $postingform .= (<<ENDDISCUSS);
  949: <form action="/adm/feedback" method="post" name="mailform" enctype="multipart/form-data"> <input type="submit" name="discuss" value="$lt{'podi'}" />
  950: <input type="submit" name="anondiscuss" value="$lt{'poan'}" /> <input type="hidden" name="symb" value="$ressymb" />
  951: <input type="hidden" name="sendit" value="true" />
  952: <input type="hidden" name="timestamp" value="$now" />
  953: <a name="newpost"></a>
  954: <font size="1">$lt{'note'}</font><br />
  955: <b>$lt{'title'}:</b>&nbsp;<input type="text" name="subject" value="$subject" size="30" /><br />
  956: <textarea name="comment" cols="80" rows="14" id="comment" $textareaclass>$comment</textarea>
  957: ENDDISCUSS
  958:     if ($env{'form.origpage'}) {
  959:         $postingform .= '<input type="hidden" name="origpage" value="'.
  960:                         $env{'form.origpage'}.'" />'."\n";
  961:         foreach my $att (@{$currnewattach}) {
  962:             $postingform .= '<input type="hidden" name="currnewattach" '.
  963:                             'value="'.$att.'" />'."\n";
  964:         }
  965:     }
  966:     if (exists($env{'form.ref'})) {
  967:         $postingform .= '<input type="hidden" name="ref" value="'.
  968:                         $env{'form.ref'}.'" />';
  969:     }
  970:     if ($group ne '') {
  971:         $postingform .='<input type="hidden" name="group" value="'.$group.'" />';
  972:     }
  973:     my $blockblog = &Apache::loncommon::blocking_status('blogs');
  974:     if (!$blockblog) {
  975:         $postingform .= &add_blog_checkbox($crstype);
  976:     }
  977:     $postingform .= "</form>\n";
  978:     $postingform .= &generate_attachments_button('',$attachnum,$ressymb,
  979:                                                      $now,$currnewattach,
  980:                                                      $currdelold,'',$mode,
  981:                                                      $blockblog);
  982:     if ((ref($currnewattach) eq 'ARRAY') && (@{$currnewattach} > 0)) {
  983:         $newattachmsg = '<br /><b>'.$lt{'newa'}.'</b><br />';
  984:         if (@{$currnewattach} > 1) {
  985:              $newattachmsg .= '<ol>';
  986:              foreach my $item (@{$currnewattach}) {
  987:                 $item =~ m#.*/([^/]+)$#;
  988:                 $newattachmsg .= '<li><a href="'.$item.'">'.$1.'</a></li>'."\n";
  989:              }
  990:              $newattachmsg .= '</ol>'."\n";
  991:          } else {
  992:              $$currnewattach[0] =~ m#.*/([^/]+)$#;
  993:              $newattachmsg .= '<a href="'.$$currnewattach[0].'">'.$1.'</a><br />'."\n";
  994:          }
  995:     }
  996:     $postingform .= $newattachmsg;
  997:     $postingform .= &generate_preview_button();
  998:     return $postingform;
  999: }
 1000: 
 1001: sub build_posting_display {
 1002:     my ($usernamesort,$subjectsort,$namesort,$notshown,$newitem,$dischash,$shown,$alldiscussion,$imsitems,$imsfiles,$roleinfo,$discussionitems,$replies,$depth,$posters,$maxdepth,$visible,$newpostsflag,$current,$status,$viewgrades,$seeid,$seehidden,$canvote,$prevread,$sortposts,$ressymb,$readkey,$showunmark,$showonlyunread,$totposters,$rolefilter,$sectionpick,$grouppick,$classgroups,$statusfilter,$toggkey,$outputtarget,$anonhash,$anoncnt,$group) = @_;
 1003:     my @original=();
 1004:     my @index=();
 1005:     my $skip_group_check = 0;
 1006:     my $symb=&Apache::lonenc::check_decrypt($ressymb);
 1007:     my $escsymb=&escape($ressymb);
 1008: # These are the discussion contributions
 1009:     my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 1010: 			  $env{'course.'.$env{'request.course.id'}.'.domain'},
 1011: 			  $env{'course.'.$env{'request.course.id'}.'.num'});
 1012:     my (%likes,%userlikes,%userunlikes,@theselikes,$oneplus,$twoplus,$oneminus,$twominus);
 1013:     my $thisuser=$env{'user.name'}.':'.$env{'user.domain'};
 1014:     if ($seeid || $canvote) {
 1015: # And these are the likes/unlikes
 1016:         %likes=&Apache::lonnet::dump('disclikes',
 1017:                           $env{'course.'.$env{'request.course.id'}.'.domain'},
 1018:                           $env{'course.'.$env{'request.course.id'}.'.num'},
 1019:                           '^'.$symb.':');
 1020: # Array with likes to figure out averages, etc.
 1021:         @theselikes=();
 1022: # Hashes containing likes and unlikes for this user.
 1023:         %userlikes=();
 1024:         %userunlikes=();
 1025:     }
 1026: # Is the user allowed to see the real name behind anonymous postings?
 1027:     my $see_anonymous = 
 1028: 	&Apache::lonnet::allowed('rin',$env{'request.course.id'}.($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''));
 1029: 
 1030:     if ((@{$grouppick} == 0) || (grep(/^all$/,@{$grouppick}))) {
 1031:         $skip_group_check = 1;
 1032:     }
 1033: # Deletions and hiddens are just lists. Split them up into a hash for quicker lookup
 1034:     my (%deletions,%hiddens);
 1035:     if ($contrib{'deleted'}) {
 1036:        my $deleted = $contrib{'deleted'};
 1037:        $deleted =~ s/^\.//;
 1038:        $deleted =~ s/\.$//;
 1039:        %deletions = map { $_ => 1 } (split(/\.\./,$deleted));
 1040:     }
 1041:     if ($contrib{'hidden'}) {
 1042:        my $hidden = $contrib{'hidden'};
 1043:        $hidden =~ s/^\.//;
 1044:        $hidden =~ s/\.$//;
 1045:        %hiddens = map { $_ => 1 } (split(/\.\./,$hidden));
 1046:     }
 1047: # Versions if store/restore are used to actually store the messages. 
 1048:     if ($contrib{'version'}) {
 1049:         my $oldest = $contrib{'1:timestamp'};
 1050:         if ($prevread eq '0') {
 1051:             $prevread = $oldest-1;
 1052:         }
 1053:         my ($skiptest,$rolematch,$roleregexp,$secregexp,$statusregexp);
 1054:         if ($sortposts) {
 1055:             ($skiptest,$roleregexp,$secregexp,$statusregexp) = 
 1056:                      &filter_regexp($rolefilter,$sectionpick,$statusfilter);
 1057:             $rolematch = $roleregexp.':'.$secregexp.':'.$statusregexp;
 1058:         }
 1059:         if ($seeid || $canvote) {
 1060: # We need to go through this twice, first to get the likes/dislikes, then to actually build the display
 1061:             for (my $id=1;$id<=$contrib{'version'};$id++) {
 1062:                 my $idx=$id;
 1063:                 next if ($contrib{$idx.':deleted'});
 1064:                 next if ($contrib{$idx.':hidden'});
 1065:                 unless ((($hiddens{$idx}) && (!$seehidden)) || ($deletions{$idx}) || (!$contrib{$idx.':message'})) {
 1066:                     if ($likes{$symb.':'.$idx.':likes'} ne '') {
 1067:                         push(@theselikes,$likes{$symb.':'.$idx.':likes'});
 1068:                         if (ref($likes{$symb.':'.$idx.':likers'}) eq 'HASH') {
 1069:                             if (exists($likes{$symb.':'.$idx.':likers'}{$thisuser})) {
 1070:                                 $userlikes{$idx} = 1;
 1071:                             }
 1072:                         }
 1073:                         if (ref($likes{$symb.':'.$idx.':unlikers'}) eq 'HASH') {
 1074:                             if (exists($likes{$symb.':'.$idx.':unlikers'}{$thisuser})) {
 1075:                                 $userunlikes{$idx} = 1;
 1076:                             }
 1077:                         }
 1078:                     }
 1079:                 }
 1080:             }
 1081: # Figure out average likes and standard deviation if there are enough 
 1082: # discussions to warrant that
 1083:             my $ave=0;
 1084:             my $stddev=10000;
 1085:             if ($#theselikes>1) {
 1086:                 my $sum=0;
 1087:                 my $num=$#theselikes+1;
 1088:                 foreach my $thislike (@theselikes) {
 1089:                     $sum+=$thislike;
 1090:                 }
 1091:                 $ave=$sum/$num;
 1092:                 my $sumsq=0;
 1093:                 foreach my $thislike (@theselikes) {
 1094:                     $sumsq+=($thislike-$ave)*($thislike-$ave);
 1095:                 }
 1096:                 $stddev=sqrt($sumsq/$num);
 1097:             }
 1098: # Now we know the average likes $ave and the standard deviation $stddev
 1099: # Get the boundaries for markup
 1100:             $oneplus=$ave+$stddev;
 1101:             $twoplus=$ave+2.*$stddev;
 1102:             $oneminus=$ave-$stddev;
 1103:             $twominus=$ave-2.*$stddev;
 1104:         }
 1105: #
 1106: # This is now the real loop. Go through all entries, pick up what we need
 1107: #
 1108: 	for (my $id=1;$id<=$contrib{'version'};$id++) {
 1109: 	    my $idx=$id;
 1110:             next if ($contrib{$idx.':deleted'});
 1111:             next if ($contrib{$idx.':hidden'});
 1112: # If we get here, we are actually going to display the message - we don't know where and we don't know if we display
 1113: # previous edits, but it counts as one entry
 1114:             my $posttime = $contrib{$idx.':timestamp'};
 1115:             if ($prevread <= $posttime) {
 1116:                 $$newpostsflag = 1;
 1117:             }
 1118:             my $studenthidden=($contrib{'studenthidden'}=~/\.$idx\./);
 1119: 	    my $origindex='0.';
 1120:             my $numoldver=0;
 1121: 	    if ($contrib{$idx.':replyto'}) {
 1122:                 if ( ((!$env{'environment.unthreadeddiscussion'}) && ($sortposts eq '')) || 
 1123:                      ($sortposts eq 'thread') || ($outputtarget eq 'export')) {
 1124: # this is a follow-up message
 1125: 		    $original[$idx]=$original[$contrib{$idx.':replyto'}];
 1126: 		    $$depth[$idx]=$$depth[$contrib{$idx.':replyto'}]+1;
 1127: 		    $origindex=$index[$contrib{$idx.':replyto'}];
 1128: 		    if ($$depth[$idx]>$$maxdepth) { $$maxdepth=$$depth[$idx]; }
 1129:                 } else {
 1130:                     $original[$idx]=0;
 1131:                     $$depth[$idx]=0;
 1132:                 }
 1133: 	    } else {
 1134: # this is an original message
 1135: 		$original[$idx]=0;
 1136: 		$$depth[$idx]=0;
 1137: 	    }
 1138: 	    if ($$replies[$$depth[$idx]]) {
 1139: 		$$replies[$$depth[$idx]]++;
 1140: 	    } else {
 1141: 		$$replies[$$depth[$idx]]=1;
 1142: 	    }
 1143:             unless ((($hiddens{$idx}) && (!$seehidden)) || ($deletions{$idx})) {
 1144: 		$$visible++;
 1145:                 if ($contrib{$idx.':history'}) {
 1146:                     if ($contrib{$idx.':history'} =~ /:/) {
 1147:                         my @oldversions = split(/:/,$contrib{$idx.':history'});
 1148:                         $numoldver = @oldversions;
 1149:                     } else {
 1150:                         $numoldver = 1;
 1151:                     } 
 1152:                 }
 1153:                 $$current = $numoldver;
 1154: 		my %messages = ();
 1155:                 my %subjects = ();
 1156:                 my %attachtxt = ();
 1157:                 my %allattachments = ();
 1158:                 my ($screenname,$plainname,$showaboutme);
 1159:                 my $sender = &mt('Anonymous');
 1160: # Anonymous users getting number within a discussion
 1161: # Since idx is in static order, this should give the same sequence every time. 
 1162: 		my $key=$contrib{$idx.':sendername'}.'@'.$contrib{$idx.':senderdomain'};
 1163: 		unless ($$anonhash{$key}) {
 1164:                     $anoncnt++;
 1165: 		    $$anonhash{$key}=&mt('Anonymous').' '.$anoncnt;
 1166: 		}
 1167:                 my ($message,$subject,$vgrlink,$ctlink);
 1168:                 &get_post_contents(\%contrib,$idx,$seeid,$seehidden,$outputtarget,\%messages,\%subjects,\%allattachments,\%attachtxt,$imsfiles,\$screenname,\$plainname,\$showaboutme,$numoldver);
 1169: 
 1170: 
 1171: # Set up for sorting by subject
 1172:                 unless ($outputtarget eq 'export') {
 1173:                     $message=$messages{$numoldver};
 1174:                     $message.=$attachtxt{$numoldver};
 1175:                     $subject=$subjects{$numoldver};
 1176:                     if ($message) {
 1177: 	  	        if ($hiddens{$idx}) {
 1178: 			    $message='<font color="#888888">'.$message.'</font>';
 1179:                             if ($studenthidden) {
 1180:                                 $message .='<br /><br />Deleted by poster (student).';
 1181:                             }
 1182: 		        }
 1183: 
 1184:                         if ($subject eq '') {
 1185:                            if (defined($$subjectsort{'__No subject'})) {
 1186:                                push(@{$$subjectsort{'__No subject'}}, $idx);
 1187:                            } else {
 1188:                                @{$$subjectsort{'__No subject'}} = ("$idx");
 1189:                            }
 1190:                         } else {
 1191:                             if (defined($$subjectsort{$subject})) {
 1192:                                push(@{$$subjectsort{$subject}}, $idx);
 1193:                             } else {
 1194:                                @{$$subjectsort{$subject}} = ("$idx");
 1195:                             }
 1196:                         }
 1197: 		        if (!$contrib{$idx.':anonymous'} || $see_anonymous) {
 1198:                             if ($showaboutme) {
 1199:                                 $sender = &Apache::loncommon::aboutmewrapper(
 1200:                                               $plainname,
 1201:                                               $contrib{$idx.':sendername'},
 1202:                                               $contrib{$idx.':senderdomain'});
 1203:                             } else {
 1204:                                 $sender = $plainname;
 1205:                             }
 1206:                             if ($see_anonymous) {
 1207:                                 $sender .= ' ('.$contrib{$idx.':sendername'}.':'.
 1208: 					   $contrib{$idx.':senderdomain'}.')';
 1209:                             }
 1210:                             $sender = '<b>'.$sender.'</b>';
 1211: 			    if ($contrib{$idx.':anonymous'}) {
 1212: 			        $sender.=' <font color="red"><b>['.$$anonhash{$key}.']</b></font> '.
 1213: 				    $screenname;
 1214: 			    }
 1215: 			    if ($see_anonymous) {
 1216: 				$sender.=&Apache::loncommon::student_image_tag($contrib{$idx.':senderdomain'},$contrib{$idx.':sendername'});
 1217: 			    }
 1218: # Set up for sorting by domain, then username
 1219:                             unless (defined($$usernamesort{$contrib{$idx.':senderdomain'}})) {
 1220:                                 %{$$usernamesort{$contrib{$idx.':senderdomain'}}} = ();
 1221:                             }
 1222:                             if (defined($$usernamesort{$contrib{$idx.':senderdomain'}}{$contrib{$idx.':sendername'}})) {
 1223:                                 push(@{$$usernamesort{$contrib{$idx.':senderdomain'}}{$contrib{$idx.':sendername'}}}, $idx);
 1224:                             } else {
 1225:                                 @{$$usernamesort{$contrib{$idx.':senderdomain'}}{$contrib{$idx.':sendername'}}} = ("$idx");
 1226:                             }
 1227: # Set up for sorting by last name, then first name
 1228:                             my %names = &Apache::lonnet::get('environment',
 1229:                                  ['firstname','lastname'],$contrib{$idx.':senderdomain'},
 1230:                                   ,$contrib{$idx.':sendername'});
 1231:                             my $lastname = $names{'lastname'};
 1232:                             my $firstname = $names{'firstname'};
 1233:                             if ($lastname eq '') {
 1234:                                 $lastname = '_';
 1235:                             }
 1236:                             if ($firstname eq '') {
 1237:                                 $firstname = '_';
 1238:                             }
 1239:                             unless (defined($$namesort{$lastname})) {
 1240:                                 %{$$namesort{$lastname}} = ();
 1241:                             }
 1242:                             if (defined($$namesort{$lastname}{$firstname})) {
 1243:                                 push(@{$$namesort{$lastname}{$firstname}}, $idx);
 1244:                             } else {
 1245:                                 @{$$namesort{$lastname}{$firstname}} = ("$idx");
 1246:                             }
 1247:                             if ($outputtarget ne 'tex') {
 1248: # Add karma stars
 1249:                                 my $karma=&userkarma($contrib{$idx.':sendername'},$contrib{$idx.':senderdomain'});
 1250:                                 for (my $i=1;$i<=$karma;$i++) {
 1251:                                     $sender.='<img border="0" src="/res/adm/pages/star.gif" alt="'.&mt('Contributor Kudos').'" />';
 1252:                                 }
 1253: # Can people edit this?
 1254:                                 if (&editing_allowed($escsymb.':::'.$idx,$group)) {
 1255:                                     if (($env{'user.domain'} eq $contrib{$idx.':senderdomain'}) && ($env{'user.name'} eq $contrib{$idx.':sendername'})) {
 1256:                                         $sender.=' '.
 1257:                                          &discussion_link($symb,&mt('Edit'),'editdisc',$idx,$$newpostsflag,$prevread,&group_args($group));
 1258:                                         unless ($seehidden) {
 1259:                                             my $grpargs = &group_args($group);
 1260:                                             $sender.=" <a href=\"javascript:verifydelete('studentdelete','$escsymb','$idx','$$newpostsflag','$prevread','$grpargs')";
 1261:                                             $sender .= '">'.&mt('Delete').'</a>';
 1262:                                         }
 1263:                                     }
 1264:                                 }
 1265: 			        if ($seehidden) {
 1266: 			            if ($hiddens{$idx}) {
 1267:                                         unless ($studenthidden) {
 1268:  		                           $sender.=' '.
 1269:                                             &discussion_link($symb,&mt('Make Visible'),'unhide',$idx,$$newpostsflag,$prevread,&group_args($group));
 1270:                                         }
 1271: 			            } else {
 1272:                                         $sender.=' '.
 1273:                                          &discussion_link($symb,&mt('Hide'),'hide',$idx,$$newpostsflag,$prevread,&group_args($group));
 1274: 			            }
 1275:                                     my $grpargs = &group_args($group);
 1276: 			            $sender.= 
 1277:                                         " <a href=\"javascript:verifydelete('seeiddelete','$escsymb','$idx','$$newpostsflag','$prevread','$grpargs')\">";
 1278:                                     $sender .= &mt('Delete').'</a>';
 1279:                                 }
 1280:                             }
 1281:                         } else {
 1282: 			    if ($screenname) {
 1283: 			        $sender='<i>'.$screenname.'</i>';
 1284: 			    } else {
 1285: 				$sender='<i>'.$$anonhash{$key}.'</i>';
 1286: 			    }
 1287:                             $sender = '<b>'.$sender.'</b>';
 1288: # Set up for sorting by domain, then username for anonymous
 1289:                             unless (defined($$usernamesort{'__anon'})) {
 1290:                                 %{$$usernamesort{'__anon'}} = ();
 1291:                             }
 1292:                             if (defined($$usernamesort{'__anon'}{'__anon'})) {
 1293:                                 push(@{$$usernamesort{'__anon'}{'__anon'}}, $idx);
 1294:                             } else {
 1295:                                 @{$$usernamesort{'__anon'}{'__anon'}} = ("$idx");
 1296:                             }
 1297: # Set up for sorting by last name, then first name for anonymous
 1298:                             unless (defined($$namesort{'__anon'})) {
 1299:                                 %{$$namesort{'__anon'}} = ();
 1300:                             }
 1301:                             if (defined($$namesort{'__anon'}{'__anon'})) {
 1302:                                 push(@{$$namesort{'__anon'}{'__anon'}}, $idx);
 1303:                             } else {
 1304:                                 @{$$namesort{'__anon'}{'__anon'}} = ("$idx");
 1305:                             }
 1306: 		        }
 1307:                         if ($outputtarget ne 'tex') {
 1308: 		            if (&discussion_open($status)) {
 1309:                                 if (($group ne '') && 
 1310:                                     (&check_group_priv($group,'pgd') eq 'ok')) {
 1311:                                      $sender.=' '.
 1312:                                          &discussion_link($symb,&mt('Reply'),'replydisc',$idx,$$newpostsflag,$prevread,&group_args($group));
 1313:                                 } elsif (&Apache::lonnet::allowed('pch', 
 1314: 				     $env{'request.course.id'}.
 1315: 				     ($env{'request.course.sec'}?'/'.
 1316:                                       $env{'request.course.sec'}:''))) {
 1317: 			             $sender.=' '.
 1318:                                          &discussion_link($symb,&mt('Reply'),'replydisc',$idx,$$newpostsflag,$prevread);
 1319:                                 }
 1320:                             }
 1321: 		            if ($viewgrades) {
 1322: 			        $vgrlink=&Apache::loncommon::submlink(&mt('Submissions'),
 1323:                                 $contrib{$idx.':sendername'},$contrib{$idx.':senderdomain'},$ressymb);
 1324: 		            }
 1325:                             if ($$dischash{$readkey}=~/\.$idx\./) { 
 1326:                                 $ctlink = '<label><b>'.&mt('Mark unread').'?</b>&nbsp;<input type="checkbox" name="postunread_'.$idx.'" /></label>';
 1327:                             } else {
 1328:                                 $ctlink = '<label><b>'.&mt('Mark read').'?</b>&nbsp;<input type="checkbox" name="postread_'.$idx.'" /></label>';
 1329:                             }
 1330:                         }
 1331:                     }
 1332: #figure out at what position this needs to print
 1333:                 }
 1334:                 if ($outputtarget eq 'export' || $message) {
 1335: 		    my $thisindex=$idx;
 1336: 		    if ( ((!$env{'environment.unthreadeddiscussion'}) && ($sortposts eq '')) || 
 1337:                          ($sortposts eq 'thread') || ($outputtarget eq 'export')) {
 1338: 			$thisindex=$origindex.substr('00'.$$replies[$$depth[$idx]],-2,2);
 1339: 		    }
 1340: 		    $$alldiscussion{$thisindex}=$idx;
 1341:                     $$shown{$idx} = 0;
 1342:                     $index[$idx]=$thisindex;
 1343:                 }
 1344:                 if ($outputtarget eq 'export') {
 1345:                     %{$$imsitems{$idx}} = ();
 1346:                     $$imsitems{$idx}{'isvisible'}='true';
 1347:                     if ($hiddens{$idx}) {
 1348:                         $$imsitems{$idx}{'isvisible'}='false';
 1349:                     }
 1350:                     $$imsitems{$idx}{'title'}=$subjects{$numoldver};
 1351:                     $$imsitems{$idx}{'message'}=$messages{$numoldver};
 1352:                     $$imsitems{$idx}{'attach'}=$attachtxt{$numoldver};
 1353:                     $$imsitems{$idx}{'timestamp'}=$contrib{$idx.':timestamp'};
 1354:                     $$imsitems{$idx}{'sender'}=$plainname.' ('.
 1355:                                          $contrib{$idx.':sendername'}.':'.
 1356:                                          $contrib{$idx.':senderdomain'}.')';
 1357:                     $$imsitems{$idx}{'isanonymous'}='false';
 1358:                     if ($contrib{$idx.':anonymous'}) {
 1359:                         $$imsitems{$idx}{'isanonymous'}='true';
 1360:                     }
 1361:                     $$imsitems{$idx}{'currversion'}=$numoldver;
 1362:                     %{$$imsitems{$idx}{'allattachments'}}=%allattachments;
 1363:                     unless ($messages{$numoldver} eq '' && $attachtxt{$numoldver} eq '') {
 1364:                         $$shown{$idx} = 1;
 1365:                     }
 1366:                 } else {
 1367:                     if ($message) {
 1368:                         my $spansize = 2;
 1369:                         my ($uname,$udom);
 1370:                         if ($showonlyunread && $prevread > $posttime) {
 1371:                             $$notshown{$idx} = 1;
 1372:                         } elsif ($showunmark && $$dischash{$readkey}=~/\.$idx\./) {
 1373:                             $$notshown{$idx} = 1;
 1374:                         } else {
 1375: # apply filters
 1376:                             $uname = $contrib{$idx.':sendername'};
 1377:                             $udom = $contrib{$idx.':senderdomain'};
 1378:                             my $poster = $uname.':'.$udom;
 1379:                             if ($env{'form.totposters'} ne '') {
 1380:                                 if ($totposters == 0) {
 1381:                                     $$shown{$idx} = 0;
 1382:                                 } elsif ($totposters > 0) {
 1383:                                     if (grep/^$poster$/,@{$posters}) {
 1384:                                         $$shown{$idx} = 1;
 1385:                                     }
 1386:                                 }
 1387:                             } elsif ($sortposts) {
 1388:                                 if ($skiptest) {
 1389:                                     $$shown{$idx} = 1;
 1390:                                 } else {
 1391:                                     foreach my $role (@{$$roleinfo{$poster}}) {
 1392:                                         if ($role =~ /^cc:/) {
 1393:                                             my $cc_regexp = $roleregexp.':[^:]*:'.$statusregexp;
 1394:                                             if ($role =~ /$cc_regexp/) {
 1395:                                                 $$shown{$idx} = 1;
 1396:                                                 last;
 1397:                                             }
 1398:                                         } elsif ($role =~ /^$rolematch$/) {
 1399:                                             $$shown{$idx} = 1;
 1400:                                             last;
 1401:                                         }
 1402:                                     }
 1403:                                 }
 1404:                                 if ($$shown{$idx} && !$skip_group_check) {
 1405:                                     my $showflag = 0;
 1406:                                     if (ref($$classgroups{$poster}{active}) eq 'HASH') {
 1407:                                         foreach my $grp (@{$grouppick}) {
 1408:                                             if (grep/^\Q$grp\E$/,
 1409:                                  keys(%{$$classgroups{$poster}{active}})) {
 1410:                                                 $showflag = 1;
 1411:                                                 last;
 1412:                                             }
 1413:                                         }
 1414:                                     }
 1415:                                     if ($showflag) {
 1416:                                         $$shown{$idx} = 1;
 1417:                                     } else {
 1418:                                         $$shown{$idx} = 0;
 1419:                                     }
 1420:                                 }
 1421:                             } else {
 1422:                                 $$shown{$idx} = 1;
 1423:                             }
 1424:                         }
 1425:                         unless ($$notshown{$idx} == 1) {
 1426:                             if ($prevread > 0 && $prevread <= $posttime) {
 1427:                                 $$newitem{$idx} = 1;
 1428:                                 $$discussionitems[$idx] .= '<font color="#FF0000"><b>'.&mt('NEW').'&nbsp;&nbsp;</b></font>';
 1429:                             } else {
 1430:                                 $$newitem{$idx} = 0;
 1431:                             }
 1432:                             $$discussionitems[$idx] .= '<b>'.$subject.'</b>&nbsp;&nbsp;'.
 1433:                                 $sender.' '.$vgrlink.' ('.
 1434:                                 &Apache::lonlocal::locallocaltime($posttime).')';
 1435:                             if ($$dischash{$toggkey}) {
 1436:                                 $$discussionitems[$idx].='&nbsp;&nbsp;'.$ctlink;
 1437:                             }
 1438:                             my $thislikes=$likes{$symb.':'.$idx.':likes'};
 1439:                             my $likesize="100";
 1440:                             if ($seeid || $canvote) {
 1441: # Figure out size based on likes
 1442:                                 my $thislikes=$likes{$symb.':'.$idx.':likes'};
 1443:                                 if ($thislikes>$twoplus) {
 1444:                                     $likesize="200";
 1445:                                 } elsif ($thislikes>$oneplus) {
 1446:                                     $likesize="150";
 1447:                                 }
 1448:                                 if ($thislikes<$twominus) {
 1449:                                     $likesize="50";
 1450:                                 } elsif ($thislikes<$oneminus) {
 1451:                                     $likesize="75";
 1452:                                 }
 1453:                             }
 1454: # Actually glue in the message itself
 1455:                             $$discussionitems[$idx].= '<br /><blockquote>'.
 1456:                                     "<div style='font-size:$likesize%'>".
 1457:                                     $message.
 1458:                                     '</div></blockquote>';
 1459:                             if ($canvote) {
 1460: # Put in the like and unlike buttons
 1461:                                 if (($uname eq $env{'user.name'}) && ($udom eq $env{'user.domain'})) {
 1462:                                     my $novote = &mt('No voting for your own posts');
 1463:                                     $$discussionitems[$idx].=
 1464:                                         '<a href="javascript:alert('."'$novote'".');" style="text-decoration: none;">'.
 1465:                                         '<img border="0" src="/res/adm/pages/thumbsup_novote.png" alt="'.$novote.'" />&nbsp;'.
 1466:                                         '<img border="0" src="/res/adm/pages/thumbsdown_novote.png" alt="'.$novote.'" /></a>'; 
 1467:                                 } else {
 1468:                                     if ($userlikes{$idx}) {
 1469:                                         $$discussionitems[$idx].='<img border="0" src="/res/adm/pages/thumbsup_gray.png" alt="'.&mt('You like this posting').'" />';
 1470:                                     } else {
 1471:                                         $$discussionitems[$idx].='&nbsp;'.&discussion_link($symb,'<img border="0" src="/res/adm/pages/thumbsup.png" alt="'.&mt('Like').'" />','like',$idx,$$newpostsflag,$prevread,&group_args($group),&mt("Like this posting"));
 1472:                                     }
 1473:                                     if ($userunlikes{$idx}) {
 1474:                                         $$discussionitems[$idx].='<img border="0" src="/res/adm/pages/thumbsdown_gray.png" alt="'.&mt('You unlike this posting').'" />';
 1475:                                     } else {
 1476:                                         $$discussionitems[$idx].='&nbsp;'.&discussion_link($symb,'<img border="0" src="/res/adm/pages/thumbsdown.png" alt="'.&mt('Unlike').'" />','unlike',$idx,$$newpostsflag,$prevread,&group_args($group),&mt("Unlike this posting"));
 1477:                                     }
 1478:                                 }
 1479:                             }
 1480:                             if ($seeid || $canvote) {
 1481:                                 my $thislikes=$likes{$symb.':'.$idx.':likes'};
 1482:                                 if ($thislikes>0) {
 1483:                                     $$discussionitems[$idx].='&nbsp;('.&mt("[_1] likes",$thislikes).')';
 1484:                                 } elsif ($thislikes<0) {
 1485:                                     $$discussionitems[$idx].='&nbsp;('.&mt("[_1] unlikes",abs($thislikes)).')';
 1486:                                 }
 1487:                             }
 1488: # If there is any history to this post, inform the reader
 1489:                             if ($contrib{$idx.':history'}) {
 1490:                                 my @postversions = ();
 1491:                                 $$discussionitems[$idx] .= '&nbsp;&nbsp;'.&mt('This post has been edited by the author.');
 1492:                                 if ($seehidden) {
 1493:                                     $$discussionitems[$idx] .= '&nbsp;&nbsp;'.
 1494:                                          &discussion_link($symb,&mt('Display all versions'),'allversions',$idx,$$newpostsflag,$prevread,&group_args($group));
 1495:                                 }
 1496:                                 $$discussionitems[$idx].='<br/>'.&mt('Earlier version(s) were posted on: ');
 1497:                                 if ($contrib{$idx.':history'} =~ m/:/) {
 1498:                                     @postversions = split(/:/,$contrib{$idx.':history'});
 1499:                                 } else {
 1500:                                     @postversions = ("$contrib{$idx.':history'}");
 1501:                                 }
 1502:                                 for (my $i=0; $i<@postversions; $i++) {
 1503:                                     my $version = $i+1;
 1504:                                     $$discussionitems[$idx] .= '<b>'.$version.'.</b> - '.&Apache::lonlocal::locallocaltime($postversions[$i]).'  ';
 1505:                                 }
 1506:                             }
 1507: # end of unless ($$notshown ...)
 1508:                         }
 1509: # end of if ($message) ...
 1510:                     }
 1511: # end of the else-branch of target being export
 1512:                 }
 1513: # end of unless hidden or deleted
 1514:             }
 1515: # end of the loop over all discussion entries
 1516: 	}
 1517: # end of "if there actually are any discussions
 1518:     }
 1519: # end of subroutine "build_posting_display" 
 1520: }
 1521: 
 1522: sub filter_regexp {
 1523:     my ($rolefilter,$sectionpick,$statusfilter) = @_;
 1524:     my ($roleregexp,$secregexp,$statusregexp);
 1525:     my $skiptest = 1;
 1526:     if (@{$rolefilter} > 0) {
 1527:         my @okrolefilter = ();
 1528:         foreach my $role (@{$rolefilter}) {
 1529:             unless ($role eq '') {
 1530:                 push(@okrolefilter, $role);
 1531:             }
 1532:         }
 1533:         if (@okrolefilter > 0) {
 1534:             if (grep/^all$/,@okrolefilter) {
 1535:                 $roleregexp='[^:]+';
 1536:             } else {
 1537:                 if (@okrolefilter == 1) {
 1538:                     $roleregexp=$okrolefilter[0];
 1539:                 } else {
 1540:                     $roleregexp='('.join('|',@okrolefilter).')';
 1541:                 }
 1542:                 $skiptest = 0;
 1543:             }
 1544:         }
 1545:     }
 1546:     if (@{$sectionpick} > 0) {
 1547:         my @oksectionpick = ();
 1548:         foreach my $sec (@{$sectionpick}) {
 1549:             unless ($sec eq '') {
 1550:                  push(@oksectionpick, $sec);
 1551:             }
 1552:         }
 1553:         if ((@oksectionpick > 0) && (!grep/^all$/,@oksectionpick)) {
 1554:             if (@oksectionpick == 1) {
 1555:                 $secregexp = $oksectionpick[0];
 1556:             } else {
 1557:                 $secregexp .= '('.join('|',@oksectionpick).')';
 1558:             }
 1559:             $skiptest = 0;
 1560:         } else {
 1561:             $secregexp .= '[^:]*';
 1562:         }
 1563:     }
 1564: 
 1565:     if (defined($statusfilter) && $statusfilter ne '') {
 1566:         if ($statusfilter eq 'all') {
 1567:             $statusregexp = '[^:]+';
 1568:         } else {
 1569:             $statusregexp = $statusfilter;
 1570:             $skiptest = 0;
 1571:         }
 1572:     }
 1573:     return ($skiptest,$roleregexp,$secregexp,$statusregexp);
 1574: }
 1575: 
 1576: 
 1577: sub get_post_contents {
 1578:     my ($contrib,$idx,$seeid,$seehidden,$type,$messages,$subjects,$allattachments,$attachtxt,$imsfiles,$screenname,$plainname,$showaboutme,$numver) = @_;
 1579:     my $discussion = '';
 1580:     my $start=$numver;
 1581:     my $end=$numver + 1;
 1582:     %{$$imsfiles{$idx}}=();
 1583:     if ($type eq 'allversions') {
 1584:        unless($seehidden) {
 1585:            $discussion=&mt('You do not have privileges to view all versions of posts.').' '.&mt('Please select a different role.');
 1586:            return $discussion;
 1587:        } 
 1588:     }
 1589: #    $$screenname=&Apache::loncommon::screenname(
 1590: #                                        $$contrib{$idx.':sendername'},
 1591: #                                        $$contrib{$idx.':senderdomain'});
 1592:     $$plainname=&Apache::loncommon::nickname(
 1593:                                         $$contrib{$idx.':sendername'},
 1594:                                         $$contrib{$idx.':senderdomain'});
 1595:     $$screenname=$$contrib{$idx.':screenname'};
 1596:     $$showaboutme = &Apache::lonnet::usertools_access($$contrib{$idx.':sendername'},
 1597:                                                       $$contrib{$idx.':senderdomain'},
 1598:                                                       'aboutme');
 1599:     my $sender = $$plainname;
 1600:     if ($$showaboutme) {
 1601:         $sender = &Apache::loncommon::aboutmewrapper(
 1602:                                  $$plainname,
 1603:                                  $$contrib{$idx.':sendername'},
 1604:                                  $$contrib{$idx.':senderdomain'});
 1605:     }
 1606:     if ($seeid) {
 1607:         $sender .= ' ('.$$contrib{$idx.':sendername'}.':'.
 1608:                    $$contrib{$idx.':senderdomain'}.')';
 1609:     }
 1610:     my $attachmenturls = $$contrib{$idx.':attachmenturl'};
 1611:     my @postversions = ();
 1612:     if ($type eq 'allversions' || $type eq 'export') {
 1613:         $start = 0;
 1614:         if ($$contrib{$idx.':history'}) {
 1615: 	    @postversions = split(/:/,$$contrib{$idx.':history'});
 1616:         }
 1617:         &get_post_versions($messages,$$contrib{$idx.':message'},1);
 1618:         &get_post_versions($subjects,$$contrib{$idx.':subject'},1);
 1619:         push(@postversions,$$contrib{$idx.':timestamp'});
 1620:         $end = @postversions;
 1621:     } else {
 1622:         &get_post_versions($messages,$$contrib{$idx.':message'},1,$numver);
 1623:         &get_post_versions($subjects,$$contrib{$idx.':subject'},1,$numver);
 1624:     }
 1625: 
 1626:     if ($$contrib{$idx.':anonymous'}) {
 1627:         $sender.=' ['.&mt('anonymous').'] '.$$screenname;
 1628:     }
 1629:     if ($type eq 'allversions') {
 1630:         $discussion=('<b>'.$sender.'</b><br /><ul>');
 1631:     }
 1632:     for (my $i=$start; $i<$end; $i++) {
 1633:         my ($timesent,$attachmsg);
 1634:         my %currattach = ();
 1635:         $timesent = &Apache::lonlocal::locallocaltime($postversions[$i]);
 1636:         unless (&contains_block_html($messages->{$i})) {
 1637:             &newline_to_br(\$messages->{$i});
 1638:         }
 1639:         $$messages{$i}=&Apache::lontexconvert::msgtexconverted($$messages{$i});
 1640:         $$subjects{$i}=~s/\n/\<br \/\>/g;
 1641:         $$subjects{$i}=&Apache::lontexconvert::msgtexconverted($$subjects{$i});
 1642:         if ($attachmenturls) {
 1643:             &extract_attachments($attachmenturls,$idx,$i,\$attachmsg,$allattachments,\%currattach);
 1644:         }
 1645:         if ($type eq 'export') {
 1646:             $$imsfiles{$idx}{$i} = '';
 1647:             if ($attachmsg) {
 1648:                 $$attachtxt{$i} = '<br />'.&mt('Attachments').':<br />';
 1649:                 foreach my $key (sort(keys(%currattach))) {
 1650:                     if ($$allattachments{$key}{'filename'} =~ m-^/uploaded/([^/]+/[^/]+)(/feedback)?(/?\d*)/([^/]+)$-) {
 1651:                         my $fname = $1.$3.'/'.$4;
 1652:                         $$imsfiles{$idx}{$i} .= '<file href="'.$fname.'" />'."\n";
 1653:                         $$attachtxt{$i}.= '<a href="'.$fname.'">'.$4.'</a><br />';
 1654:                     }
 1655:                 }
 1656:             }
 1657:         } else {
 1658:             if ($attachmsg) {
 1659:                 $$attachtxt{$i} = '<br />'.&mt('Attachments').':'.$attachmsg.'<br />';
 1660:             } else {
 1661:                 $$attachtxt{$i} = '';
 1662:             }
 1663:         }
 1664:         if ($type eq 'allversions') {
 1665:             $discussion.= <<"END";
 1666: <li><b>$$subjects{$i}</b>, $timesent<br />
 1667: $$messages{$i}<br />
 1668: $$attachtxt{$i}</li>
 1669: END
 1670:         }
 1671:     }
 1672:     if ($type eq 'allversions') {
 1673:         $discussion.='</ul>';
 1674:         return $discussion;
 1675:     } else {
 1676:         return;
 1677:     }
 1678: }
 1679: 
 1680: sub replicate_attachments {
 1681:     my ($attachrefs,$tempexport) = @_;
 1682:     my $response;
 1683:     foreach my $id (keys(%{$attachrefs})) {
 1684:         if ($$attachrefs{$id}{'filename'} =~ m-^/uploaded/([^/]+)/([^/]+)(/feedback)?(/?\d*)/([^/]+)$-) {
 1685:             my $path = $tempexport;
 1686:             my $tail = $1.'/'.$2.$4;
 1687:             my @extras = split(/\//,$tail);
 1688:             my $destination = $tempexport.'/'.$1.'/'.$2.$4.'/'.$5;
 1689:             if (!-e $destination) {
 1690:                 my $i= 0;
 1691:                 while ($i<@extras) {
 1692:                     $path .= '/'.$extras[$i];
 1693:                     if (!-e $path) {
 1694:                         mkdir($path,0700);
 1695:                     }
 1696:                     $i ++;
 1697:                 }
 1698:                 my ($content,$rtncode);
 1699:                 my $uploadreply = &Apache::lonnet::getuploaded('GET',$$attachrefs{$id}{'filename'},$1,$2,$content,$rtncode);
 1700:                 if ($uploadreply eq 'ok') {
 1701:                     my $attachcopy;
 1702:                     if ($attachcopy = Apache::File->new('>'.$destination)) {
 1703:                         print $attachcopy $content;
 1704:                         close($attachcopy);
 1705:                     } else {
 1706:                         $response .= &mt('Error copying file attachment - [_1] to IMS package',$5).': '.$!.'<br />'."\n";
 1707:                     }
 1708:                 } else {
 1709:                     &Apache::lonnet::logthis("Replication of attachment failed when building IMS export of discussion posts - domain: $1, course: $2, file: $$attachrefs{$id}{'filename'} -error: $rtncode");
 1710:                     $response .= &mt('Error copying file attachment - [_1] to IMS package: ',$5).$rtncode.'<br />'."\n";
 1711:                 }
 1712:             }
 1713:         }
 1714:     }
 1715:     return $response;
 1716: }
 1717: 
 1718: sub mail_screen {
 1719:   my ($r,$feedurl,$options,$caller_symb,$attachmaxtext) = @_;
 1720:   if (exists($env{'form.origpage'})) {
 1721:       &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['subject','comment','currnewattach','addnewattach','deloldattach','delnewattach','timestamp','idx','anondiscuss','discuss','blog','group','ref']);
 1722:   }
 1723: 
 1724:   my %lt = &Apache::lonlocal::texthash(
 1725:             'myqu' => 'Question/comment/feedback:',
 1726:             'title' => 'Title',
 1727:             'reta' => 'Retained attachments',
 1728:             'atta' => 'Attachment',
 1729:            );
 1730:   if($env{'form.editdisc'} || $env{'form.replydisc'}){
 1731:     %lt = &Apache::lonlocal::texthash(
 1732:             'myqu' => 'Post Discussion',
 1733:     );
 1734:   }
 1735:   my $restitle = &get_resource_title($caller_symb,$feedurl);
 1736:   my $quote='';
 1737:   my $subject = '';
 1738:   my $comment = '';
 1739:   my $prevtag = '';
 1740:   my $parentmsg = '';
 1741:   my ($symb,$idx,$attachmenturls);
 1742:   my $numoldver = 0;
 1743:   my $attachmsg = '';
 1744:   my $newattachmsg = '';
 1745:   my @currnewattach = ();
 1746:   my @currdelold = ();
 1747:   my @keepold = ();
 1748:   my %attachments = ();
 1749:   my %currattach = ();
 1750:   my $attachnum = 0;
 1751:   my $anonchk = (<<END);
 1752:   function anonchk() {
 1753:       for (var i=0; i < document.mailform.discuss.length; i++) {
 1754: 	  if (document.mailform.discuss[i].checked) {
 1755: 	      document.attachment.discuss.value = 
 1756: 		  document.mailform.discuss[i].value;
 1757: 	  }
 1758:       }
 1759:       if (document.mailform.blog.checked) {
 1760: 	  document.attachment.blog.value = 1;
 1761:       }
 1762:      return
 1763:    }
 1764: END
 1765:   my $anonscript;
 1766:   if (exists($env{'form.origpage'})) {
 1767:       $anonscript = (<<END);
 1768:   function setposttype() {
 1769:       var disc = "$env{'form.discuss'}";
 1770:       for (var i=0; i < document.mailform.discuss.length; i++) {
 1771: 	  if (disc == document.mailform.discuss[i].value) {
 1772: 	      document.mailform.discuss[i].checked = 1;
 1773: 	  }
 1774:       }
 1775:       var blog = "$env{'form.blog'}";
 1776:       if (blog == 1) {
 1777:           document.mailform.blog.checked=1;
 1778:       }
 1779:       return
 1780:   }
 1781: END
 1782:   } else {
 1783:       $anonscript = (<<END);
 1784:   function setposttype() {
 1785:       return
 1786:   }
 1787: END
 1788:   }
 1789:   if (($env{'form.replydisc'}) || ($env{'form.editdisc'})) {
 1790:       if ($env{'form.replydisc'}) {
 1791:           ($symb,$idx)=split(/\:\:\:/,$env{'form.replydisc'});
 1792:       } else {
 1793:           ($symb,$idx)=split(/\:\:\:/,$env{'form.editdisc'});
 1794:       }
 1795:       my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 1796: 					   $env{'course.'.$env{'request.course.id'}.'.domain'},
 1797: 					   $env{'course.'.$env{'request.course.id'}.'.num'});
 1798:       unless (($contrib{'hidden'}=~/\.$idx\./) || ($contrib{'deleted'}=~/\.$idx\./)) {
 1799:           if ($contrib{$idx.':history'}) {
 1800:               if ($contrib{$idx.':history'} =~ /:/) {
 1801:                   my @oldversions = split(/:/,$contrib{$idx.':history'});
 1802:                   $numoldver = @oldversions;
 1803:               } else {
 1804:                   $numoldver = 1;
 1805:               }
 1806:           }
 1807:           if ($env{'form.replydisc'}) {
 1808:               if ($contrib{$idx.':history'}) {
 1809:                   if ($contrib{$idx.':history'} =~ /:/) {
 1810:                       my @oldversions = split(/:/,$contrib{$idx.':history'});
 1811:                       $numoldver = @oldversions;
 1812:                   } else {
 1813:                       $numoldver = 1;
 1814:                   }
 1815:               }
 1816:               if ($idx > 0) {
 1817:                   my %msgversions = ();
 1818:                   &get_post_versions(\%msgversions,$contrib{$idx.':message'},0,$numoldver);
 1819:                   $quote = $msgversions{$numoldver};
 1820:               }
 1821:               if ($idx > 0) {
 1822:                   my %subversions = ();
 1823:                   &get_post_versions(\%subversions,$contrib{$idx.':subject'},1,$numoldver);
 1824:                   $subject = &mt('Re: ').$subversions{$numoldver};
 1825:               }
 1826:               $subject = &HTML::Entities::encode($subject,'<>&"');
 1827:           } else {
 1828:               $attachmenturls = $contrib{$idx.':attachmenturl'};
 1829:               if ($idx > 0) {
 1830:                   my %msgversions = ();
 1831:                   &get_post_versions(\%msgversions,$contrib{$idx.':message'},0,$numoldver);
 1832:                   $comment = $msgversions{$numoldver};
 1833:                   my %subversions = ();
 1834:                   &get_post_versions(\%subversions,$contrib{$idx.':subject'},0,$numoldver);
 1835:                   $subject = $subversions{$numoldver}; 
 1836:               }
 1837:               if (defined($contrib{$idx.':replyto'})) {
 1838:                   $parentmsg = $contrib{$idx.':replyto'};
 1839:               }
 1840:               unless (exists($env{'form.origpage'})) {
 1841:                   my $anonflag = 'nonanon';
 1842:                   if ($contrib{$idx.':anonymous'}) {
 1843:                       $anonflag = 'anon';
 1844:                   }
 1845:                   $anonscript = (<<END);
 1846:   function setposttype () {
 1847:       var currtype = "$anonflag";
 1848:       for (var i=0; i<document.mailform.discuss.length; i++) {
 1849: 	  if (document.mailform.elements.discuss[i].value == currtype ) {
 1850: 	      document.mailform.elements.discuss[i].checked=1;
 1851: 	  } 
 1852:       }
 1853:       return
 1854:   }
 1855: END
 1856:               }
 1857:           }
 1858:       }
 1859:       if ($env{'form.previous'}) {
 1860:           $prevtag = '<input type="hidden" name="previous" value="'.$env{'form.previous'}.'" />';
 1861:       }
 1862:   }
 1863: 
 1864:   if ($env{'form.origpage'}) {
 1865:       $subject = &unescape($env{'form.subject'});
 1866:       $comment = &unescape($env{'form.comment'});
 1867:       &process_attachments(\@currnewattach,\@currdelold,\@keepold);
 1868:   }
 1869:   my $latexHelp=&Apache::loncommon::helpLatexCheatsheet(undef,undef,1,($env{'form.modal'}?'popup':0));
 1870:   my $send=&mt('Send');
 1871:   my $alert = &mt('Please select a feedback type.');
 1872:   my $js= <<END;
 1873: <script type="text/javascript">
 1874: //<!--
 1875:     function gosubmit() {
 1876:         var rec=0;
 1877:         if (typeof(document.mailform.elements.discuss)!="undefined") {
 1878: 	    if (typeof(document.mailform.elements.discuss.length) == "undefined") {
 1879: 		if (document.mailform.elements.discuss.checked ) {
 1880: 		    rec=1;
 1881: 		}
 1882: 	    } else {
 1883: 		for (var i=0; i<document.mailform.elements.discuss.length; i++) {
 1884: 		    if (document.mailform.elements.discuss[i].checked ) {
 1885: 			rec=1;
 1886: 		    } 
 1887: 		}
 1888: 	    }
 1889: 	}
 1890:         if (typeof(document.mailform.elements.blog)!="undefined") {
 1891:           if (document.mailform.elements.blog.checked) {
 1892:              rec=1;
 1893:           } 
 1894:         }
 1895: 
 1896:         if (rec) {
 1897:             if (typeof(document.mailform.onsubmit)=='function') {
 1898: 		document.mailform.onsubmit();
 1899: 	    }
 1900: 	    document.mailform.submit();
 1901:         } else {
 1902:             alert('$alert');
 1903: 	}
 1904:     }
 1905:     $anonchk
 1906:     $anonscript
 1907: //-->
 1908: </script>
 1909: END
 1910: 
 1911:   my ($textareaheader,$textareaclass);
 1912:   if (&Apache::lonhtmlcommon::htmlareabrowser()) {
 1913:       $textareaheader = &Apache::lonhtmlcommon::htmlareaselectactive();
 1914:       $textareaclass = 'class="LC_richDefaultOff"';
 1915:       if ($env{'request.course.id'}) {
 1916:           unless (($env{'course.'.$env{'request.course.id'}.'.allow_limited_html_in_feedback'} =~ /^\s*yes\s*$/i) || ($env{'form.sendmessageonly'})) {
 1917:               undef($textareaclass);
 1918:           }
 1919:       }
 1920:   }
 1921: 
 1922:   # Breadcrumbs
 1923:   my $brcrum = [{'href' => '',
 1924:                  'text' => 'Resource Feedback and Discussion'}];
 1925: 
 1926:   my %onload = ('onload' => 'window.focus();setposttype();');
 1927:   my %parms=('add_entries' => \%onload);
 1928:   if ($env{'form.modal'} ne 'yes') { 'bread_crumbs' => $brcrum }
 1929:   my $start_page=
 1930:       &Apache::loncommon::start_page('Resource Feedback and Discussion',$js,\%parms);
 1931: 
 1932:   if ($quote ne '') {
 1933:       $quote = &HTML::Entities::decode($quote);
 1934:       unless (&contains_block_html($quote)) {
 1935:           &newline_to_br(\$quote);
 1936:       }
 1937:       $quote='<blockquote>'.&Apache::lontexconvert::msgtexconverted($quote).'</blockquote>';
 1938:   }
 1939:   my $header='';
 1940:   unless ($env{'form.modal'}) {
 1941:      $header="<h2><tt>$restitle</tt></h2>";
 1942:   }
 1943:   $r->print(<<END);
 1944: $start_page
 1945: <h1>$lt{'myqu'}</h1>
 1946: $header
 1947: <form action="/adm/feedback" method="post" name="mailform"
 1948: enctype="multipart/form-data">
 1949: $prevtag
 1950: <input type="hidden" name="postdata" value="$feedurl" />
 1951: <input type="hidden" name="modal" value="$env{'form.modal'}" />
 1952: END
 1953:   if ($env{'form.replydisc'}) {
 1954:       $r->print(<<END);
 1955: <input type="hidden" name="replydisc" value="$env{'form.replydisc'}" />
 1956: END
 1957:   } elsif ($env{'form.editdisc'}) {
 1958:      $r->print(<<END);
 1959: <input type="hidden" name="editdisc" value="$env{'form.editdisc'}" />
 1960: <input type="hidden" name="parentmsg" value="$parentmsg" />
 1961: END
 1962:   }
 1963:   $r->print(<<END);
 1964: $options
 1965: $quote
 1966: <p>
 1967: $textareaheader
 1968: </p>
 1969: <br>
 1970: <p>
 1971: $latexHelp
 1972: </p>
 1973: <p>
 1974: END
 1975: 
 1976:     $r->print(&Apache::lonhtmlcommon::start_pick_box());
 1977:     $r->print(&Apache::lonhtmlcommon::row_title(&mt('Subject')));
 1978:     $r->print('<input type="text" name="subject" size="30" value="'.
 1979:               $subject.'" /></p>');
 1980:     $r->print(&Apache::lonhtmlcommon::row_closure());
 1981:     $r->print(&Apache::lonhtmlcommon::row_title(&mt('Message')));
 1982:     $r->print('<textarea name="comment" id="comment" cols="60" rows="10" '.
 1983:               $textareaclass.'>'.$comment.
 1984:               '</textarea>');
 1985:     $r->print(&Apache::lonhtmlcommon::row_closure(1));
 1986:     $r->print(&Apache::lonhtmlcommon::end_pick_box());
 1987: 
 1988:     if ( ($env{'form.editdisc'}) || ($env{'form.replydisc'}) ) {
 1989:         if ($env{'form.origpage'}) {
 1990:             foreach my $attach (@currnewattach) {
 1991:                 $r->print('<input type="hidden" name="currnewattach" value="'.$attach.'" />'."\n");
 1992:             }
 1993:             foreach my $oldatt (@currdelold) {
 1994:                 $r->print('<input type="hidden" name="deloldattach" value="'.$oldatt.'" />'."\n");
 1995:             }
 1996:         }
 1997:         if ($env{'form.editdisc'}) {
 1998:             if ($attachmenturls) {
 1999:                 &extract_attachments($attachmenturls,$idx,$numoldver,\$attachmsg,\%attachments,\%currattach,\@currdelold);
 2000:                 $attachnum = scalar(keys(%currattach));
 2001:                 foreach my $key (keys(%currattach)) {
 2002:                     $r->print('<input type="hidden" name="keepold" value="'.$key.'" />'."\n");
 2003:                 }
 2004:             }
 2005:         }
 2006:     } else {
 2007:         $r->print(<<END);
 2008: <p>
 2009: $lt{'atta'} $attachmaxtext: <input type="file" name="attachment" />
 2010: </p>
 2011: END
 2012:     }
 2013:     if (exists($env{'form.group'})) {
 2014:         $r->print('<input type="hidden" name="group" value="'.$env{'form.group'}.'" />');
 2015:     }
 2016:     if (exists($env{'form.ref'})) {
 2017:         $r->print('<input type="hidden" name="ref" value="'.$env{'form.ref'}.'" />');
 2018:     }
 2019:     $r->print(<<END);
 2020: <p>
 2021: <input type="hidden" name="sendit" value="1" />
 2022: <input type="button" value="$send" onclick='gosubmit();' />
 2023: </p>
 2024: </form>
 2025: END
 2026:     if ($env{'form.editdisc'} || $env{'form.replydisc'}) {
 2027:         my $now = time;
 2028:         my $ressymb = $symb;
 2029:         &Apache::lonenc::check_encrypt(\$ressymb);
 2030:         my $postidx = '';
 2031:         if ($env{'form.editdisc'}) {
 2032:             $postidx = $idx;
 2033:         }
 2034:         if (@currnewattach > 0) {
 2035:             $attachnum += @currnewattach;
 2036:         }
 2037:         my $blockblog = &Apache::loncommon::blocking_status('blogs');
 2038:         $r->print(&generate_attachments_button($postidx,$attachnum,$ressymb,$now,\@currnewattach,\@currdelold,$numoldver,'',$blockblog));
 2039:         if ($attachnum > 0) {
 2040:             if (@currnewattach > 0) {
 2041:                 $newattachmsg .= '<br /><b>'.&mt('New attachments').'</b><br />';
 2042:                 if (@currnewattach > 1) {
 2043:                     $newattachmsg .= '<ol>';
 2044:                     foreach my $item (@currnewattach) {
 2045:                         $item =~ m#.*/([^/]+)$#;
 2046:                         $newattachmsg .= '<li><a href="'.$item.'">'.$1.'</a></li>'."\n";
 2047:                     }
 2048:                     $newattachmsg .= '</ol>'."\n";
 2049:                 } else {
 2050:                     $currnewattach[0] =~ m#.*/([^/]+)$#;
 2051:                     $newattachmsg .= '<a href="'.$currnewattach[0].'">'.$1.'</a><br />'."\n";
 2052:                 }
 2053:             }
 2054:             if ($attachmsg) {
 2055:                 $r->print("<br /><b>$lt{'reta'}</b>:$attachmsg<br />\n");
 2056:             }
 2057:             if ($newattachmsg) {
 2058:                 $r->print("$newattachmsg<br />");
 2059:             }
 2060:         }
 2061:     }
 2062:     $r->print(&generate_preview_button().
 2063: 	      &Apache::loncommon::end_page());
 2064: 
 2065: }
 2066: 
 2067: sub print_display_options {
 2068:     my ($r,$symb,$previous,$dispchgA,$dispchgB,$markchg,$toggchg,$feedurl) = @_;
 2069:     &Apache::loncommon::content_type($r,'text/html');
 2070:     $r->send_http_header;
 2071: 
 2072:     my $function = &Apache::loncommon::get_users_function();
 2073:     my $tabcolor = &Apache::loncommon::designparm($function.'.tabbg',
 2074:                                                     $env{'user.domain'});
 2075: 
 2076:     my %lt = &Apache::lonlocal::texthash(
 2077:         'pref' => 'Display Preference',
 2078:         'curr' => 'Current setting ',
 2079:         'actn' => 'Action',
 2080:         'deff' => 'Default for all discussions',
 2081:         'prca' => 'Preferences can be set for this discussion that determine ....',
 2082:         'whpo' => 'Which posts are displayed when you display this discussion board or resource, and',
 2083:         'unwh' => 'Under what circumstances posts are identified as "NEW", and',
 2084:         'wipa' => 'Whether individual posts can be marked as read/unread',
 2085:         'allposts' => 'All posts',
 2086:         'unread' => 'New posts only',
 2087:         'unmark' => 'Posts not marked read',
 2088:         'ondisp' => 'Once displayed',
 2089:         'onmark' => 'Once marked not NEW',
 2090:         'toggon' => 'Shown',
 2091:         'toggoff' => 'Not shown',
 2092:         'disa' => 'Posts displayed?',
 2093:         'npmr' => 'New posts cease to be identified as "NEW"?',
 2094:         'dotm' => 'Option to mark each post as read/unread?',  
 2095:         'chgt' => 'Change to ',
 2096:         'mkdf' => 'Set to ',
 2097:         'yhni' => 'You have not indicated that you wish to change any of the discussion settings',
 2098:         'ywbr' => 'You will be returned to the previous page if you click OK.'
 2099:     );
 2100: 
 2101:     my $dispchangeA = $lt{'unread'};
 2102:     my $dispchangeB = $lt{'unmark'};
 2103:     my $markchange = $lt{'ondisp'};
 2104:     my $toggchange = $lt{'toggon'};
 2105:     my $currdisp = $lt{'allposts'};
 2106:     my $currmark = $lt{'onmark'};
 2107:     my $discdisp = 'allposts';
 2108:     my $discmark = 'onmark';
 2109:     my $currtogg = $lt{'toggoff'};
 2110:     my $disctogg = 'toggoff';
 2111:                                                                                       
 2112:     if ($dispchgA eq 'allposts') {
 2113:         $dispchangeA = $lt{'allposts'};
 2114:         $currdisp = $lt{'unread'};
 2115:         $discdisp = 'unread';
 2116:     }
 2117: 
 2118:     if ($markchg eq 'markonread') {
 2119:         $markchange = $lt{'onmark'};
 2120:         $currmark = $lt{'ondisp'};
 2121:         $discmark = 'ondisp';
 2122:     }
 2123: 
 2124:     if ($dispchgB eq 'onlyunread') {
 2125:         $dispchangeB = $lt{'unread'};
 2126:         $currdisp = $lt{'unmark'};
 2127:         $discdisp = 'unmark';
 2128:     }
 2129:     if ($toggchg eq 'toggoff') {
 2130:         $toggchange = $lt{'toggoff'};
 2131:         $currtogg = $lt{'toggon'};
 2132:         $disctogg = 'toggon';
 2133:     }
 2134: 
 2135:     my $js = <<END;
 2136: <script type="text/javascript">
 2137: function discdispChk(caller) {
 2138:     var disctogg = '$toggchg'
 2139:     if (caller == 0) {
 2140:         if (document.modifydisp.discdisp[0].checked == true) {
 2141:             if (document.modifydisp.discdisp[1].checked == true) {
 2142:                 document.modifydisp.discdisp[1].checked = false
 2143:             }
 2144:         }
 2145:     }
 2146:     if (caller == 1) {
 2147:         if (document.modifydisp.discdisp[1].checked == true) {
 2148:             if (document.modifydisp.discdisp[0].checked == true) {
 2149:                 document.modifydisp.discdisp[0].checked = false
 2150:             }
 2151:             if (disctogg == 'toggon') {
 2152:                 document.modifydisp.disctogg.checked = true
 2153:             }
 2154:             if (disctogg == 'toggoff') {
 2155:                 document.modifydisp.disctogg.checked = false
 2156:             }
 2157:         }
 2158:     }
 2159:     if (caller == 2) {
 2160:         var dispchgB = '$dispchgB'
 2161:         if (disctogg == 'toggoff') {
 2162:             if (document.modifydisp.disctogg.checked == true) {
 2163:                 if (dispchgB == 'onlyunmark') {
 2164:                     document.modifydisp.discdisp[1].checked = false
 2165:                 }
 2166:             }
 2167:         }
 2168:     }  
 2169: }
 2170: 
 2171: function setDisp() {
 2172:     var prev = "$previous"
 2173:     var chktotal = 0
 2174:     if (document.modifydisp.discdisp[0].checked == true) {
 2175:         document.modifydisp.$dispchgA.value = "$symb"
 2176:         chktotal ++
 2177:     }
 2178:     if (document.modifydisp.discdisp[1].checked == true) {
 2179:         document.modifydisp.$dispchgB.value = "$symb"
 2180:         chktotal ++
 2181:     }
 2182:     if (document.modifydisp.discmark.checked == true) {
 2183:         document.modifydisp.$markchg.value = "$symb"
 2184:         chktotal ++
 2185:     }
 2186:     if (document.modifydisp.disctogg.checked == true) {
 2187:         document.modifydisp.$toggchg.value = "$symb"
 2188:         chktotal ++
 2189:     }
 2190:     if (chktotal > 0) { 
 2191:         document.modifydisp.submit()
 2192:     } else {
 2193:         if(confirm("$lt{'yhni'}. \\n$lt{'ywbr'}"))      {
 2194:             if (prev > 0) {
 2195:                 location.href = "$feedurl?previous=$previous"
 2196:             } else {
 2197:                 location.href = "$feedurl"
 2198:             }
 2199:         }
 2200:     }
 2201: }
 2202: </script>
 2203: END
 2204: 
 2205: 
 2206:     my $start_page =
 2207: 	&Apache::loncommon::start_page('Discussion display options',$js);
 2208:     my $end_page =
 2209: 	&Apache::loncommon::end_page();
 2210:     $r->print(<<END);
 2211: $start_page
 2212: <form name="modifydisp" method="post" action="/adm/feedback">
 2213: $lt{'sdpf'}<br/> $lt{'prca'}  <ol><li>$lt{'whpo'}</li><li>$lt{'unwh'}</li><li>$lt{'wipa'}</li></ol>
 2214: <br />
 2215: END
 2216:     $r->print(&Apache::loncommon::start_data_table());
 2217:     $r->print(<<END);
 2218:        <tr>
 2219:         <th>$lt{'pref'}</td>
 2220:         <th>$lt{'curr'}</td>
 2221:         <th>$lt{'actn'}?</td>
 2222:        </tr>
 2223: END
 2224:     $r->print(&Apache::loncommon::start_data_table_row());
 2225:     $r->print(<<END);
 2226:        <td>$lt{'disa'}</td>
 2227:        <td>$lt{$discdisp}</td>
 2228:        <td><label><input type="checkbox" name="discdisp" onclick="discdispChk('0')" />&nbsp;$lt{'chgt'} "$dispchangeA"</label>
 2229:            <br />
 2230:            <label><input type="checkbox" name="discdisp" onclick="discdispChk('1')" />&nbsp;$lt{'chgt'} "$dispchangeB"</label>
 2231:        </td>
 2232: END
 2233:     $r->print(&Apache::loncommon::end_data_table_row());
 2234:     $r->print(&Apache::loncommon::start_data_table_row());
 2235:     $r->print(<<END);
 2236:        <td>$lt{'npmr'}</td>
 2237:        <td>$lt{$discmark}</td>
 2238:        <td><label><input type="checkbox" name="discmark" />$lt{'chgt'} "$markchange"</label></td>
 2239: END
 2240:     $r->print(&Apache::loncommon::end_data_table_row());
 2241:     $r->print(&Apache::loncommon::start_data_table_row());
 2242:     $r->print(<<END);
 2243:        <td>$lt{'dotm'}</td>
 2244:        <td>$lt{$disctogg}</td>
 2245:        <td><label><input type="checkbox" name="disctogg" onclick="discdispChk('2')" />$lt{'chgt'} "$toggchange"</label></td>
 2246: END
 2247:     my $save = &mt('Save');
 2248:     $r->print(&Apache::loncommon::end_data_table_row());
 2249:     $r->print(&Apache::loncommon::end_data_table());
 2250:     $r->print(<<END);
 2251: <br />
 2252: <br />
 2253: <input type="hidden" name="symb" value="$symb" />
 2254: <input type="hidden" name="previous" value="$previous" />
 2255: <input type="hidden" name="$dispchgA" value="" />
 2256: <input type="hidden" name="$dispchgB" value="" />
 2257: <input type="hidden" name="$markchg" value="" />
 2258: <input type="hidden" name="$toggchg" value="" />
 2259: <input type="button" name="sub" value="$save" onclick="javascript:setDisp()" />
 2260: END
 2261:     if (exists($env{'form.group'})) {
 2262:         $r->print('<input type="hidden" name="group" value="'.$env{'form.group'}.'" />');
 2263:     }
 2264:     if (exists($env{'form.ref'})) {
 2265:         $r->print('<input type="hidden" name="ref" value="'.$env{'form.ref'}.'" />');
 2266:     }
 2267:     $r->print("
 2268: <br />
 2269: <br />
 2270: </form>
 2271: $end_page
 2272:     ");
 2273:     return;
 2274: }
 2275: 
 2276: sub print_sortfilter_options {
 2277:     my ($r,$symb,$previous,$feedurl) = @_;
 2278: 
 2279:     &Apache::loncommon::content_type($r,'text/html');
 2280:     $r->send_http_header;
 2281: 
 2282:     &Apache::lonenc::check_encrypt(\$symb);
 2283:     my @sections;
 2284:     my $section_sel = '';
 2285:     my $numvisible = 5;
 2286:     my @groups;
 2287:     my $group_sel = '';
 2288:     my $numgroupvis = 5;
 2289:     my %sectioncount = &Apache::loncommon::get_sections();
 2290:     my @courseroles = qw(st ad ep ta in);
 2291:     my $crstype = &Apache::loncommon::course_type();
 2292:     my $ccrole = 'cc';
 2293:     if ($crstype eq 'Community') {
 2294:         $ccrole = 'co';
 2295:     }
 2296:     push(@courseroles,$ccrole);
 2297:     
 2298:     if ($env{'request.course.sec'} !~ /^\s*$/) {  #Restrict section choice to current section 
 2299:         @sections = ('all',$env{'request.course.sec'});
 2300:         $numvisible = 2;
 2301:     } else {
 2302:         @sections = sort {$a cmp $b} keys(%sectioncount);
 2303:         if (scalar(@sections) < 4) {
 2304:             $numvisible = scalar(@sections) + 1;
 2305:         }
 2306:         unshift(@sections,'all'); # Put 'all' at the front of the list
 2307: 
 2308:     }
 2309:     foreach my $sec (@sections) {
 2310:         $section_sel .= "  <option value=\"$sec\">$sec</option>\n";
 2311:     }
 2312: 
 2313:     if (&check_group_priv() eq 'ok') {
 2314:         my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 2315:         my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; 
 2316:         my %curr_groups = &Apache::longroup::coursegroups($cdom,$cnum);
 2317:         @groups = sort {$a cmp $b} keys(%curr_groups);
 2318:         if (scalar(@groups) < 4) {
 2319:             $numgroupvis = scalar(@groups) + 1;
 2320:         }
 2321:         unshift(@groups,'all'); # Put 'all' at the front of the list
 2322:     } else { 
 2323:         my @coursegroups = split(/:/,$env{'request.course.groups'});
 2324:         if (@coursegroups > 0) {
 2325:             @coursegroups = sort {$a cmp $b} @coursegroups;
 2326:             @groups = ('all',@coursegroups);
 2327:             if (scalar(@groups) < 4) {
 2328:                 $numgroupvis = scalar(@groups) + 1;
 2329:             }
 2330:         } else {
 2331:             @groups = ('all');
 2332:             $numgroupvis = 1;
 2333:         }
 2334:     }
 2335:     foreach my $group (@groups) {
 2336:         $group_sel .= "  <option value=\"$group\">$group</option>\n";
 2337:     }
 2338: 
 2339:     my $function = &Apache::loncommon::get_users_function();
 2340:     my $tabcolor = &Apache::loncommon::designparm($function.'.tabbg',
 2341:                                                     $env{'user.domain'});
 2342:     my %lt = &Apache::lonlocal::texthash(
 2343:         'diop' => 'Display Options',
 2344:         'curr' => 'Current setting ',
 2345:         'actn' => 'Action',
 2346:         'prca' => 'Set options that control the sort order of posts, and/or which posts are displayed.',
 2347:         'soor' => 'Sort order',
 2348:         'spur' => 'Specific user roles',
 2349:         'sprs' => 'Specific role status',
 2350:         'spse' => 'Specific sections',
 2351:         'spgr' => 'Specific groups',
 2352:         'psub' => 'Pick specific users (by name)',
 2353:         'shal' => 'Show a list of current posters',
 2354:         'stor' => 'Save changes',
 2355:     );
 2356: 
 2357:     my %sort_types = ();
 2358:     my %role_types = ();
 2359:     my %status_types = ();
 2360:     &sort_filter_names(\%sort_types,\%role_types,\%status_types,$crstype);
 2361: 
 2362:     my $js = <<END;
 2363: <script type="text/javascript">
 2364: function verifyFilter() {
 2365:     var rolenum = 0
 2366:     for (var i=0; i<document.modifyshown.rolefilter.length; i++) {
 2367:         if (document.modifyshown.rolefilter.options[i].selected == true) {
 2368:             rolenum ++
 2369:         }
 2370:     }
 2371:     if (rolenum == 0) {
 2372:         document.modifyshown.rolefilter.options[0].selected = true
 2373:     }
 2374: 
 2375:     var secnum = 0
 2376:     for (var i=0; i<document.modifyshown.sectionpick.length; i++) {
 2377:         if (document.modifyshown.sectionpick.options[i].selected == true) {
 2378:             secnum ++
 2379:         }
 2380:     }
 2381:     if (secnum == 0) {
 2382:         document.modifyshown.sectionpick.options[0].selected = true
 2383:     }
 2384: 
 2385:     var grpnum = 0
 2386:     for (var i=0; i<document.modifyshown.grouppick.length; i++) {
 2387:         if (document.modifyshown.grouppick.options[i].selected == true) {
 2388:             grpnum ++
 2389:         }
 2390:     }
 2391:     if (grpnum == 0) {
 2392:         document.modifyshown.grouppick.options[0].selected = true
 2393:     }
 2394: 
 2395:     document.modifyshown.submit();
 2396: }
 2397: </script>
 2398: END
 2399: 
 2400:     my $start_page=
 2401: 	&Apache::loncommon::start_page('Discussion options',$js);
 2402:     my $end_page=
 2403: 	&Apache::loncommon::end_page();
 2404: 
 2405:     $r->print(<<END);
 2406: $start_page
 2407: <form name="modifyshown" method="post" action="/adm/feedback">
 2408: <b>$lt{'diso'}</b><br/> $lt{'prca'}
 2409: <br />
 2410: <table border="0">
 2411:  <tr>
 2412:   <th>$lt{'soor'}</th>
 2413:   <th>&nbsp;</th>
 2414:   <th>$lt{'sprs'}</th>
 2415:   <th>&nbsp;</th>
 2416:   <th>$lt{'spur'}</th>
 2417:   <th>&nbsp;</th>
 2418:   <th>$lt{'spse'}</th>
 2419:   <th>&nbsp;</th>
 2420:   <th>$lt{'spgr'}</th>
 2421:   <th>&nbsp;</th>
 2422:   <th>$lt{'psub'}</th>
 2423:  </tr>
 2424:  <tr>
 2425:   <td align="center" valign="top">
 2426:    <select name="sortposts">
 2427:     <option value="ascdate" selected="selected">$sort_types{'ascdate'}</option>
 2428:     <option value="descdate">$sort_types{'descdate'}</option>
 2429:     <option value="thread">$sort_types{'thread'}</option>
 2430:     <option value="subject">$sort_types{'subject'}</option>
 2431:     <option value="username">$sort_types{'username'}</option>
 2432:     <option value="lastfirst">$sort_types{'lastfirst'}</option>
 2433:    </select>
 2434:   </td>
 2435:   <td>&nbsp;</td>
 2436:   <td align="center" valign="top">
 2437:    <select name="statusfilter">
 2438:     <option value="all" selected="selected">$status_types{'all'}</option>
 2439:     <option value="Active">$status_types{'Active'}</option>
 2440:     <option value="Expired">$status_types{'Expired'}</option>
 2441:     <option value="Future">$status_types{'Future'}</option>
 2442:    </select>
 2443:   </td>
 2444:   <td>&nbsp;</td>
 2445:   <td align="center" valign="top">
 2446:    <select name="rolefilter" multiple="multiple" size="5">
 2447:     <option value="all">$role_types{'all'}</option>
 2448:     <option value="st">$role_types{'st'}</option>
 2449:     <option value="$ccrole">$role_types{$ccrole}</option>
 2450:     <option value="in">$role_types{'in'}</option>
 2451:     <option value="ta">$role_types{'ta'}</option>
 2452:     <option value="ep">$role_types{'ep'}</option>
 2453:     <option value="ad">$role_types{'ad'}</option>
 2454:     <option value="cr">$role_types{'cr'}</option>
 2455:    </select>
 2456:   </td>
 2457:   <td>&nbsp;</td>
 2458:   <td align="center" valign="top">
 2459:    <select name="sectionpick" multiple="multiple" size="$numvisible">
 2460:     $section_sel
 2461:    </select>
 2462:   </td>
 2463:   <td>&nbsp;</td>
 2464:   <td align="center" valign="top">
 2465:    <select name="grouppick" multiple="multiple" size="$numvisible">
 2466:     $group_sel
 2467:    </select>
 2468:   </td>
 2469:   <td>&nbsp;</td>
 2470:   <td valign="top"><label><input type="checkbox" name="posterlist" value="$symb" />$lt{'shal'}</label></td>
 2471:  </tr>
 2472: </table>
 2473: <br />
 2474: <input type="hidden" name="inhibitmenu" value="$env{'form.inhibitmenu'}" />
 2475: <input type="hidden" name="modal" value="$env{'form.modal'}" />
 2476: <input type="hidden" name="previous" value="$previous" />
 2477: <input type="hidden" name="applysort" value="$symb" />
 2478: <input type="button" name="sub" value="$lt{'stor'}" onclick="verifyFilter()" />
 2479: END
 2480:     if (exists($env{'form.group'})) {
 2481:         $r->print('<input type="hidden" name="group" value="'.$env{'form.group'}.'" />');
 2482:     }
 2483:     if (exists($env{'form.ref'})) {
 2484:         $r->print('<input type="hidden" name="ref" value="'.$env{'form.ref'}.'" />');
 2485:     }
 2486:     $r->print("
 2487: <br />
 2488: <br />
 2489: </form>
 2490: $end_page
 2491: ");
 2492: }
 2493: 
 2494: sub print_showposters {
 2495:     my ($r,$symb,$previous,$feedurl,$sortposts) = @_;
 2496: 
 2497:     &Apache::loncommon::content_type($r,'text/html');
 2498:     $r->send_http_header;
 2499: 
 2500:     &Apache::lonenc::check_encrypt(\$symb);
 2501:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 2502:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 2503:     my $group = $env{'form.group'};
 2504:     my $ressymb = &wrap_symb($symb);
 2505:     my $seehidden = &can_see_hidden('',$ressymb,$feedurl,$group,$cdom,$cnum);
 2506:     my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 2507:                                          $cdom,$cnum);
 2508:     my %namesort = ();
 2509:     my %postcounts = ();
 2510: 
 2511:     my %lt = &Apache::lonlocal::texthash(
 2512:                                           sele => 'Select',
 2513:                                           full => 'Fullname',
 2514:                                           usdo => 'Username:domain',
 2515:                                           post => 'Posts',
 2516:                                         );
 2517:     if ($contrib{'version'}) {
 2518:         for (my $idx=1;$idx<=$contrib{'version'};$idx++) {
 2519:             my $hidden=($contrib{'hidden'}=~/\.$idx\./);
 2520:             my $deleted=($contrib{'deleted'}=~/\.$idx\./);
 2521:             unless ((($hidden) && (!$seehidden)) || ($deleted)) {
 2522:                 if ((!$contrib{$idx.':anonymous'}) || (&Apache::lonnet::allowed('rin',$env{'request.course.id'}.($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'')))) {
 2523:                     my %names = &Apache::lonnet::get('environment',['firstname','lastname'],$contrib{$idx.':senderdomain'},$contrib{$idx.':sendername'});
 2524:                     my $lastname = $names{'lastname'};
 2525:                     my $firstname = $names{'firstname'};
 2526:                     if ($lastname eq '') {
 2527:                         $lastname = '_';
 2528:                     }
 2529:                     if ($firstname eq '') {
 2530:                         $firstname = '_';
 2531:                     }
 2532:                     unless (defined($namesort{$lastname})) {
 2533:                         %{$namesort{$lastname}} = ();
 2534:                     }
 2535:                     my $poster =  $contrib{$idx.':sendername'}.':'.$contrib{$idx.':senderdomain'};
 2536:                     $postcounts{$poster} ++;
 2537:                     if (defined($namesort{$lastname}{$firstname})) {
 2538:                         if (!grep/^$poster$/,@{$namesort{$lastname}{$firstname}}) {
 2539:                             push(@{$namesort{$lastname}{$firstname}}, $poster);
 2540:                         }
 2541:                     } else {
 2542:                         @{$namesort{$lastname}{$firstname}} = ("$poster");
 2543:                     }
 2544:                 }
 2545:             }
 2546:         }       
 2547:     }
 2548: 
 2549:     my $start_page = &Apache::loncommon::start_page('Discussion options');
 2550:     my $table_start =&Apache::loncommon::start_data_table();
 2551:     $r->print(<<END);
 2552: $start_page
 2553:  <form name="pickpostersform" method="post">
 2554:  <br />
 2555:     $table_start
 2556:       <tr>
 2557:        <th>#</th>
 2558:        <th>$lt{'sele'}</th>
 2559:        <th>$lt{'full'} <font color="#999999">($lt{'usdo'})</font></th>
 2560:        <th>$lt{'post'}</th>
 2561:       </tr>
 2562: END
 2563:     my $count = 0;
 2564:     foreach my $last (sort(keys(%namesort))) {
 2565:         foreach my $first (sort(keys(%{$namesort{$last}}))) {
 2566:             foreach my $user (sort(@{$namesort{$last}{$first}})) {
 2567:                 my ($uname,$udom) = split(/:/,$user);
 2568:                 if (!$uname || !$udom) { 
 2569:                     next;
 2570:                 } else {
 2571:                     $count ++;
 2572:                     $r->print(&Apache::loncommon::start_data_table_row().
 2573: 			      '<td align="right">'.$count.'</td>
 2574:                                <td align="center"><label><input name="stuinfo" type="checkbox" value="'.$user.'" /></td>
 2575:                                <td>'.$last.', '.$first.' ('.$uname.':'.$udom.')</label></td>
 2576:                                <td>'.$postcounts{$user}.'</td>'.
 2577: 			      &Apache::loncommon::end_data_table_row());
 2578:                 }
 2579:             }
 2580:         }
 2581:     }
 2582:     $r->print(&Apache::loncommon::end_data_table());
 2583:     my $end_page   = &Apache::loncommon::end_page();
 2584:     $r->print(<<END);
 2585: <br />
 2586: <input type="hidden" name="sortposts" value="$sortposts" />
 2587: <input type="hidden" name="modal" value="$env{'form.modal'}" />
 2588: <input type="hidden" name="userpick" value="$symb" />
 2589: <input type="button" name="store" value="Display posts" onclick="javascript:document.pickpostersform.submit()" />
 2590: </form>
 2591: $end_page
 2592: END
 2593: }
 2594: 
 2595: sub get_post_versions {
 2596:     my ($versions,$incoming,$htmldecode,$numver) = @_;
 2597:     if ($incoming =~ /^<version num="0">/) {
 2598:         my $p = HTML::LCParser->new(\$incoming);
 2599:         my $done = 0; 
 2600: 
 2601:         while ( (my $token = $p->get_tag("version")) && (!$done)) {
 2602:             my $num = $token->[1]{num};
 2603:             my $text = $p->get_text("/version");
 2604:             if (defined($numver)) {
 2605:                 if ($num == $numver) {
 2606:                     if ($htmldecode) {
 2607:                         $text = &HTML::Entities::decode($text);
 2608:                     }
 2609:                     $$versions{$numver}=$text;
 2610:                     $done = 1;
 2611:                 }
 2612:             } else {
 2613:                 if ($htmldecode) {
 2614:                     $text = &HTML::Entities::decode($text);
 2615:                 }
 2616:                 $$versions{$num}=$text;
 2617:             }
 2618:         }
 2619:     } else {
 2620:         if (!defined($numver)) {
 2621:             $numver = 0;
 2622:         }
 2623:         if ($htmldecode) {
 2624:             $$versions{$numver} = $incoming;
 2625:         } else {
 2626:             $$versions{$numver} = &HTML::Entities::encode($incoming,'<>&"');
 2627:         }
 2628:     }
 2629:     return;
 2630: }
 2631: 
 2632: sub get_post_attachments {
 2633:     my ($attachments,$attachmenturls) = @_;
 2634:     my $num;
 2635:     if ($attachmenturls =~ m/^<attachment id="0">/) {
 2636:         my $p = HTML::LCParser->new(\$attachmenturls);
 2637:         while (my $token = $p->get_tag("attachment","filename","post"))  {
 2638:             if ($token->[0] eq "attachment") {
 2639:                 $num = $token->[1]{id};
 2640:                 %{$$attachments{$num}} =();
 2641:             } elsif ($token->[0] eq "filename") {
 2642:                 $$attachments{$num}{'filename'} = $p->get_text("/filename");
 2643:             } elsif ($token->[0] eq "post") {
 2644:                 my $id = $token->[1]{id};
 2645:                 $$attachments{$num}{$id} = $p->get_text("/post");
 2646:             }
 2647:         }
 2648:     } else {
 2649:         %{$$attachments{'0'}} = ();
 2650:         $$attachments{'0'}{'filename'} = $attachmenturls;
 2651:         $$attachments{'0'}{'0'} = 'n';
 2652:     }
 2653: 
 2654:     return;
 2655: }
 2656: 
 2657: sub fail_redirect {
 2658:   my ($r,$feedurl) = @_;
 2659:   if ($feedurl=~/^\/adm\//) { $feedurl.='?register=1' };
 2660:   my %lt = &Apache::lonlocal::texthash(
 2661:                  'sorr' => 'Sorry, no recipients ...',
 2662:   );
 2663:   my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
 2664:   $r->print(&Apache::loncommon::start_page('Feedback not sent',undef,
 2665: 					   {'redirect'  => [2,$feedurl],
 2666: 					    'only_body' => 1,}));
 2667:   $r->print(<<ENDFAILREDIR);
 2668: <img align="right" src="$logo" />
 2669: <b>$lt{'sorr'}</b>
 2670: ENDFAILREDIR
 2671:   $r->print(&Apache::loncommon::end_page());
 2672: }
 2673: 
 2674: sub redirect_back {
 2675:   my ($r,$feedurl,$typestyle,$sendsomething,$sendposts,$blog,$status,$previous,$sort,$rolefilter,$statusfilter,$sectionpick,$grouppick,$numpicks,$group,$toolarge) = @_;
 2676:   my $sorttag = '';
 2677:   my $roletag = '';
 2678:   my $statustag = '';
 2679:   my $sectag = '';
 2680:   my $grptag = '';
 2681:   my $userpicktag = '';
 2682:   my $qrystr = '';
 2683:   my $prevtag = '';
 2684: 
 2685:   &Apache::loncommon::content_type($r,'text/html');
 2686:   $r->send_http_header;
 2687:   &dewrapper(\$feedurl);
 2688:   if ($feedurl=~/^\/adm\//) { $feedurl.='?register=1' };
 2689:   if ($previous > 0) {
 2690:       $qrystr = 'previous='.$previous;
 2691:       if ($feedurl =~ /\?register=1/) {
 2692:           $feedurl .= '&amp;'.$qrystr;
 2693:       } else {
 2694:           $feedurl .= '?'.$qrystr;
 2695:       }
 2696:       $prevtag = '<input type="hidden" name="previous" value="'.$previous.'" />';
 2697:   }
 2698:   if (defined($sort)) {
 2699:       my $sortqry = 'sortposts='.$sort;
 2700:       if (($feedurl =~ /\?register=1/) || ($feedurl =~ /\?previous=/)) {
 2701:           $feedurl .= '&amp;'.$sortqry;
 2702:       } else {
 2703:           $feedurl .= '?'.$sortqry;
 2704:       }
 2705:       $sorttag = '<input type="hidden" name="sortposts" value="'.$sort.'" />';
 2706:       if (defined($numpicks)) {
 2707:           my $userpickqry = 'totposters='.$numpicks;
 2708:           $feedurl .= '&amp;'.$userpickqry;
 2709:           $userpicktag = '<input type="hidden" name="totposters" value="'.$numpicks.'" />';
 2710:       } else {
 2711:           if (ref($sectionpick) eq 'ARRAY') {
 2712:               $feedurl .= '&amp;sectionpick=';
 2713:               $sectag .=  '<input type="hidden" name="sectionpick" value="';
 2714:               foreach my $sec (@{$sectionpick}) {
 2715:                   $feedurl .= $sec.',';
 2716:                   $sectag .= $sec.',';
 2717:               }
 2718:               $feedurl =~ s/,$//;
 2719:               $sectag =~ s/,$//;
 2720:               $sectag .= '" />';
 2721:           } else {
 2722:               $feedurl .= '&amp;sectionpick='.$sectionpick;
 2723:               $sectag = '<input type="hidden" name="sectionpick" value="'.$sectionpick.'" />';
 2724:           }
 2725:           if (ref($grouppick) eq 'ARRAY') {
 2726:               $feedurl .= '&amp;grouppick=';
 2727:               $sectag .=  '<input type="hidden" name="grouppick" value="';
 2728:               foreach my $grp (@{$grouppick}) {
 2729:                   $feedurl .= $grp.',';
 2730:                   $grptag .= $grp.',';
 2731:               }
 2732:               $feedurl =~ s/,$//;
 2733:               $grptag =~ s/,$//;
 2734:               $grptag .= '" />';
 2735:           } else {
 2736:               $feedurl .= '&amp;grouppick='.$grouppick;
 2737:               $grptag = '<input type="hidden" name="grouppick" value="'.$grouppick.'" />';
 2738:           }
 2739:           if (ref($rolefilter) eq 'ARRAY') {
 2740:               $feedurl .= '&amp;rolefilter=';
 2741:               $roletag .=  '<input type="hidden" name="rolefilter" value="';
 2742:               foreach my $role (@{$rolefilter}) {
 2743:                   $feedurl .= $role.',';
 2744:                   $roletag .= $role.',';
 2745:               }
 2746:               $feedurl =~ s/,$//;
 2747:               $roletag =~ s/,$//;
 2748:               $roletag .= '" />';
 2749:           } else {
 2750:               $feedurl .= '&amp;rolefilter='.$rolefilter;
 2751:               $roletag = '<input type="hidden" name="rolefilter" value="'.$rolefilter.'" />';
 2752:           }
 2753:           $feedurl .= '&amp;statusfilter='.$statusfilter;
 2754:           $statustag ='<input type="hidden" name="statusfilter" value="'.$statusfilter.'" />';
 2755:       }
 2756:   }
 2757:   my $grouptag;
 2758:   if ($group ne '') {
 2759:       $grouptag = '<input type="hidden" name="group" value="'.$group.'" />';
 2760:       my $refarg;
 2761:       if (exists($env{'form.ref'})) {
 2762:           $refarg = '&amp;ref='.$env{'form.ref'};
 2763:           $grouptag .= '<input type="hidden" name="ref" value="'.$env{'form.ref'}.'" />';
 2764:       }
 2765:       if ($feedurl =~ /\?/) {
 2766:           $feedurl .= '&amp;group='.$group.$refarg;
 2767:       } else {
 2768:           $feedurl .= '?group='.$group.$refarg;
 2769:       }
 2770:   } 
 2771:   &Apache::lonenc::check_encrypt(\$feedurl);
 2772:   my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
 2773:   my %parms=('only_body'   => 1);
 2774:   if ($env{'form.modal'}) {
 2775:       $parms{'add_entries'}={'onLoad' => 'document.forms.reldt.submit()'};
 2776:   } else {
 2777:       $parms{'redirect'}=[0,$feedurl];
 2778:   }
 2779:   my $start_page=
 2780:       &Apache::loncommon::start_page('Feedback sent',undef,\%parms);
 2781:   my $end_page = &Apache::loncommon::end_page();
 2782:   $r->print(<<ENDREDIR);
 2783: $start_page
 2784: <img align="right" src="$logo" />
 2785: $typestyle
 2786: <b>Sent $sendsomething message(s), and $sendposts post(s).</b>
 2787: $blog
 2788: $toolarge
 2789: <font color="red">$status</font>
 2790: <form name="reldt" action="$feedurl" target="loncapaclient">
 2791: $prevtag
 2792: $sorttag
 2793: $statustag
 2794: $roletag
 2795: $sectag
 2796: $grptag
 2797: $userpicktag
 2798: $grouptag
 2799: </form>
 2800: $end_page
 2801: ENDREDIR
 2802: }
 2803: 
 2804: sub no_redirect_back {
 2805:   my ($r,$feedurl) = @_;
 2806:   my $nofeed=&mt('Sorry, no feedback possible on this resource ...');
 2807:  
 2808:   my %onload;
 2809: 
 2810:   my %body_options = ('only_body'   => 1,
 2811: 		      'bgcolor'     => '#FFFFFF',
 2812: 		      'add_entries' => \%onload,);
 2813: 
 2814:   if ($feedurl !~ m{^/adm/feedback}) { 
 2815:       $body_options{'redirect'} = [2,$feedurl];
 2816:   }
 2817:   my $start_page=
 2818:       &Apache::loncommon::start_page('Feedback not sent',undef,
 2819: 				     \%body_options);
 2820: 				      
 2821:   my $end_page = &Apache::loncommon::end_page();
 2822: 
 2823:   &Apache::lonenc::check_encrypt(\$feedurl);
 2824:   my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
 2825:   $r->print (<<ENDNOREDIRTWO);
 2826: $start_page
 2827: <img align="right" src="$logo" />
 2828: <b>$nofeed</b>
 2829: <br />
 2830: $end_page
 2831: ENDNOREDIRTWO
 2832: }
 2833: 
 2834: sub screen_header {
 2835:     my ($feedurl,$symb,$group) = @_;
 2836:     my $crscontent = &mt('Question/Comment/Feedback about course content');
 2837:     my $crspolicy = &mt('Question/Comment/Feedback about course policy');
 2838:     my $contribdisc = &mt('Contribution to course discussion of resource');
 2839:     my $anoncontrib = &mt('Anonymous contribution to course discussion of resource');
 2840:     my $namevis = &mt('name only visible to course faculty');
 2841:     my $crstype;
 2842:     if ($env{'request.course.id'}) {
 2843:         $crstype = &Apache::loncommon::course_type();
 2844:         if ($crstype eq 'Community') {
 2845:             $crscontent = &mt('Question/Comment/Feedback about community content');
 2846:             $crspolicy = &mt('Question/Comment/Feedback about community policy');
 2847:             $contribdisc = &mt('Contribution to community discussion of resource');
 2848:             $anoncontrib = &mt('Anonymous contribution to community discussion of resource');
 2849:             $namevis = &mt('name only visible to community facilitators');
 2850:         }
 2851:     }
 2852:     my $msgoptions='';
 2853:     my $discussoptions='';
 2854:     unless (($env{'form.replydisc'}) || ($env{'form.editdisc'})) {
 2855: 	if (($feedurl=~/^\/res\//) && ($feedurl!~/^\/res\/adm/) && ($env{'user.adv'})) {
 2856: 	    $msgoptions= 
 2857: 		'<label><input type="radio" name="discuss" value="author" /> '.
 2858: 		&mt('Feedback to resource author').'</label><br />';
 2859: 	}
 2860:         my %optionhash=();
 2861:         foreach my $type ('question','comment','policy') {
 2862: 	    $optionhash{$type}=$env{'course.'.$env{'request.course.id'}.'.'.$type.'.email.text'};
 2863: 	}
 2864: 	if (&feedback_available(1)) {
 2865: 	    $msgoptions.=
 2866: 		'<label><input type="radio" name="discuss" value="question" /> '.
 2867: 		($optionhash{'question'}?$optionhash{'question'}:&mt('Question about resource content')).'</label><br />';
 2868: 	}
 2869: 	if (&feedback_available(0,1)) {
 2870: 	    $msgoptions.=
 2871: 		'<label><input type="radio" name="discuss" value="course" /> '.
 2872: 		($optionhash{'comment'}?$optionhash{'comment'}:$crscontent).
 2873: 		'</label><br />';
 2874: 	}
 2875: 	if (&feedback_available(0,0,1)) {
 2876: 	    $msgoptions.=
 2877: 		'<label><input type="radio" name="discuss" value="policy" /> '.
 2878: 		($optionhash{'policy'}?$optionhash{'policy'}:$crspolicy).
 2879: 		'</label><br />';
 2880: 	}
 2881:     }
 2882:     if (($env{'request.course.id'}) && (!$env{'form.sendmessageonly'})) {
 2883:         my ($blocked,$blocktext) = &Apache::loncommon::blocking_status('boards');
 2884:         my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 2885:         my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 2886:         my $realsymb = &get_realsymb($symb);
 2887:         if (!$blocked && &discussion_open(undef,$realsymb) && 
 2888: 	    (&Apache::lonnet::allowed('pch',
 2889: 				      $env{'request.course.id'}.
 2890: 				      ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'')) || 
 2891:             (($group ne '') && ($symb =~ m{^bulletin___\d+___adm/wrapper/adm/\Q$cdom\E/\Q$cnum\E/\d+/bulletinboard$}) && (&check_group_priv($group,'pgd') eq 'ok')))) {
 2892: 	    $discussoptions='<label><input type="radio" name="discuss" value="nonanon" checked="checked" /> '.
 2893: 		$contribdisc.
 2894: 	        '</label><br /><label><input type="radio" name="discuss" value="anon" /> '.
 2895: 		$anoncontrib.
 2896: 		' <i>('.$namevis.')</i></label> '.
 2897: 		'<a href="/adm/preferences?action=changescreenname">'.&mt('Change Screenname').'</a>';
 2898:             my $blockblog = &Apache::loncommon::blocking_status('blogs');
 2899:             if (!$blockblog) {
 2900:                 $discussoptions.= &add_blog_checkbox($crstype);
 2901:             }
 2902:         }
 2903:     }
 2904:     if ($msgoptions) {
 2905:         $msgoptions='<tr><th><img src="'.&Apache::loncommon::lonhttpdurl('/res/adm/pages/feedback.png').'" />'
 2906:                    .'<br />'.&mt('Send Feedback').'<br />'.&Apache::lonhtmlcommon::coursepreflink(&mt('Feedback Settings'),'feedback').'</th>'.
 2907:                    '<td>'.$msgoptions.'</td></tr>';
 2908:     }
 2909:     if ($discussoptions) { 
 2910: 	$discussoptions='<tr><th><img src="'.&Apache::loncommon::lonhttpdurl('/adm/lonMisc/chat.gif').'" alt="" />'
 2911:                         .'<br />'.&mt('Discussion Contributions').'<br />'.&Apache::lonhtmlcommon::coursepreflink(&mt('Discussion Settings'),'discussion').'</th>'.
 2912:                         '<td>'.$discussoptions.'</td></tr>';
 2913:     }
 2914:     return  &Apache::loncommon::start_data_table().$msgoptions.$discussoptions.&Apache::loncommon::end_data_table();
 2915: }
 2916: 
 2917: sub resource_output {
 2918:   my ($feedurl) = @_;
 2919:   my $usersaw=&Apache::lonnet::ssi_body($feedurl);
 2920:   $usersaw=~s/\<body[^\>]*\>//gi;
 2921:   $usersaw=~s/\<\/body\>//gi;
 2922:   $usersaw=~s/\<html\>//gi;
 2923:   $usersaw=~s/\<\/html\>//gi;
 2924:   $usersaw=~s/\<head\>//gi;
 2925:   $usersaw=~s/\<\/head\>//gi;
 2926:   $usersaw=~s/action\s*\=/would_be_action\=/gi;
 2927:   return $usersaw;
 2928: }
 2929: 
 2930: sub clear_out_html {
 2931:   my ($message,$override)=@_;
 2932: # Always allow the <m>-tag
 2933:   my %html=(M=>1);
 2934: # Check if more is allowed
 2935:   my $cid=$env{'request.course.id'};
 2936:   if (($env{"course.$cid.allow_limited_html_in_feedback"} =~ m/yes/i) ||
 2937:       ($override)) {
 2938:       # allows <B> <I> <P> <A> <LI> <OL> <UL> <EM> <BR> <TT> <STRONG> 
 2939:       # <BLOCKQUOTE> <DIV .*> <DIV> <IMG> <M> <SPAN> <H1> <H2> <H3> <H4> <SUB>
 2940:       # <SUP> <TABLE> <TR> <TD> <TH> <TBODY>
 2941:       %html=(B=>1, I=>1, P=>1, A=>1, LI=>1, OL=>1, UL=>1, EM=>1,
 2942: 	     BR=>1, TT=>1, STRONG=>1, BLOCKQUOTE=>1, PRE=>1, DIV=>1, IMG=>1,
 2943: 	     M=>1, CHEM=>1, ALGEBRA=>1, SUB=>1, SUP=>1, SPAN=>1,  
 2944: 	     H1=>1, H2=>1, H3=>1, H4=>1, H5=>1, H6=>1, 
 2945: 	     TABLE=>1, TR=>1, TD=>1, TH=>1, TBODY=>1);
 2946:   }
 2947: # Do the substitution of everything that is not explicitly allowed
 2948:   $message =~ s/\<(\/?\s*(\w+)[^\>\<]*)/
 2949: 	  {($html{uc($2)}&&(length($1)<1000))?"\<$1":"\&lt;$1"}/ge;
 2950:   $message =~ s/(\<?\s*(\w+)[^\<\>]*)\>/
 2951: 	  {($html{uc($2)}&&(length($1)<1000))?"$1\>":"$1\&gt;"}/ge;
 2952:   return $message;
 2953: }
 2954: 
 2955: sub assemble_email {
 2956:   my ($message,$prevattempts,$usersaw,$useranswer)=@_;
 2957:   my %lt = &Apache::lonlocal::texthash(
 2958:              'prev' => 'Previous attempts of student (if applicable)',
 2959:              'orig' => 'Original screen output (if applicable)',
 2960:              'corr' => 'Correct Answer(s) (if applicable)',
 2961:   );
 2962:   if (&Apache::loncommon::course_type() eq 'Community') {
 2963:       $lt{'prev'} = &mt('Previous attempts of member (if applicable)');
 2964:   }
 2965:   my $email=<<"ENDEMAIL";
 2966: $message
 2967: ENDEMAIL
 2968:     my $citations=<<"ENDCITE";
 2969: <h2>$lt{'prev'}</h2>
 2970: $prevattempts
 2971: <br /><hr />
 2972: <h2>$lt{'orig'}</h2>
 2973: $usersaw
 2974: <h2>$lt{'corr'}</h2>
 2975: $useranswer
 2976: ENDCITE
 2977:   return ($email,$citations);
 2978: }
 2979: 
 2980: 
 2981: sub feedback_available {
 2982:     my ($question,$course,$policy)=@_;
 2983:     my ($typestyle,%to)=&Apache::lonmsg::decide_receiver('',0,$question,
 2984: 							 $course,$policy);
 2985:     return scalar(%to);
 2986: }
 2987: 
 2988: sub send_msg {
 2989:     my ($title,$feedurl,$email,$citations,$attachmenturl,$symb,%to)=@_;
 2990:     my $status='';
 2991:     my $sendsomething=0;
 2992:     my $restitle = &get_resource_title($symb,$feedurl);
 2993:     if ($title=~/^Error/) { $title=&mt('Feedback').': '.$title; }
 2994:     unless ($title=~/\w/) { $title=&mt('Feedback'); }
 2995:     foreach my $key (keys(%to)) {
 2996: 	if ($key) {
 2997: 	    my ($user,$domain) = split(/\:/,$key,2);
 2998: 	    if (!defined($user)) {
 2999: 		$status.='<br />'.&mt('Error sending message to [_1], no user specified.',$key);
 3000: 	    } elsif (!defined($domain)) {
 3001: 		$status.='<br />'.&mt('Error sending message to [_1], no domain specified.',$key);
 3002: 	    } else {
 3003: 		unless (&Apache::lonmsg::user_normal_msg($user,$domain,
 3004: 							 $title.' ['.$restitle.']',$email,$citations,$feedurl,
 3005: 							 $attachmenturl,undef,undef,$symb,$restitle)=~/ok/) {
 3006: 		    $status.='<br />'.&mt('Error sending message to').' '.$key.'<br />';
 3007: 		} else {
 3008: 		    $sendsomething++;
 3009: 		}
 3010: 	    }
 3011: 	}
 3012:     }
 3013: 
 3014: # Records of number of feedback messages are kept under the "symb" called "_feedback"
 3015: # There are two entries within the framework of a course:
 3016: # - the URLs for which feedback was provided
 3017: # - the total number of contributions
 3018:     if ($sendsomething) {
 3019:         my %record=&getfeedbackrecords();
 3020:         my ($temp)=keys(%record);
 3021:         unless ($temp=~/^error\:/) {
 3022: 	    my %newrecord=();
 3023: 	    $newrecord{'resource'}=$feedurl;
 3024: 	    $newrecord{'subnumber'}=$record{'subnumber'}+1;
 3025: 	    unless (&Apache::lonnet::cstore(\%newrecord,'_feedback') eq 'ok') {
 3026: 	        $status.='<br />'.&mt('Not registered').'<br />';
 3027: 	    }
 3028:         }
 3029:     }
 3030:     return ($status,$sendsomething);
 3031: }
 3032: 
 3033: # Routine to get the complete feedback records
 3034: 
 3035: sub getfeedbackrecords {
 3036:     my ($uname,$udom,$course)=@_;
 3037:     unless ($uname) { $uname=$env{'user.name'}; }
 3038:     unless ($udom)  { $udom=$env{'user.domain'}; }
 3039:     unless ($course) { $course=$env{'request.course.id'}; }
 3040:     my %record=&Apache::lonnet::restore('_feedback',$course,$udom,$uname);
 3041:     return %record;
 3042: }
 3043: 
 3044: # Routine to get feedback statistics
 3045: 
 3046: sub getfeedbackstats {
 3047:     my %record=&getfeedbackrecords(@_);
 3048:     return ($record{'subnumber'},$record{'points'},$record{'totallikes'});
 3049: }
 3050: 
 3051: # Store feedback credit
 3052: 
 3053: sub storefeedbackpoints {
 3054:     my ($points,$uname,$udom,$course)=@_;
 3055:     unless ($points) { $points=0; }
 3056:     unless ($uname) { $uname=$env{'user.name'}; }
 3057:     unless ($udom)  { $udom=$env{'user.domain'}; }
 3058:     unless ($course) { $course=$env{'request.course.id'}; }
 3059:     my %record=('grader_user'   => $env{'user.name'},
 3060:                 'grader_domain' => $env{'user.domain'},
 3061:                 'points' => $points);
 3062:     return &Apache::lonnet::cstore(\%record,'_feedback',$course,$udom,$uname);
 3063: }
 3064: 
 3065: # Store feedback "likes"
 3066: 
 3067: sub storefeedbacklikes {
 3068:     my ($likes,$uname,$udom,$course)=@_;
 3069:     unless ($likes) { $likes=0; }
 3070:     if ($likes>0) { $likes=1; }
 3071:     if ($likes<0) { $likes=-1; }
 3072:     unless ($uname) { $uname=$env{'user.name'}; }
 3073:     unless ($udom)  { $udom=$env{'user.domain'}; }
 3074:     unless ($course) { $course=$env{'request.course.id'}; }
 3075:     my %record=&getfeedbackrecords($uname,$udom,$course);
 3076:     my $totallikes=$record{'totallikes'};
 3077:     $totallikes+=$likes;
 3078:     my %newrecord=('likes_user'   => $env{'user.name'},
 3079:                    'likes_domain' => $env{'user.domain'},
 3080:                    'likes' => $likes,
 3081:                    'totallikes' => $totallikes);
 3082:     return &Apache::lonnet::cstore(\%newrecord,'_feedback',$course,$udom,$uname);
 3083: }
 3084: 
 3085: 
 3086: sub adddiscuss {
 3087:     my ($symb,$email,$anon,$attachmenturl,$subject,$group)=@_;
 3088:     my $status='';
 3089:     my $realsymb = &get_realsymb($symb);
 3090:     my ($cnum,$cdom);
 3091:     if ($env{'request.course.id'}) {
 3092:         $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 3093:         $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 3094:     }
 3095:     if (&discussion_open(undef,$realsymb) &&
 3096: 	(&Apache::lonnet::allowed('pch',$env{'request.course.id'}.
 3097:          ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'')) || 
 3098:          (($group ne '') && (&check_group_priv($group,'pgd') eq 'ok') && 
 3099:          ($symb =~ m{^bulletin___\d+___adm/wrapper/adm/\Q$cdom\E/\Q$cnum\E/\d+/bulletinboard$})))) {
 3100: 
 3101:     my %contrib=('message'      => $email,
 3102:                  'sendername'   => $env{'user.name'},
 3103:                  'senderdomain' => $env{'user.domain'},
 3104:                  'screenname'   => $env{'environment.screenname'},
 3105:                  'plainname'    => $env{'environment.firstname'}.' '.
 3106: 		                   $env{'environment.middlename'}.' '.
 3107:                                    $env{'environment.lastname'}.' '.
 3108:                                    $env{'enrironment.generation'},
 3109:                  'attachmenturl'=> $attachmenturl,
 3110:                  'subject'      => $subject);
 3111:     if ($env{'form.replydisc'}) {
 3112: 	$contrib{'replyto'}=(split(/\:\:\:/,$env{'form.replydisc'}))[1];
 3113:     }
 3114:     if ($anon) {
 3115: 	$contrib{'anonymous'}='true';
 3116:     }
 3117:     if (($symb) && ($email)) {
 3118:         my $now = time;
 3119:         if ($env{'form.editdisc'}) {
 3120:             $contrib{'ip'}=$ENV{'REMOTE_ADDR'};
 3121:             $contrib{'host'}=$Apache::lonnet::perlvar{'lonHostID'};
 3122:             $contrib{'timestamp'} = $now;
 3123:             $contrib{'history'} = '';
 3124:             my $numoldver = 0;
 3125:             my ($oldsymb,$oldidx)=split(/\:\:\:/,$env{'form.editdisc'});
 3126: 	    &Apache::lonenc::check_decrypt(\$oldsymb);
 3127:             $oldsymb=~s|(bulletin___\d+___)adm/wrapper/|$1|;
 3128: # get timestamp for last post and history
 3129:             my %oldcontrib=&Apache::lonnet::restore($oldsymb,$env{'request.course.id'},
 3130:                      $env{'course.'.$env{'request.course.id'}.'.domain'},
 3131:                      $env{'course.'.$env{'request.course.id'}.'.num'});
 3132:             if (defined($oldcontrib{$oldidx.':replyto'})) {
 3133:                 $contrib{'replyto'} = $oldcontrib{$oldidx.':replyto'};
 3134:             }
 3135:             if (defined($oldcontrib{$oldidx.':history'})) {
 3136:                 if ($oldcontrib{$oldidx.':history'} =~ /:/) {
 3137:                     my @oldversions = split(/:/,$oldcontrib{$oldidx.':history'});
 3138:                     $numoldver = @oldversions;
 3139:                 } else {
 3140:                     $numoldver = 1;
 3141:                 }
 3142:                 $contrib{'history'} = $oldcontrib{$oldidx.':history'}.':';
 3143:             }
 3144:             my $numnewver = $numoldver + 1;
 3145:             if (defined($oldcontrib{$oldidx.':subject'})) {
 3146:                 if ($oldcontrib{$oldidx.':subject'} =~ /^<version num="0">/) {
 3147:                     $contrib{'subject'} = '<version num="'.$numnewver.'">'.&HTML::Entities::encode($contrib{'subject'},'<>&"').'</version>';
 3148:                     $contrib{'subject'} = $oldcontrib{$oldidx.':subject'}.$contrib{'subject'};
 3149:                 } else {
 3150:                     $contrib{'subject'} = '<version num="0">'.&HTML::Entities::encode($oldcontrib{$oldidx.':subject'},'<>&"').'</version><version num="1">'.&HTML::Entities::encode($contrib{'subject'},'<>&"').'</version>';
 3151:                 }
 3152:             } 
 3153:             if (defined($oldcontrib{$oldidx.':message'})) {
 3154:                 if ($oldcontrib{$oldidx.':message'} =~ /^<version num="0">/) {
 3155:                     $contrib{'message'} = '<version num="'.$numnewver.'">'.&HTML::Entities::encode($contrib{'message'},'<>&"').'</version>';
 3156:                     $contrib{'message'} = $oldcontrib{$oldidx.':message'}.$contrib{'message'};
 3157:                 } else {
 3158:                     $contrib{'message'} = '<version num="0">'.&HTML::Entities::encode($oldcontrib{$oldidx.':message'},'<>&"').'</version><version num="1">'.&HTML::Entities::encode($contrib{'message'},'<>&"').'</version>';
 3159:                 }
 3160:             }
 3161:             $contrib{'history'} .= $oldcontrib{$oldidx.':timestamp'};
 3162:             my $put_reply = &Apache::lonnet::putstore($env{'request.course.id'},
 3163:                   $oldsymb,$oldidx,\%contrib,
 3164:                   $env{'course.'.$env{'request.course.id'}.'.domain'},
 3165:                   $env{'course.'.$env{'request.course.id'}.'.num'});
 3166:             $status='Editing class discussion'.($anon?' (anonymous)':'');
 3167:         } else {
 3168:            $status='Adding to class discussion'.($anon?' (anonymous)':'').': '.
 3169:            &Apache::lonnet::store(\%contrib,$symb,$env{'request.course.id'},
 3170:                      $env{'course.'.$env{'request.course.id'}.'.domain'},
 3171: 		     $env{'course.'.$env{'request.course.id'}.'.num'});
 3172:         }
 3173:         my %storenewentry=($symb => $now);
 3174:         $status.='<br />'.&mt('Updating discussion time').': '.
 3175:         &Apache::lonnet::put('discussiontimes',\%storenewentry,
 3176:                      $env{'course.'.$env{'request.course.id'}.'.domain'},
 3177: 		     $env{'course.'.$env{'request.course.id'}.'.num'});
 3178:     }
 3179:     my %record=&getdiscussionrecords();
 3180:     my ($temp)=keys(%record);
 3181:     unless ($temp=~/^error\:/) {
 3182:        my %newrecord=();
 3183:        $newrecord{'resource'}=$symb;
 3184:        $newrecord{'subnumber'}=$record{'subnumber'}+1;
 3185:        $status.='<br />'.&mt('Registering').': '.
 3186:                &Apache::lonnet::cstore(\%newrecord,'_discussion');
 3187:        &updatekarma();
 3188:     }
 3189:     } else {
 3190: 	$status.='Failed.';
 3191:     }
 3192:     return $status.'<br />';   
 3193: }
 3194: 
 3195: 
 3196: # Routine to get the complete discussion records
 3197: 
 3198: sub getdiscussionrecords {
 3199:     my ($uname,$udom,$course)=@_;
 3200:     unless ($uname) { $uname=$env{'user.name'}; }
 3201:     unless ($udom)  { $udom=$env{'user.domain'}; }
 3202:     unless ($course) { $course=$env{'request.course.id'}; }
 3203:     my %record=&Apache::lonnet::restore('_discussion',$course,$udom,$uname);
 3204:     return %record;
 3205: }
 3206: 
 3207: # Routine to get discussion statistics
 3208: 
 3209: sub getdiscussionstats {
 3210:     my %record=&getdiscussionrecords(@_);
 3211:     my $totalvotes = $record{'totallikes'} + $record{'totalunlikes'};
 3212:     return ($record{'subnumber'},$record{'points'},$record{'totallikes'},$totalvotes);
 3213: }
 3214: 
 3215: # Calculate discussion karma
 3216: 
 3217: sub calcdiscussionkarma {    
 3218:     my ($subs,$pts,$likes,$votes)=&getdiscussionstats(@_);
 3219:     my $karma=0;
 3220:     if ($votes>0) {
 3221:         $karma=int(.1+5.*(1.-exp(-$subs/10.))*$likes/$votes);
 3222:         if ($karma<0) { $karma=0; }
 3223:         if ($karma>5) { $karma=5; }
 3224:     }
 3225:     return $karma;
 3226: }
 3227: 
 3228: # Update karma
 3229: 
 3230: sub updatekarma {
 3231:     my ($uname,$udom,$course)=@_;
 3232:     unless ($uname) { $uname=$env{'user.name'}; }
 3233:     unless ($udom)  { $udom=$env{'user.domain'}; }
 3234:     unless ($course) { $course=$env{'request.course.id'}; }
 3235:     my $karma=&calcdiscussionkarma($uname,$udom,$course);
 3236:     &Apache::lonnet::cstore({ 'karma' => $karma },'_discussion',$course,$udom,$uname);
 3237:     &Apache::lonnet::do_cache_new('karma',$uname.':'.$udom.':'.$course,$karma,3600);
 3238:     return $karma;
 3239: }
 3240: 
 3241: # Retrieve karma
 3242: 
 3243: sub userkarma {
 3244:     my ($uname,$udom,$course)=@_;
 3245:     unless ($uname) { $uname=$env{'user.name'}; }
 3246:     unless ($udom)  { $udom=$env{'user.domain'}; }
 3247:     unless ($course) { $course=$env{'request.course.id'}; }
 3248:     my $hashkey=$uname.':'.$udom.':'.$course;
 3249:     my ($karma,$cached)=&Apache::lonnet::is_cached_new('karma',$hashkey);
 3250:     if ($cached) {
 3251:         return $karma;
 3252:     }
 3253:     my %userdisc=&getdiscussionrecords($uname,$udom,$course);
 3254:     $karma=$userdisc{'karma'};
 3255:     &Apache::lonnet::do_cache_new('karma',$hashkey,$karma,3600);
 3256:     return $karma;
 3257: }
 3258: 
 3259: # Store discussion credit
 3260: 
 3261: sub storediscussionpoints {
 3262:     my ($points,$uname,$udom,$course)=@_;
 3263:     unless ($points) { $points=0; }
 3264:     unless ($uname) { $uname=$env{'user.name'}; }
 3265:     unless ($udom)  { $udom=$env{'user.domain'}; }
 3266:     unless ($course) { $course=$env{'request.course.id'}; }
 3267:     my %record=('grader_user'   => $env{'user.name'},
 3268:                 'grader_domain' => $env{'user.domain'},
 3269:                 'points' => $points);
 3270:     return &Apache::lonnet::cstore(\%record,'_discussion',$course,$udom,$uname);
 3271: }
 3272: 
 3273: # Store discussion "likes"
 3274: 
 3275: sub storediscussionlikes {
 3276:     my ($chglikes,$chgunlikes,$uname,$udom,$course,$context)=@_;
 3277:     unless ($uname) { $uname=$env{'user.name'}; }
 3278:     unless ($udom)  { $udom=$env{'user.domain'}; }
 3279:     unless ($course) { $course=$env{'request.course.id'}; }
 3280:     my %record=&getdiscussionrecords($uname,$udom,$course);
 3281:     my $totallikes=$record{'totallikes'};
 3282:     my $totalunlikes=$record{'totalunlikes'};
 3283:     $totallikes += $chglikes;
 3284:     $totalunlikes += $chgunlikes;
 3285:     my %newrecord=('likes_user'   => $env{'user.name'},
 3286:                    'likes_domain' => $env{'user.domain'},
 3287:                    'totallikes'   => $totallikes,
 3288:                    'totalunlikes' => $totalunlikes,
 3289:                    'context'      => $context);
 3290:     my $status=&Apache::lonnet::cstore(\%newrecord,'_discussion',$course,$udom,$uname);
 3291:     if ($status eq 'ok') {
 3292:         &updatekarma($uname,$udom,$course);
 3293:     }
 3294:     return $status;
 3295: }
 3296: 
 3297: sub get_discussion_info {
 3298:     my ($idx,%contrib) = @_;
 3299:     my $changelast = 0;
 3300:     my $count = 0;
 3301:     my $hiddenflag = 0;
 3302:     my $deletedflag = 0;
 3303:     my ($hidden,$deleted,%info,$newlastdisc);
 3304:     my $version = $contrib{'version'};
 3305:     if ($version) {
 3306:         for (my $id=$version; $id>0; $id--) {
 3307:             my $vkeys=$contrib{$id.':keys'};
 3308:             my @keys=split(/:/,$vkeys);
 3309:             if (grep(/^hidden$/,@keys)) {
 3310:                 if (!$hiddenflag) {
 3311:                     $hidden = $contrib{$id.':hidden'};
 3312:                     $hiddenflag = 1;
 3313:                 }
 3314:             } elsif (grep(/^deleted$/,@keys)) {
 3315:                 if (!$deletedflag) {
 3316:                     $deleted = $contrib{$id.':deleted'};
 3317:                     $deletedflag = 1;
 3318:                 }
 3319:             } else {
 3320:                 if (($hidden !~/\.$id\./) && ($deleted !~/\.$id\./)) {
 3321:                     $count++;
 3322:                     $info{$count}{'id'} = $id;
 3323:                     $info{$count}{'timestamp'}=$contrib{$id.':timestamp'}; 
 3324:                 }
 3325:             }
 3326:         }
 3327:         if ($info{'1'}{'id'} == $idx) {
 3328:             $changelast = 1;
 3329:             if ($count > 1) { 
 3330:                 $newlastdisc =  $info{'2'}{'timestamp'};
 3331:             } else {
 3332:                 $newlastdisc = 0;
 3333:             }
 3334:         }
 3335:     }
 3336:     return ($changelast,$newlastdisc);
 3337: }
 3338: 
 3339: # ----------------------------------------------------------- Preview function
 3340: 
 3341: sub show_preview {
 3342:     my ($r) = @_;
 3343:     &Apache::loncommon::content_type($r,'text/html');
 3344:     $r->send_http_header;
 3345:     my $start_page=
 3346: 	&Apache::loncommon::start_page('Preview',undef,
 3347: 				       {'only_body'   => 1,});
 3348: 
 3349:     my $message=&clear_out_html($env{'form.comment'});
 3350:     &newline_to_br(\$message);
 3351:     $message=&Apache::lonspeller::markeduptext($message);
 3352:     $message=&Apache::lontexconvert::msgtexconverted($message);
 3353:     my $subject=&clear_out_html($env{'form.subject'});
 3354:     $subject=~s/\n/\<br \/\>/g;
 3355:     $subject=&Apache::lontexconvert::msgtexconverted($subject);
 3356: 					
 3357:     my $end_page = &Apache::loncommon::end_page();
 3358: 
 3359:     $r->print($start_page
 3360:              .'<h1>'.&mt('Preview').'</h1>'
 3361:              .&Apache::lonhtmlcommon::start_pick_box()
 3362:              .&Apache::lonhtmlcommon::row_title(&mt('Subject'))
 3363:              .$subject
 3364:              .&Apache::lonhtmlcommon::row_closure()
 3365:              .&Apache::lonhtmlcommon::row_title(&mt('Message'))
 3366:              .$message
 3367:              .&Apache::lonhtmlcommon::row_closure(1)
 3368:              .&Apache::lonhtmlcommon::end_pick_box()
 3369:              .$end_page
 3370:     );
 3371: }
 3372: 
 3373: sub contains_block_html {
 3374:     my ($message)=@_;
 3375:     return ($message =~ m{
 3376:         <(br|h1|h2|h3|h4|h5|h6|p|ol|ul|table|pre|address|blockquote|center|div) 
 3377: 	  \s*
 3378: 	 (\w+\=['"]\w+['"])*
 3379: 	  \s*
 3380: 	(
 3381: 	  \s*/>|
 3382: 	  >.*</\1\s*>
 3383: 	)}xs 
 3384:     );
 3385: }
 3386: 
 3387: sub tidy_html {
 3388: 	my ($message)=@_;
 3389: # 	my $tidy = HTML::Tidy::libXML->new();
 3390: # 	my $xhtml = $tidy->clean($message, 'utf-8', 1);
 3391: # 	$xhtml =~ m/<body>(.*)<\/body>/is;
 3392: # 	my $clean = $1;
 3393: # 	# remove any empty block-level tags
 3394: # 	$clean =~ s/<(table|p|div|tbody|blockquote|m|pre|algebra|center|ol|ul|span|h1|h2|h3|h4|h5|h6)\s*\/>//i;
 3395: # 	$message=$clean;
 3396: 	return $message;
 3397: }
 3398: 
 3399: sub newline_to_br {
 3400:     my ($message)=@_;
 3401:     my $newmessage;
 3402:     my $parser=HTML::LCParser->new($message);
 3403:     while (my $token=$parser->get_token()) {
 3404: 	if ($token->[0] eq 'T') {
 3405: 	    my $text=$token->[1];
 3406: 	    $text=~s/\n/\<br \/\>/g;
 3407: 	    $newmessage.=$text;
 3408: 	} elsif ($token->[0] eq 'D' || $token->[0] eq 'C') {
 3409: 	    $newmessage.=$token->[1];
 3410: 	} elsif ($token->[0] eq 'PI' || $token->[0] eq 'E') {
 3411: 	    $newmessage.=$token->[2];
 3412: 	} elsif ($token->[0] eq 'S') {
 3413: 	    $newmessage.=$token->[4];
 3414: 	}
 3415: 	    
 3416:     }
 3417:     $$message=$newmessage;
 3418: }
 3419: 
 3420: sub generate_preview_button {
 3421:     my ($formname,$fieldname)=@_;
 3422:     unless ($formname) { $formname='mailform'; }
 3423:     unless ($fieldname) { $fieldname='comment'; }
 3424:     my $pre=&mt("Show Preview and Check Spelling");
 3425:     return(<<ENDPREVIEW);
 3426: <br />
 3427: <form name="preview" action="/adm/feedback?preview=1" method="post" target="preview">
 3428: <input type="hidden" name="subject" />
 3429: <input type="hidden" name="comment" />
 3430: <input type="button" value="$pre"
 3431: onclick="if (typeof(document.$formname.onsubmit)=='function') {document.$formname.onsubmit();};this.form.comment.value=document.$formname.$fieldname.value;this.form.subject.value=document.$formname.subject.value;this.form.submit();" />
 3432: </form>
 3433: ENDPREVIEW
 3434: }
 3435: 
 3436: sub modify_attachments {
 3437:     my ($r,$currnewattach,$currdelold,$symb,$idx,$attachmenturls,
 3438:         $attachmaxtext,$toolarge)=@_;
 3439: 
 3440:     my %lt = &Apache::lonlocal::texthash(
 3441:                'subj' => 'Subject',
 3442:                'chth' => 'Check the checkboxes for any you wish to remove.',
 3443:                'thef' => 'The following attachments have been uploaded for inclusion with this posting.',
 3444:                'adda' => 'Add a new attachment to this post',
 3445:                'stch' => 'Save Changes',
 3446:                'clic' => 'Add/remove attachments',
 3447:              );
 3448:     my $js = <<END;
 3449: <script type="text/javascript">
 3450:  function setAction () {
 3451:    document.modattachments.action = document.modattachments.origpage.value;
 3452:    document.modattachments.submit();
 3453:  }
 3454: </script> 
 3455: END
 3456: 
 3457:     # Breadcrumbs
 3458:     my $brcrum = [{'href' => '',
 3459:                    'text' => 'Discussion Post Attachments'}];
 3460:     my %parms=('only_body' => 1);
 3461:     if ($env{'form.modal'} ne 'yes') { 'bread_crumbs' => $brcrum }
 3462: 
 3463:     my $start_page = 
 3464: 	&Apache::loncommon::start_page('Discussion Post Attachments',$js,\%parms);
 3465: 
 3466:     my $orig_subject = &unescape($env{'form.subject'});
 3467:     my $subject=&clear_out_html($orig_subject);
 3468:     $subject=~s/\n/\<br \/\>/g;
 3469:     $subject=&Apache::lontexconvert::msgtexconverted($subject);
 3470:     my $timestamp=$env{'form.timestamp'};
 3471:     my $numoldver=$env{'form.numoldver'};
 3472: 
 3473:     my $msg = '';
 3474:     my %attachments = ();
 3475:     my %currattach = ();
 3476:     if ($idx) {
 3477:         &extract_attachments($attachmenturls,$idx,$numoldver,\$msg,\%attachments,\%currattach,$currdelold);
 3478:     }
 3479:     &Apache::lonenc::check_encrypt(\$symb);
 3480: 
 3481:     my $end_page = 
 3482: 	&Apache::loncommon::end_page();
 3483: 				       
 3484:     $r->print(<<END);
 3485: $start_page
 3486: $toolarge
 3487: <form name="modattachments" method="post" enctype="multipart/form-data" action="/adm/feedback?attach=$symb">
 3488:  <br />
 3489:  <h1>$lt{'clic'}</h1>
 3490: END
 3491:     $r->print(&Apache::lonhtmlcommon::start_pick_box());
 3492:     $r->print(&Apache::lonhtmlcommon::row_title(&mt('Subject')));
 3493:     $r->print('<b>'.$subject.'</b>');
 3494:     $r->print(&Apache::lonhtmlcommon::row_closure());
 3495:     $r->print(&Apache::lonhtmlcommon::row_title($lt{'adda'}));
 3496:     $r->print('<input type="file" name="addnewattach" /><input type="button" name="upload" value="Upload" onclick="this.form.submit()" />  '.$attachmaxtext);
 3497:     if(($idx)||(ref($currnewattach) eq 'ARRAY') && (@{$currnewattach} > 0)){
 3498:         $r->print(&Apache::lonhtmlcommon::row_closure());
 3499:         $r->print(&Apache::lonhtmlcommon::row_title(&mt('Attachments')));
 3500:         if ($idx) {
 3501:             if ($attachmenturls) {
 3502:                 my @currold = keys(%currattach);
 3503:                 if (@currold > 0) {
 3504:                     $r->print($lt{'thfo'}.'<br />'.$lt{'chth'}.'<br />'."\n");
 3505:                     foreach my $id (@currold) {
 3506:                         my $attachurl = &HTML::Entities::decode($attachments{$id}{'filename'});
 3507:                         $attachurl =~ m#/([^/]+)$#;
 3508:                         $r->print('<label><input type="checkbox" name="deloldattach" value="'.$id.'" />&nbsp;'.$1.'</label><br />'."\n");
 3509:                     }
 3510:                     $r->print("<br />");
 3511:                 }
 3512:             }
 3513:         }
 3514:         if ((ref($currnewattach) eq 'ARRAY') && (@{$currnewattach} > 0)) {
 3515:             $r->print($lt{'chth'}.'<br />'."\n");
 3516:             foreach my $attach (@{$currnewattach}) {
 3517:                 $attach =~ m#/([^/]+)$#;
 3518:                 $r->print('<label><input type="checkbox" name="delnewattach" value="'.$attach.'" />&nbsp;'.$1.'</label><br />'."\n");
 3519:             }
 3520:         }
 3521:     }
 3522:     $r->print(&Apache::lonhtmlcommon::row_closure(1));
 3523:     $r->print(&Apache::lonhtmlcommon::end_pick_box());
 3524:     $r->print(<<END);
 3525: <input type="hidden" name="subject" value="$env{'form.subject'}" />
 3526: <input type="hidden" name="comment" value="$env{'form.comment'}" />
 3527: <input type="hidden" name="timestamp" value="$env{'form.timestamp'}" />
 3528: <input type="hidden" name="idx" value="$env{'form.idx'}" />
 3529: <input type="hidden" name="numoldver" value="$env{'form.numoldver'}" />
 3530: <input type="hidden" name="origpage" value="$env{'form.origpage'}" />
 3531: <input type="hidden" name="blog" value="$env{'form.blog'}" />
 3532: <input type="hidden" name="discuss" value="$env{'form.discuss'}" />
 3533: END
 3534:     foreach my $item (@{$currnewattach}) {
 3535:         $r->print('<input type="hidden" name="currnewattach" value="'.$item.'" />'."\n");
 3536:     }
 3537:     foreach my $item (@{$currdelold}) {
 3538:         $r->print('<input type="hidden" name="deloldattach" value="'.$item.'" />'."\n");
 3539:     }
 3540:     $r->print(<<END);
 3541:  <input type="button" name="rtntoedit" value="$lt{'stch'}" onclick="setAction()" />
 3542: </form>
 3543: $end_page
 3544: END
 3545:     return;
 3546: }
 3547: 
 3548: sub process_attachments {
 3549:     my ($currnewattach,$currdelold,$keepold) = @_;
 3550: 
 3551:     @{$currnewattach}=
 3552: 	&Apache::loncommon::get_env_multiple('form.currnewattach');
 3553:     @{$currdelold}=
 3554: 	&Apache::loncommon::get_env_multiple('form.deloldattach');
 3555:     if (exists($env{'form.delnewattach'})) {
 3556:         my @currdelnew =
 3557: 	    &Apache::loncommon::get_env_multiple('form.delnewattach');
 3558:         my @currnew = ();
 3559:         foreach my $newone (@{$currnewattach}) {
 3560:             my $delflag = 0;
 3561:             foreach my $item (@currdelnew) {
 3562:                 if ($newone eq $item) {
 3563:                     $delflag = 1;
 3564:                     last;
 3565:                 }
 3566:             }
 3567:             unless ($delflag) {
 3568:                 push(@currnew, $newone);
 3569:             }
 3570:         }
 3571:         @{$currnewattach} = @currnew;
 3572:     }
 3573:     @{$keepold} = &Apache::loncommon::get_env_multiple('form.keepold');
 3574: }
 3575: 
 3576: sub generate_attachments_button {
 3577:     my ($idx,$attachnum,$ressymb,$now,$currnewattach,$deloldattach,
 3578:         $numoldver,$mode,$blockblog) = @_;
 3579:     my $origpage = $ENV{'REQUEST_URI'};
 3580:     my $att=$attachnum.' '.&mt("attachments");
 3581:     my %lt = &Apache::lonlocal::texthash(
 3582:                 'clic' => 'Add/remove attachments',
 3583:     ); 
 3584:     my $response = (<<END);
 3585: <br />
 3586: <form name="attachment" action="/adm/feedback?attach=$ressymb" method="post">
 3587: <input type="button" value="$lt{'clic'}"
 3588: onclick="if (typeof(document.mailform.onsubmit)=='function') {document.mailform.onsubmit();};this.form.comment.value=escape(document.mailform.comment.value);this.form.subject.value=escape(document.mailform.subject.value);
 3589: END
 3590:     if (!$blockblog) {
 3591:         $response .= 'setblogvalue();';
 3592:     }
 3593:     unless ($mode eq 'board') {
 3594:         $response .= 'javascript:anonchk();';
 3595:     }
 3596:     $response .= (<<ENDATTACH);
 3597: this.form.submit();" />
 3598: <input type="hidden" name="origpage" value="$origpage" />
 3599: <input type="hidden" name="idx" value="$idx" />
 3600: <input type="hidden" name="timestamp" value="$now" />
 3601: <input type="hidden" name="subject" />
 3602: <input type="hidden" name="comment" />
 3603: <input type="hidden" name="blog" value="0" />
 3604: <input type="hidden" name="discuss" value="0" />
 3605: <input type="hidden" name="numoldver" value="$numoldver" />
 3606: ENDATTACH
 3607:     if (defined($deloldattach)) {
 3608:         if (@{$deloldattach} > 0) {
 3609:             foreach my $delatt (@{$deloldattach}) {
 3610:                 $response .= '<input type="hidden" name="deloldattach" value="'.$delatt.'" />'."\n";
 3611:             }
 3612:         }
 3613:     }
 3614:     if (defined($currnewattach)) {
 3615:         if (@{$currnewattach} > 0) {
 3616:             foreach my $attach (@{$currnewattach}) {
 3617:                 $response .= '<input type="hidden" name="currnewattach" value="'.$attach.'" />'."\n";
 3618:             }
 3619:         }
 3620:     }
 3621:     $response .= '</form>';
 3622:     return $response;
 3623: }
 3624: 
 3625: sub extract_attachments {
 3626:     my ($attachmenturls,$idx,$numoldver,$message,$attachments,$currattach,$currdelold) = @_;
 3627:     %{$attachments}=();
 3628:     &get_post_attachments($attachments,$attachmenturls);
 3629:     foreach my $id (sort(keys(%{$attachments}))) {
 3630:         if (exists($$attachments{$id}{$numoldver})) {
 3631:             if (defined($currdelold)) {
 3632:                 if (@{$currdelold} > 0) {
 3633:                     unless (grep/^$id$/,@{$currdelold}) {
 3634:                         $$currattach{$id} = $$attachments{$id}{$numoldver}; 
 3635:                     }
 3636:                 } else {
 3637:                     $$currattach{$id} = $$attachments{$id}{$numoldver};
 3638:                 }
 3639:             } else {
 3640:                 $$currattach{$id} = $$attachments{$id}{$numoldver};
 3641:             }
 3642:         }
 3643:     }
 3644:     my @attached = (sort { $a <=> $b } keys(%{$currattach}));
 3645:     if (@attached == 1) {
 3646:         my $id = $attached[0];
 3647:         my $attachurl;
 3648:         if ($attachmenturls =~ m/^<attachment id="0">/) {
 3649:             $attachurl = &HTML::Entities::decode($$attachments{$id}{'filename'});
 3650:         } else {
 3651:             $attachurl = $$attachments{$id}{'filename'};
 3652:         }
 3653:         $attachurl=~m|/([^/]+)$|;
 3654:         $$message.='<br /><a href="'.$attachurl.'"><tt>'.
 3655:         $1.'</tt></a><br />';
 3656:         &Apache::lonnet::allowuploaded('/adm/feedback',
 3657:                                $attachurl);
 3658:     } elsif (@attached > 1) {
 3659:         $$message.='<ol>';
 3660:         foreach my $attach (@attached) {
 3661:             my $id = $attach;
 3662:             my $attachurl = &HTML::Entities::decode($$attachments{$id}{'filename'});
 3663:             my ($fname)
 3664:               =($attachurl=~m|/([^/]+)$|);
 3665:             $$message .= '<li><a href="'.$attachurl.
 3666:               '"><tt>'.
 3667:               $fname.'</tt></a></li>';
 3668:             &Apache::lonnet::allowuploaded('/adm/feedback',
 3669:                              $attachurl);
 3670:         }
 3671:         $$message .= '</ol>';
 3672:     }
 3673: }
 3674: 
 3675: sub construct_attachmenturl {
 3676:     my ($currnewattach,$keepold,$symb,$idx)=@_;
 3677:     my $oldattachmenturl;
 3678:     my $newattachmenturl;
 3679:     my $startnum = 0;
 3680:     my $currver = 0;
 3681:     if (($env{'form.editdisc'}) && ($idx)) {
 3682:         my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 3683:                        $env{'course.'.$env{'request.course.id'}.'.domain'},
 3684:                        $env{'course.'.$env{'request.course.id'}.'.num'});
 3685:         $oldattachmenturl = $contrib{$idx.':attachmenturl'};
 3686:         if ($contrib{$idx.':history'}) {
 3687:             if ($contrib{$idx.':history'} =~ /:/) {
 3688:                 my @oldversions = split(/:/,$contrib{$idx.':history'});
 3689:                 $currver = 1 + scalar(@oldversions);
 3690:             } else {
 3691:                 $currver = 2;
 3692:             }
 3693:         } else {
 3694:             $currver = 1;
 3695:         }
 3696:         if ($oldattachmenturl) {
 3697:             if ($oldattachmenturl =~ m/^<attachment id="0">/) {
 3698:                 my %attachments = ();
 3699:                 my $prevver = $currver-1;
 3700:                 &get_post_attachments(\%attachments,$oldattachmenturl);
 3701:                 my $numattach = scalar(keys(%attachments));
 3702:                 $startnum += $numattach;
 3703:                 foreach my $num (sort {$a <=> $b} keys(%attachments)) {
 3704:                     $newattachmenturl .= '<attachment id="'.$num.'"><filename>'.$attachments{$num}{'filename'}.'</filename>';
 3705:                     foreach my $item (sort {$a <=> $b} keys(%{$attachments{$num}})) {
 3706:                         unless ($item eq 'filename') {
 3707:                             $newattachmenturl .= '<post id="'.$item.'">'.$attachments{$num}{$item}.'</post>';
 3708:                         }
 3709:                     }
 3710:                     if (grep/^$num$/,@{$keepold}) {
 3711:                         $newattachmenturl .= '<post id="'.$currver.'">'.$attachments{$num}{$prevver}.'</post>';
 3712:                     }
 3713:                     $newattachmenturl .= '</attachment>';
 3714:                 }
 3715:             } else {
 3716:                 $newattachmenturl = '<attachment id="0"><filename>'.&HTML::Entities::encode($oldattachmenturl).'</filename><post id="0">n</post>';
 3717:                 unless (grep/^0$/,@{$keepold}) {
 3718:                     $newattachmenturl .= '<post id="1">n</post>';
 3719:                 }
 3720:                 $newattachmenturl .= '</attachment>';
 3721:                 $startnum ++;
 3722:             }
 3723:         }
 3724:     }
 3725:     for (my $i=0; $i<@{$currnewattach}; $i++) {
 3726:         my $attachnum = $startnum + $i;
 3727:         $newattachmenturl .= '<attachment id="'.$attachnum.'"><filename>'.&HTML::Entities::encode($$currnewattach[$i]).'</filename><post id="'.$currver.'">n</post></attachment>';
 3728:     }
 3729:     return $newattachmenturl; 
 3730: }
 3731: 
 3732: sub add_blog_checkbox {
 3733:     my ($crstype) = @_;
 3734:     my $checkstatus;
 3735:     if ($env{'form.blog'}) {
 3736:         $checkstatus = 'checked="checked"';
 3737:     }
 3738:     my $output = '
 3739: <script type="text/javascript">
 3740: function setblogvalue() {
 3741:     if (document.mailform.blog.checked) {
 3742:         document.attachment.blog.value = 1;
 3743:     } else {
 3744:         document.attachment.blog.value = 0;
 3745:     }
 3746: }
 3747: </script><br />
 3748: <label><input type="checkbox" name="blog" '.$checkstatus.' /> ';
 3749:     if ($crstype eq 'Community') {
 3750:         $output .= &mt('Add to my public community blog');
 3751:     } else {
 3752:         $output .= &mt('Add to my public course blog');
 3753:     } 
 3754:     $output .= '</label><br />'."\n";
 3755:     return $output;
 3756: }
 3757: 
 3758: sub has_discussion {
 3759:     my $resourcesref = shift;
 3760:     my $navmap = Apache::lonnavmaps::navmap->new();
 3761:     if (defined($navmap)) {
 3762:         my @allres=$navmap->retrieveResources();
 3763:         foreach my $resource (@allres) {
 3764:             if ($resource->hasDiscussion()) {
 3765:                 my $ressymb = $resource->wrap_symb();
 3766:                 if (ref($resourcesref) eq 'ARRAY') {
 3767:                     push(@{$resourcesref}, $ressymb);
 3768:                 }
 3769:             }
 3770:         }
 3771:     } else {
 3772:         &Apache::lonnet::logthis('Has discussion check failed - could not create navmap object.');
 3773:     }
 3774:     return;
 3775: }
 3776: 
 3777: sub sort_filter_names {
 3778:     my ($sort_types,$role_types,$status_types,$crstype) = @_;
 3779:     if (ref($sort_types) eq 'HASH') {
 3780:         %{$sort_types} = (
 3781:                      ascdate => 'Date order - oldest first',
 3782:                      descdate => 'Date order - newest first',
 3783:                      thread => 'Threaded',
 3784:                      subject => 'By subject',
 3785:                      username => 'By domain and username',
 3786:                      lastfirst => 'By last name, first name'
 3787:                    );
 3788:     }
 3789:     my @courseroles = qw(st in ta ep ad);
 3790:     if ($crstype eq 'Community') {
 3791:         push(@courseroles,'co');
 3792:     } else {
 3793:         push(@courseroles,'cc');
 3794:     }
 3795:     if (ref($role_types) eq 'HASH') {
 3796:         foreach my $role (@courseroles) {
 3797:             $role_types->{$role} = &Apache::lonnet::plaintext($role,$crstype);
 3798:         }
 3799:         $role_types->{'all'} = 'All roles';
 3800:         $role_types->{'cr'} = 'Custom role';
 3801:     }
 3802:     if (ref($status_types) eq 'HASH') {
 3803:         %{$status_types} = (
 3804:                      all     => 'Roles of any status',
 3805:                      Active  => 'Only active roles',
 3806:                      Expired => 'Only past roles',
 3807:                      Future  => 'Only future roles',
 3808:                    );
 3809:     }
 3810: }
 3811:   
 3812: sub handler {
 3813:   my $r = shift;
 3814:   if ($r->header_only) {
 3815:      &Apache::loncommon::content_type($r,'text/html');
 3816:      $r->send_http_header;
 3817:      return OK;
 3818:   }
 3819: 
 3820: # --------------------------- Get query string for limited number of parameters
 3821: 
 3822:   &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
 3823:          ['like','unlike','modal','hide','unhide','deldisc','undeleteall','postdata','preview','replydisc','editdisc','cmd','symb','onlyunread','allposts','onlyunmark','previous','markread','markonread','markondisp','toggoff','toggon','modifydisp','changes','navtime','navmaps','navurl','sortposts','applysort','rolefilter','statusfilter','sectionpick','groupick','posterlist','userpick','attach','origpage','currnewattach','deloldattach','keepold','allversions','export','sendmessageonly','group','ref']);
 3824:   my $group = $env{'form.group'};
 3825:   my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 3826:   my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 3827: 
 3828:   my %attachmax = (
 3829:                     text => &mt('(128 KB max size)'),
 3830:                     num  => 131072,
 3831:                   );
 3832:   if ($env{'form.editdisc'}) {
 3833:       if (!(&editing_allowed($env{'form.editdisc'},$group))) {
 3834:           my $symb=(split(/\:\:\:/,$env{'form.editdisc'}))[0];
 3835:           my ($map,$id,$url)=&Apache::lonnet::decode_symb($symb);
 3836:           my $feedurl=&Apache::lonnet::clutter($url);
 3837:           &redirect_back($r,$feedurl,&mt('Editing not permitted').'<br />',                     '0','0','','',$env{'form.previous'},undef,undef,undef,
 3838:                     undef,undef,undef,$group);
 3839:           return OK;
 3840:       }
 3841:   } 
 3842:   if ($env{'form.discsymb'}) {
 3843:       my ($symb,$feedurl) = &get_feedurl_and_clean_symb($env{'form.discsymb'});
 3844:       my $readkey = $symb.'_read';
 3845:       my $chgcount = 0;
 3846:       my %readinghash = &Apache::lonnet::get('nohist_'.$env{'request.course.id'}.'_discuss',[$readkey],$env{'user.domain'},$env{'user.name'});
 3847:       foreach my $key (keys(%env)) {
 3848:           if ($key =~ m/^form\.postunread_(\d+)/) {
 3849:               if ($readinghash{$readkey} =~ /\.$1\./) {
 3850:                   $readinghash{$readkey} =~ s/\.$1\.//;
 3851:                   $chgcount ++;
 3852:               }
 3853:           } elsif ($key =~ m/^form\.postread_(\d+)/) {
 3854:               unless ($readinghash{$readkey} =~ /\.$1\./) {
 3855:                   $readinghash{$readkey} .= '.'.$1.'.';
 3856:                   $chgcount ++;
 3857:               }
 3858:           }
 3859:       }
 3860:       if ($chgcount > 0) {
 3861:           &Apache::lonnet::put('nohist_'.$env{'request.course.id'}.'_discuss',
 3862: 			  \%readinghash,$env{'user.domain'},$env{'user.name'});
 3863:       }
 3864:       &redirect_back($r,$feedurl,&mt('Marked postings read/unread').'<br />',
 3865: 		     '0','0','','',$env{'form.previous'},'','','',
 3866:                      undef,undef,undef,$group);
 3867:       return OK;
 3868:   }
 3869:   if ($env{'form.allversions'}) {
 3870:       &Apache::loncommon::content_type($r,'text/html');
 3871:       &Apache::loncommon::no_cache($r);
 3872:       $r->send_http_header;
 3873: 
 3874:       # Breadcrumbs
 3875:       my $brcrum = [{'href' => '',
 3876:                      'text' => 'Discussion Post Versions'}];
 3877:       
 3878:       my %parms=();
 3879:       if ($env{'form.modal'} ne 'yes') { 'bread_crumbs' => $brcrum }
 3880: 
 3881:       $r->print(&Apache::loncommon::start_page('Discussion Post Versions',undef,\%parms));
 3882: 
 3883:       my ($symb,$idx)=split(/\:\:\:/,$env{'form.allversions'});
 3884:       ($symb, my $feedurl)=&get_feedurl_and_clean_symb($symb);
 3885:       my $ressymb = &wrap_symb($symb);
 3886:       my $seeid;
 3887:       if (&Apache::lonnet::allowed('rin',$env{'request.course.id'}.($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
 3888:           $seeid = 1;
 3889:       }
 3890:       my $seehidden = &can_see_hidden('',$ressymb,$feedurl,$group,$cdom,$cnum);
 3891:       if ($idx > 0) {
 3892:           my %messages = ();
 3893:           my %subjects = ();
 3894:           my %attachmsgs = ();
 3895:           my %allattachments = ();
 3896:           my %imsfiles = ();
 3897:           my ($screenname,$plainname,$showaboutme);
 3898:           my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 3899:                                                $cdom,$cnum);
 3900:           $r->print(&get_post_contents(\%contrib,$idx,$seeid,$seehidden,'allversions',\%messages,\%subjects,\%allattachments,\%attachmsgs,\%imsfiles,\$screenname,\$plainname,\$showaboutme));
 3901:       }
 3902:       $r->print(&Apache::loncommon::end_page());
 3903:       return OK;
 3904:   }
 3905:   if ($env{'form.posterlist'}) {
 3906:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.applysort'});
 3907:       &print_showposters($r,$symb,$env{'form.previous'},$feedurl,
 3908: 			 $env{'form.sortposts'});
 3909:       return OK;
 3910:   }
 3911:   if ($env{'form.userpick'}) {
 3912:       my @posters = &Apache::loncommon::get_env_multiple('form.stuinfo');
 3913:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.userpick'});
 3914:       my $numpicks = @posters;
 3915:       my %discinfo;
 3916:       $discinfo{$symb.'_userpick'} = join('&',@posters);
 3917:       &Apache::lonnet::put('nohist_'.$env{'request.course.id'}.'_discuss',
 3918: 			   \%discinfo,$env{'user.domain'},$env{'user.name'});
 3919:       &redirect_back($r,$feedurl,&mt('Changed sort/filter').'<br />','0','0','',
 3920: 		     '',$env{'form.previous'},$env{'form.sortposts'},'','','',
 3921: 		     '',$numpicks,$group);
 3922:       return OK;
 3923:   }
 3924:   if ($env{'form.applysort'}) {
 3925:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.applysort'});
 3926:       &redirect_back($r,$feedurl,&mt('Changed sort/filter').'<br />','0','0','',
 3927: 		     '',$env{'form.previous'},$env{'form.sortposts'},
 3928: 		     $env{'form.rolefilter'},$env{'form.statusfilter'},
 3929: 		     $env{'form.sectionpick'},$env{'form.grouppick'},
 3930:                      undef,$group);
 3931:       return OK;
 3932:   } elsif ($env{'form.cmd'} eq 'sortfilter') {
 3933:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.symb'});
 3934:       &print_sortfilter_options($r,$symb,$env{'form.previous'},$feedurl);
 3935:       return OK;
 3936:   } elsif ($env{'form.navtime'}) {
 3937:       my %discinfo = ();
 3938:       my @resources = ();
 3939:       if (defined($env{'form.navmaps'})) {
 3940:           if ($env{'form.navmaps'} =~ /:/) {
 3941:               @resources = split(/:/,$env{'form.navmaps'});
 3942:           } else {
 3943:               @resources = ("$env{'form.navmaps'}");
 3944:           }
 3945:       } else {
 3946:           &has_discussion(\@resources);
 3947:       }
 3948:       my $numitems = @resources;
 3949:       my $feedurl = '/adm/navmaps';
 3950:       if ($env{'form.navurl'}) { $feedurl .= '?'.$env{'form.navurl'}; }
 3951:       my %lt = &Apache::lonlocal::texthash(
 3952:           'mnpa' => 'Marked "New" posts as read in a total of',
 3953:           'robb' => 'resources/bulletin boards.',
 3954:           'twnp' => 'There are currently no resources or discussion boards with unread discussion postings.'
 3955:       );       
 3956:       foreach my $res (@resources) {
 3957:           my $ressymb=$res;
 3958: 	  &Apache::lonenc::check_decrypt(\$ressymb);
 3959:           my $lastkey = $ressymb.'_lastread';
 3960:           $discinfo{$lastkey} = $env{'form.navtime'};
 3961:       }
 3962:       my $textline = "<b>$lt{'mnpa'} $numitems $lt{'robb'}</b>";
 3963:       if ($numitems > 0) {
 3964:           &Apache::lonnet::put('nohist_'.$env{'request.course.id'}.'_discuss',
 3965: 			     \%discinfo,$env{'user.domain'},$env{'user.name'});
 3966:       } else {
 3967:           $textline = "<b>$lt{'twnp'}</b>";
 3968:       }
 3969:       &Apache::loncommon::content_type($r,'text/html');
 3970:       $r->send_http_header;
 3971:       my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
 3972:       my %onload;
 3973: 
 3974:       my $start_page=
 3975: 	  &Apache::loncommon::start_page('New posts marked as read',undef,
 3976: 					 {'redirect'    => [2,$feedurl],
 3977: 					  'only_body'   => 1,
 3978: 					  'add_entries' => \%onload});
 3979:       my $end_page = &Apache::loncommon::end_page();
 3980:       $r->print (<<ENDREDIR);
 3981: $start_page
 3982: <img align="right" src="$logo" />
 3983: $textline
 3984: <form name="reldt" action="$feedurl" target="loncapaclient">
 3985: </form>
 3986: <br />
 3987: $end_page
 3988: ENDREDIR
 3989:       return OK;
 3990:   } elsif ($env{'form.modifydisp'}) {
 3991:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.modifydisp'});
 3992:       my ($dispchgA,$dispchgB,$markchg,$toggchg) = 
 3993: 	  split(/_/,$env{'form.changes'});
 3994:       &print_display_options($r,$symb,$env{'form.previous'},$dispchgA,
 3995: 			     $dispchgB,$markchg,$toggchg,$feedurl);
 3996:       return OK;
 3997:   } elsif ($env{'form.markondisp'} || $env{'form.markonread'} ||
 3998: 	   $env{'form.allposts'}   || $env{'form.onlyunread'} ||
 3999: 	   $env{'form.onlyunmark'} || $env{'form.toggoff'}    ||
 4000: 	   $env{'form.toggon'}     || $env{'form.markread'}) {
 4001:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.symb'});
 4002:       my %discinfo;
 4003: # ------------------------ Modify setting for read/unread toggle for each post 
 4004:       if ($env{'form.toggoff'}) { $discinfo{$symb.'_readtoggle'}=0; }
 4005:       if ($env{'form.toggon'})  { $discinfo{$symb.'_readtoggle'}=1; }
 4006: # --------- Modify setting for identification of 'NEW' posts in this discussion
 4007:       if ($env{'form.markondisp'}) {
 4008: 	  $discinfo{$symb.'_lastread'} = time;
 4009: 	  $discinfo{$symb.'_markondisp'} = 1;
 4010:       }
 4011:       if ($env{'form.markonread'}) {
 4012: 	  if ( $env{'form.previous'} > 0 ) {
 4013: 	      $discinfo{$symb.'_lastread'} = $env{'form.previous'};
 4014: 	  }
 4015: 	  $discinfo{$symb.'_markondisp'} = 0;
 4016:       }
 4017: # --------------------------------- Modify display setting for this discussion 
 4018:       if ($env{'form.allposts'}) {
 4019: 	  $discinfo{$symb.'_showonlyunread'} = 0;
 4020: 	  $discinfo{$symb.'_showonlyunmark'} = 0;
 4021:       }
 4022:       if ($env{'form.onlyunread'}) { $discinfo{$symb.'_showonlyunread'} = 1;  }
 4023:       if ($env{'form.onlyunmark'}) { $discinfo{$symb.'_showonlyunmark'} = 1;  }
 4024: # ----------------------------------------------------- Mark new posts not NEW 
 4025:       if ($env{'form.markread'})   { $discinfo{$symb.'_lastread'} = time; }
 4026:       &Apache::lonnet::put('nohist_'.$env{'request.course.id'}.'_discuss',
 4027: 			   \%discinfo,$env{'user.domain'},$env{'user.name'});
 4028:       my $previous=$env{'form.previous'};
 4029:       if ($env{'form.markondisp'}) { $previous=undef; }
 4030:       &redirect_back($r,$feedurl,&mt('Changed display status').'<br />',
 4031: 		     '0','0','','',$previous,'','','','','','',$group);
 4032:       return OK;
 4033:   } elsif (($env{'form.hide'}) || ($env{'form.unhide'})) {
 4034: # ----------------------------------------------------------------- Hide/unhide
 4035:       my $entry=$env{'form.hide'}?$env{'form.hide'}:$env{'form.unhide'};
 4036:       my ($symb,$idx)=split(/\:\:\:/,$entry);
 4037:       ($symb,my $feedurl)=&get_feedurl_and_clean_symb($symb);
 4038:       my $ressymb = &wrap_symb($symb);
 4039: 
 4040:       my $seehidden = &can_see_hidden('',$ressymb,$feedurl,$group,$cdom,$cnum);
 4041:       unless (($seehidden) || (&editing_allowed($env{'form.hide'},$group))) {
 4042:           &redirect_back($r,$feedurl,&mt('Hiding not permitted').'<br />',
 4043:                          '0','0','','',$env{'form.previous'},'','','','',
 4044:                          undef,undef,$group,);
 4045:           return OK;
 4046:       }
 4047: 
 4048:       my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 4049:                                            $cdom,$cnum);
 4050: 
 4051:       my $currenthidden=$contrib{'hidden'};
 4052:       my $currentstudenthidden=$contrib{'studenthidden'};
 4053: 
 4054:       if ($env{'form.hide'}) {
 4055: 	  $currenthidden.='.'.$idx.'.';
 4056: 	  unless ($seehidden) {
 4057: 	      $currentstudenthidden.='.'.$idx.'.';
 4058: 	  }
 4059:       } else {
 4060: 	  $currenthidden=~s/\.$idx\.//g;
 4061:       }
 4062:       my %newhash=('hidden' => $currenthidden);
 4063:       if ( ($env{'form.hide'}) && (!$seehidden) ) {
 4064: 	  $newhash{'studenthidden'} = $currentstudenthidden;
 4065:       }
 4066:       if ($env{'form.hide'}) {
 4067:           my $changelast = 0;
 4068:           my $newlast;
 4069:           ($changelast,$newlast) = &get_discussion_info($idx,%contrib);
 4070:           if ($changelast) {
 4071:               &Apache::lonnet::put('discussiontimes',{$symb => $newlast},
 4072:                                    $cdom,$cnum);
 4073:           }
 4074:       }
 4075:       my $result;
 4076:       if (&Apache::lonnet::store(\%newhash,$symb,$env{'request.course.id'},
 4077:                                  $cdom,$cnum) eq 'ok') {
 4078:           my $prefix=$symb.':'.$idx.':';
 4079:           my %likes=&Apache::lonnet::dump('disclikes',$cdom,$cnum,
 4080:                                           '^'.$prefix);
 4081:           my ($totallikes,$totalunlikes);
 4082:           if (ref($likes{$prefix.'likers'}) eq 'HASH') {
 4083:               $totallikes = scalar(keys(%{$likes{$prefix.'likers'}}));
 4084:           }
 4085:           if (ref($likes{$prefix.'unlikers'}) eq 'HASH') {
 4086:               $totalunlikes = scalar(keys(%{$likes{$prefix.'unlikers'}}));
 4087:           }
 4088:           if ($totallikes || $totalunlikes) {
 4089:               my ($chglikes,$chgunlikes,$context);
 4090:               if ($env{'form.hide'}) {
 4091:                   $chglikes = -1 * $totallikes;
 4092:                   $chgunlikes = -1 * $totalunlikes;
 4093:                   $context = 'hide';
 4094:               } else {
 4095:                   $chglikes = $totallikes;
 4096:                   $chgunlikes = $totalunlikes;
 4097:                   $context = 'unhide';
 4098:               }
 4099:               &storediscussionlikes($chglikes,$chgunlikes,
 4100:                                     $contrib{$idx.':sendername'},
 4101:                                     $contrib{$idx.':senderdomain'},
 4102:                                     $env{'request.course.id'},
 4103:                                     $context);
 4104:           
 4105:           }
 4106:           $result = &mt('Changed discussion status');
 4107:       } else {
 4108:           $result = &mt('Discussion status unchanged'); 
 4109:       }
 4110:       &redirect_back($r,$feedurl,$result.'<br />','0','0','','',
 4111: 		     $env{'form.previous'},undef,undef,undef,
 4112:                      undef,undef,undef,$group);
 4113:       return OK;
 4114:   } elsif (($env{'form.like'}) || ($env{'form.unlike'})) {
 4115: # ----------------------------------------------------------------- Like/unlike
 4116:       my $entry=$env{'form.like'}?$env{'form.like'}:$env{'form.unlike'};
 4117:       my ($symb,$idx)=split(/\:\:\:/,$entry);
 4118:       ($symb,my $feedurl)=&get_feedurl_and_clean_symb($symb);
 4119:       my $result;
 4120:       if ($idx > 0) {
 4121:           my $realsymb = &get_realsymb($symb);
 4122:           my $status='OPEN';
 4123:           if ($Apache::lonhomework::parsing_a_problem ||
 4124:               $Apache::lonhomework::parsing_a_task) {
 4125:               $status=$Apache::inputtags::status[-1];
 4126:           }
 4127:           if (&discussion_vote_available($status,$realsymb)) {
 4128:               my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 4129:                                                    $cdom,$cnum);
 4130:               if (($contrib{$idx.':sendername'} eq $env{'user.name'}) && 
 4131:                   ($contrib{$idx.':senderdomain'} eq $env{'user.domain'})) {
 4132:                   $result = &mt("Vote not registered. No voting for your own posts.");
 4133:               } else {
 4134: 
 4135: #
 4136: # Likes and unlikes are in db-file "disclikes" of the course
 4137: # The prefix is the $symb to identify the resource discussion,
 4138: # and the $idx to identify the entry
 4139: #
 4140:                   my $prefix=$symb.':'.$idx.':';
 4141:                   my %likes=&Apache::lonnet::dump('disclikes',$cdom,$cnum,
 4142:                                                   '^'.$prefix);
 4143: 
 4144: # Get current like or unlike status for the $idx for this user.
 4145:                   my $thisuser=$env{'user.name'}.':'.$env{'user.domain'};
 4146:                   my ($userlikes,$userunlikes);
 4147:                   if (ref($likes{$prefix.'likers'}) eq 'HASH') {
 4148:                       if (exists($likes{$prefix.'likers'}{$thisuser})) {
 4149:                           $userlikes = 1;
 4150:                       }
 4151:                   }
 4152:                   if (ref($likes{$prefix.'unlikers'}) eq 'HASH') {
 4153:                       if (exists($likes{$prefix.'unlikers'}{$thisuser})) {
 4154:                           $userunlikes = 1;
 4155:                       }
 4156:                   }
 4157: # Get the current "likes" count
 4158:                   my $likescount=$likes{$prefix.'likes'};
 4159: # Find out if they already voted
 4160: # Users cannot like a post twice, or unlike it twice.
 4161: # They can change their mind, though.
 4162:                   my $alreadyflag=0;
 4163:                   my $votetype;
 4164:                   if ($env{'form.like'}) {
 4165:                       if ($userlikes) {
 4166:                           $alreadyflag=1;
 4167:                       } elsif ($userunlikes) {
 4168:                           delete($likes{$prefix.'unlikers'}{$thisuser});
 4169:                           $votetype = 'switch';
 4170:                           $likescount++;
 4171:                       } else {
 4172:                           if (ref($likes{$prefix.'likers'}) eq 'HASH') {
 4173:                               $likes{$prefix.'likers'}{$thisuser} = 1;
 4174:                           } else {
 4175:                               $likes{$prefix.'likers'} = {$thisuser => 1};
 4176:                           }
 4177:                           $likescount++;
 4178:                       }
 4179:                   } else {
 4180:                       if ($userunlikes) {
 4181:                           $alreadyflag=1;
 4182:                       } elsif ($userlikes) {
 4183:                           delete($likes{$prefix.'likers'}{$thisuser});
 4184:                           $votetype = 'switch';
 4185:                           $likescount--;
 4186:                       } else {
 4187:                           if (ref($likes{$prefix.'unlikers'}) eq 'HASH') {
 4188:                               $likes{$prefix.'unlikers'}{$thisuser} = 1;
 4189:                           } else {
 4190:                               $likes{$prefix.'unlikers'} = {$thisuser => 1};
 4191:                           }
 4192:                           $likescount--;
 4193:                       }
 4194:                   }
 4195: # $alreadyflag would be 1 if they tried to double-like or double-unlike
 4196:                   if ($alreadyflag) {
 4197:                       if ($env{'form.like'}) {
 4198:                           $result= &mt("'Like' already registered");
 4199:                       } else {
 4200:                           $result= &mt("'Unlike' already registered");
 4201:                       }
 4202:                   } else {
 4203:                       my %newhash=($prefix.'likes'    => $likescount,
 4204:                                    $prefix.'likers'   => $likes{$prefix.'likers'},
 4205:                                    $prefix.'unlikers' => $likes{$prefix.'unlikers'});
 4206: # Store data in db-file "disclikes"
 4207:                       if (&Apache::lonnet::put('disclikes',\%newhash,$cdom,$cnum) eq 'ok') {
 4208: # Also store with the person who posted the liked/unliked entry
 4209:                           my ($chglike,$chgunlike);
 4210:                           if ($env{'form.like'}) {
 4211:                               if ($votetype eq 'switch') {
 4212:                                   $chglike = 0;
 4213:                                   $chgunlike = -1;
 4214:                               } else {
 4215:                                   $chglike = 1;
 4216:                                   $chgunlike = 0;
 4217:                               } 
 4218:                               &storediscussionlikes($chglike,$chgunlike,
 4219:                                                     $contrib{$idx.':sendername'},
 4220:                                                     $contrib{$idx.':senderdomain'},
 4221:                                                     $env{'request.course.id'},'like');
 4222:                               $result=&mt("Registered 'Like'");
 4223:                           } else {
 4224:                               if ($votetype eq 'switch') {
 4225:                                   $chglike = -1;
 4226:                                   $chgunlike = 0;
 4227:                               } else {
 4228:                                   $chglike = 0;
 4229:                                   $chgunlike = 1;
 4230:                               }
 4231:                              &storediscussionlikes($chglike,$chgunlike,
 4232:                                                    $contrib{$idx.':sendername'},
 4233:                                                    $contrib{$idx.':senderdomain'},
 4234:                                                    $env{'request.course.id'},'unlike');
 4235:                              $result=&mt("Registered 'Unlike'");
 4236:                           }
 4237:                       } else {
 4238: # Oops, something went wrong
 4239:                           $result=&mt("Failed to register vote");
 4240:                       }
 4241:                   }
 4242:               }
 4243:           } else {
 4244:               $result=&mt('Voting unavailable for this discussion');
 4245:           }
 4246:       } else {
 4247:           $result=&mt('Invalid post number'); 
 4248:       }
 4249:       &redirect_back($r,$feedurl,$result.'<br />',
 4250:                      '0','0','','',$env{'form.previous'},undef,undef,undef,
 4251:                      undef,undef,undef,$group);
 4252:       return OK;
 4253:   } elsif ($env{'form.cmd'}=~/^(threadedoff|threadedon)$/) {
 4254:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.symb'});
 4255:       if ($env{'form.cmd'} eq 'threadedoff') {
 4256: 	  &Apache::lonnet::put('environment',{'unthreadeddiscussion' => 'on'});
 4257: 	  &Apache::lonnet::appenv({'environment.unthreadeddiscussion' => 'on'});
 4258: 	  &Apache::lonnet::del('environment',['threadeddiscussion']);
 4259: 	  &Apache::lonnet::delenv('environment.threadeddiscussion');
 4260:       } else {
 4261: 	  &Apache::lonnet::put('environment',{'threadeddiscussion' => 'on'});
 4262: 	  &Apache::lonnet::appenv({'environment.threadeddiscussion' => 'on'});
 4263: 	  &Apache::lonnet::del('environment',['unthreadeddiscussion']);
 4264: 	  &Apache::lonnet::delenv('environment.unthreadeddiscussion');
 4265:       }
 4266:       &redirect_back($r,$feedurl,&mt('Changed discussion view mode').'<br />',
 4267: 		     '0','0','','',$env{'form.previous'},undef,undef,undef,
 4268:                      undef,undef,undef,$group);
 4269:       return OK;
 4270:   } elsif ($env{'form.deldisc'}) {
 4271: # --------------------------------------------------------------- Hide for good
 4272:       my ($symb,$idx)=split(/\:\:\:/,$env{'form.deldisc'});
 4273:       ($symb,my $feedurl)=&get_feedurl_and_clean_symb($symb);
 4274:       my $ressymb=&wrap_symb($symb);
 4275: 
 4276:       unless (&can_see_hidden('',$ressymb,$feedurl,$group,$cdom,$cnum)) {
 4277:           &redirect_back($r,$feedurl,&mt('Deletion not permitted').'<br />',
 4278:                          '0','0','','',$env{'form.previous'},'','','','',
 4279:                          undef,undef,$group);
 4280:           return OK;
 4281:       }
 4282:       my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 4283:                                            $cdom,$cnum);
 4284:       my ($changelast,$newlast) = &get_discussion_info($idx,%contrib);
 4285:       if ($changelast) {
 4286:           &Apache::lonnet::put('discussiontimes',{$symb => $newlast},
 4287:                                $cdom,$cnum);
 4288:       }
 4289:       my %newhash=('deleted' => $contrib{'deleted'}.".$idx.");
 4290: 
 4291:       my $result;
 4292:       if (&Apache::lonnet::store(\%newhash,$symb,$env{'request.course.id'},
 4293:                              $cdom,$cnum) eq 'ok') {
 4294:           $result = &mt('Changed discussion status');
 4295:           my $prefix=$symb.':'.$idx.':';
 4296:           my %likes=&Apache::lonnet::dump('disclikes',$cdom,$cnum,
 4297:                                           '^'.$prefix);
 4298:           my ($totallikes,$totalunlikes);
 4299:           if (ref($likes{$prefix.'likers'}) eq 'HASH') {
 4300:               $totallikes = scalar(keys(%{$likes{$prefix.'likers'}}));
 4301:           }
 4302:           if (ref($likes{$prefix.'unlikers'}) eq 'HASH') {
 4303:               $totalunlikes = scalar(keys(%{$likes{$prefix.'unlikers'}}));
 4304:           }
 4305:           if ($totallikes || $totalunlikes) {
 4306:               my $chglikes = -1 * $totallikes;
 4307:               my $chgunlikes = -1 * $totalunlikes;
 4308:               &storediscussionlikes($chglikes,$chgunlikes,
 4309:                                     $contrib{$idx.':sendername'},
 4310:                                     $contrib{$idx.':senderdomain'},
 4311:                                     $env{'request.course.id'},
 4312:                                     'delete');
 4313:           }
 4314:       } else {
 4315:           $result = &mt('Discussion status unchanged');
 4316:       } 
 4317:       &redirect_back($r,$feedurl,$result.'<br />','0','0','','',
 4318: 		     $env{'form.previous'},undef,undef,undef,
 4319:                      undef,undef,undef,$group);
 4320:       return OK;
 4321:   } elsif ($env{'form.preview'}) {
 4322: # -------------------------------------------------------- User wants a preview
 4323:       &show_preview($r);
 4324:       return OK;
 4325:   } elsif ($env{'form.attach'}) {
 4326: # -------------------------------------------------------- Work on attachments
 4327:       &Apache::loncommon::content_type($r,'text/html');
 4328:       $r->send_http_header;
 4329:       &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['subject','comment','addnewattach','delnewattach','timestamp','numoldver','idx','discuss','blog']);
 4330:       my (@currnewattach,@currdelold,@keepold,$toolarge);
 4331:       &process_attachments(\@currnewattach,\@currdelold,\@keepold);
 4332:       if (exists($env{'form.addnewattach.filename'})) {
 4333:           if (length($env{'form.addnewattach'})<=$attachmax{'num'}) {
 4334:               my $subdir = 'feedback/'.$env{'form.timestamp'};
 4335:               my $newattachment=&Apache::lonnet::userfileupload('addnewattach',undef,$subdir);
 4336: 	      push(@currnewattach, $newattachment);
 4337:           } else {
 4338:               $toolarge = '<p><span class="LC_warning">'.&mt('Attachment not included - exceeded permitted length').'</span><br /></p>';
 4339:           }
 4340:       }
 4341:       my $attachmenturls;
 4342:       my ($symb) = &get_feedurl_and_clean_symb($env{'form.attach'});
 4343:       my $idx = $env{'form.idx'};
 4344:       if ($idx) {
 4345:           my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 4346:                                                $cdom,$cnum);
 4347:           $attachmenturls = $contrib{$idx.':attachmenturl'};
 4348:       }
 4349:       &modify_attachments($r,\@currnewattach,\@currdelold,$symb,$idx,
 4350: 			  $attachmenturls,$attachmax{'text'},$toolarge);
 4351:       return OK;
 4352:   } elsif ($env{'form.export'}) {
 4353:       &Apache::loncommon::content_type($r,'text/html');
 4354:       $r->send_http_header;
 4355:       my ($symb,$feedurl) = &get_feedurl_and_clean_symb($env{'form.export'});
 4356:       my $mode='board';
 4357:       my $status='OPEN';
 4358:       my $previous=$env{'form.previous'};
 4359:       if ($feedurl =~ /$LONCAPA::assess_re/) {
 4360:           $mode='problem';
 4361:           $status=$Apache::inputtags::status[-1];
 4362:       }
 4363:        
 4364:       my $discussion = &list_discussion($mode,$status,$symb); 
 4365:       my $start_page = 
 4366: 	  &Apache::loncommon::start_page('Resource Feedback and Discussion');
 4367:       my $end_page = 
 4368: 	  &Apache::loncommon::end_page();
 4369:       $r->print($start_page.$discussion.$end_page);
 4370:       return OK;
 4371: 
 4372:   } elsif ($env{'form.undeleteall'}) {
 4373:       &Apache::loncommon::content_type($r,'text/html');
 4374:       $r->send_http_header;
 4375:       my ($symb,$feedurl) = &get_feedurl_and_clean_symb($env{'form.undeleteall'});
 4376:       my $ressymb=&wrap_symb($symb);
 4377:       $r->print(&Apache::loncommon::start_page('Undelete all deleted discussion entries'));
 4378:       if (&can_see_hidden('',$ressymb,$feedurl,$group,$cdom,$cnum)) {
 4379:           my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 4380:                                                 $cdom,$cnum);
 4381:           $contrib{'deleted'} =~ s/^\.//;
 4382:           $contrib{'deleted'} =~ s/\.$//;
 4383:           if ($contrib{'deleted'} ne '') {
 4384:               if (&Apache::lonnet::store({'deleted' => ''},$symb,$env{'request.course.id'},
 4385:                                           $cdom,$cnum) eq 'ok') {
 4386:                   my %likes=&Apache::lonnet::dump('disclikes',$cdom,$cnum,'^'.$symb.':');
 4387:                   my @ids = split(/\.\./,$contrib{'deleted'});
 4388:                   my (%chglikes,%chgunlikes);
 4389:                   foreach my $idx (@ids) {
 4390:                       my $uname = $contrib{$idx.':sendername'};
 4391:                       my $udom = $contrib{$idx.':senderdomain'};
 4392:                       my ($totallikes,$totalunlikes);
 4393:                       if (ref($likes{$symb.':'.$idx.':likers'}) eq 'HASH') {
 4394:                           $totallikes = scalar(keys(%{$likes{$symb.':'.$idx.':likers'}}));
 4395:                       }
 4396:                       if (ref($likes{$symb.':'.$idx.':unlikers'}) eq 'HASH') {
 4397:                           $totalunlikes = scalar(keys(%{$likes{$symb.':'.$idx.':unlikers'}}));
 4398:                       }
 4399:                       if ($totallikes || $totalunlikes) {
 4400:                           $chglikes{$uname.':'.$udom} += $totallikes;
 4401:                           $chgunlikes{$uname.':'.$udom} += $totalunlikes;
 4402:                       }
 4403:                   }
 4404:                   foreach my $user (keys(%chglikes)) {
 4405:                       my ($uname,$udom) = split(/:/,$user);
 4406:                       &storediscussionlikes($chglikes{$user},$chgunlikes{$user},
 4407:                                             $uname,$udom,$env{'request.course.id'},
 4408:                                             'undelete');
 4409:                   }
 4410:                   $r->print(&Apache::lonhtmlcommon::confirm_success(&mt("Undeleted all entries")));
 4411:               } else {
 4412:                   $r->print(&Apache::lonhtmlcommon::confirm_success(&mt("Failed to undelete entries"),1));
 4413:               }
 4414:           } else {
 4415:               $r->print(&Apache::lonhtmlcommon::confirm_success(&mt("No entries to undelete"),1));
 4416:           }
 4417:           $r->print("<br /><a href='$feedurl'>".&mt("Return and reload")."</a>");
 4418:       }
 4419:       $r->print(&Apache::loncommon::end_page());
 4420:       return OK;
 4421:   } else {
 4422: # ------------------------------------------------------------- Normal feedback
 4423:       my $feedurl=$env{'form.postdata'};
 4424:       $feedurl=~s/^https?\:\/\///;
 4425:       $feedurl=~s/^$ENV{'SERVER_NAME'}//;
 4426:       $feedurl=~s/^$ENV{'HTTP_HOST'}//;
 4427:       $feedurl=~s/\?.+$//;
 4428: 
 4429:       my $symb;
 4430:       if ($env{'form.replydisc'}) {
 4431: 	  $symb=(split(/\:\:\:/,$env{'form.replydisc'}))[0];
 4432:       } elsif ($env{'form.editdisc'}) {
 4433: 	  $symb=(split(/\:\:\:/,$env{'form.editdisc'}))[0];
 4434:       } elsif ($env{'form.origpage'}) {
 4435: 	  $symb=""; 
 4436:       } elsif ($env{'form.sendmessageonly'}) {
 4437:           $symb=(split(/\:\:\:/,$env{'form.sendmessageonly'}))[0];
 4438:       } else {
 4439: 	  $symb=&Apache::lonnet::symbread($feedurl);
 4440:       }
 4441:       unless ($symb) {
 4442: 	  $symb=$env{'form.symb'};
 4443:       }
 4444:       if (defined($symb)) {
 4445:           ($symb,$feedurl)=&get_feedurl_and_clean_symb($symb);
 4446:       } else {
 4447:           # backward compatibility (bulletin boards used to be 'wrapped')
 4448:           &Apache::lonenc::check_decrypt(\$feedurl);
 4449:           &dewrapper(\$feedurl);
 4450:       }
 4451:       my $goahead=1;
 4452:       if ($feedurl=~/$LONCAPA::assess_re/) {
 4453: 	  unless ($symb) { $goahead=0; }
 4454:       }
 4455:       if (!$goahead) {
 4456:           # Ambiguous Problem Resource
 4457: 	  $r->internal_redirect('/adm/ambiguous');
 4458: 	  return OK;
 4459:       }
 4460: # Go ahead with feedback, no ambiguous reference
 4461:       unless (
 4462: 	  (
 4463: 	   ($feedurl=~m:^/res:) && ($feedurl!~m:^/res/adm:)
 4464: 	   ) 
 4465: 	  || 
 4466: 	  ($env{'request.course.id'} && ($feedurl!~m:^/adm:))
 4467: 	  ||
 4468: 	  ($env{'request.course.id'} && ($symb=~/^bulletin\_\_\_/))
 4469: 	  ) {
 4470: 	  &Apache::loncommon::content_type($r,'text/html');
 4471: 	  $r->send_http_header;
 4472: # Unable to give feedback
 4473:           &Apache::lonenc::check_encrypt(\$feedurl);
 4474: 	  &no_redirect_back($r,$feedurl);
 4475: 	  return OK;
 4476:       }
 4477: # --------------------------------------------------- Print login screen header
 4478:       unless ($env{'form.sendit'}) {
 4479:           &Apache::lonenc::check_encrypt(\$feedurl);
 4480: 	  &Apache::loncommon::content_type($r,'text/html');
 4481: 	  $r->send_http_header;
 4482:           if (($env{'form.replydisc'}) || ($env{'form.editdisc'})) {
 4483:               my ($blocked,$blocktext) = 
 4484:                      &Apache::loncommon::blocking_status('boards');
 4485:               if ($blocked) {
 4486:                   $r->print(&blocked_reply_or_edit($blocktext));
 4487:                   return OK;
 4488:               }
 4489:           }
 4490: 	  my $options=&screen_header($feedurl,$symb,$group);
 4491: 	  if ($options) {
 4492: 	      &mail_screen($r,$feedurl,$options,$symb,$attachmax{'text'});
 4493: 	  } else {
 4494: 	      &fail_redirect($r,$feedurl);
 4495: 	  }
 4496: 	  return OK;
 4497:       }
 4498:       
 4499: # Get previous user input
 4500:       my $prevattempts=&Apache::loncommon::get_previous_attempt(
 4501:                                    $symb,$env{'user.name'},$env{'user.domain'},
 4502: 				   $env{'request.course.id'});
 4503: 
 4504: # Get output from resource
 4505:       &Apache::lonenc::check_encrypt(\$feedurl);
 4506:       my $usersaw=&resource_output($feedurl);
 4507: 
 4508: # Get resource answer (need to allow student to view grades for this to work)
 4509:       &Apache::lonnet::appenv({'allowed.vgr'=>'F'});
 4510:       my $usersymb = &Apache::lonenc::check_encrypt($symb);
 4511:       my $useranswer=
 4512:           &Apache::loncommon::get_student_answers(
 4513:               $usersymb,$env{'user.name'},$env{'user.domain'},
 4514:               $env{'request.course.id'});
 4515:       &Apache::lonnet::delenv('allowed.vgr');
 4516: # Get attachments, if any, and not too large
 4517:       my $attachmenturl='';
 4518:       my $toolarge='';
 4519:       if (($env{'form.origpage'}) || ($env{'form.editdisc'}) ||
 4520: 	  ($env{'form.replydisc'})) {
 4521: 	  my ($symb,$idx);
 4522: 	  if ($env{'form.replydisc'}) {
 4523: 	      ($symb,$idx)=split(/\:\:\:/,$env{'form.replydisc'});
 4524: 	  } elsif ($env{'form.editdisc'}) {
 4525: 	      ($symb,$idx)=split(/\:\:\:/,$env{'form.editdisc'});
 4526: 	  } elsif ($env{'form.origpage'}) {
 4527: 	      $symb = $env{'form.symb'};
 4528: 	  }
 4529: 	  &Apache::lonenc::check_decrypt(\$symb);
 4530: 	  my @currnewattach = ();
 4531: 	  my @deloldattach = ();
 4532: 	  my @keepold = ();
 4533: 	  &process_attachments(\@currnewattach,\@deloldattach,\@keepold);
 4534: 	  $symb=~s|(bulletin___\d+___)adm/wrapper/|$1|;
 4535: 	  $attachmenturl=&construct_attachmenturl(\@currnewattach,\@keepold,$symb,$idx);
 4536:       } elsif ($env{'form.attachment.filename'}) {
 4537: 	  if (length($env{'form.attachment'})<=$attachmax{'num'}) {
 4538:               my $now = time;
 4539:               my $subdir = 'feedback/'.$now;
 4540: 	      $attachmenturl=&Apache::lonnet::userfileupload('attachment',undef,$subdir);
 4541: 	  } else {
 4542:               $toolarge = '<p><span class="LC_warning">'.&mt('Attachment not included - exceeded permitted length').'</span><br /></p>';
 4543:           }
 4544:       }
 4545: # Filter HTML out of message (could be nasty)
 4546:       my $override;
 4547:       if ($env{'form.discuss'} =~ /^(?:author|question|course|policy)$/) {
 4548:           $override = 1;
 4549:       }
 4550:       my $message=&clear_out_html($env{'form.comment'},$override);
 4551: 
 4552: # Assemble email
 4553:       my ($email,$citations)=&assemble_email($message,$prevattempts,
 4554: 					     $usersaw,$useranswer);
 4555:  
 4556: # Who gets this?
 4557:       my ($typestyle,%to) = &Apache::lonmsg::decide_receiver($feedurl);
 4558: 
 4559: # Actually send mail
 4560:       my ($status,$numsent)=&send_msg(&clear_out_html($env{'form.subject'}),
 4561: 				      $feedurl,$email,$citations,
 4562: 				      $attachmenturl,$usersymb,%to);
 4563: 
 4564: # Discussion? Store that.
 4565:       my $numpost=0;
 4566:       if (  ($env{'form.discuss'} ne ''
 4567: 	     && $env{'form.discuss'} !~ /^(?:author|question|course|policy)/)
 4568: 	   || $env{'form.anondiscuss'} ne '') {
 4569: 	  my $subject = &clear_out_html($env{'form.subject'});
 4570: 	  my $anonmode=($env{'form.discuss'} eq 'anon' || $env{'form.anondiscuss'} );
 4571: 	  $typestyle.=&adddiscuss($symb,$message,$anonmode,$attachmenturl,
 4572: 				  $subject,$group);
 4573: 	  $numpost++;
 4574:       }
 4575: 
 4576: # Add to blog?
 4577: 
 4578:       my $blog='';
 4579:       if ($env{'form.blog'}) {
 4580: 	  my $subject = &clear_out_html($env{'form.subject'});
 4581: 	  $status.=&Apache::lonrss::addentry($env{'user.name'},
 4582: 				    $env{'user.domain'},
 4583: 				    'CourseBlog_'.$env{'request.course.id'},
 4584: 				    $subject,$message,$feedurl,'public');
 4585:           if (&Apache::loncommon::course_type() eq 'Community') {
 4586:               $blog='<br />'.&mt('Added to my community blog').'<br />';
 4587:           } else {
 4588: 	      $blog='<br />'.&mt('Added to my course blog').'<br />';
 4589:           }
 4590:       }
 4591: 	  
 4592: # Receipt screen and redirect back to where came from
 4593:       &redirect_back($r,$feedurl,$typestyle,$numsent,$numpost,$blog,$status,$env{'form.previous'},undef,undef,undef,undef,undef,undef,$group,$toolarge);
 4594:   }
 4595:   return OK;
 4596: }
 4597: 
 4598: sub blocked_reply_or_edit {
 4599:     my ($blocktext) = @_;
 4600:     return 
 4601:       &Apache::loncommon::start_page('Resource Feedback and Discussion').
 4602:       $blocktext.'<br /><br /><a href="javascript:history.go(-1)">'.
 4603:       &mt('Back to previous page').
 4604:       &Apache::loncommon::end_page();
 4605: } 
 4606: 
 4607: sub wrap_symb {
 4608:     my ($ressymb)=@_;
 4609:     if ($ressymb =~ /bulletin___\d+___/) {
 4610:         unless ($ressymb =~ m|bulletin___\d+___adm/wrapper|) {
 4611:             $ressymb=~s|(bulletin___\d+___)|$1adm/wrapper|;
 4612:         }
 4613:     }
 4614:     return $ressymb;
 4615: }
 4616: 
 4617: sub dewrapper {
 4618:     my ($feedurl)=@_;
 4619:     if ($$feedurl=~m|^/adm/wrapper/adm/.*/bulletinboard$|) {
 4620:         $$feedurl=~s|^/adm/wrapper||;
 4621:     }
 4622: }
 4623: 
 4624: sub get_feedurl {
 4625:     my ($symb)=@_;
 4626:     my ($map,$ind,$url)=&Apache::lonnet::decode_symb($symb);
 4627:     my $feedurl = &Apache::lonnet::clutter($url);
 4628:     &dewrapper(\$feedurl);
 4629:     return $feedurl;
 4630: }
 4631: 
 4632: sub get_feedurl_and_clean_symb {
 4633:     my ($symb)=@_;
 4634:     &Apache::lonenc::check_decrypt(\$symb);
 4635: # backward compatibility (bulletin boards used to be 'wrapped')
 4636:     unless ($symb =~ m|bulletin___\d+___adm/wrapper|) {
 4637: 	$symb=~s|(bulletin___\d+___)|$1adm/wrapper|;
 4638:     }
 4639:     my $feedurl = &get_feedurl($symb);
 4640:     return ($symb,$feedurl);
 4641: }
 4642: 
 4643: sub editing_allowed {
 4644:     my ($postid,$group) = @_;
 4645:     $postid = &unescape($postid);
 4646:     my $can_edit = 0;
 4647:     if ($group ne '') {
 4648:         my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 4649:         my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 4650:         if ($postid =~ m|^bulletin___\d+___adm/wrapper(/adm/\Q$cdom\E/\Q$cnum\E/\d+/bulletinboard)|) {
 4651:             if (&check_group_priv($group,'egp') eq 'ok') {
 4652:                 $can_edit = 1;
 4653:             }
 4654:             return $can_edit;
 4655:         }     
 4656:     } 
 4657:     my $cid = $env{'request.course.id'};
 4658:     my $role = (split(/\./,$env{'request.role'}))[0];
 4659:     my $section = $env{'request.course.sec'};
 4660:     my $allow_editing_config = 
 4661: 	$env{'course.'.$cid.'.allow_discussion_post_editing'};
 4662:     if ($allow_editing_config =~ m/^\s*yes\s*$/i) {
 4663:         $can_edit = 1;
 4664:     } else {
 4665: 	foreach my $editor (split(/,/,$allow_editing_config)) {
 4666: 	    my ($editor_role,$editor_sec) = split(/:/,$editor);
 4667: 	    if ($editor_role eq $role
 4668: 		&& defined($editor_sec)
 4669: 		&& defined($section)
 4670: 		&& $editor_sec eq $section) {
 4671: 		$can_edit = 1;
 4672: 		last;
 4673: 	    }
 4674: 	    if ($editor_role eq $role
 4675: 		&& !defined($editor_sec)) {
 4676: 		$can_edit = 1;
 4677: 	    }
 4678: 	}
 4679:     }
 4680:     return $can_edit;
 4681: }
 4682: 
 4683: sub check_group_priv {
 4684:     my ($group,$grp_priv) = @_;
 4685:     foreach my $priv ('mdg','vcg') {
 4686:         my $checkcourse = $env{'request.course.id'}.
 4687:             ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'');
 4688:         if (&Apache::lonnet::allowed($priv,$checkcourse)) {
 4689:             return 'ok';
 4690:         }
 4691:     }
 4692:     if ($grp_priv && $group ne '') {
 4693:         if (&Apache::lonnet::allowed($grp_priv,$env{'request.course.id'}.'/'.$group)) {
 4694:             return 'ok';
 4695:         }
 4696:     }
 4697:     return '';
 4698: }
 4699: 
 4700: sub group_args { 
 4701:     my ($group) = @_;
 4702:     if ($group eq '') { return ''; }
 4703:     my $extra_args = '&amp;group='.$group;
 4704:     if (exists($env{'form.ref'})) {
 4705:         $extra_args .= '&amp;ref='.$env{'form.ref'};
 4706:     }
 4707:     return $extra_args;
 4708: }
 4709: 
 4710: sub get_resource_title {
 4711:     my ($symb,$feedurl) = @_;
 4712:     my ($restitle,$plainurl);
 4713:     if (defined($symb)) {
 4714:         my $plain_symb = &Apache::lonenc::check_decrypt($symb);
 4715:         $restitle = &Apache::lonnet::gettitle($plain_symb);
 4716:     }
 4717:     if (defined($feedurl)) {
 4718:         $plainurl = &Apache::lonenc::check_decrypt($feedurl);
 4719:     }
 4720:     if (!defined($restitle)) {
 4721:         if (defined($feedurl)) {
 4722:             $restitle = &Apache::lonnet::gettitle($plainurl);
 4723:         }
 4724:     }
 4725:     if ($plainurl ne $feedurl) {
 4726:         my ($plain_filename) = ($plainurl =~ m-/([^/]+)$-);
 4727:         if ($plain_filename eq $restitle) {
 4728:             $restitle = &mt('Untitled resource');
 4729:         }
 4730:     }
 4731:     if ($restitle eq '') {
 4732:         $restitle = &mt('Untitled resource');
 4733:     }
 4734:     return $restitle;
 4735: }
 4736: 
 4737: 1;
 4738: __END__
 4739: 
 4740: 
 4741: =pod
 4742: 
 4743: =head1 NAME
 4744: 
 4745: Apache::lonfeedback.pm
 4746: 
 4747: =head1 SYNOPSIS
 4748: 
 4749: Handles feedback from students to instructors and system administrators.
 4750: 
 4751: Provides a screenshot of the current resource, as well as previous attempts if the resource was a homework.
 4752: 
 4753: Used by lonmsg.pm.
 4754: 
 4755: This is part of the LearningOnline Network with CAPA project
 4756: described at http://www.lon-capa.org.
 4757: 
 4758: =head1 OVERVIEW
 4759: 
 4760: None
 4761: 
 4762: =head1 SUBROUTINES
 4763: 
 4764: =over
 4765: 
 4766: =item discussion_open()
 4767: 
 4768: =item discussion_visible()
 4769: 
 4770: =item discussion_vote_available()
 4771: 
 4772: =item get_realsymb()
 4773: 
 4774: =item list_discussion()
 4775: 
 4776: =item can_see_discussion()
 4777: 
 4778: =item send_feedback_link()
 4779: 
 4780: =item send_message_link()
 4781: 
 4782: =item action_links_bar()
 4783: 
 4784: =item postingform_display()
 4785: 
 4786: =item build_posting_display
 4787: 
 4788: =item filter_regexp()
 4789: 
 4790: =item get_post_contents()
 4791: 
 4792: =item replicate_attachments()
 4793: 
 4794: =item mail_screen()
 4795: 
 4796: =item print_display_options()
 4797: 
 4798: =item print_sortfilter_options()
 4799: 
 4800: =item print_showposters()
 4801: 
 4802: =item get_post_versions()
 4803: 
 4804: =item get_post_attachments()
 4805: 
 4806: =item fail_redirect()
 4807: 
 4808: =item redirect_back()
 4809: 
 4810: =item no_redirect_back()
 4811: 
 4812: =item screen_header()
 4813: 
 4814: =item resource_output()
 4815: 
 4816: =item clear_out_html()
 4817: 
 4818: =item assemble_email()
 4819: 
 4820: =item feedback_available()
 4821: 
 4822: =item send_msg()
 4823: 
 4824: =item adddiscuss()
 4825: 
 4826: =item get_discussion_info()
 4827: 
 4828: =item show_preview()
 4829: 
 4830: =item newline_to_br()
 4831: 
 4832: =item tidy_html()
 4833: 
 4834: =item generate_preview_button()
 4835: 
 4836: =item modify_attachments()
 4837: 
 4838: =item process_attachments()
 4839: 
 4840: =item generate_attachments_button()
 4841: 
 4842: =item extract_attachments()
 4843: 
 4844: =item construct_attachmenturl()
 4845: 
 4846: =item add_blog_checkbox()
 4847: 
 4848: =item has_discussion()
 4849: 
 4850: =item sort_filter_names()
 4851: 
 4852: =item handler()
 4853: 
 4854: =item blocked_reply_or_edit()
 4855: 
 4856: =item wrap_symb()
 4857: 
 4858: =item dewrapper()
 4859: 
 4860: =item get_feedurl()
 4861: 
 4862: =item get_feedurl_and_clean_symb()
 4863: 
 4864: =item editing_allowed()
 4865: 
 4866: =item check_group_priv()
 4867: 
 4868: =item group_args()
 4869: 
 4870: =item get_resource_title()
 4871: 
 4872: =back
 4873: 
 4874: =cut

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