Annotation of loncom/interface/lonmsg.pm, revision 1.77
1.1 www 1: # The LearningOnline Network with CAPA
1.26 albertel 2: # Routines for messaging
3: #
1.77 ! www 4: # $Id: lonmsg.pm,v 1.76 2003/12/30 22:45:59 www 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:
77: =back
78:
79: Users can ask LON-CAPA to forward messages to conventional e-mail
80: addresses on their B<PREF> screen, but generally, LON-CAPA messages
81: are much more useful then traditional email can be made to be, even
82: with HTML support.
83:
84: Right now, this document will cover just how to send a message, since
85: it is likely you will not need to programmatically read messages,
86: since lonmsg already implements that functionality.
87:
88: =head1 FUNCTIONS
89:
90: =over 4
91:
92: =cut
93:
1.1 www 94: use strict;
95: use Apache::lonnet();
1.2 www 96: use vars qw($msgcount);
1.47 albertel 97: use HTML::TokeParser();
1.5 www 98: use Apache::Constants qw(:common);
1.47 albertel 99: use Apache::loncommon();
100: use Apache::lontexconvert();
101: use HTML::Entities();
1.53 www 102: use Mail::Send;
1.67 www 103: use Apache::lonlocal;
1.1 www 104:
1.65 www 105: # Querystring component with sorting type
106: my $sqs;
107:
1.1 www 108: # ===================================================================== Package
109:
1.3 www 110: sub packagemsg {
1.51 www 111: my ($subject,$message,$citation,$baseurl,$attachmenturl)=@_;
1.47 albertel 112: $message =&HTML::Entities::encode($message);
113: $citation=&HTML::Entities::encode($citation);
114: $subject =&HTML::Entities::encode($subject);
1.49 albertel 115: #remove machine specification
116: $baseurl =~ s|^http://[^/]+/|/|;
117: $baseurl =&HTML::Entities::encode($baseurl);
1.51 www 118: #remove machine specification
119: $attachmenturl =~ s|^http://[^/]+/|/|;
1.52 www 120: $attachmenturl =&HTML::Entities::encode($attachmenturl);
1.51 www 121:
1.2 www 122: my $now=time;
123: $msgcount++;
1.6 www 124: my $partsubj=$subject;
125: $partsubj=&Apache::lonnet::escape($partsubj);
126: my $msgid=&Apache::lonnet::escape(
127: $now.':'.$partsubj.':'.$ENV{'user.name'}.':'.
128: $ENV{'user.domain'}.':'.$msgcount.':'.$$);
1.49 albertel 129: my $result='<sendername>'.$ENV{'user.name'}.'</sendername>'.
1.1 www 130: '<senderdomain>'.$ENV{'user.domain'}.'</senderdomain>'.
131: '<subject>'.$subject.'</subject>'.
1.67 www 132: '<time>'.&Apache::lonlocal::locallocaltime($now).'</time>'.
1.1 www 133: '<servername>'.$ENV{'SERVER_NAME'}.'</servername>'.
134: '<host>'.$ENV{'HTTP_HOST'}.'</host>'.
135: '<client>'.$ENV{'REMOTE_ADDR'}.'</client>'.
136: '<browsertype>'.$ENV{'browser.type'}.'</browsertype>'.
137: '<browseros>'.$ENV{'browser.os'}.'</browseros>'.
138: '<browserversion>'.$ENV{'browser.version'}.'</browserversion>'.
139: '<browsermathml>'.$ENV{'browser.mathml'}.'</browsermathml>'.
140: '<browserraw>'.$ENV{'HTTP_USER_AGENT'}.'</browserraw>'.
141: '<courseid>'.$ENV{'request.course.id'}.'</courseid>'.
142: '<role>'.$ENV{'request.role'}.'</role>'.
143: '<resource>'.$ENV{'request.filename'}.'</resource>'.
1.2 www 144: '<msgid>'.$msgid.'</msgid>'.
1.49 albertel 145: '<message>'.$message.'</message>';
146: if (defined($citation)) {
147: $result.='<citation>'.$citation.'</citation>';
148: }
149: if (defined($baseurl)) {
150: $result.= '<baseurl>'.$baseurl.'</baseurl>';
151: }
1.51 www 152: if (defined($attachmenturl)) {
1.52 www 153: $result.= '<attachmenturl>'.$attachmenturl.'</attachmenturl>';
1.51 www 154: }
1.49 albertel 155: return $msgid,$result;
1.1 www 156: }
157:
1.2 www 158: # ================================================== Unpack message into a hash
159:
1.3 www 160: sub unpackagemsg {
1.52 www 161: my ($message,$notoken)=@_;
1.2 www 162: my %content=();
163: my $parser=HTML::TokeParser->new(\$message);
164: my $token;
165: while ($token=$parser->get_token) {
166: if ($token->[0] eq 'S') {
167: my $entry=$token->[1];
168: my $value=$parser->get_text('/'.$entry);
169: $content{$entry}=$value;
170: }
171: }
1.52 www 172: if ($content{'attachmenturl'}) {
173: my ($fname,$ft)=($content{'attachmenturl'}=~/\/(\w+)\.(\w+)$/);
174: if ($notoken) {
1.67 www 175: $content{'message'}.='<p>'.&mt('Attachment').': <tt>'.$fname.'.'.$ft.'</tt>';
1.52 www 176: } else {
1.67 www 177: $content{'message'}.='<p>'.&mt('Attachment').': <a href="'.
1.52 www 178: &Apache::lonnet::tokenwrapper($content{'attachmenturl'}).
179: '"><tt>'.$fname.'.'.$ft.'</tt></a>';
180: }
181: }
1.2 www 182: return %content;
183: }
184:
1.6 www 185: # ======================================================= Get info out of msgid
186:
187: sub unpackmsgid {
1.7 www 188: my $msgid=&Apache::lonnet::unescape(shift);
1.6 www 189: my ($sendtime,$shortsubj,$fromname,$fromdomain)=split(/\:/,
1.7 www 190: &Apache::lonnet::unescape($msgid));
1.8 albertel 191: my %status=&Apache::lonnet::get('email_status',[$msgid]);
1.6 www 192: if ($status{$msgid}=~/^error\:/) { $status{$msgid}=''; }
193: unless ($status{$msgid}) { $status{$msgid}='new'; }
194: return ($sendtime,$shortsubj,$fromname,$fromdomain,$status{$msgid});
195: }
196:
1.53 www 197:
198: sub sendemail {
199: my ($to,$subject,$body)=@_;
200: $body=
1.67 www 201: "*** ".&mt('This is an automatic message generated by the LON-CAPA system.')."\n".
202: "*** ".&mt('Please do not reply to this address.')."\n\n".$body;
1.53 www 203: my $msg = new Mail::Send;
204: $msg->to($to);
205: $msg->subject('[LON-CAPA] '.$subject);
1.68 www 206: if (my $fh = $msg->open('smtp',Server => 'localhost')) {
207: print $fh $body;
208: $fh->close;
209: }
1.53 www 210: }
211:
212: # ==================================================== Send notification emails
213:
214: sub sendnotification {
215: my ($to,$touname,$toudom,$subj,$crit)=@_;
216: my $sender=$ENV{'environment.firstname'}.' '.$ENV{'environment.lastname'};
217: my $critical=($crit?' critical':'');
218: my $url='http://'.
219: $Apache::lonnet::hostname{&Apache::lonnet::homeserver($touname,$toudom)}.
1.54 www 220: '/adm/email?username='.$touname.'&domain='.$toudom;
1.53 www 221: my $body=(<<ENDMSG);
222: You received a$critical message from $sender in LON-CAPA. The subject is
223:
224: $subj
225:
226: Use
227:
228: $url
229:
230: to access this message.
231: ENDMSG
232: &sendemail($to,'New'.$critical.' message from '.$sender,$body);
233: }
1.40 www 234: # ============================================================= Check for email
235:
236: sub newmail {
237: if ((time-$ENV{'user.mailcheck.time'})>300) {
238: my %what=&Apache::lonnet::get('email_status',['recnewemail']);
239: &Apache::lonnet::appenv('user.mailcheck.time'=>time);
240: if ($what{'recnewemail'}>0) { return 1; }
241: }
242: return 0;
243: }
244:
1.1 www 245: # =============================== Automated message to the author of a resource
246:
1.58 bowersj2 247: =pod
248:
249: =item * B<author_res_msg($filename, $message)>: Sends message $message to the owner
250: of the resource with the URI $filename.
251:
252: =cut
253:
1.1 www 254: sub author_res_msg {
255: my ($filename,$message)=@_;
1.2 www 256: unless ($message) { return 'empty'; }
1.1 www 257: $filename=&Apache::lonnet::declutter($filename);
1.72 www 258: my ($domain,$author,@dummy)=split(/\//,$filename);
1.1 www 259: my $homeserver=&Apache::lonnet::homeserver($author,$domain);
260: if ($homeserver ne 'no_host') {
261: my $id=unpack("%32C*",$message);
1.2 www 262: my $msgid;
1.72 www 263: ($msgid,$message)=&packagemsg($filename,$message);
1.3 www 264: return &Apache::lonnet::reply('put:'.$domain.':'.$author.
1.72 www 265: ':nohist_res_msgs:'.
266: &Apache::lonnet::escape($filename.'_'.$id).'='.
267: &Apache::lonnet::escape($message),$homeserver);
1.1 www 268: }
1.2 www 269: return 'no_host';
1.73 www 270: }
271:
272: # =========================================== Retrieve author resource messages
273:
274: sub retrieve_author_res_msg {
1.75 www 275: my $url=shift;
1.73 www 276: $url=&Apache::lonnet::declutter($url);
1.75 www 277: my ($domain,$author)=($url=~/^(\w+)\/(\w+)\//);
1.76 www 278: my %errormsgs=&Apache::lonnet::dump('nohist_res_msgs',$domain,$author);
1.73 www 279: my $msgs='';
280: foreach (keys %errormsgs) {
281: if ($_=~/^\Q$url\E\_\d+$/) {
282: my %content=&unpackagemsg($errormsgs{$_});
1.74 www 283: $msgs.='<p><img src="/adm/lonMisc/bomb.gif" /><b>'.
284: $content{'time'}.'</b>: '.$content{'message'}.
285: '<br /></p>';
1.73 www 286: }
287: }
288: return $msgs;
289: }
290:
291:
292: # =============================== Delete all author messages related to one URL
293:
294: sub del_url_author_res_msg {
1.75 www 295: my $url=shift;
1.73 www 296: $url=&Apache::lonnet::declutter($url);
1.77 ! www 297: my ($domain,$author)=($url=~/^(\w+)\/(\w+)\//);
! 298: my @delmsgs=();
! 299: foreach (&Apache::lonnet::getkeys('nohist_res_msgs',$domain,$author)) {
! 300: if ($_=~/^\Q$url\E\_\d+$/) {
! 301: push (@delmsgs,$_);
! 302: }
! 303: }
! 304: return &Apache::lonnet::del('nohist_res_msgs',\@delmsgs,$domain,$author);
1.73 www 305: }
306:
307: # ================= Return hash with URLs for which there is a resource message
308:
309: sub all_url_author_res_msg {
310: my ($author,$domain)=@_;
1.75 www 311: my %returnhash=();
1.76 www 312: foreach (&Apache::lonnet::getkeys('nohist_res_msgs',$domain,$author)) {
1.75 www 313: $_=~/^(.+)\_\d+/;
314: $returnhash{$1}=1;
315: }
316: return %returnhash;
1.1 www 317: }
318:
319: # ================================================== Critical message to a user
320:
1.38 www 321: sub user_crit_msg_raw {
1.24 www 322: my ($user,$domain,$subject,$message,$sendback)=@_;
1.2 www 323: # Check if allowed missing
324: my $status='';
325: my $msgid='undefined';
326: unless (($message)&&($user)&&($domain)) { $status='empty'; };
327: my $homeserver=&Apache::lonnet::homeserver($user,$domain);
328: if ($homeserver ne 'no_host') {
1.3 www 329: ($msgid,$message)=&packagemsg($subject,$message);
1.24 www 330: if ($sendback) { $message.='<sendback>true</sendback>'; }
1.4 www 331: $status=&Apache::lonnet::critical(
332: 'put:'.$domain.':'.$user.':critical:'.
333: &Apache::lonnet::escape($msgid).'='.
334: &Apache::lonnet::escape($message),$homeserver);
1.45 www 335: if ($ENV{'request.course.id'}) {
336: &user_normal_msg_raw(
337: $ENV{'course.'.$ENV{'request.course.id'}.'.num'},
338: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
339: 'Critical ['.$user.':'.$domain.']',
340: $message);
341: }
1.2 www 342: } else {
343: $status='no_host';
344: }
1.53 www 345: # Notifications
346: my %userenv = &Apache::lonnet::get('environment',['critnotification'],
347: $domain,$user);
348: if ($userenv{'critnotification'}) {
349: &sendnotification($userenv{'critnotification'},$user,$domain,$subject,1);
350: }
351: # Log this
1.2 www 352: &Apache::lonnet::logthis(
1.4 www 353: 'Sending critical email '.$msgid.
1.2 www 354: ', log status: '.
355: &Apache::lonnet::log($ENV{'user.domain'},$ENV{'user.name'},
356: $ENV{'user.home'},
357: 'Sending critical '.$msgid.' to '.$user.' at '.$domain.' with status: '
1.4 www 358: .$status));
1.2 www 359: return $status;
360: }
361:
1.38 www 362: # New routine that respects "forward" and calls old routine
363:
1.58 bowersj2 364: =pod
365:
366: =item * B<user_crit_msg($user, $domain, $subject, $message, $sendback)>: Sends
367: a critical message $message to the $user at $domain. If $sendback is true,
368: a reciept will be sent to the current user when $user recieves the message.
369:
370: =cut
371:
1.38 www 372: sub user_crit_msg {
373: my ($user,$domain,$subject,$message,$sendback)=@_;
374: my $status='';
375: my %userenv = &Apache::lonnet::get('environment',['msgforward'],
376: $domain,$user);
377: my $msgforward=$userenv{'msgforward'};
378: if ($msgforward) {
379: foreach (split(/\,/,$msgforward)) {
380: my ($forwuser,$forwdomain)=split(/\:/,$_);
381: $status.=
382: &user_crit_msg_raw($forwuser,$forwdomain,$subject,$message,
383: $sendback).' ';
384: }
385: } else {
386: $status=&user_crit_msg_raw($user,$domain,$subject,$message,$sendback);
387: }
388: return $status;
389: }
390:
1.2 www 391: # =================================================== Critical message received
392:
393: sub user_crit_received {
1.12 www 394: my $msgid=shift;
395: my %message=&Apache::lonnet::get('critical',[$msgid]);
1.52 www 396: my %contents=&unpackagemsg($message{$msgid},1);
1.24 www 397: my $status='rec: '.($contents{'sendback'}?
1.5 www 398: &user_normal_msg($contents{'sendername'},$contents{'senderdomain'},
1.67 www 399: &mt('Receipt').': '.$ENV{'user.name'}.' at '.$ENV{'user.domain'},
400: &mt('User').' '.$ENV{'user.name'}.' '.&mt('at').' '.$ENV{'user.domain'}.
1.42 www 401: ' acknowledged receipt of message'."\n".' "'.
1.67 www 402: $contents{'subject'}.'"'."\n".&mt('dated').' '.
1.42 www 403: $contents{'time'}.".\n"
404: ):'no msg req');
1.5 www 405: $status.=' trans: '.
1.12 www 406: &Apache::lonnet::put(
407: 'nohist_email',{$contents{'msgid'} => $message{$msgid}});
1.5 www 408: $status.=' del: '.
1.9 albertel 409: &Apache::lonnet::del('critical',[$contents{'msgid'}]);
1.5 www 410: &Apache::lonnet::log($ENV{'user.domain'},$ENV{'user.name'},
411: $ENV{'user.home'},'Received critical message '.
412: $contents{'msgid'}.
413: ', '.$status);
1.12 www 414: return $status;
1.2 www 415: }
416:
417: # ======================================================== Normal communication
418:
1.38 www 419: sub user_normal_msg_raw {
1.51 www 420: my ($user,$domain,$subject,$message,$citation,$baseurl,$attachmenturl)=@_;
1.2 www 421: # Check if allowed missing
422: my $status='';
423: my $msgid='undefined';
424: unless (($message)&&($user)&&($domain)) { $status='empty'; };
425: my $homeserver=&Apache::lonnet::homeserver($user,$domain);
426: if ($homeserver ne 'no_host') {
1.51 www 427: ($msgid,$message)=&packagemsg($subject,$message,$citation,$baseurl,
428: $attachmenturl);
1.4 www 429: $status=&Apache::lonnet::critical(
430: 'put:'.$domain.':'.$user.':nohist_email:'.
431: &Apache::lonnet::escape($msgid).'='.
432: &Apache::lonnet::escape($message),$homeserver);
1.40 www 433: &Apache::lonnet::put
434: ('email_status',{'recnewemail'=>time},$domain,$user);
1.2 www 435: } else {
436: $status='no_host';
1.53 www 437: }
438: # Notifications
439: my %userenv = &Apache::lonnet::get('environment',['notification'],
440: $domain,$user);
441: if ($userenv{'notification'}) {
442: &sendnotification($userenv{'notification'},$user,$domain,$subject,0);
1.2 www 443: }
444: &Apache::lonnet::log($ENV{'user.domain'},$ENV{'user.name'},
445: $ENV{'user.home'},
446: 'Sending '.$msgid.' to '.$user.' at '.$domain.' with status: '.$status);
447: return $status;
448: }
1.38 www 449:
450: # New routine that respects "forward" and calls old routine
451:
1.58 bowersj2 452: =pod
453:
454: =item * B<user_normal_msg($user, $domain, $subject, $message,
455: $citation, $baseurl, $attachmenturl)>: Sends a message to the
456: $user at $domain, with subject $subject and message $message.
457:
458: =cut
459:
1.38 www 460: sub user_normal_msg {
1.52 www 461: my ($user,$domain,$subject,$message,$citation,$baseurl,$attachmenturl)=@_;
1.38 www 462: my $status='';
463: my %userenv = &Apache::lonnet::get('environment',['msgforward'],
464: $domain,$user);
465: my $msgforward=$userenv{'msgforward'};
466: if ($msgforward) {
467: foreach (split(/\,/,$msgforward)) {
468: my ($forwuser,$forwdomain)=split(/\:/,$_);
469: $status.=
470: &user_normal_msg_raw($forwuser,$forwdomain,$subject,$message,
1.52 www 471: $citation,$baseurl,$attachmenturl).' ';
1.38 www 472: }
473: } else {
1.49 albertel 474: $status=&user_normal_msg_raw($user,$domain,$subject,$message,
1.52 www 475: $citation,$baseurl,$attachmenturl);
1.38 www 476: }
477: return $status;
478: }
479:
1.2 www 480:
1.7 www 481: # =============================================================== Status Change
482:
483: sub statuschange {
484: my ($msgid,$newstatus)=@_;
1.8 albertel 485: my %status=&Apache::lonnet::get('email_status',[$msgid]);
1.7 www 486: if ($status{$msgid}=~/^error\:/) { $status{$msgid}=''; }
487: unless ($status{$msgid}) { $status{$msgid}='new'; }
488: unless (($status{$msgid} eq 'replied') ||
489: ($status{$msgid} eq 'forwarded')) {
1.10 albertel 490: &Apache::lonnet::put('email_status',{$msgid => $newstatus});
1.7 www 491: }
1.14 www 492: if (($newstatus eq 'deleted') || ($newstatus eq 'new')) {
493: &Apache::lonnet::put('email_status',{$msgid => $newstatus});
494: }
1.7 www 495: }
1.14 www 496:
1.17 www 497: # ======================================================= Display a course list
498:
499: sub discourse {
500: my $r=shift;
501: my %courselist=&Apache::lonnet::dump(
502: 'classlist',
503: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
504: $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
505: my $now=time;
1.67 www 506: my %lt=&Apache::lonlocal::texthash('cfa' => 'Check for All',
507: 'cfs' => 'Check for Section/Group',
508: 'cfn' => 'Check for None');
1.17 www 509: $r->print(<<ENDDISHEADER);
510: <input type=hidden name=sendmode value=group>
511: <script>
512: function checkall() {
513: for (i=0; i<document.forms.compemail.elements.length; i++) {
514: if
515: (document.forms.compemail.elements[i].name.indexOf('send_to_')==0) {
516: document.forms.compemail.elements[i].checked=true;
517: }
518: }
519: }
520:
1.19 www 521: function checksec() {
522: for (i=0; i<document.forms.compemail.elements.length; i++) {
523: if
524: (document.forms.compemail.elements[i].name.indexOf
525: ('send_to_&&&'+document.forms.compemail.chksec.value)==0) {
526: document.forms.compemail.elements[i].checked=true;
527: }
528: }
529: }
530:
1.17 www 531: function uncheckall() {
532: for (i=0; i<document.forms.compemail.elements.length; i++) {
533: if
534: (document.forms.compemail.elements[i].name.indexOf('send_to_')==0) {
535: document.forms.compemail.elements[i].checked=false;
536: }
537: }
538: }
539: </script>
1.67 www 540: <input type=button onClick="checkall()" value="$lt{'cfa'}">
541: <input type=button onClick="checksec()" value="$lt{'cfs'}">
1.19 www 542: <input type=text size=5 name=chksec>
1.67 www 543: <input type=button onClick="uncheckall()" value="$lt{'cfn'}">
1.17 www 544: <p>
545: ENDDISHEADER
1.61 www 546: my %coursepersonnel=
547: &Apache::lonnet::get_course_adv_roles();
548: foreach my $role (sort keys %coursepersonnel) {
549: foreach (split(/\,/,$coursepersonnel{$role})) {
550: my ($puname,$pudom)=split(/\:/,$_);
551: $r->print(
552: '<br /><input type="checkbox" name="send_to_&&&&&&_'.
553: $puname.':'.$pudom.'" /> '.
554: &Apache::loncommon::plainname($puname,
555: $pudom).' ('.$_.'), <i>'.$role.'</i>');
556: }
557: }
558:
1.28 harris41 559: foreach (sort keys %courselist) {
1.17 www 560: my ($end,$start)=split(/\:/,$courselist{$_});
561: my $active=1;
562: if (($end) && ($now>$end)) { $active=0; }
563: if ($active) {
564: my ($sname,$sdom)=split(/\:/,$_);
565: my %reply=&Apache::lonnet::get('environment',
566: ['firstname','middlename','lastname','generation'],
567: $sdom,$sname);
1.19 www 568: my $section=&Apache::lonnet::usection
569: ($sdom,$sname,$ENV{'request.course.id'});
570: $r->print(
571: '<br><input type=checkbox name="send_to_&&&'.$section.'&&&_'.$_.'"> '.
1.17 www 572: $reply{'firstname'}.' '.
573: $reply{'middlename'}.' '.
574: $reply{'lastname'}.' '.
575: $reply{'generation'}.
1.19 www 576: ' ('.$_.') '.$section);
1.17 www 577: }
1.28 harris41 578: }
1.17 www 579: }
580:
1.13 www 581: # ==================================================== Display Critical Message
1.5 www 582:
1.12 www 583: sub discrit {
584: my $r=shift;
1.67 www 585: my $header = '<h1><font color=red>'.&mt('Critical Messages').'</font></h1>'.
1.30 matthew 586: '<form action=/adm/email method=post>'.
587: '<input type=hidden name=confirm value=true>';
588: my %what=&Apache::lonnet::dump('critical');
589: my $result = '';
590: foreach (sort keys %what) {
591: my %content=&unpackagemsg($what{$_});
592: next if ($content{'senderdomain'} eq '');
593: $content{'message'}=~s/\n/\<br\>/g;
1.67 www 594: $result.='<hr>'.&mt('From').': <b>'.
1.37 www 595: &Apache::loncommon::aboutmewrapper(
596: &Apache::loncommon::plainname($content{'sendername'},$content{'senderdomain'}),$content{'sendername'},$content{'senderdomain'}).'</b> ('.
597: $content{'sendername'}.'@'.
598: $content{'senderdomain'}.') '.$content{'time'}.
1.67 www 599: '<br>'.&mt('Subject').': '.$content{'subject'}.
1.36 www 600: '<br><blockquote>'.
601: &Apache::lontexconvert::msgtexconverted($content{'message'}).
602: '</blockquote>'.
1.67 www 603: '<input type=submit name="rec_'.$_.'" value="'.&mt('Confirm Receipt').'">'.
1.30 matthew 604: '<input type=submit name="reprec_'.$_.'" '.
1.67 www 605: 'value="'.&mt('Confirm Receipt and Reply').'">';
1.30 matthew 606: }
607: # Check to see if there were any messages.
608: if ($result eq '') {
1.67 www 609: $result = "<h2>".&mt('You have no critical messages.')."</h2>".
610: '<a href="/adm/roles">'.&mt('Select a course').'</a>';
1.30 matthew 611: } else {
612: $r->print($header);
613: }
614: $r->print($result);
615: $r->print('<input type=hidden name="displayedcrit" value="true"></form>');
1.12 www 616: }
617:
1.13 www 618: # =============================================================== Compose reply
619:
620: sub comprep {
621: my ($r,$msgid)=@_;
622: my %message=&Apache::lonnet::get('nohist_email',[$msgid]);
1.52 www 623: my %content=&unpackagemsg($message{$msgid},1);
1.13 www 624: my $quotemsg='> '.$content{'message'};
625: $quotemsg=~s/\r/\n/g;
626: $quotemsg=~s/\f/\n/g;
627: $quotemsg=~s/\n+/\n\> /g;
1.57 www 628: my $torepl=&Apache::loncommon::aboutmewrapper(
629: &Apache::loncommon::plainname($content{'sendername'},$content{'senderdomain'}),$content{'sendername'},$content{'senderdomain'}).' ('.
630: $content{'sendername'}.'@'.
631: $content{'senderdomain'}.')';
1.67 www 632: my $subject=&mt('Re').': '.$content{'subject'};
1.13 www 633: my $dispcrit='';
634: if (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
1.35 bowersj2 635: my $crithelp = Apache::loncommon::help_open_topic("Course_Critical_Message");
1.13 www 636: $dispcrit=
1.67 www 637: '<input type=checkbox name=critmsg> '.&mt('Send as critical message').' ' . $crithelp .
1.35 bowersj2 638: '<br>'.
1.67 www 639: '<input type=checkbox name=sendbck> '.&mt('Send as critical message').' ' .
640: &mt('and return receipt') . $crithelp . '<p>';
1.13 www 641: }
1.69 www 642: my %lt=&Apache::lonlocal::texthash(
643: 'to' => 'To',
644: 'sb' => 'Subject',
645: 'sr' => 'Send Reply',
646: 'ca' => 'Cancel'
647: );
1.13 www 648: $r->print(<<"ENDREPLY");
1.69 www 649: <form action="/adm/email" method="post">
650: <input type="hidden" name="sendreply" value="$msgid">
651: $lt{'to'}: $torepl<br />
652: $lt{'sb'}: <input type="text" size=50 name="subject" value="$subject"><p>
653: <textarea name="message" cols="84" rows="10" wrap="hard">
1.13 www 654: $quotemsg
1.69 www 655: </textarea></p><br />
1.13 www 656: $dispcrit
1.69 www 657: <input type="submit" name="send" value="$lt{'sr'}" />
658: <input type="submit" name="cancel" value="$lt{'ca'}"/ >
1.13 www 659: </form>
660: ENDREPLY
661: }
662:
1.65 www 663: sub sortedmessages {
664: my @messages = &Apache::lonnet::getkeys('nohist_email');
665: #unpack the varibles and repack into temp for sorting
666: my @temp;
667: foreach (@messages) {
668: my $msgid=&Apache::lonnet::escape($_);
669: my ($sendtime,$shortsubj,$fromname,$fromdomain,$status)=
670: &Apache::lonmsg::unpackmsgid($msgid);
671: my @temp1 = ($sendtime,$shortsubj,$fromname,$fromdomain,$status,
672: $msgid);
673: push @temp ,\@temp1;
674: }
675: #default sort
676: @temp = sort {$a->[0] <=> $b->[0]} @temp;
677: if ($ENV{'form.sortedby'} eq "date"){
678: @temp = sort {$a->[0] <=> $b->[0]} @temp;
679: }
680: if ($ENV{'form.sortedby'} eq "revdate"){
681: @temp = sort {$b->[0] <=> $a->[0]} @temp;
682: }
683: if ($ENV{'form.sortedby'} eq "user"){
684: @temp = sort {lc($a->[2]) cmp lc($b->[2])} @temp;
685: }
686: if ($ENV{'form.sortedby'} eq "revuser"){
687: @temp = sort {lc($b->[2]) cmp lc($a->[2])} @temp;
688: }
689: if ($ENV{'form.sortedby'} eq "domain"){
690: @temp = sort {$a->[3] cmp $b->[3]} @temp;
691: }
692: if ($ENV{'form.sortedby'} eq "revdomain"){
693: @temp = sort {$b->[3] cmp $a->[3]} @temp;
694: }
695: if ($ENV{'form.sortedby'} eq "subject"){
696: @temp = sort {lc($a->[1]) cmp lc($b->[1])} @temp;
697: }
698: if ($ENV{'form.sortedby'} eq "revsubject"){
699: @temp = sort {lc($b->[1]) cmp lc($a->[1])} @temp;
700: }
701: if ($ENV{'form.sortedby'} eq "status"){
702: @temp = sort {$a->[4] cmp $b->[4]} @temp;
703: }
704: if ($ENV{'form.sortedby'} eq "revstatus"){
705: @temp = sort {$b->[4] cmp $a->[4]} @temp;
706: }
707: return @temp;
708: }
709:
1.15 www 710: # ======================================================== Display all messages
711:
1.14 www 712: sub disall {
713: my $r=shift;
1.29 www 714: $r->print(<<ENDDISHEADER);
715: <script>
716: function checkall() {
717: for (i=0; i<document.forms.disall.elements.length; i++) {
718: if
719: (document.forms.disall.elements[i].name.indexOf('delmark_')==0) {
720: document.forms.disall.elements[i].checked=true;
721: }
722: }
723: }
724:
725: function uncheckall() {
726: for (i=0; i<document.forms.disall.elements.length; i++) {
727: if
728: (document.forms.disall.elements[i].name.indexOf('delmark_')==0) {
729: document.forms.disall.elements[i].checked=false;
730: }
731: }
732: }
733: </script>
734: ENDDISHEADER
1.67 www 735: $r->print('<h1>'.&mt('Display All Messages').'</h1><form method=post name=disall '.
1.63 albertel 736: 'action="/adm/email">'.
737: '<table border=2><tr><th colspan=2> </th><th>');
1.62 www 738: if ($ENV{'form.sortedby'} eq "revdate") {
1.67 www 739: $r->print('<a href = "?sortedby=date">'.&mt('Date').'</a></th>');
1.62 www 740: } else {
1.67 www 741: $r->print('<a href = "?sortedby=revdate">'.&mt('Date').'</a></th>');
1.62 www 742: }
743: $r->print('<th>');
744: if ($ENV{'form.sortedby'} eq "revuser") {
1.67 www 745: $r->print('<a href = "?sortedby=user">'.&mt('Username').'</a>');
1.62 www 746: } else {
1.67 www 747: $r->print('<a href = "?sortedby=revuser">'.&mt('Username').'</a>');
1.62 www 748: }
749: $r->print('</th><th>');
750: if ($ENV{'form.sortedby'} eq "revdomain") {
1.67 www 751: $r->print('<a href = "?sortedby=domain">'.&mt('Domain').'</a>');
1.62 www 752: } else {
1.67 www 753: $r->print('<a href = "?sortedby=revdomain">'.&mt('Domain').'</a>');
1.62 www 754: }
755: $r->print('</th><th>');
756: if ($ENV{'form.sortedby'} eq "revsubject") {
1.67 www 757: $r->print('<a href = "?sortedby=subject">'.&mt('Subject').'</a>');
1.62 www 758: } else {
1.67 www 759: $r->print('<a href = "?sortedby=revsubject">'.&mt('Subject').'</a>');
1.62 www 760: }
761: $r->print('</th><th>');
762: if ($ENV{'form.sortedby'} eq "revstatus") {
1.67 www 763: $r->print('<a href = "?sortedby=status">'.&mt('Status').'</th>');
1.62 www 764: } else {
1.67 www 765: $r->print('<a href = "?sortedby=revstatus">'.&mt('Status').'</th>');
1.62 www 766: }
767: $r->print('</tr>');
1.65 www 768: my @temp=sortedmessages();
1.63 albertel 769: foreach (@temp){
1.64 www 770: my ($sendtime,$shortsubj,$fromname,$fromdomain,$status,$origID)= @$_;
1.63 albertel 771: if (($status ne 'deleted') && defined($sendtime) && $sendtime!~/error/) {
1.39 albertel 772: if ($status eq 'new') {
773: $r->print('<tr bgcolor="#FFBB77">');
774: } elsif ($status eq 'read') {
775: $r->print('<tr bgcolor="#BBBB77">');
776: } elsif ($status eq 'replied') {
1.62 www 777: $r->print('<tr bgcolor="#AAAA88">');
1.39 albertel 778: } else {
779: $r->print('<tr bgcolor="#99BBBB">');
780: }
1.65 www 781: $r->print('<td><a href="/adm/email?display='.$origID.$sqs.
1.67 www 782: '">'.&mt('Open').'</a></td><td><a href="/adm/email?markdel='.$origID.$sqs.
783: '">'.&mt('Delete').'</a><input type=checkbox name="delmark_'.$origID.'"></td>'.
1.66 www 784: '<td>'.&Apache::lonlocal::locallocaltime($sendtime).'</td><td>'.
1.39 albertel 785: $fromname.'</td><td>'.$fromdomain.'</td><td>'.
1.14 www 786: &Apache::lonnet::unescape($shortsubj).'</td><td>'.
787: $status.'</td></tr>');
1.63 albertel 788: }
789: }
790: $r->print('</table><p>'.
1.67 www 791: '<a href="javascript:checkall()">'.&mt('Check All').'</a> '.
792: '<a href="javascript:uncheckall()">'.&mt('Uncheck All').'</a><p>'.
1.65 www 793: '<input type="hidden" name="sortedby" value="'.$ENV{'form.sortedby'}.'" />'.
1.67 www 794: '<input type=submit name="markeddel" value="'.&mt('Delete Checked').'">'.
1.25 www 795: '</form></body></html>');
1.14 www 796: }
797:
1.15 www 798: # ============================================================== Compose output
799:
800: sub compout {
1.17 www 801: my ($r,$forwarding,$broadcast)=@_;
1.15 www 802: my $dispcrit='';
803: my $dissub='';
804: my $dismsg='';
1.67 www 805: my $func=&mt('Send New');
1.69 www 806: my %lt=&Apache::lonlocal::texthash('us' => 'Username',
807: 'do' => 'Domain',
808: 'ad' => 'Additional Recipients',
809: 'sb' => 'Subject',
810: 'ca' => 'Cancel',
811: 'ma' => 'Mail');
812:
813: if (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
1.35 bowersj2 814: my $crithelp = Apache::loncommon::help_open_topic("Course_Critical_Message");
1.15 www 815: $dispcrit=
1.69 www 816: '<input type="checkbox" name="critmsg"> '.&mt('Send as critical message').' ' . $crithelp .
1.35 bowersj2 817: '<br>'.
1.69 www 818: '<input type="checkbox" name="sendbck"> '.&mt('Send as critical message').' ' .
1.67 www 819: &mt('and return receipt') . $crithelp . '<p>';
1.15 www 820: }
821: if ($forwarding) {
1.69 www 822: $dispcrit.='<input type="hidden" name="forwid" value="'.
1.15 www 823: $forwarding.'">';
1.67 www 824: $func=&mt('Forward');
1.15 www 825: my %message=&Apache::lonnet::get('nohist_email',[$forwarding]);
826: my %content=&unpackagemsg($message{$forwarding});
827:
1.67 www 828: $dissub=&mt('Forwarding').': '.$content{'subject'};
829: $dismsg=&mt('Forwarded message from').' '.
830: $content{'sendername'}.' '.&mt('at').' '.$content{'senderdomain'};
1.15 www 831: }
832: my $defdom=$ENV{'user.domain'};
1.37 www 833: if ($ENV{'form.recdom'}) { $defdom=$ENV{'form.recdom'}; }
1.22 www 834: $r->print(
1.31 matthew 835: '<form action="/adm/email" name="compemail" method="post"'.
836: ' enctype="multipart/form-data">'."\n".
837: '<input type="hidden" name="sendmail" value="on">'."\n".
838: '<table>');
1.22 www 839: unless (($broadcast eq 'group') || ($broadcast eq 'upload')) {
1.31 matthew 840: my $domform = &Apache::loncommon::select_dom_form($defdom,'recdomain');
1.46 www 841: my $selectlink=&Apache::loncommon::selectstudent_link
842: ('compemail','recuname','recdomain');
1.17 www 843: $r->print(<<"ENDREC");
1.15 www 844: <table>
1.69 www 845: <tr><td>$lt{'us'}:</td><td><input type="text" size="12" name="recuname" value="$ENV{'form.recname'}"></td><td rowspan="2">$selectlink</td></tr>
846: <tr><td>$lt{'do'}:</td>
1.31 matthew 847: <td>$domform</td></tr>
1.17 www 848: ENDREC
849: }
1.55 bowersj2 850: my $latexHelp = Apache::loncommon::helpLatexCheatsheet();
1.31 matthew 851: if ($broadcast ne 'upload') {
1.22 www 852: $r->print(<<"ENDCOMP");
1.69 www 853: <tr><td>$lt{'ad'}<br /><tt>username\@domain,username\@domain, ...
1.20 www 854: </tt></td><td>
1.69 www 855: <input type="text" size="50" name="additionalrec"></td></tr>
856: <tr><td>$lt{'sb'}:</td><td><input type="text" size="50" name="subject" value="$dissub">
1.15 www 857: </td></tr></table>
1.55 bowersj2 858: $latexHelp
1.69 www 859: <textarea name="message" cols="80" rows="10" wrap="hard">$dismsg
860: </textarea></p><br />
1.15 www 861: $dispcrit
1.69 www 862: <input type="submit" name="send" value="$func $lt{'ma'}" />
863: <input type="submit" name="cancel" value="$lt{'ca'}" />
1.15 www 864: ENDCOMP
1.31 matthew 865: } else { # $broadcast is 'upload'
1.22 www 866: $r->print(<<ENDUPLOAD);
867: <input type=hidden name=sendmode value=upload>
868: <h3>Generate messages from a file</h3>
1.31 matthew 869: <p>
1.22 www 870: Subject: <input type=text size=50 name=subject>
1.31 matthew 871: </p>
872: <p>General message text<br />
873: <textarea name=message cols=60 rows=10 wrap=hard>$dismsg
874: </textarea></p>
875: <p>
876: The file format for the uploaded portion of the message is:
1.22 www 877: <pre>
878: username1\@domain1: text
879: username2\@domain2: text
1.31 matthew 880: username3\@domain1: text
1.22 www 881: </pre>
1.31 matthew 882: </p>
883: <p>
1.22 www 884: The messages will be assembled from all lines with the respective
1.31 matthew 885: <tt>username\@domain</tt>, and appended to the general message text.</p>
886: <p>
1.22 www 887: <input type=file name=upfile size=20><p>
888: $dispcrit
889: <input type=submit value="Upload and send">
890: ENDUPLOAD
891: }
1.17 www 892: if ($broadcast eq 'group') {
893: &discourse;
894: }
895: $r->print('</form>');
1.15 www 896: }
897:
1.45 www 898: # ---------------------------------------------------- Display all face to face
899:
900: sub disfacetoface {
901: my ($r,$user,$domain)=@_;
902: unless ($ENV{'request.course.id'}) { return; }
903: unless (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
904: return;
905: }
906: my %records=&Apache::lonnet::dump('nohist_email',
907: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
908: $ENV{'course.'.$ENV{'request.course.id'}.'.num'},
909: '%255b'.$user.'%253a'.$domain.'%255d');
910: my $result='';
911: foreach (sort keys %records) {
912: my %content=&unpackagemsg($records{$_});
913: next if ($content{'senderdomain'} eq '');
914: $content{'message'}=~s/\n/\<br\>/g;
915: if ($content{'subject'}=~/^Record/) {
1.69 www 916: $result.='<h3>'.&mt('Record').'</h3>';
1.45 www 917: } else {
1.69 www 918: $result.='<h3>'.&mt('Sent Message').'</h3>';
1.45 www 919: %content=&unpackagemsg($content{'message'});
920: $content{'message'}=
921: '<b>Subject: '.$content{'subject'}.'</b><br />'.
922: $content{'message'};
923: }
1.69 www 924: $result.=&mt('By').': <b>'.
1.45 www 925: &Apache::loncommon::aboutmewrapper(
926: &Apache::loncommon::plainname($content{'sendername'},$content{'senderdomain'}),$content{'sendername'},$content{'senderdomain'}).'</b> ('.
927: $content{'sendername'}.'@'.
928: $content{'senderdomain'}.') '.$content{'time'}.
929: '<br><blockquote>'.
930: &Apache::lontexconvert::msgtexconverted($content{'message'}).
931: '</blockquote>';
932: }
933: # Check to see if there were any messages.
934: if ($result eq '') {
1.46 www 935: $r->print("<p><b>No notes, face-to-face discussion records, or critical messages in this course.</b></p>");
1.45 www 936: } else {
937: $r->print($result);
938: }
939: }
940:
1.44 www 941: # ---------------------------------------------------------------- Face to face
942:
943: sub facetoface {
944: my ($r,$stage)=@_;
945: unless (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
946: return;
947: }
1.46 www 948: # from query string
949: if ($ENV{'form.recname'}) { $ENV{'form.recuname'}=$ENV{'form.recname'}; }
950: if ($ENV{'form.recdom'}) { $ENV{'form.recdomain'}=$ENV{'form.recdom'}; }
951:
1.44 www 952: my $defdom=$ENV{'user.domain'};
1.46 www 953: # already filled in
1.44 www 954: if ($ENV{'form.recdomain'}) { $defdom=$ENV{'form.recdomain'}; }
1.46 www 955: # generate output
1.44 www 956: my $domform = &Apache::loncommon::select_dom_form($defdom,'recdomain');
1.46 www 957: my $stdbrws = &Apache::loncommon::selectstudent_link
958: ('stdselect','recuname','recdomain');
1.44 www 959: $r->print(<<"ENDTREC");
1.46 www 960: <h3>User Notes, Records of Face-To-Face Discussions, and Critical Messages in Course</h3>
961: <form method="post" action="/adm/email" name="stdselect">
1.44 www 962: <input type="hidden" name="recordftf" value="retrieve" />
963: <table>
964: <tr><td>Username:</td><td><input type=text size=12 name=recuname value="$ENV{'form.recuname'}"></td>
965: <td rowspan="2">
1.46 www 966: $stdbrws
1.44 www 967: <input type="submit" value="Retrieve discussion and message records"></td>
968: </tr>
969: <tr><td>Domain:</td>
970: <td>$domform</td></tr>
971: </table>
972: </form>
973: ENDTREC
974: if (($stage ne 'query') &&
975: ($ENV{'form.recdomain'}) && ($ENV{'form.recuname'})) {
976: chomp($ENV{'form.newrecord'});
977: if ($ENV{'form.newrecord'}) {
1.45 www 978: &user_normal_msg_raw(
979: $ENV{'course.'.$ENV{'request.course.id'}.'.num'},
980: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
981: 'Record ['.$ENV{'form.recuname'}.':'.$ENV{'form.recdomain'}.']',
982: $ENV{'form.newrecord'});
1.44 www 983: }
1.46 www 984: $r->print('<h3>'.&Apache::loncommon::plainname($ENV{'form.recuname'},
985: $ENV{'form.recdomain'}).'</h3>');
1.45 www 986: &disfacetoface($r,$ENV{'form.recuname'},$ENV{'form.recdomain'});
1.44 www 987: $r->print(<<ENDRHEAD);
988: <form method="post" action="/adm/email">
989: <input name="recdomain" value="$ENV{'form.recdomain'}" type="hidden" />
990: <input name="recuname" value="$ENV{'form.recuname'}" type="hidden" />
991: ENDRHEAD
992: $r->print(<<ENDBFORM);
993: <hr />New Record (record is visible to course faculty and staff)<br />
994: <textarea name="newrecord" cols="80" rows="10" wrap="hard"></textarea>
1.45 www 995: <br />
996: <input type="hidden" name="recordftf" value="post" />
997: <input type="submit" value="Post this record" />
1.44 www 998: </form>
999: ENDBFORM
1000: }
1001: }
1002:
1.13 www 1003: # ===================================================================== Handler
1004:
1.5 www 1005: sub handler {
1006: my $r=shift;
1007:
1008: # ----------------------------------------------------------- Set document type
1009:
1.67 www 1010: &Apache::loncommon::content_type($r,'text/html');
1.5 www 1011: $r->send_http_header;
1012:
1013: return OK if $r->header_only;
1014:
1.6 www 1015: # --------------------------- Get query string for limited number of parameters
1.32 matthew 1016: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1017: ['display','replyto','forward','markread','markdel','markunread',
1.44 www 1018: 'sendreply','compose','sendmail','critical','recname','recdom',
1.62 www 1019: 'recordftf','sortedby']);
1.65 www 1020: $sqs='&sortedby='.$ENV{'form.sortedby'};
1.40 www 1021: # ------------------------------------------------------ They checked for email
1022: &Apache::lonnet::put('email_status',{'recnewemail'=>0});
1.5 www 1023: # --------------------------------------------------------------- Render Output
1.49 albertel 1024: if (!$ENV{'form.display'}) {
1025: $r->print('<html><head><title>EMail and Messaging</title>'.
1026: &Apache::loncommon::studentbrowser_javascript().'</head>'.
1027: &Apache::loncommon::bodytag('EMail and Messages'));
1028: }
1.6 www 1029: if ($ENV{'form.display'}) {
1.7 www 1030: my $msgid=$ENV{'form.display'};
1031: &statuschange($msgid,'read');
1.8 albertel 1032: my %message=&Apache::lonnet::get('nohist_email',[$msgid]);
1.7 www 1033: my %content=&unpackagemsg($message{$msgid});
1.65 www 1034: # info to generate "next" and "previous" buttons
1035: my @messages=&sortedmessages();
1036: my $counter=0;
1037: $r->print('<pre>');
1038: my $escmsgid=&Apache::lonnet::escape($msgid);
1039: foreach (@messages) {
1040: if ($_->[5] eq $escmsgid){
1041: last;
1042: }
1043: $counter++;
1044: }
1045: $r->print('</pre>');
1046: my $number_of_messages = scalar(@messages); #subtract 1 for last index
1047: # start output
1.49 albertel 1048: $r->print('<html><head><title>EMail and Messaging</title>');
1049: if (defined($content{'baseurl'})) {
1050: $r->print("<base href=\"http://$ENV{'SERVER_NAME'}/$content{'baseurl'}\" />");
1051: }
1052: $r->print(&Apache::loncommon::studentbrowser_javascript().
1053: '</head>'.
1054: &Apache::loncommon::bodytag('EMail and Messages'));
1.67 www 1055: $r->print('<b>'.&mt('Subject').':</b> '.$content{'subject'}.
1056: '<br><b>'.&mt('From').':</b> '.
1.37 www 1057: &Apache::loncommon::aboutmewrapper(
1058: &Apache::loncommon::plainname($content{'sendername'},$content{'senderdomain'}),
1059: $content{'sendername'},$content{'senderdomain'}).' ('.
1060: $content{'sendername'}.' at '.
1061: $content{'senderdomain'}.') '.
1.67 www 1062: '<br><b>'.&mt('Time').':</b> '.$content{'time'}.'<p>'.
1063: '<table border=2><tr bgcolor="#FFFFAA"><td>'.&mt('Functions').':</td>'.
1.65 www 1064: '<td><a href="/adm/email?replyto='.&Apache::lonnet::escape($msgid).$sqs.
1.67 www 1065: '"><b>'.&mt('Reply').'</b></a></td>'.
1.65 www 1066: '<td><a href="/adm/email?forward='.&Apache::lonnet::escape($msgid).$sqs.
1.67 www 1067: '"><b>'.&mt('Forward').'</b></a></td>'.
1.65 www 1068: '<td><a href="/adm/email?markunread='.&Apache::lonnet::escape($msgid).$sqs.
1.67 www 1069: '"><b>'.&mt('Mark Unread').'</b></a></td>'.
1.65 www 1070: '<td><a href="/adm/email?markdel='.&Apache::lonnet::escape($msgid).$sqs.
1.43 www 1071: '"><b>Delete</b></a></td>'.
1.65 www 1072: '<td><a href="/adm/email?sortedby='.$ENV{'form.sortedby'}.
1.67 www 1073: '"><b>'.&mt('Display all Messages').'</b></a></td>');
1.65 www 1074: if ($counter > 0){
1075: $r->print('<td><a href="/adm/email?display='.$messages[$counter-1]->[5].$sqs.
1.67 www 1076: '"><b>'.&mt('Previous').'</b></a></td>');
1.65 www 1077: }
1078: if ($counter < $number_of_messages - 1){
1079: $r->print('<td><a href="/adm/email?display='.$messages[$counter+1]->[5].$sqs.
1.67 www 1080: '"><b>'.&mt('Next').'</b></a></td>');
1.65 www 1081: }
1082: $r->print('</tr></table><p><pre>'.
1.36 www 1083: &Apache::lontexconvert::msgtexconverted($content{'message'}).
1084: '</pre><hr>'.$content{'citation'});
1.6 www 1085: } elsif ($ENV{'form.replyto'}) {
1.13 www 1086: &comprep($r,$ENV{'form.replyto'});
1.7 www 1087: } elsif ($ENV{'form.sendreply'}) {
1.69 www 1088: if ($ENV{'form.send'}) {
1089: my $msgid=$ENV{'form.sendreply'};
1090: my %message=&Apache::lonnet::get('nohist_email',[$msgid]);
1091: my %content=&unpackagemsg($message{$msgid},1);
1092: &statuschange($msgid,'replied');
1093: if ((($ENV{'form.critmsg'}) || ($ENV{'form.sendbck'})) &&
1094: (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'}))) {
1.70 www 1095: $r->print(&mt('Sending critical message').': '.
1.69 www 1096: &user_crit_msg($content{'sendername'},
1097: $content{'senderdomain'},
1098: &Apache::lonfeedback::clear_out_html($ENV{'form.subject'}),
1099: &Apache::lonfeedback::clear_out_html($ENV{'form.message'}),
1100: $ENV{'form.sendbck'}));
1101: } else {
1102: $r->print(&mt('Sending').': '.&user_normal_msg($content{'sendername'},
1103: $content{'senderdomain'},
1104: &Apache::lonfeedback::clear_out_html($ENV{'form.subject'}),
1105: &Apache::lonfeedback::clear_out_html($ENV{'form.message'})));
1106: }
1.12 www 1107: }
1.14 www 1108: if ($ENV{'form.displayedcrit'}) {
1109: &discrit($r);
1110: } else {
1111: &disall($r);
1112: }
1.12 www 1113: } elsif ($ENV{'form.confirm'}) {
1.28 harris41 1114: foreach (keys %ENV) {
1.12 www 1115: if ($_=~/^form\.rec\_(.*)$/) {
1116: $r->print('<b>Confirming Receipt:</b> '.
1117: &user_crit_received($1).'<br>');
1.13 www 1118: }
1119: if ($_=~/^form\.reprec\_(.*)$/) {
1120: my $msgid=$1;
1121: $r->print('<b>Confirming Receipt:</b> '.
1122: &user_crit_received($msgid).'<br>');
1123: &comprep($r,$msgid);
1.12 www 1124: }
1.28 harris41 1125: }
1.12 www 1126: &discrit($r);
1127: } elsif ($ENV{'form.critical'}) {
1128: &discrit($r);
1.6 www 1129: } elsif ($ENV{'form.forward'}) {
1.15 www 1130: &compout($r,$ENV{'form.forward'});
1.14 www 1131: } elsif ($ENV{'form.markread'}) {
1132: } elsif ($ENV{'form.markdel'}) {
1133: &statuschange($ENV{'form.markdel'},'deleted');
1.25 www 1134: &disall($r);
1135: } elsif ($ENV{'form.markeddel'}) {
1136: my $total=0;
1.28 harris41 1137: foreach (keys %ENV) {
1.25 www 1138: if ($_=~/^form\.delmark_(.*)$/) {
1139: &statuschange(&Apache::lonnet::unescape($1),'deleted');
1140: $total++;
1141: }
1.28 harris41 1142: }
1.25 www 1143: $r->print('Deleted '.$total.' message(s)<p>');
1.14 www 1144: &disall($r);
1145: } elsif ($ENV{'form.markunread'}) {
1.15 www 1146: &statuschange($ENV{'form.markunread'},'new');
1147: &disall($r);
1.11 www 1148: } elsif ($ENV{'form.compose'}) {
1.17 www 1149: &compout($r,'',$ENV{'form.compose'});
1.44 www 1150: } elsif ($ENV{'form.recordftf'}) {
1151: &facetoface($r,$ENV{'form.recordftf'});
1.11 www 1152: } elsif ($ENV{'form.sendmail'}) {
1.70 www 1153: my $sendstatus='';
1.69 www 1154: if ($ENV{'form.send'}) {
1155: my %content=();
1156: undef %content;
1157: if ($ENV{'form.forwid'}) {
1158: my $msgid=$ENV{'form.forwid'};
1159: my %message=&Apache::lonnet::get('nohist_email',[$msgid]);
1160: %content=&unpackagemsg($message{$msgid},1);
1161: &statuschange($msgid,'forwarded');
1162: $ENV{'form.message'}.="\n\n-- Forwarded message --\n\n".
1163: $content{'message'};
1164: }
1165: my %toaddr=();
1166: undef %toaddr;
1167: if ($ENV{'form.sendmode'} eq 'group') {
1168: foreach (keys %ENV) {
1169: if ($_=~/^form\.send\_to\_\&\&\&[^\&]*\&\&\&\_(.+)$/) {
1170: $toaddr{$1}='';
1171: }
1172: }
1173: } elsif ($ENV{'form.sendmode'} eq 'upload') {
1174: foreach (split(/[\n\r\f]+/,$ENV{'form.upfile'})) {
1175: my ($rec,$txt)=split(/\s*\:\s*/,$_);
1176: if ($txt) {
1177: $rec=~s/\@/\:/;
1178: $toaddr{$rec}.=$txt."\n";
1179: }
1180: }
1181: } else {
1182: $toaddr{$ENV{'form.recuname'}.':'.$ENV{'form.recdomain'}}='';
1183: }
1184: if ($ENV{'form.additionalrec'}) {
1185: foreach (split(/\,/,$ENV{'form.additionalrec'})) {
1186: my ($auname,$audom)=split(/\@/,$_);
1187: $toaddr{$auname.':'.$audom}='';
1188: }
1189: }
1190: foreach (keys %toaddr) {
1191: my ($recuname,$recdomain)=split(/\:/,$_);
1192: my $msgtxt=&Apache::lonfeedback::clear_out_html($ENV{'form.message'});
1193: if ($toaddr{$_}) { $msgtxt.='<hr>'.$toaddr{$_}; }
1194: if ((($ENV{'form.critmsg'}) || ($ENV{'form.sendbck'})) &&
1195: (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'}))) {
1.70 www 1196: $r->print(&mt('Sending critical message').' ...');
1197: $sendstatus.=' '.&user_crit_msg($recuname,$recdomain,
1.69 www 1198: &Apache::lonfeedback::clear_out_html($ENV{'form.subject'}),
1199: $msgtxt,
1.70 www 1200: $ENV{'form.sendbck'});
1.69 www 1201: } else {
1.70 www 1202: $r->print(&mt('Sending').' ...');
1203: $sendstatus.=' '.&user_normal_msg($recuname,$recdomain,
1204: &Apache::lonfeedback::clear_out_html($ENV{'form.subject'}),
1.69 www 1205: $msgtxt,
1.70 www 1206: $content{'citation'});
1.69 www 1207: }
1208: $r->print('<br />');
1209: }
1.16 www 1210: }
1.70 www 1211: if ($sendstatus=~/^(\s*(?:ok|con_delayed)\s*)*$/) {
1212: if ($ENV{'form.displayedcrit'}) {
1213: &discrit($r);
1214: } else {
1215: &disall($r);
1216: }
1.16 www 1217: } else {
1.70 www 1218: $r->print(
1219: '<h2><font color="red">'.&mt('Could not deliver message').'</font></h2>'.
1220: &mt('Please use the browser "Back" button and correct the recipient addresses')
1221: );
1.16 www 1222: }
1.6 www 1223: } else {
1.14 www 1224: &disall($r);
1.6 www 1225: }
1.5 www 1226: $r->print('</body></html>');
1227: return OK;
1228:
1229: }
1.2 www 1230: # ================================================= Main program, reset counter
1231:
1.27 www 1232: BEGIN {
1.2 www 1233: $msgcount=0;
1.1 www 1234: }
1.58 bowersj2 1235:
1236: =pod
1237:
1238: =back
1239:
1.59 bowersj2 1240: =cut
1241:
1242: 1;
1.1 www 1243:
1244: __END__
1245:
1246:
1247:
1248:
1249:
1250:
1251:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>