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