File:  [LON-CAPA] / loncom / interface / lonmsg.pm
Revision 1.125: download - view: text, annotated - select for diffs
Wed Dec 15 02:35:17 2004 UTC (19 years, 4 months ago) by www
Branches: MAIN
CVS tags: version_1_3_0, version_1_2_99_1, HEAD
Bug #3668: "Back to Folder" goes back to correct position in folder
Bug #3709: additional safeguards against ISE on undefined first message number
Bug #3710: should not forget #messages anymore

    1: # The LearningOnline Network with CAPA
    2: # Routines for messaging
    3: #
    4: # $Id: lonmsg.pm,v 1.125 2004/12/15 02:35:17 www 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::lonmsg;
   31: 
   32: =pod
   33: 
   34: =head1 NAME
   35: 
   36: Apache::lonmsg: supports internal messaging
   37: 
   38: =head1 SYNOPSIS
   39: 
   40: lonmsg provides routines for sending messages, receiving messages, and
   41: a handler to allow users to read, send, and delete messages.
   42: 
   43: =head1 OVERVIEW
   44: 
   45: =head2 Messaging Overview
   46: 
   47: X<messages>LON-CAPA provides an internal messaging system similar to
   48: email, but customized for LON-CAPA's usage. LON-CAPA implements its
   49: own messaging system, rather then building on top of email, because of
   50: the features LON-CAPA messages can offer that conventional e-mail can
   51: not:
   52: 
   53: =over 4
   54: 
   55: =item * B<Critical messages>: A message the recipient B<must>
   56: acknowlegde receipt of before they are allowed to continue using the
   57: system, preventing a user from claiming they never got a message
   58: 
   59: =item * B<Receipts>: LON-CAPA can reliably send reciepts informing the
   60: sender that it has been read; again, useful for preventing students
   61: from claiming they did not see a message. (While conventional e-mail
   62: has some reciept support, it's sporadic, e-mail client-specific, and
   63: generally the receiver can opt to not send one, making it useless in
   64: this case.)
   65: 
   66: =item * B<Context>: LON-CAPA knows about the sender, such as where
   67: they are in a course. When a student mails an instructor asking for
   68: help on the problem, the instructor receives not just the student's
   69: question, but all submissions the student has made up to that point,
   70: the user's rendering of the problem, and the complete view the student
   71: saw of the resource, including discussion up to that point. Finally,
   72: the instructor is reading all of this inside of LON-CAPA, not their
   73: email program, so they have full access to LON-CAPA's grading
   74: interface, or other features they may wish to use in response to the
   75: student's query.
   76: 
   77: =item * B<Blocking>: LON-CAPA can block display of e-mails that are 
   78: sent to a student during an online exam. A course coordinator or
   79: instructor can set an open and close date/time for scheduled online
   80: exams in a course. If a user uses the LON-CAPA internal messaging 
   81: system to display e-mails during the scheduled blocking event,  
   82: display of all e-mail sent during the blocking period will be 
   83: suppressed, and a message of explanation, including details of the 
   84: currently active blocking periods will be displayed instead. A user 
   85: who has a course coordinator or instructor role in a course will be
   86: unaffected by any blocking periods for the course, unless the user
   87: also has a student role in the course, AND has selected the student role.
   88: 
   89: =back
   90: 
   91: Users can ask LON-CAPA to forward messages to conventional e-mail
   92: addresses on their B<PREF> screen, but generally, LON-CAPA messages
   93: are much more useful then traditional email can be made to be, even
   94: with HTML support.
   95: 
   96: Right now, this document will cover just how to send a message, since
   97: it is likely you will not need to programmatically read messages,
   98: since lonmsg already implements that functionality.
   99: 
  100: =head1 FUNCTIONS
  101: 
  102: =over 4
  103: 
  104: =cut
  105: 
  106: use strict;
  107: use Apache::lonnet();
  108: use vars qw($msgcount);
  109: use HTML::TokeParser();
  110: use Apache::Constants qw(:common);
  111: use Apache::loncommon();
  112: use Apache::lontexconvert();
  113: use HTML::Entities();
  114: use Mail::Send;
  115: use Apache::lonlocal;
  116: use Apache::loncommunicate;
  117: 
  118: # Querystring component with sorting type
  119: my $sqs;
  120: my $startdis;
  121: my $interdis;
  122: 
  123: # ===================================================================== Package
  124: 
  125: sub packagemsg {
  126:     my ($subject,$message,$citation,$baseurl,$attachmenturl,
  127: 	$recuser,$recdomain)=@_;
  128:     $message =&HTML::Entities::encode($message,'<>&"');
  129:     $citation=&HTML::Entities::encode($citation,'<>&"');
  130:     $subject =&HTML::Entities::encode($subject,'<>&"');
  131:     #remove machine specification
  132:     $baseurl =~ s|^http://[^/]+/|/|;
  133:     $baseurl =&HTML::Entities::encode($baseurl,'<>&"');
  134:     #remove machine specification
  135:     $attachmenturl =~ s|^http://[^/]+/|/|;
  136:     $attachmenturl =&HTML::Entities::encode($attachmenturl,'<>&"');
  137: 
  138:     my $now=time;
  139:     $msgcount++;
  140:     my $partsubj=$subject;
  141:     $partsubj=&Apache::lonnet::escape($partsubj);
  142:     my $msgid=&Apache::lonnet::escape(
  143:            $now.':'.$partsubj.':'.$ENV{'user.name'}.':'.
  144:            $ENV{'user.domain'}.':'.$msgcount.':'.$$);
  145:     my $result='<sendername>'.$ENV{'user.name'}.'</sendername>'.
  146:            '<senderdomain>'.$ENV{'user.domain'}.'</senderdomain>'.
  147:            '<subject>'.$subject.'</subject>'.
  148: 	   '<time>'.&Apache::lonlocal::locallocaltime($now).'</time>'.
  149: 	   '<servername>'.$ENV{'SERVER_NAME'}.'</servername>'.
  150:            '<host>'.$ENV{'HTTP_HOST'}.'</host>'.
  151: 	   '<client>'.$ENV{'REMOTE_ADDR'}.'</client>'.
  152: 	   '<browsertype>'.$ENV{'browser.type'}.'</browsertype>'.
  153: 	   '<browseros>'.$ENV{'browser.os'}.'</browseros>'.
  154: 	   '<browserversion>'.$ENV{'browser.version'}.'</browserversion>'.
  155:            '<browsermathml>'.$ENV{'browser.mathml'}.'</browsermathml>'.
  156: 	   '<browserraw>'.$ENV{'HTTP_USER_AGENT'}.'</browserraw>'.
  157: 	   '<courseid>'.$ENV{'request.course.id'}.'</courseid>'.
  158: 	   '<coursesec>'.$ENV{'request.course.sec'}.'</coursesec>'.
  159: 	   '<role>'.$ENV{'request.role'}.'</role>'.
  160: 	   '<resource>'.$ENV{'request.filename'}.'</resource>'.
  161:            '<msgid>'.$msgid.'</msgid>'.
  162: 	   '<recuser>'.$recuser.'</recuser>'.
  163: 	   '<recdomain>'.$recdomain.'</recdomain>'.
  164: 	   '<message>'.$message.'</message>';
  165:     if (defined($citation)) {
  166: 	$result.='<citation>'.$citation.'</citation>';
  167:     }
  168:     if (defined($baseurl)) {
  169: 	$result.= '<baseurl>'.$baseurl.'</baseurl>';
  170:     }
  171:     if (defined($attachmenturl)) {
  172: 	$result.= '<attachmenturl>'.$attachmenturl.'</attachmenturl>';
  173:     }
  174:     return $msgid,$result;
  175: }
  176: 
  177: # ================================================== Unpack message into a hash
  178: 
  179: sub unpackagemsg {
  180:     my ($message,$notoken)=@_;
  181:     my %content=();
  182:     my $parser=HTML::TokeParser->new(\$message);
  183:     my $token;
  184:     while ($token=$parser->get_token) {
  185:        if ($token->[0] eq 'S') {
  186: 	   my $entry=$token->[1];
  187:            my $value=$parser->get_text('/'.$entry);
  188:            $content{$entry}=$value;
  189:        }
  190:     }
  191:     if ($content{'attachmenturl'}) {
  192:        my ($fname)=($content{'attachmenturl'}=~m|/([^/]+)$|);
  193:        if ($notoken) {
  194: 	   $content{'message'}.='<p>'.&mt('Attachment').': <tt>'.$fname.'</tt>';
  195:        } else {
  196: 	   &Apache::lonnet::allowuploaded('/adm/msg',
  197: 					  $content{'attachmenturl'});
  198: 	   $content{'message'}.='<p>'.&mt('Attachment').
  199: 	       ': <a href="'.$content{'attachmenturl'}.'"><tt>'.
  200: 	       $fname.'</tt></a>';
  201:        }
  202:     }
  203:     return %content;
  204: }
  205: 
  206: # ======================================================= Get info out of msgid
  207: 
  208: sub unpackmsgid {
  209:     my ($msgid,$folder)=@_;
  210:     $msgid=&Apache::lonnet::unescape($msgid);
  211:     my $suffix=&foldersuffix($folder);
  212:     my ($sendtime,$shortsubj,$fromname,$fromdomain)=split(/\:/,
  213:                           &Apache::lonnet::unescape($msgid));
  214:     my %status=&Apache::lonnet::get('email_status'.$suffix,[$msgid]);
  215:     if ($status{$msgid}=~/^error\:/) { $status{$msgid}=''; }
  216:     unless ($status{$msgid}) { $status{$msgid}='new'; }
  217:     return ($sendtime,$shortsubj,$fromname,$fromdomain,$status{$msgid});
  218: } 
  219: 
  220: 
  221: sub sendemail {
  222:     my ($to,$subject,$body)=@_;
  223:     $body=
  224:     "*** ".&mt('This is an automatic message generated by the LON-CAPA system.')."\n".
  225:     "*** ".&mt('Please do not reply to this address.')."\n\n".$body;
  226:     my $msg = new Mail::Send;
  227:     $msg->to($to);
  228:     $msg->subject('[LON-CAPA] '.$subject);
  229:     my %oldENV=%ENV;
  230:     undef(%ENV);
  231:     if (my $fh = $msg->open()) {
  232: 	print $fh $body;
  233: 	$fh->close;
  234:     }
  235:     %ENV=%oldENV;
  236:     undef(%oldENV);
  237: }
  238: 
  239: # ==================================================== Send notification emails
  240: 
  241: sub sendnotification {
  242:     my ($to,$touname,$toudom,$subj,$crit)=@_;
  243:     my $sender=$ENV{'environment.firstname'}.' '.$ENV{'environment.lastname'};
  244:     my $critical=($crit?' critical':'');
  245:     my $url='http://'.
  246:       $Apache::lonnet::hostname{&Apache::lonnet::homeserver($touname,$toudom)}.
  247:       '/adm/email?username='.$touname.'&domain='.$toudom;
  248:     my $body=(<<ENDMSG);
  249: You received a$critical message from $sender in LON-CAPA. The subject is
  250: 
  251:  $subj
  252: 
  253: Use
  254: 
  255:  $url
  256: 
  257: to access this message.
  258: ENDMSG
  259:     &sendemail($to,'New'.$critical.' message from '.$sender,$body);
  260: }
  261: # ============================================================= Check for email
  262: 
  263: sub newmail {
  264:     if ((time-$ENV{'user.mailcheck.time'})>300) {
  265:         my %what=&Apache::lonnet::get('email_status',['recnewemail']);
  266:         &Apache::lonnet::appenv('user.mailcheck.time'=>time);
  267:         if ($what{'recnewemail'}>0) { return 1; }
  268:     }
  269:     return 0;
  270: }
  271: 
  272: # =============================== Automated message to the author of a resource
  273: 
  274: =pod
  275: 
  276: =item * B<author_res_msg($filename, $message)>: Sends message $message to the owner
  277:     of the resource with the URI $filename.
  278: 
  279: =cut
  280: 
  281: sub author_res_msg {
  282:     my ($filename,$message)=@_;
  283:     unless ($message) { return 'empty'; }
  284:     $filename=&Apache::lonnet::declutter($filename);
  285:     my ($domain,$author,@dummy)=split(/\//,$filename);
  286:     my $homeserver=&Apache::lonnet::homeserver($author,$domain);
  287:     if ($homeserver ne 'no_host') {
  288:        my $id=unpack("%32C*",$message);
  289:        my $msgid;
  290:        ($msgid,$message)=&packagemsg($filename,$message);
  291:        return &Apache::lonnet::reply('put:'.$domain.':'.$author.
  292:          ':nohist_res_msgs:'.
  293:           &Apache::lonnet::escape($filename.'_'.$id).'='.
  294:           &Apache::lonnet::escape($message),$homeserver);
  295:     }
  296:     return 'no_host';
  297: }
  298: 
  299: # =========================================== Retrieve author resource messages
  300: 
  301: sub retrieve_author_res_msg {
  302:     my $url=shift;
  303:     $url=&Apache::lonnet::declutter($url);
  304:     my ($domain,$author)=($url=~/^(\w+)\/(\w+)\//);
  305:     my %errormsgs=&Apache::lonnet::dump('nohist_res_msgs',$domain,$author);
  306:     my $msgs='';
  307:     foreach (keys %errormsgs) {
  308: 	if ($_=~/^\Q$url\E\_\d+$/) {
  309: 	    my %content=&unpackagemsg($errormsgs{$_});
  310: 	    $msgs.='<p><img src="/adm/lonMisc/bomb.gif" /><b>'.
  311: 		$content{'time'}.'</b>: '.$content{'message'}.
  312: 		'<br /></p>';
  313: 	}
  314:     } 
  315:     return $msgs;     
  316: }
  317: 
  318: 
  319: # =============================== Delete all author messages related to one URL
  320: 
  321: sub del_url_author_res_msg {
  322:     my $url=shift;
  323:     $url=&Apache::lonnet::declutter($url);
  324:     my ($domain,$author)=($url=~/^(\w+)\/(\w+)\//);
  325:     my @delmsgs=();
  326:     foreach (&Apache::lonnet::getkeys('nohist_res_msgs',$domain,$author)) {
  327: 	if ($_=~/^\Q$url\E\_\d+$/) {
  328: 	    push (@delmsgs,$_);
  329: 	}
  330:     }
  331:     return &Apache::lonnet::del('nohist_res_msgs',\@delmsgs,$domain,$author);
  332: }
  333: 
  334: # ================= Return hash with URLs for which there is a resource message
  335: 
  336: sub all_url_author_res_msg {
  337:     my ($author,$domain)=@_;
  338:     my %returnhash=();
  339:     foreach (&Apache::lonnet::getkeys('nohist_res_msgs',$domain,$author)) {
  340: 	$_=~/^(.+)\_\d+/;
  341: 	$returnhash{$1}=1;
  342:     }
  343:     return %returnhash;
  344: }
  345: 
  346: # ================================================== Critical message to a user
  347: 
  348: sub user_crit_msg_raw {
  349:     my ($user,$domain,$subject,$message,$sendback)=@_;
  350: # Check if allowed missing
  351:     my $status='';
  352:     my $msgid='undefined';
  353:     unless (($message)&&($user)&&($domain)) { $status='empty'; };
  354:     my $homeserver=&Apache::lonnet::homeserver($user,$domain);
  355:     if ($homeserver ne 'no_host') {
  356:        ($msgid,$message)=&packagemsg($subject,$message);
  357:        if ($sendback) { $message.='<sendback>true</sendback>'; }
  358:        $status=&Apache::lonnet::critical(
  359:            'put:'.$domain.':'.$user.':critical:'.
  360:            &Apache::lonnet::escape($msgid).'='.
  361:            &Apache::lonnet::escape($message),$homeserver);
  362:        if ($ENV{'request.course.id'}) {
  363:           &user_normal_msg_raw(
  364:             $ENV{'course.'.$ENV{'request.course.id'}.'.num'},
  365:             $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
  366:             'Critical ['.$user.':'.$domain.']',
  367: 	    $message);
  368:        }
  369:     } else {
  370:        $status='no_host';
  371:     }
  372: # Notifications
  373:     my %userenv = &Apache::lonnet::get('environment',['critnotification'],
  374:                                        $domain,$user);
  375:     if ($userenv{'critnotification'}) {
  376:       &sendnotification($userenv{'critnotification'},$user,$domain,$subject,1);
  377:     }
  378: # Log this
  379:     &Apache::lonnet::logthis(
  380:       'Sending critical email '.$msgid.
  381:       ', log status: '.
  382:       &Apache::lonnet::log($ENV{'user.domain'},$ENV{'user.name'},
  383:                          $ENV{'user.home'},
  384:       'Sending critical '.$msgid.' to '.$user.' at '.$domain.' with status: '
  385:       .$status));
  386:     return $status;
  387: }
  388: 
  389: # New routine that respects "forward" and calls old routine
  390: 
  391: =pod
  392: 
  393: =item * B<user_crit_msg($user, $domain, $subject, $message, $sendback)>: Sends
  394:     a critical message $message to the $user at $domain. If $sendback is true,
  395:     a reciept will be sent to the current user when $user recieves the message.
  396: 
  397: =cut
  398: 
  399: sub user_crit_msg {
  400:     my ($user,$domain,$subject,$message,$sendback)=@_;
  401:     my $status='';
  402:     my %userenv = &Apache::lonnet::get('environment',['msgforward'],
  403:                                        $domain,$user);
  404:     my $msgforward=$userenv{'msgforward'};
  405:     if ($msgforward) {
  406:        foreach (split(/\,/,$msgforward)) {
  407: 	 my ($forwuser,$forwdomain)=split(/\:/,$_);
  408:          $status.=
  409: 	   &user_crit_msg_raw($forwuser,$forwdomain,$subject,$message,
  410:                 $sendback).' ';
  411:        }
  412:     } else { 
  413: 	$status=&user_crit_msg_raw($user,$domain,$subject,$message,$sendback);
  414:     }
  415:     return $status;
  416: }
  417: 
  418: # =================================================== Critical message received
  419: 
  420: sub user_crit_received {
  421:     my $msgid=shift;
  422:     my %message=&Apache::lonnet::get('critical',[$msgid]);
  423:     my %contents=&unpackagemsg($message{$msgid},1);
  424:     my $status='rec: '.($contents{'sendback'}?
  425:      &user_normal_msg($contents{'sendername'},$contents{'senderdomain'},
  426:                      &mt('Receipt').': '.$ENV{'user.name'}.' '.&mt('at').' '.$ENV{'user.domain'}.', '.$contents{'subject'},
  427:                      &mt('User').' '.$ENV{'user.name'}.' '.&mt('at').' '.$ENV{'user.domain'}.
  428:                      ' acknowledged receipt of message'."\n".'   "'.
  429:                      $contents{'subject'}.'"'."\n".&mt('dated').' '.
  430:                      $contents{'time'}.".\n"
  431:                      ):'no msg req');
  432:     $status.=' trans: '.
  433:      &Apache::lonnet::put(
  434:      'nohist_email',{$contents{'msgid'} => $message{$msgid}});
  435:     $status.=' del: '.
  436:      &Apache::lonnet::del('critical',[$contents{'msgid'}]);
  437:     &Apache::lonnet::log($ENV{'user.domain'},$ENV{'user.name'},
  438:                          $ENV{'user.home'},'Received critical message '.
  439:                          $contents{'msgid'}.
  440:                          ', '.$status);
  441:     return $status;
  442: }
  443: 
  444: # ======================================================== Normal communication
  445: 
  446: sub user_normal_msg_raw {
  447:     my ($user,$domain,$subject,$message,$citation,$baseurl,$attachmenturl)=@_;
  448: # Check if allowed missing
  449:     my $status='';
  450:     my $msgid='undefined';
  451:     unless (($message)&&($user)&&($domain)) { $status='empty'; };
  452:     my $homeserver=&Apache::lonnet::homeserver($user,$domain);
  453:     if ($homeserver ne 'no_host') {
  454:        ($msgid,$message)=&packagemsg($subject,$message,$citation,$baseurl,
  455:                                      $attachmenturl,$user,$domain);
  456: # Store in user folder
  457:        $status=&Apache::lonnet::critical(
  458:            'put:'.$domain.':'.$user.':nohist_email:'.
  459:            &Apache::lonnet::escape($msgid).'='.
  460:            &Apache::lonnet::escape($message),$homeserver);
  461: # Save new message received time
  462:        &Apache::lonnet::put
  463:                          ('email_status',{'recnewemail'=>time},$domain,$user);
  464: # Into sent-mail folder
  465:        $status.=' '.&Apache::lonnet::critical(
  466:            'put:'.$ENV{'user.domain'}.':'.$ENV{'user.name'}.
  467: 					      ':nohist_email_sent:'.
  468:            &Apache::lonnet::escape($msgid).'='.
  469:            &Apache::lonnet::escape($message),$ENV{'user.home'});
  470:     } else {
  471:        $status='no_host';
  472:     }
  473: # Notifications
  474:     my %userenv = &Apache::lonnet::get('environment',['notification'],
  475:                                        $domain,$user);
  476:     if ($userenv{'notification'}) {
  477: 	&sendnotification($userenv{'notification'},$user,$domain,$subject,0);
  478:     }
  479:     &Apache::lonnet::log($ENV{'user.domain'},$ENV{'user.name'},
  480:                          $ENV{'user.home'},
  481:       'Sending '.$msgid.' to '.$user.' at '.$domain.' with status: '.$status);
  482:     return $status;
  483: }
  484: 
  485: # New routine that respects "forward" and calls old routine
  486: 
  487: =pod
  488: 
  489: =item * B<user_normal_msg($user, $domain, $subject, $message,
  490:     $citation, $baseurl, $attachmenturl)>: Sends a message to the
  491:     $user at $domain, with subject $subject and message $message.
  492: 
  493: =cut
  494: 
  495: sub user_normal_msg {
  496:     my ($user,$domain,$subject,$message,$citation,$baseurl,$attachmenturl)=@_;
  497:     my $status='';
  498:     my %userenv = &Apache::lonnet::get('environment',['msgforward'],
  499:                                        $domain,$user);
  500:     my $msgforward=$userenv{'msgforward'};
  501:     if ($msgforward) {
  502:        foreach (split(/\,/,$msgforward)) {
  503: 	 my ($forwuser,$forwdomain)=split(/\:/,$_);
  504:          $status.=
  505: 	  &user_normal_msg_raw($forwuser,$forwdomain,$subject,$message,
  506: 			       $citation,$baseurl,$attachmenturl).' ';
  507:        }
  508:     } else { 
  509: 	$status=&user_normal_msg_raw($user,$domain,$subject,$message,
  510: 				     $citation,$baseurl,$attachmenturl);
  511:     }
  512:     return $status;
  513: }
  514: 
  515: 
  516: # ============================================================ List all folders
  517: 
  518: sub folderlist {
  519:     my $folder=shift;
  520:     my @allfolders=&Apache::lonnet::getkeys('email_folders');
  521:     if ($allfolders[0]=~/^error:/) { @allfolders=(); }
  522:     return '<form method="post" action="/adm/email">'.
  523: 	&mt('Folder').': '.
  524: 	&Apache::loncommon::select_form($folder,'folder',
  525: 			     ('' => &mt('INBOX'),'trash' => &mt('TRASH'),
  526: 			      'new' => &mt('New Messages Only'),
  527:                               'critical' => &mt('Critical'),
  528: 			      'sent' => &mt('Sent Messages'),
  529: 			      map { $_ => $_ } @allfolders)).
  530: 			      ' '.&mt('Show').
  531: 			      '<select name="interdis">'.
  532: 			      join("\n",map { '<option value="'.$_.'"'.
  533: 	 ($_==$interdis?' selected="selected"':'').'>'.$_.'</option>' }
  534: 				   (10,20,50,100,200)).'</select>'.	
  535:    '<input type="submit" value="'.&mt('View Folder').'" /><br />'.
  536:     '<input type="hidden" name="sortedby" value="'.$ENV{'form.sortedby'}.'" />'.
  537: 			      ($folder=~/^(new|critical)/?'</form>':'');
  538: }
  539: 
  540: sub scrollbuttons {
  541:     my ($start,$maxdis,$first,$finish,$total)=@_;
  542:     unless ($total>0) { return ''; }
  543:     $start++; $maxdis++;$first++;$finish++;
  544:     return 
  545:    '<input type="submit" name="firstview" value="'.&mt('First').'" />'.
  546:    '<input type="submit" name="prevview" value="'.&mt('Previous').'" />'.
  547:    '<input type="text" size="5" name="startdis" value="'.$start.'" onChange="this.form.submit()" /> of '.$maxdis.
  548:    '<input type="submit" name="nextview" value="'.&mt('Next').'" />'.
  549:    '<input type="submit" name="lastview" value="'.&mt('Last').'" /><br />'.
  550:    &mt('Messages [_1] through [_2] of [_3]',$first,$finish,$total).'</form>';
  551: }
  552: 
  553: # =============================================================== Folder suffix
  554: 
  555: sub foldersuffix {
  556:     my $folder=shift;
  557:     unless ($folder) { return ''; }
  558:     return '_'.&Apache::lonnet::escape($folder);
  559: }
  560: 
  561: # =============================================================== Status Change
  562: 
  563: sub statuschange {
  564:     my ($msgid,$newstatus,$folder)=@_;
  565:     my $suffix=&foldersuffix($folder);
  566:     my %status=&Apache::lonnet::get('email_status'.$suffix,[$msgid]);
  567:     if ($status{$msgid}=~/^error\:/) { $status{$msgid}=''; }
  568:     unless ($status{$msgid}) { $status{$msgid}='new'; }
  569:     unless (($status{$msgid} eq 'replied') || 
  570:             ($status{$msgid} eq 'forwarded')) {
  571: 	&Apache::lonnet::put('email_status'.$suffix,{$msgid => $newstatus});
  572:     }
  573:     if (($newstatus eq 'deleted') || ($newstatus eq 'new')) {
  574: 	&Apache::lonnet::put('email_status'.$suffix,{$msgid => $newstatus});
  575:     }
  576: }
  577: 
  578: # ============================================================= Make new folder
  579: 
  580: sub makefolder {
  581:     my ($newfolder)=@_;
  582:     if (($newfolder eq 'sent')
  583:      || ($newfolder eq 'critical')
  584:      || ($newfolder eq 'trash')
  585:      || ($newfolder eq 'new')) { return; }
  586:     &Apache::lonnet::put('email_folders',{$newfolder => time});
  587: }
  588: 
  589: # ======================================================== Move between folders
  590: 
  591: sub movemsg {
  592:     my ($msgid,$srcfolder,$trgfolder)=@_;
  593:     my $unmsgid=&Apache::lonnet::unescape($msgid);
  594:     my $srcsuffix=&foldersuffix($srcfolder);
  595:     my $trgsuffix=&foldersuffix($trgfolder);
  596: 
  597: # Copy message
  598:     my %message=&Apache::lonnet::get('nohist_email'.$srcsuffix,[$msgid]);
  599:     &Apache::lonnet::put('nohist_email'.$trgsuffix,{$msgid => $message{$msgid}});
  600: 
  601: # Copy status
  602:     my %status=&Apache::lonnet::get('email_status'.$srcsuffix,[$unmsgid]);
  603:     &Apache::lonnet::put('email_status'.$trgsuffix,{$unmsgid => $status{$unmsgid}});
  604: # See if was deleted -> becomes "read" in trash
  605:     my $currentstatus=(&unpackmsgid($status{$unmsgid}),$srcfolder);
  606:     if ($currentstatus eq 'deleted') {
  607: 	&statuschange($msgid,'read',$trgfolder);
  608:     }
  609: # Delete orginals
  610:     &Apache::lonnet::del('nohist_email'.$srcsuffix,[$msgid]);
  611:     &Apache::lonnet::del('email_status'.$srcsuffix,[$unmsgid]);
  612: }
  613: 
  614: # ======================================================= Display a course list
  615: 
  616: sub discourse {
  617:     my $r=shift;
  618:     my $classlist = &Apache::loncoursedata::get_classlist();
  619:     my $now=time;
  620:     my %lt=&Apache::lonlocal::texthash('cfa' => 'Check for All',
  621:             'cfs' => 'Check for Section/Group',
  622:             'cfn' => 'Check for None');
  623:     $r->print(<<ENDDISHEADER);
  624: <input type="hidden" name="sendmode" value="group" />
  625: <script>
  626:     function checkall() {
  627: 	for (i=0; i<document.forms.compemail.elements.length; i++) {
  628:             if 
  629:           (document.forms.compemail.elements[i].name.indexOf('send_to_')==0) {
  630: 	      document.forms.compemail.elements[i].checked=true;
  631:             }
  632:         }
  633:     }
  634: 
  635:     function checksec() {
  636: 	for (i=0; i<document.forms.compemail.elements.length; i++) {
  637:             if 
  638:           (document.forms.compemail.elements[i].name.indexOf
  639:            ('send_to_&&&'+document.forms.compemail.chksec.value)==0) {
  640: 	      document.forms.compemail.elements[i].checked=true;
  641:             }
  642:         }
  643:     }
  644: 
  645:     function uncheckall() {
  646: 	for (i=0; i<document.forms.compemail.elements.length; i++) {
  647:             if 
  648:           (document.forms.compemail.elements[i].name.indexOf('send_to_')==0) {
  649: 	      document.forms.compemail.elements[i].checked=false;
  650:             }
  651:         }
  652:     }
  653: </script>
  654: <input type="button" onClick="checkall()" value="$lt{'cfa'}" />&nbsp;
  655: <input type="button" onClick="checksec()" value="$lt{'cfs'}" />
  656: <input type="text" size="5" name=chksec />&nbsp;
  657: <input type="button" onClick="uncheckall()" value="$lt{'cfn'}" />
  658: <p>
  659: ENDDISHEADER
  660:     my %coursepersonnel=&Apache::lonnet::get_course_adv_roles();
  661:     $r->print('<table>');
  662:     foreach my $role (sort keys %coursepersonnel) {
  663:         foreach (split(/\,/,$coursepersonnel{$role})) {
  664:             my ($puname,$pudom)=split(/\:/,$_);
  665:             $r->print('<tr><td><label>'.
  666:                       '<input type="checkbox" name="send_to_&&&&&&_'.
  667:                       $puname.':'.$pudom.'" /> '.
  668:                       &Apache::loncommon::plainname($puname,$pudom).
  669:                       '</label></td>'.
  670:                       '<td>('.$_.'),</td><td><i>'.$role.'</i></td></tr>');
  671:         }
  672:     }
  673:     $r->print('</table><table>');
  674:     while (my ($student,$info) = each(%$classlist)) {
  675:         my ($sname,$sdom,$status,$fullname,$section) =
  676:             (@{$info}[&Apache::loncoursedata::CL_SNAME(),
  677:                       &Apache::loncoursedata::CL_SDOM(),
  678:                       &Apache::loncoursedata::CL_STATUS(),
  679:                       &Apache::loncoursedata::CL_FULLNAME(),
  680:                       &Apache::loncoursedata::CL_SECTION()]);
  681:         next if ($status ne 'Active');
  682:         my $key = 'send_to_&&&'.$section.'&&&'.$student;
  683:         if (! defined($fullname) || $fullname eq '') { $fullname = $sname; }
  684:         $r->print('<tr><td><label>'.
  685:                   qq{<input type="checkbox" name="$key">}.('&nbsp;'x2).
  686:                   $fullname.'</td><td>'.$sname.'@'.$sdom.'</td><td>'.$section.
  687:                   '</td></tr>');
  688:     }
  689:     $r->print('</table>');
  690: }
  691: 
  692: # ==================================================== Display Critical Message
  693: 
  694: sub discrit {
  695:     my $r=shift;
  696:     my $header = '<h1><font color=red>'.&mt('Critical Messages').'</font></h1>'.
  697:         '<form action=/adm/email method=post>'.
  698:         '<input type=hidden name=confirm value=true>';
  699:     my %what=&Apache::lonnet::dump('critical');
  700:     my $result = '';
  701:     foreach (sort keys %what) {
  702:         my %content=&unpackagemsg($what{$_});
  703:         next if ($content{'senderdomain'} eq '');
  704:         $result.='<hr />'.&mt('From').': <b>'.
  705: &Apache::loncommon::aboutmewrapper(
  706:  &Apache::loncommon::plainname($content{'sendername'},$content{'senderdomain'}),$content{'sendername'},$content{'senderdomain'}).'</b> ('.
  707: $content{'sendername'}.'@'.
  708:             $content{'senderdomain'}.') '.$content{'time'}.
  709:             '<br />'.&mt('Subject').': '.$content{'subject'}.
  710:             '<br /><blockquote>'.
  711:               &Apache::lontexconvert::msgtexconverted($content{'message'}).
  712:             '</blockquote><small>'.
  713: &mt('You have to confirm that you received this message. After confirmation, this message will be moved to your regular inbox').
  714:             '</small><br />'.
  715:             '<input type=submit name="rec_'.$_.'" value="'.&mt('Confirm Receipt').'">'.
  716:             '<input type=submit name="reprec_'.$_.'" '.
  717:                   'value="'.&mt('Confirm Receipt and Reply').'">';
  718:     }
  719:     # Check to see if there were any messages.
  720:     if ($result eq '') {
  721:         $result = "<h2>".&mt('You have no critical messages.')."</h2>".
  722: 	    '<a href="/adm/roles">'.&mt('Select a course').'</a><br />'.
  723:             '<a href="/adm/email">'.&mt('Communicate').'</a>';
  724:     } else {
  725:         $r->print($header);
  726:     }
  727:     $r->print($result);
  728:     $r->print('<input type="hidden" name="displayedcrit" value="true" /></form>');
  729: }
  730: 
  731: sub sortedmessages {
  732:     my ($blocked,$startblock,$endblock,$numblocked,$folder) = @_;
  733:     my $suffix=&foldersuffix($folder);
  734:     my @messages = &Apache::lonnet::getkeys('nohist_email'.$suffix);
  735:     #unpack the varibles and repack into temp for sorting
  736:     my @temp;
  737:     foreach (@messages) {
  738: 	my $msgid=&Apache::lonnet::escape($_);
  739: 	my ($sendtime,$shortsubj,$fromname,$fromdomain,$status)=
  740: 	    &Apache::lonmsg::unpackmsgid($msgid,$folder);
  741: 	my @temp1 = ($sendtime,$shortsubj,$fromname,$fromdomain,$status,
  742: 		     $msgid);
  743:         # Check whether message was sent during blocking period.
  744:         if ($sendtime >= $startblock && ($sendtime <= $endblock && $endblock > 0) ) {
  745:             my $escid = &Apache::lonnet::unescape($msgid);
  746:             $$blocked{$escid} = 'ON';
  747:             $$numblocked ++;
  748:         } else { 
  749:             push @temp ,\@temp1;
  750:         }
  751:     }
  752:     #default sort
  753:     @temp = sort  {$a->[0] <=> $b->[0]} @temp;    
  754:     if ($ENV{'form.sortedby'} eq "date"){
  755:         @temp = sort  {$a->[0] <=> $b->[0]} @temp;    
  756:     }
  757:     if ($ENV{'form.sortedby'} eq "revdate"){
  758:     	@temp = sort  {$b->[0] <=> $a->[0]} @temp; 
  759:     }
  760:     if ($ENV{'form.sortedby'} eq "user"){
  761: 	@temp = sort  {lc($a->[2]) cmp lc($b->[2])} @temp;
  762:     }
  763:     if ($ENV{'form.sortedby'} eq "revuser"){
  764: 	@temp = sort  {lc($b->[2]) cmp lc($a->[2])} @temp;
  765:     }
  766:     if ($ENV{'form.sortedby'} eq "domain"){
  767:         @temp = sort  {$a->[3] cmp $b->[3]} @temp;
  768:     }
  769:     if ($ENV{'form.sortedby'} eq "revdomain"){
  770:         @temp = sort  {$b->[3] cmp $a->[3]} @temp;
  771:     }
  772:     if ($ENV{'form.sortedby'} eq "subject"){
  773:         @temp = sort  {lc($a->[1]) cmp lc($b->[1])} @temp;
  774:     }
  775:     if ($ENV{'form.sortedby'} eq "revsubject"){
  776:         @temp = sort  {lc($b->[1]) cmp lc($a->[1])} @temp;
  777:     }
  778:     if ($ENV{'form.sortedby'} eq "status"){
  779:         @temp = sort  {$a->[4] cmp $b->[4]} @temp;
  780:     }
  781:     if ($ENV{'form.sortedby'} eq "revstatus"){
  782:         @temp = sort  {$b->[4] cmp $a->[4]} @temp;
  783:     }
  784:     return @temp;
  785: }
  786: 
  787: # ======================================================== Display new messages
  788: 
  789: 
  790: sub disnew {
  791:     my $r=shift;
  792:     my %lt=&Apache::lonlocal::texthash(
  793: 				       'nm' => 'New Messages',
  794: 				       'su' => 'Subject',
  795: 				       'da' => 'Date',
  796: 				       'us' => 'Username',
  797: 				       'op' => 'Open',
  798: 				       'do' => 'Domain'
  799: 				       );
  800:     my @msgids = sort split(/\&/,&Apache::lonnet::reply
  801:                             ('keys:'.$ENV{'user.domain'}.':'.
  802:                              $ENV{'user.name'}.':nohist_email',
  803:                              $ENV{'user.home'}));
  804:     my @newmsgs;
  805:     my %setters = ();
  806:     my $startblock = 0;
  807:     my $endblock = 0;
  808:     my %blocked = ();
  809:     my $numblocked = 0;
  810:     # Check for blocking of display because of scheduled online exams.
  811:     &blockcheck(\%setters,\$startblock,\$endblock);
  812:     foreach (@msgids) {
  813:         my ($sendtime,$shortsubj,$fromname,$fromdom,$status)=
  814: 	    &Apache::lonmsg::unpackmsgid($_);
  815:         if (defined($sendtime) && $sendtime!~/error/) {
  816:             my $numsendtime = $sendtime;
  817:             $sendtime = &Apache::lonlocal::locallocaltime($sendtime);
  818:             if ($status eq 'new') {
  819:                 if ($numsendtime >= $startblock && ($numsendtime <= $endblock && $endblock > 0) ) {
  820:                     $blocked{$_} = 'ON';
  821:                     $numblocked ++;
  822:                 } else {
  823:                     push @newmsgs, { 
  824:                         msgid    => $_,
  825:                         sendtime => $sendtime,
  826:                         shortsub => &Apache::lonnet::unescape($shortsubj),
  827:                         from     => $fromname,
  828:                         fromdom  => $fromdom 
  829:                         }
  830:                 }
  831:             }
  832:         }
  833:     }
  834:     if ($#newmsgs >= 0) {
  835:         $r->print(<<TABLEHEAD);
  836: <h2>$lt{'nm'}</h2>
  837: <table border=2><tr><th>&nbsp</th>
  838: <th>$lt{'da'}</th><th>$lt{'us'}</th><th>$lt{'do'}</th><th>$lt{'su'}</th></tr>
  839: TABLEHEAD
  840:         foreach my $msg (@newmsgs) {
  841:             $r->print(<<"ENDLINK");
  842: <tr bgcolor="#FFBB77">
  843: <td><a href="/adm/email?display=$msg->{'msgid'}">$lt{'op'}</a></td>
  844: ENDLINK
  845:             foreach ('sendtime','from','fromdom','shortsub') {
  846:                 $r->print("<td>$msg->{$_}</td>");
  847:             }
  848:             $r->print("</td></tr>");
  849:         }
  850:         $r->print('</table></body></html>');
  851:     } elsif ($numblocked == 0) {
  852:         $r->print("<h3>".&mt('You have no unread messages')."</h3>");
  853:     }
  854:     if ($numblocked > 0) {
  855:         my $beginblock = &Apache::lonlocal::locallocaltime($startblock);
  856:         my $finishblock = &Apache::lonlocal::locallocaltime($endblock);
  857:         if ($numblocked == 1) {
  858:             $r->print("<h3>".&mt('You have').' '.$numblocked.' '.&mt('blocked unread message').".</h3>");
  859:             $r->print(&mt('This message is not viewable because').' ');
  860:         } else {
  861:             $r->print("<h3>".&mt('You have').' '.$numblocked.' '.&mt('blocked unread messages').".</h3>");
  862:             $r->print(&mt('These').' '.$numblocked.' '.&mt('messages are not viewable because '));
  863:         }
  864:         $r->print(
  865: &mt('display of LON-CAPA messages sent to you by other students between').' '.$beginblock.' '.&mt('and').' '.$finishblock.' '.&mt('is currently being blocked because of online exams').'.');
  866:         &build_block_table($r,$startblock,$endblock,\%setters);
  867:     }
  868: }
  869: 
  870: 
  871: # ======================================================== Display all messages
  872: 
  873: sub disall {
  874:     my ($r,$folder)=@_;
  875:     $r->print(&folderlist($folder));
  876:     if ($folder eq 'new') {
  877: 	&disnew($r);
  878:     } elsif ($folder eq 'critical') {
  879: 	&discrit($r);
  880:     } else {
  881: 	&disfolder($r,$folder);
  882:     }
  883: }
  884: 
  885: # ============================================================ Display a folder
  886: 
  887: sub disfolder {
  888:     my ($r,$folder)=@_;
  889:     my %blocked = ();
  890:     my %setters = ();
  891:     my $startblock;
  892:     my $endblock;
  893:     my $numblocked = 0;
  894:     &blockcheck(\%setters,\$startblock,\$endblock);
  895:     $r->print(<<ENDDISHEADER);
  896: <script>
  897:     function checkall() {
  898: 	for (i=0; i<document.forms.disall.elements.length; i++) {
  899:             if 
  900:           (document.forms.disall.elements[i].name.indexOf('delmark_')==0) {
  901: 	      document.forms.disall.elements[i].checked=true;
  902:             }
  903:         }
  904:     }
  905: 
  906:     function uncheckall() {
  907: 	for (i=0; i<document.forms.disall.elements.length; i++) {
  908:             if 
  909:           (document.forms.disall.elements[i].name.indexOf('delmark_')==0) {
  910: 	      document.forms.disall.elements[i].checked=false;
  911:             }
  912:         }
  913:     }
  914: </script>
  915: ENDDISHEADER
  916:     my $fsqs='&folder='.$folder;
  917:     my @temp=sortedmessages(\%blocked,$startblock,$endblock,\$numblocked,$folder);
  918:     my $totalnumber=$#temp+1;
  919:     unless ($totalnumber>0) {
  920: 	$r->print('<h2>'.&mt('Empty Folder').'</h2>');
  921: 	return;
  922:     }
  923:     unless ($interdis) {
  924: 	$interdis=20;
  925:     }
  926:     my $number=int($totalnumber/$interdis);
  927:     if (($startdis<0) || ($startdis>$number)) { $startdis=$number; }
  928:     my $firstdis=$interdis*$startdis;
  929:     if ($firstdis>$#temp) { $firstdis=$#temp-$interdis+1; }
  930:     my $lastdis=$firstdis+$interdis-1;
  931:     if ($lastdis>$#temp) { $lastdis=$#temp; }
  932:     $r->print(&scrollbuttons($startdis,$number,$firstdis,$lastdis,$totalnumber));
  933:     $r->print('<form method="post" name="disall" action="/adm/email">'.
  934: 	      '<table border=2><tr><th colspan="3">&nbsp</th><th>');
  935:     if ($ENV{'form.sortedby'} eq "revdate") {
  936: 	$r->print('<a href = "?sortedby=date'.$fsqs.'">'.&mt('Date').'</a></th>');
  937:     } else {
  938: 	$r->print('<a href = "?sortedby=revdate'.$fsqs.'">'.&mt('Date').'</a></th>');
  939:     }
  940:     $r->print('<th>');
  941:     if ($ENV{'form.sortedby'} eq "revuser") {
  942: 	$r->print('<a href = "?sortedby=user'.$fsqs.'">'.&mt('Username').'</a>');
  943:     } else {
  944: 	$r->print('<a href = "?sortedby=revuser'.$fsqs.'">'.&mt('Username').'</a>');
  945:     }
  946:     $r->print('</th><th>');
  947:     if ($ENV{'form.sortedby'} eq "revdomain") {
  948: 	$r->print('<a href = "?sortedby=domain'.$fsqs.'">'.&mt('Domain').'</a>');
  949:     } else {
  950: 	$r->print('<a href = "?sortedby=revdomain'.$fsqs.'">'.&mt('Domain').'</a>');
  951:     }
  952:     $r->print('</th><th>');
  953:     if ($ENV{'form.sortedby'} eq "revsubject") {
  954: 	$r->print('<a href = "?sortedby=subject'.$fsqs.'">'.&mt('Subject').'</a>');
  955:     } else {
  956:     	$r->print('<a href = "?sortedby=revsubject'.$fsqs.'">'.&mt('Subject').'</a>');
  957:     }
  958:     $r->print('</th><th>');
  959:     if ($ENV{'form.sortedby'} eq "revstatus") {
  960: 	$r->print('<a href = "?sortedby=status'.$fsqs.'">'.&mt('Status').'</th>');
  961:     } else {
  962:      	$r->print('<a href = "?sortedby=revstatus'.$fsqs.'">'.&mt('Status').'</th>');
  963:     }
  964:     $r->print('</tr>');
  965:     for (my $n=$firstdis;$n<=$lastdis;$n++) {
  966: 	my ($sendtime,$shortsubj,$fromname,$fromdomain,$status,$origID)= @{$temp[$n]};
  967: 	if (($status ne 'deleted') && defined($sendtime) && $sendtime!~/error/) {
  968: 	    if ($status eq 'new') {
  969: 		$r->print('<tr bgcolor="#FFBB77">');
  970: 	    } elsif ($status eq 'read') {
  971: 		$r->print('<tr bgcolor="#BBBB77">');
  972: 	    } elsif ($status eq 'replied') {
  973: 		$r->print('<tr bgcolor="#AAAA88">'); 
  974: 	    } else {
  975: 		$r->print('<tr bgcolor="#99BBBB">');
  976: 	    }
  977: 	    $r->print('<td></a><input type=checkbox name="delmark_'.$origID.'" /></td><td><a href="/adm/email?display='.$origID.$sqs. 
  978: 		      '">'.&mt('Open').'</a></td><td>'.
  979: 		      ($folder ne 'trash'?'<a href="/adm/email?markdel='.$origID.$sqs.
  980: 		      '">'.&mt('Delete'):'&nbsp').'</td>'.
  981: 		      '<td>'.&Apache::lonlocal::locallocaltime($sendtime).'</td><td>'.
  982: 		      $fromname.'</td><td>'.$fromdomain.'</td><td>'.
  983: 		      &Apache::lonnet::unescape($shortsubj).'</td><td>'.
  984:                       $status.'</td></tr>');
  985: 	} elsif ($status eq 'deleted') {
  986: # purge
  987: 	    &movemsg(&Apache::lonnet::unescape($origID),$folder,'trash');
  988: 	}
  989:     }   
  990:     $r->print('</table><p>'.
  991:   '<a href="javascript:checkall()">'.&mt('Check All').'</a>&nbsp;'.
  992:   '<a href="javascript:uncheckall()">'.&mt('Uncheck All').'</a></p>'.
  993:   '<input type="hidden" name="sortedby" value="'.$ENV{'form.sortedby'}.'" />');
  994:     if ($folder ne 'trash') {
  995: 	$r->print(
  996: 	      '<p><input type="submit" name="markeddel" value="'.&mt('Delete Checked').'" /></p>');
  997:     }
  998:     $r->print('<p><input type="submit" name="markedmove" value="'.&mt('Move Checked to Folder').'" />');
  999:     my @allfolders=&Apache::lonnet::getkeys('email_folders');
 1000:     if ($allfolders[0]=~/^error:/) { @allfolders=(); }
 1001:     $r->print(
 1002: 	&Apache::loncommon::select_form('','movetofolder',
 1003: 			     ( map { $_ => $_ } @allfolders))
 1004: 	      );
 1005:     $r->print('<input type="hidden" name="folder" value="'.$folder.'" /></form>');
 1006:     if ($numblocked > 0) {
 1007:         my $beginblock = &Apache::lonlocal::locallocaltime($startblock);
 1008:         my $finishblock = &Apache::lonlocal::locallocaltime($endblock);
 1009:         $r->print('<br /><br />'.
 1010:                   $numblocked.' '.&mt('message(s) is/are not viewable because display of LON-CAPA messages sent to you by other students between').' '.$beginblock.' '.&mt('and').' '.$finishblock.' '.&mt('is currently being blocked because of online exams.'));
 1011:         &build_block_table($r,$startblock,$endblock,\%setters);
 1012:     }
 1013: }
 1014: 
 1015: # ============================================================== Compose output
 1016: 
 1017: sub compout {
 1018:     my ($r,$forwarding,$replying,$broadcast,$replycrit,$folder)=@_;
 1019:     my $suffix=&foldersuffix($folder);
 1020: 
 1021:     if ($broadcast eq 'individual') {
 1022: 	&printheader($r,'/adm/email?compose=individual',
 1023: 	     'Send a Message');
 1024:     } elsif ($broadcast) {
 1025: 	&printheader($r,'/adm/email?compose=group',
 1026: 	     'Broadcast Message');
 1027:     } elsif ($forwarding) {
 1028: 	&Apache::lonhtmlcommon::add_breadcrumb
 1029:         ({href=>"/adm/email?display=".&Apache::lonnet::escape($forwarding),
 1030:           text=>"Display Message"});
 1031: 	&printheader($r,'/adm/email?forward='.&Apache::lonnet::escape($forwarding),
 1032: 	     'Forwarding a Message');
 1033:     } elsif ($replying) {
 1034: 	&Apache::lonhtmlcommon::add_breadcrumb
 1035:         ({href=>"/adm/email?display=".&Apache::lonnet::escape($replying),
 1036:           text=>"Display Message"});
 1037: 	&printheader($r,'/adm/email?replyto='.&Apache::lonnet::escape($replying),
 1038: 	     'Replying to a Message');
 1039:     } elsif ($replycrit) {
 1040: 	$r->print('<h3>'.&mt('Replying to a Critical Message').'</h3>');
 1041: 	$replying=$replycrit;
 1042:     } else {
 1043: 	&printheader($r,'/adm/email?compose=upload',
 1044: 	     'Distribute from Uploaded File');
 1045:     }
 1046: 
 1047:     my $dispcrit='';
 1048:     my $dissub='';
 1049:     my $dismsg='';
 1050:     my $disbase='';
 1051:     my $func=&mt('Send New');
 1052:     my %lt=&Apache::lonlocal::texthash('us' => 'Username',
 1053: 				       'do' => 'Domain',
 1054: 				       'ad' => 'Additional Recipients',
 1055: 				       'sb' => 'Subject',
 1056: 				       'ca' => 'Cancel',
 1057: 				       'ma' => 'Mail');
 1058: 
 1059:     if (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
 1060: 	 my $crithelp = Apache::loncommon::help_open_topic("Course_Critical_Message");
 1061:          $dispcrit=
 1062:  '<input type="checkbox" name="critmsg" /> '.&mt('Send as critical message').' ' . $crithelp . 
 1063:  '<br>'.
 1064:  '<input type="checkbox" name="sendbck" /> '.&mt('Send as critical message').'  ' .
 1065:  &mt('and return receipt') . $crithelp . '<p>';
 1066:      }
 1067:     my %message;
 1068:     my %content;
 1069:     my $defdom=$ENV{'user.domain'};
 1070:     if ($forwarding) {
 1071: 	%message=&Apache::lonnet::get('nohist_email'.$suffix,[$forwarding]);
 1072: 	%content=&unpackagemsg($message{$forwarding},$folder);
 1073: 	$dispcrit.='<input type="hidden" name="forwid" value="'.
 1074: 	    $forwarding.'" />';
 1075: 	$func=&mt('Forward');
 1076: 	
 1077: 	$dissub=&mt('Forwarding').': '.$content{'subject'};
 1078: 	$dismsg=&mt('Forwarded message from').' '.
 1079: 	    $content{'sendername'}.' '.&mt('at').' '.$content{'senderdomain'};
 1080: 	if ($content{'baseurl'}) {
 1081: 	    $disbase='<input type="hidden" name="baseurl" value="'.&Apache::lonnet::escape($content{'baseurl'}).'" />';
 1082: 	}
 1083:     }
 1084:     if ($replying) {
 1085: 	%message=&Apache::lonnet::get('nohist_email'.$suffix,[$replying]);
 1086: 	%content=&unpackagemsg($message{$replying},$folder);
 1087: 	$dispcrit.='<input type="hidden" name="replyid" value="'.
 1088: 	    $replying.'" />';
 1089: 	$func=&mt('Send Reply to');
 1090: 	
 1091: 	$dissub=&mt('Reply').': '.$content{'subject'};       
 1092: 	$dismsg='> '.$content{'message'};
 1093: 	$dismsg=~s/\r/\n/g;
 1094: 	$dismsg=~s/\f/\n/g;
 1095: 	$dismsg=~s/\n+/\n\> /g;
 1096: 	if ($content{'baseurl'}) {
 1097: 	    $disbase='<input type="hidden" name="baseurl" value="'.&Apache::lonnet::escape($content{'baseurl'}).'" />';
 1098: 	    if ($ENV{'user.adv'}) {
 1099: 		$disbase.='<input type="checkbox" name="storebasecomment" />'.&mt('Store message for re-use').
 1100: 		    ' <a href="/adm/email?showcommentbaseurl='.
 1101: 		    &Apache::lonnet::escape($content{'baseurl'}).'" target="comments">'.
 1102: 		    &mt('Show re-usable messages').'</a><br />';
 1103: 	    }
 1104: 	}
 1105:     }
 1106:     my $citation=&displayresource(%content);
 1107:     if ($ENV{'form.recdom'}) { $defdom=$ENV{'form.recdom'}; }
 1108:       $r->print(
 1109:                 '<form action="/adm/email"  name="compemail" method="post"'.
 1110:                 ' enctype="multipart/form-data">'."\n".
 1111:                 '<input type="hidden" name="sendmail" value="on" />'."\n".
 1112:                 '<table>');
 1113:     unless (($broadcast eq 'group') || ($broadcast eq 'upload')) {
 1114: 	if ($replying) {
 1115: 	    $r->print('<tr><td colspan="2">'.&mt('Replying to').' '.
 1116: 		      &Apache::loncommon::aboutmewrapper(
 1117: 							 &Apache::loncommon::plainname($content{'sendername'},$content{'senderdomain'}),$content{'sendername'},$content{'senderdomain'}).' ('.
 1118: 		      $content{'sendername'}.'@'.
 1119: 		      $content{'senderdomain'}.')'.
 1120: 		      '<input type="hidden" name="recuname" value="'.$content{'sendername'}.'" />'.
 1121: 		      '<input type="hidden" name="recdomain" value="'.$content{'senderdomain'}.'" />'.
 1122: 		      '</td></tr>');
 1123: 	} else {
 1124: 	    my $domform = &Apache::loncommon::select_dom_form($defdom,'recdomain');
 1125: 	    my $selectlink=&Apache::loncommon::selectstudent_link
 1126: 	    ('compemail','recuname','recdomain');
 1127: 	    $r->print(<<"ENDREC");
 1128: <tr><td>$lt{'us'}:</td><td><input type="text" size="12" name="recuname" value="$ENV{'form.recname'}"></td><td rowspan="2">$selectlink</td></tr>
 1129: <tr><td>$lt{'do'}:</td>
 1130: <td>$domform</td></tr>
 1131: ENDREC
 1132:         }
 1133:     }
 1134:     my $latexHelp = Apache::loncommon::helpLatexCheatsheet();
 1135:     if ($broadcast ne 'upload') {
 1136:        $r->print(<<"ENDCOMP");
 1137: <tr><td>$lt{'ad'}<br /><tt>username\@domain,username\@domain, ...
 1138: </tt></td><td>
 1139: <input type="text" size="50" name="additionalrec" /></td></tr>
 1140: <tr><td>$lt{'sb'}:</td><td><input type="text" size="50" name="subject" value="$dissub" />
 1141: </td></tr></table>
 1142: $latexHelp
 1143: <textarea name="message" cols="80" rows="15" wrap="hard">$dismsg
 1144: </textarea></p><br />
 1145: $dispcrit
 1146: $disbase
 1147: <input type="submit" name="send" value="$func $lt{'ma'}" />
 1148: <input type="submit" name="cancel" value="$lt{'ca'}" /><hr />
 1149: $citation
 1150: ENDCOMP
 1151:     } else { # $broadcast is 'upload'
 1152: 	$r->print(<<ENDUPLOAD);
 1153: <input type="hidden" name="sendmode" value="upload" />
 1154: <input type="hidden" name="send" value="on" />
 1155: <h3>Generate messages from a file</h3>
 1156: <p>
 1157: Subject: <input type="text" size="50" name="subject" />
 1158: </p>
 1159: <p>General message text<br />
 1160: <textarea name="message" cols="60" rows="10" wrap="hard">$dismsg
 1161: </textarea></p>
 1162: <p>
 1163: The file format for the uploaded portion of the message is:
 1164: <pre>
 1165: username1\@domain1: text
 1166: username2\@domain2: text
 1167: username3\@domain1: text
 1168: </pre>
 1169: </p>
 1170: <p>
 1171: The messages will be assembled from all lines with the respective 
 1172: <tt>username\@domain</tt>, and appended to the general message text.</p>
 1173: <p>
 1174: <input type="file" name="upfile" size="40" /></p><p>
 1175: $dispcrit
 1176: <input type="submit" value="Upload and Send" /></p>
 1177: ENDUPLOAD
 1178:     }
 1179:     if ($broadcast eq 'group') {
 1180:        &discourse;
 1181:     }
 1182:     $r->print('</form>');
 1183: }
 1184: 
 1185: # ---------------------------------------------------- Display all face to face
 1186: 
 1187: sub retrieve_instructor_comments {
 1188:     my ($user,$domain)=@_;
 1189:     my $target=$ENV{'form.grade_target'};
 1190:     if (! $ENV{'request.course.id'}) { return; }
 1191:     if (! &Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
 1192: 	return;
 1193:     }
 1194:     my %records=&Apache::lonnet::dump('nohist_email',
 1195: 			 $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
 1196: 			 $ENV{'course.'.$ENV{'request.course.id'}.'.num'},
 1197:                          '%255b'.$user.'%253a'.$domain.'%255d');
 1198:     my $result='';
 1199:     foreach (sort(keys(%records))) {
 1200:         my %content=&unpackagemsg($records{$_});
 1201:         next if ($content{'senderdomain'} eq '');
 1202:         next if ($content{'subject'} !~ /^Record/);
 1203:         # $content{'message'}=~s/\n/\<br\>/g;
 1204:         $result.='Recorded by '.
 1205:             $content{'sendername'}.'@'.$content{'senderdomain'}."\n";
 1206:         $result.=
 1207:             &Apache::lontexconvert::msgtexconverted($content{'message'})."\n";
 1208:      }
 1209:     return $result;
 1210: }
 1211: 
 1212: sub disfacetoface {
 1213:     my ($r,$user,$domain)=@_;
 1214:     my $target=$ENV{'form.grade_target'};
 1215:     unless ($ENV{'request.course.id'}) { return; }
 1216:     unless (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
 1217: 	return;
 1218:     }
 1219:     my %records=&Apache::lonnet::dump('nohist_email',
 1220: 			 $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
 1221: 			 $ENV{'course.'.$ENV{'request.course.id'}.'.num'},
 1222:                          '%255b'.$user.'%253a'.$domain.'%255d');
 1223:     my $result='';
 1224:     foreach (sort keys %records) {
 1225:         my %content=&unpackagemsg($records{$_});
 1226:         next if ($content{'senderdomain'} eq '');
 1227:         $content{'message'}=~s/\n/\<br\>/g;
 1228:         if ($content{'subject'}=~/^Record/) {
 1229: 	    $result.='<h3>'.&mt('Record').'</h3>';
 1230:         } elsif ($content{'subject'}=~/^Broadcast/) {
 1231:             $result .='<h3>'.&mt('Broadcast Message').'</h3>';
 1232:         } else {
 1233:             $result.='<h3>'.&mt('Critical Message').'</h3>';
 1234:             %content=&unpackagemsg($content{'message'});
 1235:             $content{'message'}=
 1236:                 '<b>'.&mt('Subject').': '.$content{'subject'}.'</b><br />'.
 1237: 		$content{'message'};
 1238:         }
 1239:         $result.=&mt('By').': <b>'.
 1240: &Apache::loncommon::aboutmewrapper(
 1241:  &Apache::loncommon::plainname($content{'sendername'},$content{'senderdomain'}),$content{'sendername'},$content{'senderdomain'}).'</b> ('.
 1242: $content{'sendername'}.'@'.
 1243:             $content{'senderdomain'}.') '.$content{'time'}.
 1244:             '<br /><blockquote>'.
 1245:               &Apache::lontexconvert::msgtexconverted($content{'message'}).
 1246: 	      '</blockquote>';
 1247:      }
 1248:     # Check to see if there were any messages.
 1249:     if ($result eq '') {
 1250: 	if ($target ne 'tex') { 
 1251: 	    $r->print("<p><b>".&mt("No notes, face-to-face discussion records, critical messages, or broadcast messages in this course.")."</b></p>");
 1252: 	} else {
 1253: 	    $r->print('\textbf{'.&mt("No notes, face-to-face discussion records, critical messages or broadcast messages in this course.").'}\\\\');
 1254: 	}
 1255:     } else {
 1256:        $r->print($result);
 1257:     }
 1258: }
 1259: 
 1260: # ---------------------------------------------------------------- Face to face
 1261: 
 1262: sub facetoface {
 1263:     my ($r,$stage)=@_;
 1264:     unless (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
 1265: 	return;
 1266:     }
 1267:     &printheader($r,
 1268: 		 '/adm/email?recordftf=query',
 1269: 		 "User Notes, Face-to-Face, Critical Messages, Broadcast Messages");
 1270: # from query string
 1271: 
 1272:     if ($ENV{'form.recname'}) { $ENV{'form.recuname'}=$ENV{'form.recname'}; }
 1273:     if ($ENV{'form.recdom'}) { $ENV{'form.recdomain'}=$ENV{'form.recdom'}; }
 1274: 
 1275:     my $defdom=$ENV{'user.domain'};
 1276: # already filled in
 1277:     if ($ENV{'form.recdomain'}) { $defdom=$ENV{'form.recdomain'}; }
 1278: # generate output
 1279:     my $domform = &Apache::loncommon::select_dom_form($defdom,'recdomain');
 1280:     my $stdbrws = &Apache::loncommon::selectstudent_link
 1281: 	('stdselect','recuname','recdomain');
 1282:     my %lt=&Apache::lonlocal::texthash('user' => 'Username',
 1283: 				       'dom' => 'Domain',
 1284: 				       'head' => 'User Notes, Records of Face-To-Face Discussions, Critical Messages, and Broadcast Messages in Course',
 1285: 				       'subm' => 'Retrieve discussion and message records',
 1286: 				       'newr' => 'New Record (record is visible to course faculty and staff)',
 1287: 				       'post' => 'Post this Record');
 1288:     $r->print(<<"ENDTREC");
 1289: <h3>$lt{'head'}</h3>
 1290: <form method="post" action="/adm/email" name="stdselect">
 1291: <input type="hidden" name="recordftf" value="retrieve" />
 1292: <table>
 1293: <tr><td>$lt{'user'}:</td><td><input type="text" size="12" name="recuname" value="$ENV{'form.recuname'}" /></td>
 1294: <td rowspan="2">
 1295: $stdbrws
 1296: <input type="submit" value="$lt{'subm'}" /></td>
 1297: </tr>
 1298: <tr><td>$lt{'dom'}:</td>
 1299: <td>$domform</td></tr>
 1300: </table>
 1301: </form>
 1302: ENDTREC
 1303:     if (($stage ne 'query') &&
 1304:         ($ENV{'form.recdomain'}) && ($ENV{'form.recuname'})) {
 1305:         chomp($ENV{'form.newrecord'});
 1306:         if ($ENV{'form.newrecord'}) {
 1307:            &user_normal_msg_raw(
 1308:             $ENV{'course.'.$ENV{'request.course.id'}.'.num'},
 1309:             $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
 1310:             &mt('Record').
 1311: 	     ' ['.$ENV{'form.recuname'}.':'.$ENV{'form.recdomain'}.']',
 1312: 	    $ENV{'form.newrecord'});
 1313:         }
 1314:         $r->print('<h3>'.&Apache::loncommon::plainname($ENV{'form.recuname'},
 1315: 				     $ENV{'form.recdomain'}).'</h3>');
 1316:         &disfacetoface($r,$ENV{'form.recuname'},$ENV{'form.recdomain'});
 1317: 	$r->print(<<ENDRHEAD);
 1318: <form method="post" action="/adm/email">
 1319: <input name="recdomain" value="$ENV{'form.recdomain'}" type="hidden" />
 1320: <input name="recuname" value="$ENV{'form.recuname'}" type="hidden" />
 1321: ENDRHEAD
 1322:         $r->print(<<ENDBFORM);
 1323: <hr />$lt{'newr'}<br />
 1324: <textarea name="newrecord" cols="80" rows="10" wrap="hard"></textarea>
 1325: <br />
 1326: <input type="hidden" name="recordftf" value="post" />
 1327: <input type="submit" value="$lt{'post'}" />
 1328: </form>
 1329: ENDBFORM
 1330:     }
 1331: }
 1332: 
 1333: # ----------------------------------------------------------- Blocking during exams
 1334: 
 1335: sub examblock {
 1336:     my ($r,$action) = @_;
 1337:     unless ($ENV{'request.course.id'}) { return;}
 1338:     unless (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) { $r->print('Not allowed'); }
 1339:     my %lt=&Apache::lonlocal::texthash(
 1340:             'comb' => 'Communication Blocking',
 1341:             'cbds' => 'Communication blocking during scheduled exams',
 1342:             'desc' => 'You can use communication blocking to prevent students enrolled in this course from displaying LON-CAPA messages sent by other students during an online exam. As blocking of communication could potentially interrupt legitimate communication between students who are also both enrolled in a different LON-CAPA course, please be careful that you select the correct start and end times for your scheduled exam when setting or modifying these parameters.',
 1343:              'mecb' => 'Modify existing communication blocking periods',
 1344:              'ncbc' => 'No communication blocks currently stored'
 1345:     );
 1346: 
 1347:     my %ltext = &Apache::lonlocal::texthash(
 1348:             'dura' => 'Duration',
 1349:             'setb' => 'Set by',
 1350:             'even' => 'Event',
 1351:             'actn' => 'Action',
 1352:             'star' => 'Start',
 1353:             'endd' => 'End'
 1354:     );
 1355: 
 1356:     &printheader($r,'/adm/email?block=display',$lt{'comb'});
 1357:     $r->print('<h3>'.$lt{'cbds'}.'</h3>');
 1358: 
 1359:     if ($action eq 'store') {
 1360:         &blockstore($r);
 1361:     }
 1362: 
 1363:     $r->print($lt{'desc'}.'<br /><br />
 1364:                <form name="blockform" method="post" action="/adm/email?block=store">
 1365:              ');
 1366: 
 1367:     $r->print('<h4>'.$lt{'mecb'}.'</h4>');
 1368:     my %records = ();
 1369:     my $blockcount = 0;
 1370:     my $parmcount = 0;
 1371:     &get_blockdates(\%records,\$blockcount);
 1372:     if ($blockcount > 0) {
 1373:         $parmcount = &display_blocker_status($r,\%records,\%ltext);
 1374:     } else {
 1375:         $r->print($lt{'ncbc'}.'<br /><br />');
 1376:     }
 1377:     &display_addblocker_table($r,$parmcount,\%ltext);
 1378:     $r->print(<<"END");
 1379: <br />
 1380: <input type="hidden" name="blocktotal" value="$blockcount" />
 1381: <input type ="submit" value="Save Changes" />
 1382: </form>
 1383: </body>
 1384: </html>
 1385: END
 1386:     return;
 1387: }
 1388: 
 1389: sub blockstore {
 1390:     my $r = shift;
 1391:     my %lt=&Apache::lonlocal::texthash(
 1392:             'tfcm' => 'The following changes were made',
 1393:             'cbps' => 'communication blocking period(s)',
 1394:             'werm' => 'was/were removed',
 1395:             'wemo' => 'was/were modified',
 1396:             'wead' => 'was/were added',
 1397:             'ncwm' => 'No changes were made.' 
 1398:     );
 1399:     my %adds = ();
 1400:     my %removals = ();
 1401:     my %cancels = ();
 1402:     my $modtotal = 0;
 1403:     my $canceltotal = 0;
 1404:     my $addtotal = 0;
 1405:     my %blocking = ();
 1406:     $r->print('<h3>'.$lt{'head'}.'</h3>');
 1407:     foreach (keys %ENV) {
 1408:         if ($_ =~ m/^form\.modify_(\w+)$/) {
 1409:             $adds{$1} = $1;
 1410:             $removals{$1} = $1;
 1411:             $modtotal ++;
 1412:         } elsif ($_ =~ m/^form\.cancel_(\d+)$/) {
 1413:             $cancels{$1} = $1;
 1414:             unless ( defined($removals{$1}) ) {
 1415:                 $removals{$1} = $1;
 1416:                 $canceltotal ++;
 1417:             }
 1418:         } elsif ($_ =~ m/^form\.add_(\d+)$/) {
 1419:             $adds{$1} = $1;
 1420:             $addtotal ++;
 1421:         }
 1422:     }
 1423: 
 1424:     foreach (keys %removals) {
 1425:         my $hashkey = $ENV{'form.key_'.$_};
 1426:         &Apache::lonnet::del('comm_block',["$hashkey"],
 1427:                          $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
 1428:                          $ENV{'course.'.$ENV{'request.course.id'}.'.num'}
 1429:                          );
 1430:     }
 1431:     foreach (keys %adds) {
 1432:         unless ( defined($cancels{$_}) ) {
 1433:             my ($newstart,$newend) = &get_dates_from_form($_);
 1434:             my $newkey = $newstart.'____'.$newend;
 1435:             $blocking{$newkey} = $ENV{'user.name'}.'@'.$ENV{'user.domain'}.':'.$ENV{'form.title_'.$_};
 1436:         }
 1437:     }
 1438:     if ($addtotal + $modtotal > 0) {
 1439:         &Apache::lonnet::put('comm_block',\%blocking,
 1440:                      $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
 1441:                      $ENV{'course.'.$ENV{'request.course.id'}.'.num'}
 1442:                      );
 1443:     }
 1444:     my $chgestotal = $canceltotal + $modtotal + $addtotal;
 1445:     if ($chgestotal > 0) {
 1446:         $r->print($lt{'tfcm'}.'<ul>');
 1447:         if ($canceltotal > 0) {
 1448:             $r->print('<li>'.$canceltotal.' '.$lt{'cbps'},' '.$lt{'werm'}.'</li>');
 1449:         }
 1450:         if ($modtotal > 0) {
 1451:             $r->print('<li>'.$modtotal.' '.$lt{'cbps'},' '.$lt{'wemo'}.'</li>');
 1452:         }
 1453:         if ($addtotal > 0) {
 1454:             $r->print('<li>'.$addtotal.' '.$lt{'cbps'},' '.$lt{'wead'}.'</li>');
 1455:         }
 1456:         $r->print('</ul>');
 1457:     } else {
 1458:         $r->print($lt{'ncwm'});
 1459:     }
 1460:     $r->print('<br />');
 1461:     return;
 1462: }
 1463: 
 1464: sub get_dates_from_form {
 1465:     my $item = shift;
 1466:     my $startdate = &Apache::lonhtmlcommon::get_date_from_form('startdate_'.$item);
 1467:     my $enddate   = &Apache::lonhtmlcommon::get_date_from_form('enddate_'.$item);
 1468:     return ($startdate,$enddate);
 1469: }
 1470: 
 1471: sub get_blockdates {
 1472:     my ($records,$blockcount) = @_;
 1473:     $$blockcount = 0;
 1474:     %{$records} = &Apache::lonnet::dump('comm_block',
 1475:                          $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
 1476:                          $ENV{'course.'.$ENV{'request.course.id'}.'.num'}
 1477:                          );
 1478:     $$blockcount = keys %{$records};
 1479:                                                                                                              
 1480:     foreach (keys %{$records}) {
 1481:         if ($_ eq 'error: 2 tie(GDBM) Failed while attempting dump') {
 1482:             $$blockcount = 0;
 1483:             last;
 1484:         }
 1485:     }
 1486: }
 1487: 
 1488: sub display_blocker_status {
 1489:     my ($r,$records,$ltext) = @_;
 1490:     my $parmcount = 0;
 1491:     my @bgcols = ("#eeeeee","#dddddd");
 1492:     my $function = &Apache::loncommon::get_users_function();
 1493:     my $color = &Apache::loncommon::designparm($function.'.tabbg',
 1494:                                                     $ENV{'user.domain'});
 1495:     my %lt = &Apache::lonlocal::texthash(
 1496:         'modi' => 'Modify',
 1497:         'canc' => 'Cancel',
 1498:     );
 1499:     $r->print(<<"END");
 1500: <table border="0" cellpadding="0" cellspacing="0">
 1501:  <tr>
 1502:   <td width="100%" bgcolor="#000000">
 1503:    <table width="100%" border="0" cellpadding="1" cellspacing="0">
 1504:     <tr>
 1505:      <td width="100%" bgcolor="#000000">
 1506:       <table border="0" cellpadding="3" cellspacing="3" bgcolor="#FFFFFF">
 1507:        <tr bgcolor="$color">
 1508:         <td><b>$$ltext{'dura'}</b></td>
 1509:         <td><b>$$ltext{'setb'}</b></td>
 1510:         <td><b>$$ltext{'even'}</b></td>
 1511:         <td><b>$$ltext{'actn'}?</b></td>
 1512:        </tr>
 1513: END
 1514:     foreach (sort keys %{$records}) {
 1515:         my $iter = $parmcount%2;
 1516:         my $onchange = 'onFocus="javascript:window.document.forms['.
 1517:                        "'blockform'].elements['modify_".$parmcount."'].".
 1518:                        'checked=true;"';
 1519:         my ($start,$end) = split/____/,$_;
 1520:         my $startform = &Apache::lonhtmlcommon::date_setter('blockform','startdate_'.$parmcount,$start,$onchange);
 1521:         my $endform = &Apache::lonhtmlcommon::date_setter('blockform','enddate_'.$parmcount,$end,$onchange);
 1522:         my ($setter,$title) = split/:/,$$records{$_};
 1523:         my ($setuname,$setudom) = split/@/,$setter;
 1524:         my $settername = &Apache::loncommon::plainname($setuname,$setudom);
 1525:         $r->print(<<"END");
 1526:        <tr bgcolor="$bgcols[$iter]">
 1527:         <td>$$ltext{'star'}:&nbsp;$startform<br/>$$ltext{'endd'}:&nbsp;&nbsp;$endform</td>
 1528:         <td>$settername</td>
 1529:         <td><input type="text" name="title_$parmcount" size="15" value="$title"/><input type="hidden" name="key_$parmcount" value="$_"></td>
 1530:         <td>$lt{'modi'}?&nbsp;<input type="checkbox" name="modify_$parmcount"/><br />$lt{'canc'}?&nbsp;&nbsp;<input type="checkbox" name="cancel_$parmcount"/>
 1531:        </tr>
 1532: END
 1533:         $parmcount ++;
 1534:     }
 1535:     $r->print(<<"END");
 1536:       </table>
 1537:      </td>
 1538:     </tr>
 1539:    </table>
 1540:   </td>
 1541:  </tr>
 1542: </table>
 1543: <br />
 1544: <br />
 1545: END
 1546:     return $parmcount;
 1547: }
 1548: 
 1549: sub display_addblocker_table {
 1550:     my ($r,$parmcount,$ltext) = @_;
 1551:     my $start = time;
 1552:     my $end = $start + (60 * 60 * 2); #Default is an exam of 2 hours duration.
 1553:     my $onchange = 'onFocus="javascript:window.document.forms['.
 1554:                    "'blockform'].elements['add_".$parmcount."'].".
 1555:                    'checked=true;"';
 1556:     my $startform = &Apache::lonhtmlcommon::date_setter('blockform','startdate_'.$parmcount,$start,$onchange);
 1557:     my $endform = &Apache::lonhtmlcommon::date_setter('blockform','enddate_'.$parmcount,$end,$onchange);
 1558:     my $function = &Apache::loncommon::get_users_function();
 1559:     my $color = &Apache::loncommon::designparm($function.'.tabbg',
 1560:                                                     $ENV{'user.domain'});
 1561:     my %lt = &Apache::lonlocal::texthash(
 1562:         'addb' => 'Add block',
 1563:         'exam' => 'e.g., Exam 1',
 1564:         'addn' => 'Add new communication blocking periods'
 1565:     );
 1566:     $r->print(<<"END");
 1567: <h4>$lt{'addn'}</h4> 
 1568: <table border="0" cellpadding="0" cellspacing="0">
 1569:  <tr>
 1570:   <td width="100%" bgcolor="#000000">
 1571:    <table width="100%" border="0" cellpadding="1" cellspacing="0">
 1572:     <tr>
 1573:      <td width="100%" bgcolor="#000000">
 1574:       <table border="0" cellpadding="3" cellspacing="3" bgcolor="#FFFFFF">
 1575:        <tr bgcolor="#CCCCFF">
 1576:         <td><b>$$ltext{'dura'}</b></td>
 1577:         <td><b>$$ltext{'even'} $lt{'exam'}</b></td>
 1578:         <td><b>$$ltext{'actn'}?</b></td>
 1579:        </tr>
 1580:        <tr bgcolor="#eeeeee">
 1581:         <td>$$ltext{'star'}:&nbsp;$startform<br />$$ltext{'endd'}:&nbsp;&nbsp;$endform</td>
 1582:         <td><input type="text" name="title_$parmcount" size="15" value=""/></td>
 1583:         <td>$lt{'addb'}?&nbsp;<input type="checkbox" name="add_$parmcount" value="1"/></td>
 1584:        </tr>
 1585:       </table>
 1586:      </td>
 1587:     </tr>
 1588:    </table>
 1589:   </td>
 1590:  </tr>
 1591: </table>
 1592: END
 1593:     return;
 1594: }
 1595: 
 1596: sub blockcheck {
 1597:     my ($setters,$startblock,$endblock) = @_;
 1598:     # Retrieve active student roles and active course coordinator/instructor roles
 1599:     my @livecses = ();
 1600:     my @staffcses = ();
 1601:     $$startblock = 0;
 1602:     $$endblock = 0;
 1603:     foreach (keys %ENV) {
 1604:         if ($_ =~ m-^user\.role\.(st|cc|in)\./(.+)$-) {
 1605:             my $role = $1;
 1606:             my $cse = $2;
 1607:             $cse =~ s|/|_|;
 1608:             if ($ENV{$_} =~ m/^(\d*)\.(\d*)$/) {
 1609:                 unless (($2 > 0 && $2 < time) || ($1 > time)) {
 1610:                     if ($role eq 'st') {
 1611:                         push @livecses, $cse;
 1612:                     } else {
 1613:                         unless (grep/^$cse$/,@staffcses) {
 1614:                             push @staffcses, $cse;
 1615:                         }
 1616:                     }
 1617:                 }
 1618:             }
 1619:         } elsif ($_ =~ m-user\.role\.cr/(\w+)/(\w+)/([^/]+)\./(.+)$- ) { 
 1620:             my $rolepriv = $ENV{'user.role..rolesdef_'.$3};
 1621:         }
 1622:     }
 1623:     # Retrieve blocking times and identity of blocker for active courses for students.
 1624:     if (@livecses > 0) {
 1625:         foreach my $cse (@livecses) {
 1626:             my ($cdom,$crs) = split/_/,$cse;
 1627:             if ( (grep/^$cse$/,@staffcses) && ($ENV{'request.role'} !~ m-^st\./$cdom/$crs$-) ) {
 1628:                 next;
 1629:             } else {
 1630:                 %{$$setters{$cse}} = ();
 1631:                 @{$$setters{$cse}{'staff'}} = ();
 1632:                 @{$$setters{$cse}{'times'}} = ();
 1633:                 my %records = &Apache::lonnet::dump('comm_block',$cdom,$crs);
 1634:                 foreach (keys %records) {
 1635:                     if ($_ =~ m/^(\d+)____(\d+)$/) {
 1636:                         if ($1 <= time && $2 >= time) {
 1637:                             my ($staff,$title) = split/:/,$records{$_};
 1638:                             push @{$$setters{$cse}{'staff'}}, $staff;
 1639:                             push @{$$setters{$cse}{'times'}}, $_;
 1640:                             if ( ($$startblock == 0) || ($$startblock > $1) ) {
 1641:                                 $$startblock = $1;
 1642:                             }
 1643:                             if ( ($$endblock == 0) || ($$endblock < $2) ) {
 1644:                                 $$endblock = $2;
 1645:                             }
 1646:                         }
 1647:                     }
 1648:                 }
 1649:             }
 1650:         }
 1651:     }
 1652: }
 1653: 
 1654: sub build_block_table {
 1655:     my ($r,$startblock,$endblock,$setters) = @_;
 1656:     my $function = &Apache::loncommon::get_users_function();
 1657:     my $color = &Apache::loncommon::designparm($function.'.tabbg',
 1658:                                                     $ENV{'user.domain'});
 1659:     my %lt = &Apache::lonlocal::texthash(
 1660:         'cacb' => 'Currently active communication blocks',
 1661:         'cour' => 'Course',
 1662:         'dura' => 'Duration',
 1663:         'blse' => 'Block set by'
 1664:     ); 
 1665:     $r->print(<<"END");
 1666: <br /<br />$lt{'cacb'}:<br /><br />
 1667: <table border="0" cellpadding="0" cellspacing="0">
 1668:  <tr>
 1669:   <td width="100%" bgcolor="#000000">
 1670:    <table width="100%" border="0" cellpadding="1" cellspacing="0">
 1671:     <tr>
 1672:      <td width="100%" bgcolor="#000000">
 1673:       <table border="0" cellpadding="3" cellspacing="3" bgcolor="#FFFFFF">
 1674:        <tr bgcolor="$color">
 1675:         <td><b>$lt{'cour'}</b></td>
 1676:         <td><b>$lt{'dura'}</b></td>
 1677:         <td><b>$lt{'blse'}</b></td>
 1678:        </tr>
 1679: END
 1680:     foreach (keys %{$setters}) {
 1681:         my %courseinfo=&Apache::lonnet::coursedescription($_);
 1682:         for (my $i=0; $i<@{$$setters{$_}{staff}}; $i++) {
 1683:             my ($uname,$udom) = split/\@/,$$setters{$_}{staff}[$i];
 1684:             my $fullname = &Apache::loncommon::plainname($uname,$udom);
 1685:             my ($openblock,$closeblock) = split/____/,$$setters{$_}{times}[$i];
 1686:             $openblock = &Apache::lonlocal::locallocaltime($openblock);
 1687:             $closeblock= &Apache::lonlocal::locallocaltime($closeblock);
 1688:             $r->print('<tr><td>'.$courseinfo{'description'}.'</td>'.
 1689:                       '<td>'.$openblock.' to '.$closeblock.'</td>'.
 1690:                       '<td>'.$fullname.' ('.$uname.'@'.$udom.
 1691:                       ')</td></tr>');
 1692:         }
 1693:     }
 1694:     $r->print('</table></td></tr></table></td></tr></table>');
 1695: }
 1696: 
 1697: # ----------------------------------------------------------- Display a message
 1698: 
 1699: sub displaymessage {
 1700:     my ($r,$msgid,$folder)=@_;
 1701:     my $suffix=&foldersuffix($folder);
 1702:     my %blocked = ();
 1703:     my %setters = ();
 1704:     my $startblock = 0;
 1705:     my $endblock = 0;
 1706:     my $numblocked = 0;
 1707: # info to generate "next" and "previous" buttons and check if message is blocked
 1708:     &blockcheck(\%setters,\$startblock,\$endblock);
 1709:     my @messages=&sortedmessages(\%blocked,$startblock,$endblock,\$numblocked,$folder);
 1710:     if ( $blocked{$msgid} eq 'ON' ) {
 1711:         &printheader($r,'/adm/email',&mt('Display a Message'));
 1712:         $r->print(&mt('You attempted to display a message that is currently blocked because you are enrolled in one or more courses for which there is an ongoing online exam.'));
 1713:         &build_block_table($r,$startblock,$endblock,\%setters);
 1714:         return;
 1715:     }
 1716:     &statuschange($msgid,'read',$folder);
 1717:     my %message=&Apache::lonnet::get('nohist_email'.$suffix,[$msgid]);
 1718:     my %content=&unpackagemsg($message{$msgid});
 1719: 
 1720:     my $counter=0;
 1721:     $r->print('<pre>');
 1722:     my $escmsgid=&Apache::lonnet::escape($msgid);
 1723:     foreach (@messages) {
 1724: 	if ($_->[5] eq $escmsgid){
 1725: 	    last;
 1726: 	}
 1727: 	$counter++;
 1728:     }
 1729:     $r->print('</pre>');
 1730:     my $number_of_messages = scalar(@messages); #subtract 1 for last index
 1731: # start output
 1732:     &printheader($r,'/adm/email?display='.&Apache::lonnet::escape($msgid),'Display a Message','',$content{'baseurl'});
 1733:     my %courseinfo=&Apache::lonnet::coursedescription($content{'courseid'});
 1734: # Functions
 1735:     $r->print('<table border="2" width="100%"><tr bgcolor="#FFFFAA"><td>'.&mt('Functions').':</td>'.
 1736: 	      '<td><a href="/adm/email?replyto='.&Apache::lonnet::escape($msgid).$sqs.
 1737: 	      '"><b>'.&mt('Reply').'</b></a></td>'.
 1738: 	      '<td><a href="/adm/email?forward='.&Apache::lonnet::escape($msgid).$sqs.
 1739: 	      '"><b>'.&mt('Forward').'</b></a></td>'.
 1740: 	      '<td><a href="/adm/email?markunread='.&Apache::lonnet::escape($msgid).$sqs.
 1741: 	      '"><b>'.&mt('Mark Unread').'</b></a></td>'.
 1742: 	      '<td><a href="/adm/email?markdel='.&Apache::lonnet::escape($msgid).$sqs.
 1743: 	      '"><b>Delete</b></a></td>'.
 1744: 	      '<td><a href="/adm/email?'.$sqs.
 1745: 	      '"><b>'.&mt('Back to Folder Display').'</b></a></td>');
 1746:     if ($counter > 0){
 1747: 	$r->print('<td><a href="/adm/email?display='.$messages[$counter-1]->[5].$sqs.
 1748: 		  '"><b>'.&mt('Previous').'</b></a></td>');
 1749:     }
 1750:     if ($counter < $number_of_messages - 1){
 1751: 	$r->print('<td><a href="/adm/email?display='.$messages[$counter+1]->[5].$sqs.
 1752: 		  '"><b>'.&mt('Next').'</b></a></td>');
 1753:     }
 1754:     $r->print('</tr></table>');
 1755:     $r->print('<br /><b>'.&mt('Subject').':</b> '.$content{'subject'}.
 1756: 	      ($folder ne 'sent'?'<br /><b>'.&mt('From').':</b> '.
 1757: 	      &Apache::loncommon::aboutmewrapper(
 1758: 						 &Apache::loncommon::plainname($content{'sendername'},$content{'senderdomain'}),
 1759: 						 $content{'sendername'},$content{'senderdomain'}).' ('.
 1760: 	      $content{'sendername'}.' at '.
 1761: 	      $content{'senderdomain'}.') ':'<br /><b>'.&mt('To').':</b> '.
 1762: 	      &Apache::loncommon::aboutmewrapper(
 1763: 						 &Apache::loncommon::plainname($content{'recuser'},$content{'recdomain'}),
 1764: 						 $content{'recuser'},$content{'recdomain'}).' ('.
 1765: 	      $content{'recuser'}.' at '.
 1766: 	      $content{'recdomain'}.') ').
 1767: 	      ($content{'courseid'}?'<br /><b>'.&mt('Course').':</b> '.$courseinfo{'description'}.
 1768: 	       ($content{'coursesec'}?' ('.&mt('Group/Section').': '.$content{'coursesec'}.')':''):'').
 1769: 	      '<br /><b>'.&mt('Time').':</b> '.$content{'time'}.
 1770: 	      ($content{'baseurl'}?'<br /><b>'.&mt('Refers to').':</b> <a href="'.$content{'baseurl'}.'">'.
 1771: 	       $content{'baseurl'}.' ('.&Apache::lonnet::gettitle($content{'baseurl'}).')</a>':'').
 1772: 	      '<p><pre>'.
 1773: 	      &Apache::lontexconvert::msgtexconverted($content{'message'},1).
 1774: 	      '</pre><hr />'.&displayresource(%content).'</p>');
 1775:     return;   
 1776: }
 1777: 
 1778: # =========================================================== Show the citation
 1779: 
 1780: sub displayresource {
 1781:     my %content=@_;
 1782: #
 1783: # If the recipient is in the same course that the message was sent from and
 1784: # has sufficient privileges, show "all details," else show citation
 1785: #
 1786:     if (($ENV{'request.course.id'} eq $content{'courseid'})
 1787:      && (&Apache::lonnet::allowed('vgr',$content{'courseid'}))) {
 1788: 	my $symb=&Apache::lonnet::symbread($content{'baseurl'});
 1789: # Could not get a symb, give up
 1790: 	unless ($symb) { return $content{'citation'}; }
 1791: # Have a symb, can render
 1792: 	return '<h2>'.&mt('Current attempts of student (if applicable)').'</h2>'.
 1793: 	    &Apache::loncommon::get_previous_attempt($symb,
 1794: 						     $content{'sendername'},
 1795: 						     $content{'senderdomain'},
 1796: 						     $content{'courseid'}).
 1797: 	    '<hr /><h2>'.&mt('Current screen output (if applicable)').'</h2>'.
 1798: 	    &Apache::loncommon::get_student_view($symb,
 1799: 						 $content{'sendername'},
 1800: 						 $content{'senderdomain'},
 1801: 						 $content{'courseid'}).
 1802: 	    '<h2>'.&mt('Correct Answer(s) (if applicable)').'</h2>'.
 1803: 	    &Apache::loncommon::get_student_answers($symb,
 1804: 						    $content{'sendername'},
 1805: 						    $content{'senderdomain'},
 1806: 						    $content{'courseid'});
 1807:     } else {
 1808: 	return $content{'citation'};
 1809:     }
 1810: }
 1811: 
 1812: # ================================================================== The Header
 1813: 
 1814: sub header {
 1815:     my ($r,$title,$baseurl)=@_;
 1816:     $r->print('<html><head><title>Communication and Messages</title>');
 1817:     if ($baseurl) {
 1818: 	$r->print("<base href=\"http://$ENV{'SERVER_NAME'}/$baseurl\" />");
 1819:     }
 1820:     $r->print(&Apache::loncommon::studentbrowser_javascript().'</head>'.
 1821: 	      &Apache::loncommon::bodytag('Communication and Messages'));
 1822:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
 1823:                   (undef,($title?$title:'Communication and Messages')));
 1824: 
 1825: }
 1826: 
 1827: # ---------------------------------------------------------------- Print header
 1828: 
 1829: sub printheader {
 1830:     my ($r,$url,$desc,$title,$baseurl)=@_;
 1831:     &Apache::lonhtmlcommon::add_breadcrumb
 1832: 	({href=>$url,
 1833: 	  text=>$desc});
 1834:     &header($r,$title,$baseurl);
 1835: }
 1836: 
 1837: # ------------------------------------------------------------ Store the comment
 1838: 
 1839: sub storecomment {
 1840:     my ($r)=@_;
 1841:     my $msgtxt=&Apache::lonfeedback::clear_out_html($ENV{'form.message'});
 1842:     my $cleanmsgtxt='';
 1843:     foreach (split(/[\n\r]/,$msgtxt)) {
 1844: 	unless ($_=~/^\s*(\>|\&gt\;)/) {
 1845: 	    $cleanmsgtxt.=$_."\n";
 1846: 	}
 1847:     }
 1848:     my $key=&Apache::lonnet::escape($ENV{'form.baseurl'}).'___'.time;
 1849:     &Apache::lonnet::put('nohist_stored_comments',{ $key => $cleanmsgtxt });
 1850: }
 1851: 
 1852: sub storedcommentlisting {
 1853:     my ($r)=@_;
 1854:     my %msgs=&Apache::lonnet::dump('nohist_stored_comments',undef,undef,
 1855:        '^'.&Apache::lonnet::escape(&Apache::lonnet::escape($ENV{'form.showcommentbaseurl'})));
 1856:     $r->print('<html><body>');
 1857:     if ((keys %msgs)[0]=~/^error\:/) {
 1858: 	$r->print(&mt('No stored comments yet.'));
 1859:     } else {
 1860: 	my $found=0;
 1861: 	foreach (sort keys %msgs) {
 1862: 	    $r->print("\n".$msgs{$_}."<hr />");
 1863: 	    $found=1;
 1864: 	}
 1865: 	unless ($found) {
 1866: 	    $r->print(&mt('No stored comments yet for this resource.'));
 1867: 	}
 1868:     }
 1869: }
 1870: 
 1871: # ---------------------------------------------------------------- Send an email
 1872: 
 1873: sub sendoffmail {
 1874:     my ($r,$folder)=@_;
 1875:     my $suffix=&foldersuffix($folder);
 1876:     my $sendstatus='';
 1877:     if ($ENV{'form.send'}) {
 1878: 	&printheader($r,'','Messages being sent.');
 1879: 	$r->rflush();
 1880: 	my %content=();
 1881: 	undef %content;
 1882: 	if ($ENV{'form.forwid'}) {
 1883: 	    my $msgid=$ENV{'form.forwid'};
 1884: 	    my %message=&Apache::lonnet::get('nohist_email'.$suffix,[$msgid]);
 1885: 	    %content=&unpackagemsg($message{$msgid},1);
 1886: 	    &statuschange($msgid,'forwarded',$folder);
 1887: 	    $ENV{'form.message'}.="\n\n-- Forwarded message --\n\n".
 1888: 		$content{'message'};
 1889: 	}
 1890: 	if ($ENV{'form.replyid'}) {
 1891: 	    my $msgid=$ENV{'form.replyid'};
 1892: 	    my %message=&Apache::lonnet::get('nohist_email'.$suffix,[$msgid]);
 1893: 	    %content=&unpackagemsg($message{$msgid},1);
 1894: 	    &statuschange($msgid,'replied',$folder);
 1895: 	}
 1896: 	my %toaddr=();
 1897: 	undef %toaddr;
 1898: 	if ($ENV{'form.sendmode'} eq 'group') {
 1899: 	    foreach (keys %ENV) {
 1900: 		if ($_=~/^form\.send\_to\_\&\&\&[^\&]*\&\&\&\_(.+)$/) {
 1901: 		    $toaddr{$1}='';
 1902: 		}
 1903: 	    }
 1904: 	} elsif ($ENV{'form.sendmode'} eq 'upload') {
 1905: 	    foreach (split(/[\n\r\f]+/,$ENV{'form.upfile'})) {
 1906: 		my ($rec,$txt)=split(/\s*\:\s*/,$_);
 1907: 		if ($txt) {
 1908: 		    $rec=~s/\@/\:/;
 1909: 		    $toaddr{$rec}.=$txt."\n";
 1910: 		}
 1911: 	    }
 1912: 	} else {
 1913: 	    $toaddr{$ENV{'form.recuname'}.':'.$ENV{'form.recdomain'}}='';
 1914: 	}
 1915: 	if ($ENV{'form.additionalrec'}) {
 1916: 	    foreach (split(/\,/,$ENV{'form.additionalrec'})) {
 1917: 		my ($auname,$audom)=split(/\@/,$_);
 1918: 		$toaddr{$auname.':'.$audom}='';
 1919: 	    }
 1920: 	}
 1921: 	
 1922: 	foreach (keys %toaddr) {
 1923: 	    my ($recuname,$recdomain)=split(/\:/,$_);
 1924:             my $msgtxt;
 1925:             if ((($ENV{'form.critmsg'}) || ($ENV{'form.sendbck'})) &&
 1926:                 (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'}))) {
 1927:                 $msgtxt=&Apache::lonfeedback::clear_out_html($ENV{'form.message'},1);
 1928:             } else {  
 1929: 	        $msgtxt=&Apache::lonfeedback::clear_out_html($ENV{'form.message'});
 1930:             }
 1931: 	    if ($toaddr{$_}) { $msgtxt.='<hr />'.$toaddr{$_}; }
 1932: 	    my $thismsg;    
 1933: 	    if ((($ENV{'form.critmsg'}) || ($ENV{'form.sendbck'})) && 
 1934: 		(&Apache::lonnet::allowed('srm',$ENV{'request.course.id'}))) {
 1935: 		$r->print(&mt('Sending critical message').' '.$recuname.'@'.$recdomain.': ');
 1936: 		$thismsg=&user_crit_msg($recuname,$recdomain,
 1937: 					&Apache::lonfeedback::clear_out_html($ENV{'form.subject'}),
 1938: 					$msgtxt,
 1939: 					$ENV{'form.sendbck'});
 1940: 	    } else {
 1941: 		$r->print(&mt('Sending').' '.$recuname.'@'.$recdomain.': ');
 1942: 		$thismsg=&user_normal_msg($recuname,$recdomain,
 1943: 					  &Apache::lonfeedback::clear_out_html($ENV{'form.subject'}),
 1944: 					  $msgtxt,
 1945: 					  $content{'citation'});
 1946: 		if (($ENV{'request.course.id'}) && ($ENV{'form.sendmode'} eq 'group')) {
 1947: 		    &user_normal_msg_raw(
 1948: 					 $ENV{'course.'.$ENV{'request.course.id'}.'.num'},
 1949: 					 $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
 1950: 					 'Broadcast ['.$recuname.':'.$recdomain.']',
 1951: 					 $msgtxt);
 1952: 		}
 1953: 	    }
 1954: 	    $r->print($thismsg.'<br />');
 1955: 	    $sendstatus.=' '.$thismsg;
 1956: 	}
 1957:     } else {
 1958: 	&printheader($r,'','No messages sent.'); 
 1959:     }
 1960:     if ($sendstatus=~/^(\s*(?:ok|con_delayed)\s*)*$/) {
 1961: 	$r->print('<br /><font color="green">'.&mt('Completed.').'</font>');
 1962: 	if ($ENV{'form.displayedcrit'}) {
 1963: 	    &discrit($r);
 1964: 	} else {
 1965: 	    &Apache::loncommunicate::menu($r);
 1966: 	}
 1967:     } else {
 1968: 	$r->print(
 1969: 		  '<h2><font color="red">'.&mt('Could not deliver message').'</font></h2>'.
 1970: 		  &mt('Please use the browser "Back" button and correct the recipient addresses')
 1971: 		  );
 1972:     }
 1973: }
 1974: 
 1975: # ===================================================================== Handler
 1976: 
 1977: sub handler {
 1978:     my $r=shift;
 1979: 
 1980: # ----------------------------------------------------------- Set document type
 1981:     
 1982:     &Apache::loncommon::content_type($r,'text/html');
 1983:     $r->send_http_header;
 1984:     
 1985:     return OK if $r->header_only;
 1986:     
 1987: # --------------------------- Get query string for limited number of parameters
 1988:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
 1989:         ['display','replyto','forward','markread','markdel','markunread',
 1990:          'sendreply','compose','sendmail','critical','recname','recdom',
 1991:          'recordftf','sortedby','block','folder','startdis','interdis',
 1992: 	 'showcommentbaseurl']);
 1993:     $sqs='&sortedby='.$ENV{'form.sortedby'};
 1994: 
 1995: # ------------------------------------------------------ They checked for email
 1996:     unless ($ENV{'form.block'}) {
 1997:         &Apache::lonnet::put('email_status',{'recnewemail'=>0});
 1998:     }
 1999: 
 2000: # ----------------------------------------------------------------- Breadcrumbs
 2001: 
 2002:     &Apache::lonhtmlcommon::clear_breadcrumbs();
 2003:     &Apache::lonhtmlcommon::add_breadcrumb
 2004:         ({href=>"/adm/communicate",
 2005:           text=>"Communication/Messages",
 2006:           faq=>12,bug=>'Communication Tools',});
 2007: 
 2008: # ------------------------------------------------------------------ Get Folder
 2009: 
 2010:     my $folder=$ENV{'form.folder'};
 2011:     unless ($folder) { 
 2012: 	$folder=''; 
 2013:     } else {
 2014: 	$sqs.='&folder='.&Apache::lonnet::escape($folder);
 2015:     }
 2016: 
 2017: # --------------------------------------------------------------------- Display
 2018: 
 2019:     $startdis=$ENV{'form.startdis'};
 2020:     $startdis--;
 2021:     unless ($startdis) { $startdis=0; }
 2022: 
 2023:     $interdis=$ENV{'form.interdis'};
 2024:     unless ($interdis) { $interdis=20; }
 2025:     $sqs.='&interdis='.$interdis;
 2026: 
 2027:     if ($ENV{'form.firstview'}) {
 2028: 	$startdis=0;
 2029:     }
 2030:     if ($ENV{'form.lastview'}) {
 2031: 	$startdis=-1;
 2032:     }
 2033:     if ($ENV{'form.prevview'}) {
 2034: 	$startdis--;
 2035:     }
 2036:     if ($ENV{'form.nextview'}) {
 2037: 	$startdis++;
 2038:     }
 2039:     my $postedstartdis=$startdis+1;
 2040:     $sqs.='&startdis='.$postedstartdis;
 2041: 
 2042: # --------------------------------------------------------------- Render Output
 2043: 
 2044:     if ($ENV{'form.display'}) {
 2045: 	&displaymessage($r,$ENV{'form.display'},$folder);
 2046:     } elsif ($ENV{'form.replyto'}) {
 2047: 	&compout($r,'',$ENV{'form.replyto'},undef,undef,$folder);
 2048:     } elsif ($ENV{'form.confirm'}) {
 2049: 	&printheader($r,'','Confirmed Receipt');
 2050: 	foreach (keys %ENV) {
 2051: 	    if ($_=~/^form\.rec\_(.*)$/) {
 2052: 		$r->print('<b>'.&mt('Confirming Receipt').':</b> '.
 2053: 			  &user_crit_received($1).'<br>');
 2054: 	    }
 2055: 	    if ($_=~/^form\.reprec\_(.*)$/) {
 2056: 		my $msgid=$1;
 2057: 		$r->print('<b>'.&mt('Confirming Receipt').':</b> '.
 2058: 			  &user_crit_received($msgid).'<br>');
 2059: 		&compout($r,'','','',$msgid);
 2060: 	    }
 2061: 	}
 2062: 	&discrit($r);
 2063:     } elsif ($ENV{'form.critical'}) {
 2064: 	&printheader($r,'','Displaying Critical Messages');
 2065: 	&discrit($r);
 2066:     } elsif ($ENV{'form.forward'}) {
 2067: 	&compout($r,$ENV{'form.forward'},undef,undef,undef,$folder);
 2068:     } elsif ($ENV{'form.markdel'}) {
 2069: 	&printheader($r,'','Deleted Message');
 2070: 	&statuschange($ENV{'form.markdel'},'deleted',$folder);
 2071: 	&Apache::loncommunicate::menu($r);
 2072: 	&disall($r,$folder);
 2073:     } elsif ($ENV{'form.markedmove'}) {
 2074: 	my $total=0;
 2075: 	foreach (keys %ENV) {
 2076: 	    if ($_=~/^form\.delmark_(.*)$/) {
 2077: 		&movemsg(&Apache::lonnet::unescape($1),$folder,
 2078: 			 $ENV{'form.movetofolder'});
 2079: 		$total++;
 2080: 	    }
 2081: 	}
 2082: 	&printheader($r,'','Moved Messages');
 2083: 	$r->print('Moved '.$total.' message(s)<p>');
 2084: 	&Apache::loncommunicate::menu($r);
 2085: 	&disall($r,$folder);
 2086:     } elsif ($ENV{'form.markeddel'}) {
 2087: 	my $total=0;
 2088: 	foreach (keys %ENV) {
 2089: 	    if ($_=~/^form\.delmark_(.*)$/) {
 2090: 		&statuschange(&Apache::lonnet::unescape($1),'deleted',$folder);
 2091: 		$total++;
 2092: 	    }
 2093: 	}
 2094: 	&printheader($r,'','Deleted Messages');
 2095: 	$r->print('Deleted '.$total.' message(s)<p>');
 2096: 	&Apache::loncommunicate::menu($r);
 2097: 	&disall($r,$folder);
 2098:     } elsif ($ENV{'form.markunread'}) {
 2099: 	&printheader($r,'','Marked Message as Unread');
 2100: 	&statuschange($ENV{'form.markunread'},'new');
 2101: 	&Apache::loncommunicate::menu($r);
 2102: 	&disall($r,$folder);
 2103:     } elsif ($ENV{'form.compose'}) {
 2104: 	&compout($r,'','',$ENV{'form.compose'});
 2105:     } elsif ($ENV{'form.recordftf'}) {
 2106: 	&facetoface($r,$ENV{'form.recordftf'});
 2107:     } elsif ($ENV{'form.block'}) {
 2108:         &examblock($r,$ENV{'form.block'});
 2109:     } elsif ($ENV{'form.sendmail'}) {
 2110: 	&sendoffmail($r,$folder);
 2111: 	if ($ENV{'form.storebasecomment'}) {
 2112: 	    &storecomment($r);
 2113: 	}
 2114: 	&disall($r,$folder);
 2115:     } elsif ($ENV{'form.newfolder'}) {
 2116: 	&printheader($r,'','New Folder');
 2117: 	&makefolder($ENV{'form.newfolder'});
 2118: 	&Apache::loncommunicate::menu($r);
 2119: 	&disall($r,$ENV{'form.newfolder'});
 2120:     } elsif ($ENV{'form.showcommentbaseurl'}) {
 2121: 	&storedcommentlisting($r);
 2122:     } else {
 2123: 	&printheader($r,'','Display All Messages');
 2124: 	&Apache::loncommunicate::menu($r);
 2125: 	&disall($r,$folder);
 2126:     }
 2127:     $r->print('</body></html>');
 2128:     return OK;
 2129: }
 2130: # ================================================= Main program, reset counter
 2131: 
 2132: BEGIN {
 2133:     $msgcount=0;
 2134: }
 2135: 
 2136: =pod
 2137: 
 2138: =back
 2139: 
 2140: =cut
 2141: 
 2142: 1; 
 2143: 
 2144: __END__
 2145: 
 2146: 
 2147: 
 2148: 
 2149: 
 2150: 
 2151: 

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