Annotation of loncom/interface/lonmsgdisplay.pm, revision 1.153
1.1 albertel 1: # The LearningOnline Network with CAPA
2: # Routines for messaging display
3: #
1.153 ! raeburn 4: # $Id: lonmsgdisplay.pm,v 1.152 2010/06/06 01:17:08 www Exp $
1.1 albertel 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
28:
29:
30: package Apache::lonmsgdisplay;
31:
32: =pod
33:
34: =head1 NAME
35:
1.69 raeburn 36: Apache::lonmsgdisplay: supports internal messaging
1.1 albertel 37:
38: =head1 SYNOPSIS
39:
1.69 raeburn 40: lonmsgdisplay provides a handler to allow users to read, send,
41: and delete messages, and to create and delete message folders,
42: and to move messages between folders.
1.1 albertel 43:
44: =head1 OVERVIEW
45:
46: =head2 Messaging Overview
47:
48: X<messages>LON-CAPA provides an internal messaging system similar to
49: email, but customized for LON-CAPA's usage. LON-CAPA implements its
50: own messaging system, rather then building on top of email, because of
51: the features LON-CAPA messages can offer that conventional e-mail can
52: not:
53:
54: =over 4
55:
56: =item * B<Critical messages>: A message the recipient B<must>
57: acknowlegde receipt of before they are allowed to continue using the
58: system, preventing a user from claiming they never got a message
59:
60: =item * B<Receipts>: LON-CAPA can reliably send reciepts informing the
61: sender that it has been read; again, useful for preventing students
62: from claiming they did not see a message. (While conventional e-mail
63: has some reciept support, it's sporadic, e-mail client-specific, and
64: generally the receiver can opt to not send one, making it useless in
65: this case.)
66:
67: =item * B<Context>: LON-CAPA knows about the sender, such as where
68: they are in a course. When a student mails an instructor asking for
69: help on the problem, the instructor receives not just the student's
70: question, but all submissions the student has made up to that point,
71: the user's rendering of the problem, and the complete view the student
72: saw of the resource, including discussion up to that point. Finally,
73: the instructor is reading all of this inside of LON-CAPA, not their
74: email program, so they have full access to LON-CAPA's grading
75: interface, or other features they may wish to use in response to the
76: student's query.
77:
1.50 raeburn 78: =item * B<Blocking>: LON-CAPA can block selected communication
79: features for students during an online exam. A course coordinator or
1.1 albertel 80: instructor can set an open and close date/time for scheduled online
81: exams in a course. If a user uses the LON-CAPA internal messaging
82: system to display e-mails during the scheduled blocking event,
83: display of all e-mail sent during the blocking period will be
84: suppressed, and a message of explanation, including details of the
85: currently active blocking periods will be displayed instead. A user
86: who has a course coordinator or instructor role in a course will be
87: unaffected by any blocking periods for the course, unless the user
88: also has a student role in the course, AND has selected the student role.
89:
90: =back
91:
92: Users can ask LON-CAPA to forward messages to conventional e-mail
93: addresses on their B<PREF> screen, but generally, LON-CAPA messages
94: are much more useful than traditional email can be made to be, even
95: with HTML support.
96:
97: =cut
98:
99: use strict;
100: use Apache::lonnet;
101: use HTML::TokeParser();
102: use Apache::Constants qw(:common);
103: use Apache::loncommon();
1.67 www 104: use Apache::lonhtmlcommon();
1.1 albertel 105: use Apache::lontexconvert();
106: use HTML::Entities();
107: use Apache::lonlocal;
108: use Apache::loncommunicate;
109: use Apache::lonfeedback;
110: use Apache::lonrss();
1.27 albertel 111: use Apache::lonselstudent();
1.29 www 112: use lib '/home/httpd/lib/perl/';
113: use LONCAPA;
1.1 albertel 114:
115: # Querystring component with sorting type
1.134 raeburn 116: my $sqs='';
117: my $startdis='';
1.1 albertel 118:
119: # ============================================================ List all folders
120:
121: sub folderlist {
1.53 raeburn 122: my ($folder,$msgstatus) = @_;
1.46 raeburn 123: my %lt = &Apache::lonlocal::texthash(
124: actn => 'Action',
125: fold => 'Folder',
126: show => 'Show',
1.53 raeburn 127: status => 'Message Status',
1.46 raeburn 128: go => 'Go',
1.50 raeburn 129: nnff => 'New Name for Folder',
130: newn => 'New Name',
131: thfm => 'The folder may not be renamed',
132: fmnb => 'folder may not be renamed as it is a folder provided by the system.',
133: asth => 'as this name is already in use for a system-provided or user-defined folder.',
134: the => 'The',
135: tnfm => 'The new folder may not be named',
136:
1.46 raeburn 137: );
138:
1.120 kaisler 139: # set se lastvisit for the new mail check in the toplevel menu
140: &Apache::lonnet::appenv({'user.mailcheck.lastvisit'=>time});
141:
1.46 raeburn 142: my %actions = &Apache::lonlocal::texthash(
143: view => 'View Folder',
144: rename => 'Rename Folder',
145: delete => 'Delete Folder',
146: );
147: $actions{'select_form_order'} = ['view','rename','delete'];
148:
1.141 bisitz 149: my %statushash = &Apache::lonlocal::texthash(&get_msgstatus_types());
1.53 raeburn 150:
151: $statushash{'select_form_order'} = ['','new','read','replied','forwarded'];
152:
1.46 raeburn 153: my %permfolders = &get_permanent_folders();
154: my $permlist = join("','",sort(keys(%permfolders)));
155: my ($permlistkeys,$permlistvals);
156: foreach my $key (sort(keys(%permfolders))) {
157: $permlistvals .= $permfolders{$key}."','";
158: $permlistkeys .= $key."','";
159: }
160: $permlistvals =~ s/','$//;
161: $permlistkeys =~ s/','$//;
162: my %gotfolders = &Apache::lonmsg::get_user_folders();
163: my %userfolders;
164:
165: foreach my $key (keys(%gotfolders)) {
1.54 albertel 166: $key =~ s/(['"])/\$1/g; #' stupid emacs
1.46 raeburn 167: $userfolders{$key} = $key;
168: }
169: my @userorder = sort(keys(%userfolders));
170: my %formhash = (%permfolders,%userfolders);
171: my $folderlist = join("','",@userorder);
172: $folderlist .= "','".$permlistvals;
173:
1.53 raeburn 174: $formhash{'select_form_order'} = ['','critical',@userorder,'sent','trash'];
1.46 raeburn 175: my $output = qq|<script type="text/javascript">
1.127 bisitz 176: // <![CDATA[
1.46 raeburn 177: function folder_choice(targetform,caller) {
178: var permfolders_keys = new Array('$permlistkeys');
179: var permfolders_vals = new Array('$permlistvals');
180: var allfolders = new Array('$folderlist');
181: if (caller == 'change') {
182: if (targetform.folderaction.options[targetform.folderaction.selectedIndex].value == 'rename') {
183: for (var i=0; i<permfolders_keys.length; i++) {
184: if (permfolders_keys[i] == targetform.folder.value) {
1.50 raeburn 185: alert("$lt{'the'} '"+permfolders_vals[i]+"' $lt{'fmnb'}");
1.46 raeburn 186: return;
187: }
188: }
1.50 raeburn 189: var foldername=prompt('$lt{'nnff'}','$lt{'newn'}');
1.46 raeburn 190: if (foldername) {
191: targetform.renamed.value=foldername;
192: for (var i=0; i<allfolders.length; i++) {
193: if (allfolders[i] == foldername) {
1.50 raeburn 194: alert("$lt{'thfm'} '"+foldername+"' $lt{'asth'}");
1.46 raeburn 195: return;
196: }
197: }
198: targetform.submit();
199: }
200: }
201: else {
202: targetform.submit();
203: }
204: }
205: if (caller == 'new') {
206: var newname=targetform.newfolder.value;
207: if (newname) {
208: for (var i=0; i<allfolders.length; i++) {
209: if (allfolders[i] == newname) {
1.50 raeburn 210: alert("$lt{'tnfm'} '"+newname+"' $lt{'asth'}");
1.46 raeburn 211: return;
212: }
213: }
214: targetform.submit();
215: }
216: }
217: }
1.127 bisitz 218: // ]]>
1.46 raeburn 219: </script>|;
1.57 albertel 220: my %show = ('select_form_order' => [10,20,50,100,200],
221: map {$_=>$_} (10,20,50,100,200));
1.141 bisitz 222:
1.46 raeburn 223: $output .= '
224: <form method="post" action="/adm/email" name="folderlist">
1.148 bisitz 225: <table border="0" cellspacing="2" cellpadding="8">
1.46 raeburn 226: <tr>
1.148 bisitz 227: <td><b>'.$lt{'fold'}.'</b><br />'."\n".
1.153 ! raeburn 228: &Apache::loncommon::select_form($folder,'folder',\%formhash).'
1.46 raeburn 229: </td>
1.148 bisitz 230: <td><b>'.$lt{'show'}.'</b><br />'."\n".
1.57 albertel 231: &Apache::loncommon::select_form($env{'form.interdis'},'interdis',
1.153 ! raeburn 232: \%show).'
1.46 raeburn 233: </td>
1.148 bisitz 234: <td><b>'.$lt{'status'}.'</b><br />'."\n".
1.153 ! raeburn 235: &Apache::loncommon::select_form($msgstatus,'msgstatus',\%statushash).'
1.53 raeburn 236: </td>
1.148 bisitz 237: <td><b>'.$lt{'actn'}.'</b><br />'."\n".'
238: <span class="LC_nobreak">'.
1.153 ! raeburn 239: &Apache::loncommon::select_form('view','folderaction',\%actions).
1.148 bisitz 240: ' <input type="button" value="'.$lt{'go'}.
241: '" onclick="javascript:folder_choice(this.form,'."'change'".');" />
242: </span>
243: </td>
244: <td><b>'.&mt('New Folder').'</b><br />'."\n".'
245: <span class="LC_nobreak">
246: <input type="text" size="15" name="newfolder" value="" />
247: <input type="button" value="'.$lt{'go'}.
248: '" onclick="javascript:folder_choice(this.form,'."'new'".');" />
249: </span>
1.46 raeburn 250: </td>
251: </tr>
252: </table>
1.148 bisitz 253: '."\n".
1.1 albertel 254: '<input type="hidden" name="sortedby" value="'.$env{'form.sortedby'}.'" />'.
1.46 raeburn 255: '<input type="hidden" name="renamed" value="" />'.
1.53 raeburn 256: ($folder=~/^critical/?'</form>':'');
1.46 raeburn 257: return $output;
258: }
259:
260: sub get_permanent_folders {
1.47 albertel 261: my %permfolders =
262: &Apache::lonlocal::texthash('' => 'INBOX',
263: 'trash' => 'TRASH',
264: 'critical' => 'Critical',
265: 'sent' => 'Sent Messages',
266: );
1.46 raeburn 267: return %permfolders;
1.1 albertel 268: }
269:
1.53 raeburn 270: sub get_msgstatus_types {
1.141 bisitz 271: # Don't translate here!
272: my %statushash = (
273: '' => 'Any',
274: 'new' => 'Unread',
275: 'read' => 'Read',
276: 'replied' => 'Replied to',
277: 'forwarded' => 'Forwarded',
1.53 raeburn 278: );
279: return %statushash;
280: }
281:
1.1 albertel 282: sub scrollbuttons {
1.53 raeburn 283: my ($start,$maxdis,$first,$finish,$total,$msgstatus)=@_;
1.1 albertel 284: unless ($total>0) { return ''; }
285: $start++; $maxdis++;$first++;$finish++;
1.53 raeburn 286:
287: my %statushash = &get_msgstatus_types();
288: my $status;
289: if ($msgstatus eq '') {
1.141 bisitz 290: $status = 'All'; # Don't translate here!
1.53 raeburn 291: } else {
292: $status = $statushash{$msgstatus};
293: }
1.140 bisitz 294: my $output = '<b>'.&mt('Page:').'</b> ';
295: if ($maxdis == 1) {
296: # No buttons if only one page is displayed
297: $output .= '1/1';
298: } else {
299: $output .=
300: '<input type="submit" name="firstview" value="|<" />'.
301: '<input type="submit" name="prevview" value="<" />'.
302: ' <input type="text" size="5" name="startdis" value="'.$start.'" onchange="this.form.submit()" /> / '.$maxdis.' '.
303: '<input type="submit" name="nextview" value=">" />'.
304: '<input type="submit" name="lastview" value=">|" />';
305: }
306: $output .=
1.148 bisitz 307: '<p>'
1.140 bisitz 308: .'<b>'.&mt($status.' messages:').'</b> '
309: .&mt('showing messages [_1] through [_2] of [_3].',
310: $first,$finish,$total)
1.148 bisitz 311: .'</p>'
1.140 bisitz 312: .'</form>';
313:
314: return $output;
1.1 albertel 315: }
316: # =============================================================== Status Change
317:
318: sub statuschange {
319: my ($msgid,$newstatus,$folder)=@_;
1.3 albertel 320: my $suffix=&Apache::lonmsg::foldersuffix($folder);
1.1 albertel 321: my %status=&Apache::lonnet::get('email_status'.$suffix,[$msgid]);
322: if ($status{$msgid}=~/^error\:/) { $status{$msgid}=''; }
323: unless ($status{$msgid}) { $status{$msgid}='new'; }
324: unless (($status{$msgid} eq 'replied') ||
325: ($status{$msgid} eq 'forwarded')) {
326: &Apache::lonnet::put('email_status'.$suffix,{$msgid => $newstatus});
327: }
328: if (($newstatus eq 'deleted') || ($newstatus eq 'new')) {
329: &Apache::lonnet::put('email_status'.$suffix,{$msgid => $newstatus});
330: }
331: if ($newstatus eq 'deleted') {
1.9 albertel 332: return &movemsg($msgid,$folder,'trash');
333: }
334: return ;
1.1 albertel 335: }
336:
337: # ============================================================= Make new folder
338:
339: sub makefolder {
1.46 raeburn 340: my ($newfolder) = @_;
341: my %permfolders = &get_permanent_folders();
342: my %userfolders = &Apache::lonmsg::get_user_folders();
343: my ($outcome,$warning);
344: if (defined($userfolders{$newfolder})) {
345: return &mt('The folder name: "[_1]" is already in use for an existing folder.',$newfolder);
346: }
347: foreach my $perm (keys(%permfolders)) {
348: if ($permfolders{$perm} eq $newfolder) {
349: return &mt('The folder name: "[_1]" is already used for one of the folders automatically generated by the system.',$newfolder);
350: }
351: }
352: if (&get_msgfolder_lock() eq 'ok') {
353: my %counter_hash = &Apache::lonnet::get('email_folders',["\0".'idcount']);
354: my $lastcount = $counter_hash{"\0".'idcount'};
355: my $folder_id = $lastcount + 1;
356: while (defined($userfolders{$folder_id})) {
357: $folder_id ++;
358: }
1.47 albertel 359: my %folderinfo = ( id => $folder_id,
360: created => time, );
1.46 raeburn 361: $outcome =
1.47 albertel 362: &Apache::lonnet::put('email_folders',{$newfolder => \%folderinfo,
363: "\0".'idcount' => $folder_id});
1.46 raeburn 364: my $releaseresult = &release_msgfolder_lock();
365: if ($releaseresult ne 'ok') {
366: $warning = $releaseresult;
367: }
368: } else {
1.47 albertel 369: $outcome =
1.104 raeburn 370: &mt('Error - could not obtain lock on message folders record.');
1.46 raeburn 371: }
372: return ($outcome,$warning);
1.1 albertel 373: }
374:
1.46 raeburn 375: # ============================================================= Delete folder
376:
377: sub deletefolder {
378: my ($folder)=@_;
379: my %permfolders = &get_permanent_folders();
380: if (defined($permfolders{$folder})) {
1.148 bisitz 381: return &mt('The folder "[_1]" may not be deleted.',$folder);
1.46 raeburn 382: }
383: my %userfolders = &Apache::lonmsg::get_user_folders();
384: if (!defined($userfolders{$folder})) {
1.56 albertel 385: return &mt('The folder "[_1]" does not exist so deletion is not required.',
1.46 raeburn 386: $folder);
387: }
388: # check folder is empty;
389: my $suffix=&Apache::lonmsg::foldersuffix($folder);
390: my @messages = &Apache::lonnet::getkeys('nohist_email'.$suffix);
391: if (@messages > 0) {
1.56 albertel 392: return &mt('The folder "[_1]" contains messages so it may not be deleted.',$folder).
1.46 raeburn 393: '<br />'.
394: &mt('Delete or move the messages to a different folder first.');
395: }
396: my $delresult = &Apache::lonnet::del('email_folders',[$folder]);
397: return $delresult;
398: }
399:
400: sub renamefolder {
401: my ($folder) = @_;
402: my $newname = $env{'form.renamed'};
403: my %permfolders = &get_permanent_folders();
404: if ($env{'form.renamed'} eq '') {
405: return &mt('The folder "[_1]" may not be renamed to "[_2]" as the new name you requested is an invalid name.',$folder,$newname);
406: }
1.73 raeburn 407: if (defined($permfolders{$folder})) {
408: return &mt('The folder "[_1]" may not be renamed as it is a folder provided by the system.',$folder);
409: }
1.46 raeburn 410: if (defined($permfolders{$newname})) {
411: return &mt('The folder "[_1]" may not be renamed to "[_2]" as the new name you requested is reserved for folders provided automatically by the system.',$folder,$newname);
412: }
413: my %userfolders = &Apache::lonmsg::get_user_folders();
414: if (defined($userfolders{$newname})) {
415: return &mt('The folder "[_1]" may not be renamed to "[_2]" because the new name you requested is already being used for an existing folder.',$folder,$newname);
416: }
417: if (!defined($userfolders{$folder})) {
418: return &mt('The folder "[_1]" could not be renamed to "[_2]" because the folder does not exist.',$folder,$newname);
419: }
420: my %folderinfo;
421: if (ref($userfolders{$folder}) eq 'HASH') {
422: %folderinfo = %{$userfolders{$folder}};
423: } else {
1.47 albertel 424: %folderinfo = ( id => $folder,
425: created => $userfolders{$folder},);
1.46 raeburn 426: }
427: my $outcome =
428: &Apache::lonnet::put('email_folders',{$newname => \%folderinfo});
429: if ($outcome eq 'ok') {
430: $outcome = &Apache::lonnet::del('email_folders',[$folder]);
431: }
432: return $outcome;
433: }
434:
435: sub get_msgfolder_lock {
436: # get lock for mail folder counter.
1.47 albertel 437: my $lockhash = { "\0".'lock_counter' => time, };
1.46 raeburn 438: my $tries = 0;
439: my $gotlock = &Apache::lonnet::newput('email_folders',$lockhash);
440: while (($gotlock ne 'ok') && $tries <3) {
441: $tries ++;
1.47 albertel 442: sleep(1);
1.46 raeburn 443: $gotlock = &Apache::lonnet::newput('email_folders',$lockhash);
444: }
445: return $gotlock;
446: }
447:
448: sub release_msgfolder_lock {
449: # remove lock
450: my @del_lock = ("\0".'lock_counter');
451: my $dellockoutcome=&Apache::lonnet::del('email_folders',\@del_lock);
452: if ($dellockoutcome ne 'ok') {
453: return ('<br />'.&mt('Warning: failed to release lock for counter').'<br />');
454: } else {
455: return 'ok';
456: }
457: }
458:
459:
1.1 albertel 460: # ======================================================== Move between folders
461:
462: sub movemsg {
463: my ($msgid,$srcfolder,$trgfolder)=@_;
464: if ($srcfolder eq 'new') { $srcfolder=''; }
1.3 albertel 465: my $srcsuffix=&Apache::lonmsg::foldersuffix($srcfolder);
466: my $trgsuffix=&Apache::lonmsg::foldersuffix($trgfolder);
1.9 albertel 467: if ($srcsuffix eq $trgsuffix) {
468: return (0,&mt('Message not moved, Attempted to move message to the same folder as it already is in.'));
469: }
1.1 albertel 470:
471: # Copy message
472: my %message=&Apache::lonnet::get('nohist_email'.$srcsuffix,[$msgid]);
1.9 albertel 473: if (!exists($message{$msgid}) || $message{$msgid} eq '') {
1.32 albertel 474: if (&Apache::lonnet::error(%message)) {
1.9 albertel 475: return (0,&mt('Message not moved, A network error occurred.'));
476: } else {
477: return (0,&mt('Message not moved as the message is no longer in the source folder.'));
478: }
479: }
480:
481: my $result =&Apache::lonnet::put('nohist_email'.$trgsuffix,
482: {$msgid => $message{$msgid}});
1.32 albertel 483: if (&Apache::lonnet::error($result)) {
1.9 albertel 484: return (0,&mt('Message not moved, A network error occurred.'));
485: }
1.1 albertel 486:
487: # Copy status
488: unless ($trgfolder eq 'trash') {
1.9 albertel 489: my %status=&Apache::lonnet::get('email_status'.$srcsuffix,[$msgid]);
490: # a non-existant status is the mark of an unread msg
1.32 albertel 491: if (&Apache::lonnet::error(%status)) {
1.9 albertel 492: return (0,&mt('Message copied to new folder but status was not, A network error occurred.'));
493: }
494: my $result=&Apache::lonnet::put('email_status'.$trgsuffix,
495: {$msgid => $status{$msgid}});
1.32 albertel 496: if (&Apache::lonnet::error($result)) {
1.9 albertel 497: return (0,&mt('Message copied to new folder but status was not, A network error occurred.'));
498: }
1.1 albertel 499: }
1.9 albertel 500:
1.1 albertel 501: # Delete orginals
1.9 albertel 502: my $result_del_msg =
503: &Apache::lonnet::del('nohist_email'.$srcsuffix,[$msgid]);
504: my $result_del_stat =
505: &Apache::lonnet::del('email_status'.$srcsuffix,[$msgid]);
1.32 albertel 506: if (&Apache::lonnet::error($result_del_msg)) {
1.9 albertel 507: return (0,&mt('Message copied, but unable to delete the original from the source folder.'));
508: }
1.32 albertel 509: if (&Apache::lonnet::error($result_del_stat)) {
1.9 albertel 510: return (0,&mt('Message copied, but unable to delete the original status from the source folder.'));
511: }
512:
513: return (1);
1.1 albertel 514: }
515:
516: # ======================================================= Display a course list
517:
518: sub discourse {
1.95 raeburn 519: my ($statushash) = @_;
520: my ($result,$active,$previous,$future);
1.138 raeburn 521: my $crstype = &Apache::loncommon::course_type();
1.25 foxr 522: my ($course_personnel,
523: $current_members,
524: $expired_members,
1.28 foxr 525: $future_members) =
526: &Apache::lonselstudent::get_people_in_class($env{'request.course.sec'});
1.25 foxr 527: unshift @$current_members, (@$course_personnel);
528: my %defaultUsers;
1.40 albertel 529:
1.87 bisitz 530: my $tmptext;
531: if ($tmptext = &Apache::lonselstudent::render_student_list($current_members,
1.95 raeburn 532: "activeusers",
1.87 bisitz 533: "current",
534: \%defaultUsers,
1.95 raeburn 535: 1,"selectedusers",1,'email')
1.87 bisitz 536: ) {
1.138 raeburn 537: my $bcc_curr_hdr;
538: if ($crstype eq 'Community') {
539: $bcc_curr_hdr = &mt('Bcc: community participants with current access');
540: } else {
541: $bcc_curr_hdr = &mt('Bcc: course members with current access');
542: }
1.125 bisitz 543: $result .= '<fieldset id="LC_activeusers"><legend>'
1.138 raeburn 544: .$bcc_curr_hdr
1.125 bisitz 545: .'</legend>'
546: .'<form name="activeusers">';
1.95 raeburn 547: $result .= $tmptext.'</form></fieldset><br />';
548: if (ref($statushash) eq 'HASH') {
549: $statushash->{'active'} = 1;
550: }
1.87 bisitz 551: }
552: if ($tmptext = &Apache::lonselstudent::render_student_list($expired_members,
1.95 raeburn 553: "previoususers",
1.87 bisitz 554: "expired",
555: \%defaultUsers,
1.95 raeburn 556: 1, "selectedusers",0,'email')
1.87 bisitz 557: ) {
1.138 raeburn 558: my $bcc_prev_hdr;
559: if ($crstype eq 'Community') {
560: $bcc_prev_hdr = &mt('Bcc: community participants with expired access');
561: } else {
562: $bcc_prev_hdr = &mt('Bcc: course members with expired access');
563: }
1.125 bisitz 564: $result .= '<fieldset id="LC_previoususers"><legend>'
1.138 raeburn 565: .$bcc_prev_hdr
1.125 bisitz 566: .'</legend>'
567: .'<form name="previoususers">';
1.95 raeburn 568: $result .= $tmptext.'</form></fieldset><br />';
569: if (ref($statushash) eq 'HASH') {
570: $statushash->{'previous'} = 1;
571: }
572:
1.87 bisitz 573: }
574: if ($tmptext = &Apache::lonselstudent::render_student_list($future_members,
1.95 raeburn 575: "futureusers",
1.87 bisitz 576: "future",
577: \%defaultUsers,
1.95 raeburn 578: 1, "selectedusers",0,'email')
1.87 bisitz 579: ) {
1.138 raeburn 580: my $bcc_future_hdr;
581: if ($crstype eq 'Community') {
582: $bcc_future_hdr = &mt('Bcc: community participants with future access');
583: } else {
584: $bcc_future_hdr = &mt('Bcc: course members with future access');
585: }
586:
1.125 bisitz 587: $result .= '<fieldset id="LC_futureusers"><legend>'
1.138 raeburn 588: .$bcc_future_hdr
1.125 bisitz 589: .'</legend>'
1.133 raeburn 590: .'<form name="futureusers">';
1.95 raeburn 591: $result .= $tmptext.'</form></fieldset>';
592: if (ref($statushash) eq 'HASH') {
593: $statushash->{'future'} = 1;
594: }
595:
1.87 bisitz 596: }
1.25 foxr 597: return $result;
598: }
599:
1.38 raeburn 600: sub disgroup {
1.105 raeburn 601: my ($r,$cdom,$cnum,$group,$access_status) = @_;
602: my $hasfloat;
1.38 raeburn 603: # Needs to be in a course
604: if (!($env{'request.course.fn'})) {
1.105 raeburn 605: $r->print('<span class="LC_error">'.&mt('Error: you must have a course role selected to be able to send a broadcast message to a group in the course.').'</span>');
606: return;
1.38 raeburn 607: }
608: if ($cdom eq '' || $cnum eq '') {
1.105 raeburn 609: $r->print('<span class="LC_error">'.&mt('Error: could not determine domain or number of course').'</span>');
610: return;
1.38 raeburn 611: }
612: my ($memberinfo,$numitems) =
613: &Apache::longroup::group_memberlist($cdom,$cnum,$group,{},[]);
614: my @statustypes = ('active');
1.95 raeburn 615: my $viewgrps = &Apache::lonnet::allowed('vcg',$env{'request.course.id'}.
616: ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''));
617: my $editgrps = &Apache::lonnet::allowed('mdg',$env{'request.course.id'}.
618: ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''));
1.38 raeburn 619: if ($viewgrps || $editgrps) {
620: push(@statustypes,('future','previous'));
621: }
622: if (keys(%{$memberinfo}) == 0) {
1.105 raeburn 623: $r->print('<span class="LC_warning">'.
624: &mt('As this group has no members, there are no recipients to select').
625: '</span>');
626: return;
1.38 raeburn 627: } else {
1.105 raeburn 628: $hasfloat = 1;
1.110 raeburn 629: unless($env{'environment.wysiwygeditor'} eq 'on') {
630: $r->print('<div class="LC_left_float">');
631: }
1.38 raeburn 632: my %Sortby = (
633: active => {},
634: previous => {},
635: future => {},
636: );
637: my %lt = &Apache::lonlocal::texthash(
638: 'name' => 'Name',
639: 'usnm' => 'Username',
640: 'doma' => 'Domain',
1.95 raeburn 641: 'active' => 'Broadcast to Active Members',
642: 'previous' => 'Broadcast (Bcc) to Former Members',
643: 'future' => 'Broadcast (Bcc) to Future Members',
1.38 raeburn 644: );
645: foreach my $user (sort(keys(%{$memberinfo}))) {
646: my $status = $$memberinfo{$user}{status};
647: if ($env{'form.'.$status.'.sortby'} eq 'fullname') {
648: push(@{$Sortby{$status}{$$memberinfo{$user}{fullname}}},$user);
649: } elsif ($env{'form.'.$status.'.sortby'} eq 'username') {
650: push(@{$Sortby{$status}{$$memberinfo{$user}{uname}}},$user);
651: } elsif ($env{'form.'.$status.'.sortby'} eq 'domain') {
652: push(@{$Sortby{$status}{$$memberinfo{$user}{udom}}},$user);
653: } else {
654: push(@{$Sortby{$status}{$$memberinfo{$user}{fullname}}},$user);
655: }
656: }
1.105 raeburn 657: $r->print(&group_check_uncheck());
1.38 raeburn 658: foreach my $status (@statustypes) {
659: if (ref($numitems) eq 'HASH') {
660: if ((defined($$numitems{$status})) && ($$numitems{$status})) {
1.95 raeburn 661: my $formname = $status.'users';
662: if (ref($access_status) eq 'HASH') {
663: $access_status->{$status} = $$numitems{$status};
664: }
1.125 bisitz 665: $r->print('<fieldset>'.
666: '<legend>'.$lt{$status}.'</legend>'.
667: '<form name="'.$formname.'">'.
1.105 raeburn 668: '<span class="LC_nobreak">'.
669: '<input type="button" value="'.&mt('Check All').'" '.
670: 'onclick="javascript:toggleAll('."this.form,'check'".')" />'.
671: ' '.
672: '<input type="button" value="'.&mt('Uncheck All').'" '.
673: 'onclick="javascript:toggleAll('."this.form,'uncheck'".')" />'.
674: '</span>');
1.95 raeburn 675: if ($status eq 'active') {
1.105 raeburn 676: $r->print((' 'x3).'<select name="groupmail">'.
677: '<option value="bcc" selected="selected">'.&mt('Bcc').'</option>'.
678: '<option value="cc">'.&mt('Cc').'</option>'.
679: '</select>');
1.95 raeburn 680: }
1.105 raeburn 681: $r->print('<br />'.&Apache::loncommon::start_data_table().
1.95 raeburn 682: &Apache::loncommon::start_data_table_header_row().
1.105 raeburn 683: "<th>$lt{'name'}</th>".
684: "<th>$lt{'usnm'}</th>".
685: "<th>$lt{'doma'}</th>".
686: &Apache::loncommon::end_data_table_header_row());
1.38 raeburn 687: foreach my $key (sort(keys(%{$Sortby{$status}}))) {
688: foreach my $user (@{$Sortby{$status}{$key}}) {
1.105 raeburn 689: $r->print(&Apache::loncommon::start_data_table_row().
690: '<td><span class="LC_nobreak"><input type="checkbox" '.
1.38 raeburn 691: 'name="selectedusers_forminput" value="'.
692: $user.':'.$status.'" />'.
1.105 raeburn 693: $$memberinfo{$user}{'fullname'}.'</span></td>'.
1.38 raeburn 694: '<td>'.$$memberinfo{$user}{'uname'}.'</td>'.
695: '<td>'.$$memberinfo{$user}{'udom'}.'</td>'.
1.105 raeburn 696: &Apache::loncommon::end_data_table_row());
1.38 raeburn 697: }
698: }
1.105 raeburn 699: $r->print(&Apache::loncommon::end_data_table().'</form>'.
1.110 raeburn 700: '</fieldset><br />');
1.38 raeburn 701: }
702: }
703: }
1.110 raeburn 704: unless($env{'environment.wysiwygeditor'} eq 'on') {
705: $r->print('</div>');
706: }
1.38 raeburn 707: }
1.105 raeburn 708: return $hasfloat;
1.38 raeburn 709: }
710:
711: sub group_check_uncheck {
712: my $output = qq|
713: <script type="text/javascript">
1.127 bisitz 714: // <![CDATA[
1.95 raeburn 715: function toggleAll(form,action) {
716: if (typeof(form.selectedusers_forminput.length)=="undefined") {
717: if (action == 'check') {
718: form.selectedusers_forminput.checked = true;
719: } else {
720: form.selectedusers_forminput.checked = false;
721: }
722: } else {
723: for (var i=0; i<form.selectedusers_forminput.length; i++) {
1.38 raeburn 724: if (action == 'check') {
1.95 raeburn 725: form.selectedusers_forminput[i].checked = true;
1.38 raeburn 726: } else {
1.95 raeburn 727: form.selectedusers_forminput[i].checked = false;
1.38 raeburn 728: }
729: }
730: }
731: }
1.127 bisitz 732: // ]]>
1.38 raeburn 733: </script>
734: |;
735: }
736:
737: sub groupmail_header {
738: my ($action,$group,$cdom,$cnum) = @_;
739: my ($description,$refarg);
740: if (!$cdom || !$cnum) {
741: $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
742: $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
743: }
744: if (exists($env{'form.ref'})) {
745: $refarg = 'ref='.$env{'form.ref'};
746: }
747: if (!$group) {
748: $group = $env{'form.group'};
749: }
750: if ($group eq '') {
751: return '';
752: } else {
753: my %curr_groups = &Apache::longroup::coursegroups($cdom,$cnum,$group);
754: if (defined($curr_groups{$group})) {
755: my %groupinfo =
756: &Apache::longroup::get_group_settings($curr_groups{$group});
757: $description = &unescape($groupinfo{'description'});
758: }
759: }
760: &Apache::lonhtmlcommon::clear_breadcrumbs();
761: if ($refarg) {
1.138 raeburn 762: my $brtitle;
763: if (&Apache::loncommon::course_type() eq 'Community') {
764: $brtitle = 'View community groups';
765: } else {
766: $brtitle = 'View course groups';
767: }
1.38 raeburn 768: &Apache::lonhtmlcommon::add_breadcrumb
769: ({href=>"/adm/coursegroups",
770: text=>"Groups",
1.138 raeburn 771: title=>$brtitle});
1.38 raeburn 772: }
773: &Apache::lonhtmlcommon::add_breadcrumb
774: ({href=>"/adm/$cdom/$cnum/$group/smppg?$refarg",
775: text=>"Group: $description",
776: title=>"Go to group's home page"},
777: {href=>"/adm/email?compose=group&group=".
778: "$env{'form.group'}&$refarg",
779: text=>"Send a Message in a Group",
1.99 schafran 780: title=>"Compose Group Message"},);
1.38 raeburn 781: if ($action eq 'sending') {
782: &Apache::lonhtmlcommon::add_breadcrumb
1.99 schafran 783: ({text=>"Messages being sent.",
1.96 schafran 784: title=>"E-mails sent"},);
1.38 raeburn 785: }
1.99 schafran 786: my $groupheader = &Apache::loncommon::start_page('Group Message');
1.38 raeburn 787: $groupheader .= &Apache::lonhtmlcommon::breadcrumbs
788: ('Group - '.$env{'form.group'}.' Email');
789: return $groupheader;
790: }
791:
792: sub groupmail_sent {
793: my ($group,$cdom,$cnum) = @_;
794: my $refarg;
795: if (exists($env{'form.ref'})) {
796: $refarg = 'ref='.$env{'form.ref'};
797: }
798: my $output .= '<br /><br /><a href="/adm/email?compose=group&group='.
799: $group.'&'.$refarg.'">'.
1.99 schafran 800: &mt('Send another group message').'</a>'.' '.
1.38 raeburn 801: '<a href="/adm/'.$cdom.'/'.$cnum.'/'.$group.'/smppg?'.
802: $refarg.'">'. &mt('Return to group page').'</a>';
803: return $output;
804: }
805:
1.1 albertel 806: # ==================================================== Display Critical Message
807:
808: sub discrit {
809: my $r=shift;
1.89 bisitz 810: my $header = '<h1>'.&mt('Critical Messages').'</h1>'
811: .'<div class="LC_warning">'
812: .&mt('Access to other pages will be prevented until you have moved all critical messages to your inbox.')
813: .'</div><br />'
1.124 bisitz 814: .'<form action="/adm/email" method="post">'
1.89 bisitz 815: .'<input type="hidden" name="confirm" value="true" />';
1.1 albertel 816: my %what=&Apache::lonnet::dump('critical');
817: my $result = '';
1.42 raeburn 818: foreach my $key (sort(keys(%what))) {
819: my %content=&Apache::lonmsg::unpackagemsg($what{$key});
1.1 albertel 820: next if ($content{'senderdomain'} eq '');
1.88 bisitz 821: $result .= &Apache::lonhtmlcommon::start_pick_box()
822: .&Apache::lonhtmlcommon::row_title(&mt('From'),undef,'LC_oddrow_value')
823: .'<b>'.&Apache::loncommon::aboutmewrapper(
824: &Apache::loncommon::plainname($content{'sendername'},$content{'senderdomain'}),$content{'sendername'},$content{'senderdomain'}).'</b>'
825: .' ('.$content{'sendername'}.':'.$content{'senderdomain'}.')'
826: .&Apache::lonhtmlcommon::row_closure(1)
827: .&Apache::lonhtmlcommon::row_title(&mt('Date'),undef,'LC_evenrow_value')
828: .$content{'time'}
829: .&Apache::lonhtmlcommon::row_closure(1)
830: .&Apache::lonhtmlcommon::row_title(&mt('Subject'),undef,'LC_oddrow_value')
831: .$content{'subject'}
832: .&Apache::lonhtmlcommon::row_closure(1)
833: .&Apache::lonhtmlcommon::row_title(&mt('Message'),undef,'LC_evenrow_value')
834: .'<pre>'.&Apache::lontexconvert::msgtexconverted($content{'message'}).'</pre>'
835: .&Apache::lonhtmlcommon::row_closure()
836: .&Apache::lonhtmlcommon::row_title('',undef,'LC_oddrow_value')
837: .'<div class="LC_warning">';
1.78 raeburn 838: my ($rec_button,$reprec_button);
839: $rec_button = &mt('Move to Inbox');
840: if (!$content{'noreplies'}) {
841: $reprec_button = &mt('Move to Inbox/Compose reply');
842: }
1.75 raeburn 843: if ($content{'sendback'}) {
844: $rec_button = &mt('Confirm Receipt');
1.78 raeburn 845: if (!$content{'noreplies'}) {
846: $reprec_button = &mt('Confirm Receipt and Reply');
847: }
1.75 raeburn 848: $result .= &mt('You have to confirm that you have received this message before you can view other pages. After confirmation, this message will be moved to your regular inbox');
849: } else {
1.78 raeburn 850: $result .= &mt('Access to other pages will be prevented until you have moved the message to your inbox.');
1.75 raeburn 851: }
1.88 bisitz 852: $result .= '</div>'
853: .&Apache::lonhtmlcommon::row_closure(1)
854: .&Apache::lonhtmlcommon::row_title('',undef,'LC_evenrow_value')
855: .'<input type="submit" name="rec_'.$key.'" value="'.$rec_button.'" />';
1.78 raeburn 856: if (!$content{'noreplies'}) {
1.88 bisitz 857: $result .= '<input type="submit" name="reprec_'.$key.'" '
858: .'value="'.$reprec_button.'" />'
1.78 raeburn 859: }
1.88 bisitz 860: $result .= &Apache::lonhtmlcommon::row_closure(1)
861: .&Apache::lonhtmlcommon::end_pick_box()
862: .'<br />';
1.1 albertel 863: }
864: # Check to see if there were any messages.
865: if ($result eq '') {
1.141 bisitz 866: $result =
867: '<p class="LC_info">'.
868: &mt('You have no critical messages.').
869: '</p>'.
870: '<a href="/adm/roles">'.&mt('Select a course').'</a><br />'.
1.1 albertel 871: '<a href="/adm/email">'.&mt('Communicate').'</a>';
872: } else {
873: $r->print($header);
874: }
875: $r->print($result);
876: $r->print('<input type="hidden" name="displayedcrit" value="true" /></form>');
877: }
878:
879: sub sortedmessages {
1.53 raeburn 880: my ($blocked,$startblock,$endblock,$numblocked,$folder,$msgstatus) = @_;
1.1 albertel 881: my $suffix=&Apache::lonmsg::foldersuffix($folder);
882: my @messages = &Apache::lonnet::getkeys('nohist_email'.$suffix);
883: #unpack the varibles and repack into temp for sorting
884: my @temp;
885: my %descriptions;
886: my %status_cache =
887: &Apache::lonnet::get('email_status'.&Apache::lonmsg::foldersuffix($folder),\@messages);
1.11 albertel 888:
889: my $get_received;
890: if ($folder eq 'sent'
891: && ($env{'form.sortedby'} =~ m/^(rev)?(user|domain)$/)) {
892: $get_received = 1;
893: }
894:
895: foreach my $msgid (@messages) {
1.114 raeburn 896: next if ($msgid eq '');
1.29 www 897: my $esc_msgid=&escape($msgid);
1.59 raeburn 898: my ($sendtime,$shortsubj,$fromname,$fromdomain,$status,$fromcid,$processid,$symb,$error) =
1.11 albertel 899: &Apache::lonmsg::unpackmsgid($esc_msgid,$folder,undef,
1.1 albertel 900: \%status_cache);
1.53 raeburn 901: next if ($msgstatus ne '' && $msgstatus ne $status);
1.1 albertel 902: my $description = &get_course_desc($fromcid,\%descriptions);
903: my @temp1 = ($sendtime,$shortsubj,$fromname,$fromdomain,$status,
1.11 albertel 904: $esc_msgid,$description);
905: if ($get_received) {
906: my %message = &Apache::lonnet::get('nohist_email'.$suffix,
907: [$msgid]);
908: my %content = &Apache::lonmsg::unpackagemsg($message{$msgid});
909: push(@temp1,$content{'recuser'},$content{'recdomain'});
910: }
1.1 albertel 911: # Check whether message was sent during blocking period.
912: if ($sendtime >= $startblock && ($sendtime <= $endblock && $endblock > 0) ) {
1.11 albertel 913: $$blocked{$msgid} = 'ON';
1.1 albertel 914: $$numblocked ++;
915: } else {
916: push @temp ,\@temp1;
917: }
918: }
919: #default sort
920: @temp = sort {$a->[0] <=> $b->[0]} @temp;
921: if ($env{'form.sortedby'} eq "date"){
922: @temp = sort {$a->[0] <=> $b->[0]} @temp;
923: }
924: if ($env{'form.sortedby'} eq "revdate"){
925: @temp = sort {$b->[0] <=> $a->[0]} @temp;
926: }
927: if ($env{'form.sortedby'} eq "user"){
1.11 albertel 928: if ($get_received) {
929: @temp = sort {lc($a->[7][0]) cmp lc($b->[7][0])} @temp;
930: } else {
931: @temp = sort {lc($a->[2]) cmp lc($b->[2])} @temp;
932: }
1.1 albertel 933: }
934: if ($env{'form.sortedby'} eq "revuser"){
1.11 albertel 935: if ($get_received) {
936: @temp = sort {lc($b->[7][0]) cmp lc($a->[7][0])} @temp;
937: } else {
938: @temp = sort {lc($b->[2]) cmp lc($a->[2])} @temp;
939: }
1.1 albertel 940: }
941: if ($env{'form.sortedby'} eq "domain"){
1.11 albertel 942: if ($get_received) {
943: @temp = sort {$a->[8][0] cmp $b->[8][0]} @temp;
944: } else {
945: @temp = sort {$a->[3] cmp $b->[3]} @temp;
946: }
1.1 albertel 947: }
948: if ($env{'form.sortedby'} eq "revdomain"){
1.11 albertel 949: if ($get_received) {
950: @temp = sort {$b->[8][0] cmp $a->[8][0]} @temp;
951: } else {
952: @temp = sort {$b->[3] cmp $a->[3]} @temp;
953: }
1.1 albertel 954: }
955: if ($env{'form.sortedby'} eq "subject"){
956: @temp = sort {lc($a->[1]) cmp lc($b->[1])} @temp;
957: }
958: if ($env{'form.sortedby'} eq "revsubject"){
959: @temp = sort {lc($b->[1]) cmp lc($a->[1])} @temp;
960: }
961: if ($env{'form.sortedby'} eq "course"){
962: @temp = sort {lc($a->[6]) cmp lc($b->[6])} @temp;
963: }
964: if ($env{'form.sortedby'} eq "revcourse"){
965: @temp = sort {lc($b->[6]) cmp lc($a->[6])} @temp;
966: }
967: if ($env{'form.sortedby'} eq "status"){
968: @temp = sort {$a->[4] cmp $b->[4]} @temp;
969: }
970: if ($env{'form.sortedby'} eq "revstatus"){
971: @temp = sort {$b->[4] cmp $a->[4]} @temp;
972: }
973: return @temp;
974: }
975:
976: sub get_course_desc {
977: my ($fromcid,$descriptions) = @_;
978: my $description;
979: if (!$fromcid) {
980: return $description;
981: } else {
982: if (defined($$descriptions{$fromcid})) {
983: $description = $$descriptions{$fromcid};
984: } else {
985: if (defined($env{'course.'.$fromcid.'.description'})) {
986: $description = $env{'course.'.$fromcid.'.description'};
987: } else {
1.48 albertel 988: my %courseinfo=&Apache::lonnet::coursedescription($fromcid);
1.1 albertel 989: $description = $courseinfo{'description'};
990: }
991: $$descriptions{$fromcid} = $description;
992: }
993: return $description;
994: }
995: }
996:
997: # ======================================================== Display all messages
998:
999: sub disall {
1.53 raeburn 1000: my ($r,$folder,$msgstatus)=@_;
1.81 albertel 1001: my %saveable = ('msgstatus' => 'scalar',
1.57 albertel 1002: 'sortedby' => 'scalar',
1003: 'interdis' => 'scalar',
1004: );
1005: &Apache::loncommon::store_settings('user','mail',\%saveable);
1006: &Apache::loncommon::restore_settings('user','mail',\%saveable);
1007: $folder ||= $env{'form.folder'};
1008: $msgstatus ||= $env{'form.msgstatus'};
1009: $env{'form.interdis'} ||= 20;
1010:
1.53 raeburn 1011: $r->print(&folderlist($folder,$msgstatus));
1012: if ($folder eq 'critical') {
1.1 albertel 1013: &discrit($r);
1014: } else {
1.53 raeburn 1015: &disfolder($r,$folder,$msgstatus);
1.1 albertel 1016: }
1017: }
1018:
1019: # ============================================================ Display a folder
1020:
1021: sub disfolder {
1.53 raeburn 1022: my ($r,$folder,$msgstatus)=@_;
1023: my %statushash = &get_msgstatus_types();
1.1 albertel 1024: my %blocked = ();
1025: my %setters = ();
1026: my $numblocked = 0;
1.44 raeburn 1027: my ($startblock,$endblock) = &Apache::loncommon::blockcheck(\%setters,'com');
1.53 raeburn 1028: my %lt = &Apache::lonlocal::texthash(
1029: sede => 'Select a destination folder to which the messages will be moved.',
1.148 bisitz 1030: nome => 'No messages have been selected to apply this action to.',
1.53 raeburn 1031: chec => 'Check the checkbox for at least one message.',
1032: );
1.64 raeburn 1033: my $jscript = &Apache::loncommon::check_uncheck_jscript();
1.1 albertel 1034: $r->print(<<ENDDISHEADER);
1.16 albertel 1035: <script type="text/javascript">
1.127 bisitz 1036: // <![CDATA[
1.64 raeburn 1037: $jscript
1.1 albertel 1038:
1.53 raeburn 1039: function validate_checkedaction() {
1040: document.disall.markedaction.value = document.disall.checkedaction.options[document.disall.checkedaction.selectedIndex].value;
1041: if (document.disall.checkedaction.options[document.disall.checkedaction.selectedIndex].value == 'markedmove') {
1042: if (document.disall.movetofolder.options[document.disall.movetofolder.selectedIndex].value == "") {
1043: alert("$lt{'sede'}");
1044: return;
1045: }
1046: }
1047: var checktotal = 0;
1.64 raeburn 1048: if (document.forms.disall.delmark.length > 0) {
1049: for (var i=0; i<document.forms.disall.delmark.length; i++) {
1050: if (document.forms.disall.delmark[i].checked) {
1051: checktotal ++;
1052: }
1053: }
1054: } else {
1055: if (document.forms.disall.delmark.checked) {
1.53 raeburn 1056: checktotal ++;
1057: }
1.64 raeburn 1058: }
1.53 raeburn 1059: if (checktotal == 0) {
1060: alert("$lt{'nome'}\\n$lt{'chec'}");
1061: return;
1062: }
1063: document.disall.submit();
1064: }
1.127 bisitz 1065: // ]]>
1.1 albertel 1066: </script>
1067: ENDDISHEADER
1.54 albertel 1068:
1.127 bisitz 1069: my $fsqs='&folder='.$folder;
1.53 raeburn 1070: my @temp=&sortedmessages(\%blocked,$startblock,$endblock,\$numblocked,$folder,$msgstatus);
1.1 albertel 1071: my $totalnumber=$#temp+1;
1.53 raeburn 1072: if ($totalnumber < 1) {
1.141 bisitz 1073: $r->print('<p class="LC_info">');
1.53 raeburn 1074: if ($msgstatus eq '') {
1.141 bisitz 1075: $r->print(&mt('There are no messages in this folder.'));
1.53 raeburn 1076: } elsif ($msgstatus eq 'replied') {
1.141 bisitz 1077: $r->print(&mt('You have not replied to any messages in this folder.'));
1078: } else {
1079: $r->print(&mt('There are no '.lc($statushash{$msgstatus}).' messages in this folder.'));
1.53 raeburn 1080: }
1.141 bisitz 1081: $r->print('</p>');
1.65 raeburn 1082: if ($numblocked > 0) {
1083: $r->print(&blocked_in_folder($numblocked,$startblock,$endblock,
1084: \%setters));
1085: }
1.141 bisitz 1086: return;
1.1 albertel 1087: }
1.57 albertel 1088: my $interdis = $env{'form.interdis'};
1.1 albertel 1089: my $number=int($totalnumber/$interdis);
1.57 albertel 1090: if ($totalnumber%$interdis == 0) {
1091: $number--;
1.53 raeburn 1092: }
1093:
1.1 albertel 1094: if (($startdis<0) || ($startdis>$number)) { $startdis=$number; }
1095: my $firstdis=$interdis*$startdis;
1096: if ($firstdis>$#temp) { $firstdis=$#temp-$interdis+1; }
1097: my $lastdis=$firstdis+$interdis-1;
1098: if ($lastdis>$#temp) { $lastdis=$#temp; }
1.53 raeburn 1099: $r->print(&scrollbuttons($startdis,$number,$firstdis,$lastdis,$totalnumber,$msgstatus));
1.1 albertel 1100: $r->print('<form method="post" name="disall" action="/adm/email">'.
1.149 bisitz 1101: &Apache::loncommon::start_data_table().
1102: &Apache::loncommon::start_data_table_row().
1103: '<th colspan="1"> </th><th>');
1.1 albertel 1104: if ($env{'form.sortedby'} eq "revdate") {
1.134 raeburn 1105: $r->print('<a href = "/adm/email?sortedby=date'.$fsqs.'">'.&mt('Date').'</a></th>');
1.1 albertel 1106: } else {
1.134 raeburn 1107: $r->print('<a href = "/adm/email?sortedby=revdate'.$fsqs.'">'.&mt('Date').'</a></th>');
1.1 albertel 1108: }
1109: $r->print('<th>');
1110: if ($env{'form.sortedby'} eq "revuser") {
1.134 raeburn 1111: $r->print('<a href = "/adm/email?sortedby=user'.$fsqs.'">'.&mt('Username').'</a>');
1.1 albertel 1112: } else {
1.134 raeburn 1113: $r->print('<a href = "/adm/email?sortedby=revuser'.$fsqs.'">'.&mt('Username').'</a>');
1.1 albertel 1114: }
1115: $r->print('</th><th>');
1116: if ($env{'form.sortedby'} eq "revdomain") {
1.134 raeburn 1117: $r->print('<a href = "/adm/email?sortedby=domain'.$fsqs.'">'.&mt('Domain').'</a>');
1.1 albertel 1118: } else {
1.134 raeburn 1119: $r->print('<a href = "/adm/email?sortedby=revdomain'.$fsqs.'">'.&mt('Domain').'</a>');
1.1 albertel 1120: }
1121: $r->print('</th><th>');
1122: if ($env{'form.sortedby'} eq "revsubject") {
1.134 raeburn 1123: $r->print('<a href = "/adm/email?sortedby=subject'.$fsqs.'">'.&mt('Subject').'</a>');
1.1 albertel 1124: } else {
1.134 raeburn 1125: $r->print('<a href = "/adm/email?sortedby=revsubject'.$fsqs.'">'.&mt('Subject').'</a>');
1.1 albertel 1126: }
1127: $r->print('</th><th>');
1128: if ($env{'form.sortedby'} eq "revcourse") {
1.134 raeburn 1129: $r->print('<a href = "/adm/email?sortedby=course'.$fsqs.'">'.&mt('Course').'</a>');
1.1 albertel 1130: } else {
1.134 raeburn 1131: $r->print('<a href = "/adm/email?sortedby=revcourse'.$fsqs.'">'.&mt('Course').'</a>');
1.1 albertel 1132: }
1.149 bisitz 1133: $r->print('</th><th colspan="2">');
1.1 albertel 1134: if ($env{'form.sortedby'} eq "revstatus") {
1.134 raeburn 1135: $r->print('<a href = "/adm/email?sortedby=status'.$fsqs.'">'.&mt('Status').'</a></th>');
1.1 albertel 1136: } else {
1.134 raeburn 1137: $r->print('<a href = "/adm/email?sortedby=revstatus'.$fsqs.'">'.&mt('Status').'</a></th>');
1.1 albertel 1138: }
1139: $r->print("</tr>\n");
1.6 albertel 1140:
1141: my $suffix = &Apache::lonmsg::foldersuffix($folder);
1.132 raeburn 1142: my $count = $firstdis;
1.1 albertel 1143: for (my $n=$firstdis;$n<=$lastdis;$n++) {
1.11 albertel 1144: my ($sendtime,$shortsubj,$fromname,$fromdomain,$status,$origID,
1145: $description,$recv_name,$recv_domain)=
1146: @{$temp[$n]};
1.149 bisitz 1147: if (($status ne 'deleted') && defined($sendtime) && $sendtime!~/error/) {
1148: my $class_msgstatus = '';
1.114 raeburn 1149: $count ++;
1.149 bisitz 1150: if ($status eq 'new') {
1151: $class_msgstatus = 'LC_mail_new';
1152: } elsif ($status eq 'read') {
1153: $class_msgstatus = 'LC_mail_read';
1154: } elsif ($status eq 'replied') {
1155: $class_msgstatus = 'LC_mail_replied';
1156: } else {
1157: $class_msgstatus = 'LC_mail_other';
1158: }
1159: $r->print(&Apache::loncommon::start_data_table_row($class_msgstatus));
1.6 albertel 1160: my ($dis_name,$dis_domain) = ($fromname,$fromdomain);
1161: if ($folder eq 'sent') {
1.69 raeburn 1162: if (defined($recv_name) && defined($recv_domain)) {
1163: if (ref($recv_name) eq 'ARRAY' &&
1164: ref($recv_domain) eq 'ARRAY') {
1165: $dis_name = join('<br />',@{$recv_name});
1166: $dis_domain = join('<br />',@{$recv_domain});
1167: }
1.11 albertel 1168: } else {
1.29 www 1169: my $msg_id = &unescape($origID);
1.11 albertel 1170: my %message = &Apache::lonnet::get('nohist_email'.$suffix,
1171: [$msg_id]);
1172: my %content = &Apache::lonmsg::unpackagemsg($message{$msg_id});
1.69 raeburn 1173: if (ref($content{'recuser'}) eq 'ARRAY') {
1174: $dis_name = join('<br />',@{$content{'recuser'}});
1175: }
1176: if (ref($content{'recdomain'}) eq 'ARRAY') {
1177: $dis_domain = join('<br />',@{$content{'recdomain'}});
1178: }
1.11 albertel 1179: }
1.6 albertel 1180: }
1.53 raeburn 1181: my $localsenttime = &Apache::lonlocal::locallocaltime($sendtime);
1.102 bisitz 1182: $r->print('<td align="right"><span class="LC_nobreak">'.(($status eq 'new')?'<b>':'').
1.53 raeburn 1183: $count.'.'.(($status eq 'new')?'</b>':'').' '.
1184: '<input type="checkbox" name="delmark"'.
1.102 bisitz 1185: ' value="'.$origID.'" /></span></td>');
1.53 raeburn 1186: foreach my $item ($localsenttime,$dis_name,$dis_domain,$shortsubj) {
1187: $r->print('<td>'.(($status eq 'new')?'<b>':'').
1.61 raeburn 1188: '<a href="/adm/email?display='.$origID.$sqs.'">'.
1.127 bisitz 1189: $item.(($status eq 'new')?'</b>':'').'</a></td>');
1.53 raeburn 1190: }
1.149 bisitz 1191: # Description and Status
1.53 raeburn 1192: my $showstatus;
1193: my %statushash = &get_msgstatus_types();
1194: if ($status eq '') {
1195: $showstatus = '';
1196: } else {
1197: $showstatus = $statushash{$status};
1198: }
1.149 bisitz 1199: $r->print('<td>'.(($status eq 'new')?'<b>':'').$description.
1200: (($status eq 'new')?'</b>':'').
1201: '</td>');
1202: $r->print('<td class="'.$class_msgstatus.'"> </td>'.
1203: '<td>'.
1204: (($status eq 'new')?'<b>':'').&mt($showstatus).
1205: (($status eq 'new')?'</b>':'').
1206: '</td>');
1207:
1208: $r->print(&Apache::loncommon::end_data_table_row());
1209:
1210: } elsif ($status eq 'deleted') {
1.1 albertel 1211: # purge
1.149 bisitz 1212: my ($result,$msg) =
1213: &movemsg(&unescape($origID),$folder,'trash');
1214: }
1.1 albertel 1215: }
1.149 bisitz 1216: $r->print(&Apache::loncommon::end_data_table());
1217:
1218:
1219: # Bottom Functions
1.148 bisitz 1220: $r->print('<table border="0" cellspacing="2" cellpadding="8">
1.53 raeburn 1221: <tr>
1.148 bisitz 1222: <td>
1223: <fieldset>
1224: <legend>'.&mt('Select').'</legend>
1225: <span class="LC_nobreak">
1226: <input type="button" onclick="javascript:checkAll(document.disall.delmark)" value="'.&mt('Check All').'" />'."\n".
1227: ' <input type="button" onclick="javascript:uncheckAll(document.disall.delmark)" value="'.&mt('Uncheck All').'" />'."\n".
1228: '<input type="hidden" name="sortedby" value="'.$env{'form.sortedby'}.'" />
1229: </span>
1230: </fieldset>
1231: </td>'."\n".
1232: '<td><b>'.&mt('Action').'</b><br />'."\n".
1.83 raeburn 1233: ' <select name="checkedaction">'."\n");
1.53 raeburn 1234:
1.1 albertel 1235: if ($folder ne 'trash') {
1.53 raeburn 1236: $r->print(' <option value="markeddel">'.&mt('Delete').'</option>'."\n");
1237: }
1238: if ($msgstatus ne 'read') {
1239: $r->print(' <option value="markedread">'.&mt('Mark Read').'</option>."\n"');
1240: }
1241: if ($msgstatus ne 'unread') {
1242: $r->print(' <option value="markedunread">'.&mt('Mark Unread').'</option>'."\n");
1.1 albertel 1243: }
1.53 raeburn 1244: $r->print(' <option value="markedforward">'.&mt('Forward').'</option>'."\n");
1.54 albertel 1245:
1246: my %gotfolders = &Apache::lonmsg::get_user_folders();
1.53 raeburn 1247: if (keys(%gotfolders) > 0) {
1248: $r->print(' <option value="markedmove">'.&mt('Move to Folder ->').
1249: '</option>');
1250: }
1251: $r->print("\n".'</select></td>'."\n");
1.54 albertel 1252:
1.53 raeburn 1253: if (keys(%gotfolders) > 0) {
1.148 bisitz 1254: $r->print('<td><b>'.&mt('Destination folder').'<b><br />');
1.54 albertel 1255: my %userfolders;
1.53 raeburn 1256: foreach my $key (keys(%gotfolders)) {
1257: $userfolders{$key} = $key;
1258: }
1259: $userfolders{''} = "";
1.153 ! raeburn 1260: $r->print(&Apache::loncommon::select_form('','movetofolder',\%userfolders).
1.53 raeburn 1261: '</td>');
1262: }
1.148 bisitz 1263: $r->print('<td>'.
1.53 raeburn 1264: '<input type="button" name="go" value="'.&mt('Go').
1265: '" onclick="javascript:validate_checkedaction()"/></td>'."\n".
1266: '</tr></table>');
1.1 albertel 1267: my $postedstartdis=$startdis+1;
1.121 bisitz 1268: $r->print('<input type="hidden" name="folder" value="'.$folder.'" /><input type="hidden" name="startdis" value="'.$postedstartdis.'" /><input type="hidden" name="interdis" value="'.$env{'form.interdis'}.'" /><input type="hidden" name="msgstatus" value="'.$msgstatus.'" /><input type="hidden" name="markedaction" value="" /></form>');
1.1 albertel 1269: if ($numblocked > 0) {
1.65 raeburn 1270: $r->print(&blocked_in_folder($numblocked,$startblock,$endblock,
1271: \%setters));
1.1 albertel 1272: }
1273: }
1274:
1.65 raeburn 1275: sub blocked_in_folder {
1276: my ($numblocked,$startblock,$endblock,$setters) = @_;
1277: my $beginblock = &Apache::lonlocal::locallocaltime($startblock);
1278: my $finishblock = &Apache::lonlocal::locallocaltime($endblock);
1279: my $output = '<br /><br />'.
1280: &mt('[quant,_1,message is, messages are] not viewable because display of LON-CAPA messages sent to you by other students between [_2] and [_3] is currently being blocked because of online exams.',$numblocked,$beginblock,$finishblock);
1.129 kalberla 1281: #$output .= &Apache::loncommon::build_block_table($startblock,$endblock,
1282: # $setters);
1283:
1.130 kalberla 1284: my ($blocked, $blocktext) = &Apache::loncommon::blocking_status("com");
1.131 kalberla 1285: $output .="<br /><br />".$blocktext;
1.129 kalberla 1286:
1.65 raeburn 1287: return $output;
1288: }
1289:
1.1 albertel 1290: # ============================================================== Compose output
1291:
1292: sub compout {
1.53 raeburn 1293: my ($r,$forwarding,$replying,$broadcast,$replycrit,$folder,$dismode,
1294: $multiforward)=@_;
1.1 albertel 1295: my $suffix=&Apache::lonmsg::foldersuffix($folder);
1.38 raeburn 1296: my ($cdom,$cnum,$group,$refarg);
1297: if (exists($env{'form.group'})) {
1298: $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
1299: $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1300: $group = $env{'form.group'};
1301: my $action = 'composing';
1302: $r->print(&groupmail_header($action,$group,$cdom,$cnum));
1303: } elsif ($broadcast eq 'individual') {
1.1 albertel 1304: &printheader($r,'/adm/email?compose=individual',
1305: 'Send a Message');
1306: } elsif ($broadcast) {
1307: &printheader($r,'/adm/email?compose=group',
1308: 'Broadcast Message');
1309: } elsif ($forwarding) {
1310: &Apache::lonhtmlcommon::add_breadcrumb
1.29 www 1311: ({href=>"/adm/email?display=".&escape($forwarding),
1.1 albertel 1312: text=>"Display Message"});
1.29 www 1313: &printheader($r,'/adm/email?forward='.&escape($forwarding),
1.1 albertel 1314: 'Forwarding a Message');
1315: } elsif ($replying) {
1316: &Apache::lonhtmlcommon::add_breadcrumb
1.29 www 1317: ({href=>"/adm/email?display=".&escape($replying),
1.1 albertel 1318: text=>"Display Message"});
1.29 www 1319: &printheader($r,'/adm/email?replyto='.&escape($replying),
1.1 albertel 1320: 'Replying to a Message');
1321: } elsif ($replycrit) {
1322: $r->print('<h3>'.&mt('Replying to a Critical Message').'</h3>');
1323: $replying=$replycrit;
1.53 raeburn 1324: } elsif ($multiforward) {
1325: &Apache::lonhtmlcommon::add_breadcrumb
1326: ({href=>"/adm/email?folder=".&escape($folder),
1.112 weissno 1327: text=>"Display All Messages"});
1.53 raeburn 1328: &printheader($r,'/adm/email?compose=multiforward',
1329: 'Forwarding Multiple Messages');
1.70 raeburn 1330: if ($multiforward > 1) {
1.144 raeburn 1331: $r->print(&mt('Each of the[_1] [quant,_2,message] [_3]you checked'
1.135 bisitz 1332: .' will be forwarded to the recipient(s) you select below.'
1.144 raeburn 1333: ,'<b>',$multiforward,'</b>')
1.85 bisitz 1334: .'<br />');
1.70 raeburn 1335: } else {
1336: $r->print(&mt('The message you checked will be forwarded to the recipient(s) you select below.').'<br />');
1337: }
1338:
1.1 albertel 1339: } else {
1340: &printheader($r,'/adm/email?compose=upload',
1341: 'Distribute from Uploaded File');
1342: }
1343:
1344: my $dispcrit='';
1345: my $dissub='';
1346: my $dismsg='';
1347: my $disbase='';
1.86 raeburn 1348: my $attachrow;
1.94 bisitz 1349: my $func1='Send'; # do not translate here!
1350: my %func2=( # do not translate here!
1351: 'ma' => 'Message',
1352: 'msg' => 'Messages',
1353: );
1.50 raeburn 1354: my %lt=&Apache::lonlocal::texthash('us' => 'Username',
1355: 'do' => 'Domain',
1356: 'ad' => 'Additional Recipients',
1.78 raeburn 1357: 'rt' => 'Reply to',
1358: 'ar' => 'Allow replies',
1.50 raeburn 1359: 'sb' => 'Subject',
1360: 'ca' => 'Cancel',
1361: 'gen' => 'Generate messages from a file',
1362: 'gmt' => 'General message text',
1363: 'tff' => 'The file format for the uploaded portion of the message is',
1364: 'uas' => 'Upload and Send',
1.86 raeburn 1365: 'atta' => 'Attachment',
1.95 raeburn 1366: 'to' => 'To:',
1.50 raeburn 1367: );
1.86 raeburn 1368: my %attachmax = (
1.93 bisitz 1369: text => &mt('(128 KB max size)'),
1.86 raeburn 1370: num => 131072,
1371: );
1372: if (!$forwarding && !$multiforward) {
1.95 raeburn 1373: $attachrow = '<tr><td colspan="3"><b>'.$lt{'atta'}.'</b> '.$attachmax{'text'}.': <input type="file" name="attachment" /></td></tr>';
1.86 raeburn 1374: }
1.1 albertel 1375: if (&Apache::lonnet::allowed('srm',$env{'request.course.id'})
1376: || &Apache::lonnet::allowed('srm',$env{'request.course.id'}.
1377: '/'.$env{'request.course.sec'})) {
1.138 raeburn 1378: my $crstype = &Apache::loncommon::course_type();
1.1 albertel 1379: my $crithelp = Apache::loncommon::help_open_topic("Course_Critical_Message");
1.138 raeburn 1380: my $rsstxt;
1381: if (&Apache::loncommon::course_type() eq 'Community') {
1382: $rsstxt = &mt('Include in community RSS newsfeed');
1383: } else {
1384: $rsstxt = &mt('Include in course RSS newsfeed');
1385: }
1.1 albertel 1386: $dispcrit=
1.95 raeburn 1387: '<span class="LC_nobreak"><label><input type="checkbox" name="critmsg" /> '.&mt('Send as critical message').'.</label>'.$crithelp.' '.&mt('Require return receipt?').'<label><input type="radio" name="sendbck" value="1" />'.&mt('Yes').'</label> <label><input type="radio" name="sendbck" value="" checked="checked" />'.&mt('No').'</label></span><br />'.
1388: '<label><input type="checkbox" name="permanent" /> '.
1.100 schafran 1389: &mt('Send copy to permanent e-mail address (if known)').'</label><br />'.
1.95 raeburn 1390: '<label><input type="checkbox" name="rsspost" /> '.
1.138 raeburn 1391: $rsstxt.'</label><br />';
1.70 raeburn 1392: }
1.71 raeburn 1393: if ($broadcast ne 'group') {
1394: if (&Apache::lonnet::allowed('dff',$env{'request.course.id'}) ||
1395: &Apache::lonnet::allowed('dff',$env{'request.course.id'}.
1396: '/'.$env{'request.course.sec'})) {
1397:
1.138 raeburn 1398: my $rectxt;
1399: if (&Apache::loncommon::course_type() eq 'Community') {
1400: $rectxt = &mt("Include in community's 'User records' for recipient(s)");
1401: } else {
1402: $rectxt = &mt("Include in course's 'User records' for recipient(s)");
1403: }
1404:
1.95 raeburn 1405: $dispcrit.='<label>'.
1.71 raeburn 1406: '<input type="checkbox" name="courserecord" value="1" /> '.
1.138 raeburn 1407: $rectxt.
1.95 raeburn 1408: '</label><br />';
1.71 raeburn 1409: }
1.70 raeburn 1410: }
1411:
1.1 albertel 1412: my %message;
1413: my %content;
1.95 raeburn 1414: my ($hasfloat,$broadcast_js,$sendmode,$can_grp_broadcast);
1.1 albertel 1415: my $defdom=$env{'user.domain'};
1.95 raeburn 1416: if ($broadcast eq 'group') {
1417: my %access_status = (
1418: active => 0,
1419: previous => 0,
1420: future => 0,
1421: );
1422:
1423: if ($group eq '') {
1424: my $studentsel = &discourse(\%access_status);
1425: if ($studentsel) {
1.110 raeburn 1426: if ($env{'environment.wysiwygeditor'} eq 'on') {
1427: $r->print($studentsel);
1428: } else {
1429: $r->print('<div class="LC_left_float">'.$studentsel.'</div>');
1430: }
1.95 raeburn 1431: $hasfloat = 1;
1432: }
1433: } else {
1434: $can_grp_broadcast = &check_group_priv($group);
1435: if ($can_grp_broadcast) {
1.105 raeburn 1436: $hasfloat = &disgroup($r,$cdom,$cnum,$group,\%access_status);
1.95 raeburn 1437: }
1438: }
1439: if ($hasfloat) {
1440: $sendmode = '<input type="hidden" name="sendmode" value="group" />'."\n";
1441: $broadcast_js = qq|
1442: <script type="text/javascript">
1.127 bisitz 1443: // <![CDATA[
1.95 raeburn 1444: function courseRecipients() {
1445: |;
1446: foreach my $type (keys(%access_status)) {
1447: if ($access_status{$type}) {
1448: my $formname = $type.'users';
1449: if ($type eq 'active' && $group ne '') {
1450: $broadcast_js .= qq|
1451: document.compemail.groupmail.value = document.$formname.groupmail[document.$formname.groupmail.selectedIndex].value;
1452: |;
1453: }
1454: $broadcast_js .= qq|
1455: if (typeof(document.$formname.selectedusers_forminput.length)=="undefined") {
1456: document.compemail.courserecips.value += '_&&&_'+document.$formname.selectedusers_forminput.value;
1457: } else {
1458: for (var i=0; i<document.$formname.selectedusers_forminput.length; i++) {
1459: if (document.$formname.selectedusers_forminput[i].checked) {
1460: document.compemail.courserecips.value += '_&&&_'+document.$formname.selectedusers_forminput[i].value;
1461: }
1462: }
1463: }
1464: |;
1465: }
1466: }
1467: $broadcast_js .= qq|
1468: return;
1469: }
1.127 bisitz 1470: // ]]>
1.95 raeburn 1471: </script>
1472:
1473: |;
1474: }
1475: }
1.1 albertel 1476: if ($forwarding) {
1477: %message=&Apache::lonnet::get('nohist_email'.$suffix,[$forwarding]);
1478: %content=&Apache::lonmsg::unpackagemsg($message{$forwarding},$folder);
1479: $dispcrit.='<input type="hidden" name="forwid" value="'.
1480: $forwarding.'" />';
1.94 bisitz 1481: $func1='Forward'; # do not translate here!
1.1 albertel 1482:
1483: $dissub=&mt('Forwarding').': '.$content{'subject'};
1484: $dismsg=&mt('Forwarded message from').' '.
1485: $content{'sendername'}.' '.&mt('at').' '.$content{'senderdomain'};
1486: if ($content{'baseurl'}) {
1.29 www 1487: $disbase='<input type="hidden" name="baseurl" value="'.&escape($content{'baseurl'}).'" />';
1.1 albertel 1488: }
1489: }
1490: if ($replying) {
1491: %message=&Apache::lonnet::get('nohist_email'.$suffix,[$replying]);
1492: %content=&Apache::lonmsg::unpackagemsg($message{$replying},$folder);
1493: $dispcrit.='<input type="hidden" name="replyid" value="'.
1494: $replying.'" />';
1.94 bisitz 1495: $func1='Send Reply to'; # do not translate here!
1.1 albertel 1496:
1497: $dissub=&mt('Reply').': '.$content{'subject'};
1498: $dismsg='> '.$content{'message'};
1499: $dismsg=~s/\r/\n/g;
1500: $dismsg=~s/\f/\n/g;
1501: $dismsg=~s/\n+/\n\> /g;
1502: if ($content{'baseurl'}) {
1.29 www 1503: $disbase='<input type="hidden" name="baseurl" value="'.&escape($content{'baseurl'}).'" />';
1.1 albertel 1504: if ($env{'user.adv'}) {
1.72 albertel 1505: $disbase.='<label><input type="checkbox" name="storebasecomment" />'.&mt('Save message for re-use').
1.1 albertel 1506: '</label> <a href="/adm/email?showcommentbaseurl='.
1.29 www 1507: &escape($content{'baseurl'}).'" target="comments">'.
1.1 albertel 1508: &mt('Show re-usable messages').'</a><br />';
1509: }
1510: }
1.73 raeburn 1511: my $jscript = &Apache::loncommon::check_uncheck_jscript();
1512: $r->print(<<"ENDREPSCRIPT");
1513: <script type="text/javascript">
1.127 bisitz 1514: // <![CDATA[
1.73 raeburn 1515: $jscript
1.127 bisitz 1516: // ]]>
1.73 raeburn 1517: </script>
1518: ENDREPSCRIPT
1.1 albertel 1519: }
1520: my $citation=&displayresource(%content);
1.95 raeburn 1521: my $onsubmit;
1.1 albertel 1522: if ($env{'form.recdom'}) { $defdom=$env{'form.recdom'}; }
1.23 www 1523: if ($env{'form.text'}) { $dismsg=$env{'form.text'}; }
1524: if ($env{'form.subject'}) { $dissub=$env{'form.subject'}; }
1.95 raeburn 1525: if ($hasfloat) {
1.110 raeburn 1526: if ($env{'environment.wysiwygeditor'} eq 'on') {
1527: $r->print($broadcast_js);
1528: } else {
1529: $r->print($broadcast_js.'<div class="LC_left_float">');
1530: }
1.95 raeburn 1531: $onsubmit = ' onsubmit="javascript:courseRecipients();" ';
1532: }
1.23 www 1533: $r->print(
1.1 albertel 1534: '<form action="/adm/email" name="compemail" method="post"'.
1.95 raeburn 1535: ' enctype="multipart/form-data"'.$onsubmit.'>'."\n".
1536: '<input type="hidden" name="sendmail" value="on" />'."\n".
1537: '<table>');
1538: if (($broadcast eq 'group') && ($group ne '') && (!$can_grp_broadcast)) {
1.38 raeburn 1539: $r->print(&recipient_input_row($cdom,%lt));
1.95 raeburn 1540: }
1.38 raeburn 1541: if (($broadcast ne 'group') && ($broadcast ne 'upload')) {
1.1 albertel 1542: if ($replying) {
1.78 raeburn 1543: if ($content{'noreplies'}) {
1544: $r->print('<tr><td>'.&mt('This message was designated by the sender not to allow replies.').'</td></tr></table></form>');
1545: return;
1546: }
1.95 raeburn 1547: $r->print('<tr><td colspan="3"><b>'.&mt('Replying to').'</b> ');
1.78 raeburn 1548: if ($content{'replytoaddr'}) {
1549: my ($replytoname,$replytodom) = split(/:/,$content{'replytoaddr'});
1550: if ($replytoname ne '' && $replytodom ne '') {
1551: $r->print(&Apache::loncommon::plainname($replytoname,
1552: $replytodom).' ('.$replytoname.':'.
1553: $replytodom.')');
1554: $r->print('<input type="hidden" name="recuname" value="'.
1555: $replytoname.'" />'.
1556: '<input type="hidden" name="recdomain" value="'.
1557: $replytodom.'" /></td></tr>');
1558:
1559: } else {
1560: $r->print(&mt('The sender did not designate a reply to address for this message.').'</td></tr></table>');
1561: return;
1562: }
1563: } else {
1564: $r->print(&Apache::loncommon::aboutmewrapper(
1.1 albertel 1565: &Apache::loncommon::plainname($content{'sendername'},$content{'senderdomain'}),$content{'sendername'},$content{'senderdomain'}).' ('.
1.14 albertel 1566: $content{'sendername'}.':'.
1.78 raeburn 1567: $content{'senderdomain'}.')');
1568: $r->print('<input type="hidden" name="recuname" value="'.
1569: $content{'sendername'}.'" />'.
1570: '<input type="hidden" name="recdomain" value="'.
1571: $content{'senderdomain'}.'" /></td></tr>');
1572: }
1.73 raeburn 1573: if ($content{'recipid'}) {
1.95 raeburn 1574: my %recips;
1575: &retrieve_recips('replying',\%content,\%recips);
1576: if (ref($recips{'to'}) eq 'ARRAY') {
1577: if (@{$recips{'to'}} > 0) {
1578: my $replyall;
1579: if (@{$recips{'to'}} > 1) {
1580: $replyall = qq|
1581: <span class="LC_nobreak">
1582: <input type="button" value="check all"
1583: onclick="javascript:checkAll(document.compemail.replying_to)" />
1584:
1585: <input type="button" value="uncheck all"
1586: onclick="javascript:uncheckAll(document.compemail.replying_to)" />
1587: </span>
1588: |;
1589: }
1590: my $tolist = join(' ',@{$recips{'to'}});
1591: $r->print('<tr><td colspan="3"><table><tr><td>'.&mt('[_1]Send reply[_2] to other recipients','<b>','</b>').':<br />'.$replyall.'</td><td>'.$tolist.'</td></tr></table></td></tr>');
1592: }
1593: }
1594: if (ref($recips{'cc'}) eq 'ARRAY') {
1595: if (@{$recips{'cc'}} > 0) {
1596: my $replyall;
1597: if (@{$recips{'cc'}} > 1) {
1598: $replyall = qq|
1.73 raeburn 1599: <span class="LC_nobreak">
1600: <input type="button" value="check all"
1601: onclick="javascript:checkAll(document.compemail.replying_cc)" />
1602:
1603: <input type="button" value="uncheck all"
1604: onclick="javascript:uncheckAll(document.compemail.replying_cc)" />
1605: </span>
1606: |;
1.95 raeburn 1607: }
1608: my $cclist = join(' ',@{$recips{'cc'}});
1609: $r->print('<tr><td colspan="3"><table><tr><td>'.&mt('[_1]Cc[_2] to other copied recipients','<b>','</b>').':<br />'.$replyall.'</td><td>'.$cclist.'</td></tr></table></td></tr>');
1610: }
1611: }
1612: if ($content{'group'} ne '') {
1613: if (&check_group_priv($content{'group'})) {
1614: if (ref($recips{'group_cc_broadcast'}) eq 'ARRAY') {
1615: if (@{$recips{'group_cc_broadcast'}} > 0) {
1616: my $replyall;
1617: if (@{$recips{'group_cc_broadcast'}} > 1) {
1618: $replyall = qq|
1619: <span class="LC_nobreak">
1620: <input type="button" value="check all"
1621: onclick="javascript:checkAll(document.compemail.replying_groupcc)" />
1622:
1623: <input type="button" value="uncheck all"
1624: onclick="javascript:uncheckAll(document.compemail.replying_groupcc)" />
1625: </span>
1626: |;
1627: }
1628: my $groupcclist = join(' ',@{$recips{'group_cc_broadcast'}});
1629: $r->print('<tr><td colspan="3"><table><tr><td>'.&mt('[_1]Cc[_2] to other copied group members','<b>','</b>').':<br />'.$replyall.'</td><td>'.$groupcclist.'<input type="hidden" name="group" value="'.$content{'group'}.'" /><input type="hidden" name="sendmode" value="group" /><input type="hidden" name="groupmail" value="cc" /></td></tr></table></td></tr>');
1630: }
1631: }
1632: }
1.73 raeburn 1633: }
1634: }
1.1 albertel 1635: } else {
1.38 raeburn 1636: $r->print(&recipient_input_row($defdom,%lt));
1.1 albertel 1637: }
1638: }
1.109 raeburn 1639: my $latexHelp = &Apache::loncommon::helpLatexCheatsheet(undef,undef,1);
1.95 raeburn 1640: my $wysiwyglink=&Apache::lonhtmlcommon::htmlareaselectactive('message').'<br />';
1.53 raeburn 1641: my $subj_size;
1642: if ($multiforward) {
1643: $r->print(&additional_rec_row(\%lt));
1644: $r->print('<tr><td colspan="2">'.
1645: &mt('Unless you choose otherwise:').'<ul><li>'.
1646: &mt("The subject in each forwarded message will be <i>'Forwarding:'</i> followed by the original subject.").'</li><li>'.
1647: &mt("The message itself will begin with a first line: <i>'Forwarded message from'</i> followed by the original sender's name.").'</li></ul></td></tr>');
1.94 bisitz 1648: $func1='Forward'; # do not translate here!
1.53 raeburn 1649: $dissub = &mt('Forwarding').': ';
1650: $subj_size = '10';
1651: my $extra = '<'.&mt('original subject').'> '.
1652: '<input type="radio" name="showorigsubj" value="1" checked="checked" />'.&mt('Yes').' <input type="radio" name="showorigsubj" value="0" />'.&mt('No');
1653: $dismsg = &mt('Forwarded message from ').' ';
1654: my $sender = &mt("sender's name");
1655: $r->print(&msg_subject_row($dissub,\%lt,$subj_size,$extra));
1656: $r->print('<tr><td>'.&mt('Message begins with:').'</td><td><input type="text" name="msgheader" value="'.$dismsg.'" /> '.$sender.' <input type="radio" name="showorigsender" value="1" checked="checked" />'.&mt('Yes').' <input type="radio" name="showorigsender" value="0" />'.&mt('No').'<input type="hidden" name="multiforward" value="'.$multiforward.'" /></td></tr>
1657: </table>
1.95 raeburn 1658: <br /><table>
1659: <tr><td align="left">'."\n".
1660: $latexHelp."<br />\n".
1661: &mt("Any new text to display before the text of the original messages:").'<br />'."\n".
1662: '<textarea name="message" id="message" cols="80" rows="5" wrap="hard"></textarea>'.
1663: $wysiwyglink);
1.53 raeburn 1664: my @to_forward = &Apache::loncommon::get_env_multiple('form.delmark');
1665: foreach my $msg (@to_forward) {
1666: $r->print('<input type="hidden" name="delmark" value="'.$msg.'" />');
1667: }
1.94 bisitz 1668: $r->print(&submit_button_row($folder,$dismode,&mt($func1.' '.$func2{'msg'}),
1.53 raeburn 1669: \%lt));
1670: } elsif ($broadcast ne 'upload') {
1671: $subj_size = '50';
1672: $r->print(&additional_rec_row(\%lt));
1.78 raeburn 1673: if (&Apache::lonnet::allowed('srm',$env{'request.course.id'})
1674: || &Apache::lonnet::allowed('srm',$env{'request.course.id'}.
1675: '/'.$env{'request.course.sec'})) {
1676: $r->print(&reply_to_row(\%lt));
1677: }
1.53 raeburn 1678: $r->print(&msg_subject_row($dissub,\%lt,$subj_size));
1679: $r->print(<<"ENDCOMP");
1.95 raeburn 1680: $attachrow
1681: </table><br />
1.117 bisitz 1682: $latexHelp<br />
1.1 albertel 1683: <textarea name="message" id="message" cols="80" rows="15" wrap="hard">$dismsg
1.95 raeburn 1684: </textarea>$wysiwyglink
1685: $sendmode
1.1 albertel 1686: $dispcrit
1687: $disbase
1688: ENDCOMP
1.97 schafran 1689: $r->print(&submit_button_row($folder,$dismode,&mt($func1.' '.$func2{'ma'}),
1.95 raeburn 1690: \%lt,$hasfloat,$group));
1.53 raeburn 1691: $r->print($citation);
1.38 raeburn 1692: if (exists($env{'form.ref'})) {
1693: $r->print('<input type="hidden" name="ref" value="'.
1694: $env{'form.ref'}.'" />');
1695: }
1696: if (exists($env{'form.group'})) {
1697: $r->print('<input type="hidden" name="group" value="'.
1698: $env{'form.group'}.'" />');
1699: }
1.1 albertel 1700: } else { # $broadcast is 'upload'
1.50 raeburn 1701: $r->print(<<ENDBLOCK);
1.1 albertel 1702: <input type="hidden" name="sendmode" value="upload" />
1703: <input type="hidden" name="send" value="on" />
1.50 raeburn 1704: <h3>$lt{'gen'}</h3>
1.1 albertel 1705: <p>
1706: Subject: <input type="text" size="50" name="subject" />
1707: </p>
1.50 raeburn 1708: <p>$lt{'gmt'}:<br />
1.1 albertel 1709: <textarea name="message" id="message" cols="60" rows="10" wrap="hard">$dismsg
1.95 raeburn 1710: </textarea>$wysiwyglink</p>
1.1 albertel 1711: <p>
1.50 raeburn 1712: $lt{'tff'}:
1713: ENDBLOCK
1714: $r->print('
1715: <pre>'."\n".
1716: &mt('username1:domain1: text')."\n".
1717: &mt('username2:domain2: text')."\n".
1718: &mt('username3:domain1: text')."\n".
1719: '</pre>
1.1 albertel 1720: </p>
1721: <p>
1.50 raeburn 1722: '.&mt('The messages will be assembled from all lines with the respective'."\n".'<tt>username:domain</tt>, and appended to the general message text.'));
1723: $r->print(<<ENDUPLOAD);
1724: </p>
1.1 albertel 1725: <p>
1726: <input type="file" name="upfile" size="40" /></p><p>
1727: $dispcrit
1.50 raeburn 1728: <input type="submit" value="$lt{'uas'}" /></p>
1.1 albertel 1729: ENDUPLOAD
1730: }
1.36 albertel 1731: if ($env{'form.displayedcrit'}) {
1732: $r->print('<input type="hidden" name="displayedcrit" value="true" />');
1733: }
1.95 raeburn 1734: $r->print('</form>');
1735: if ($hasfloat) {
1.110 raeburn 1736: unless($env{'environment.wysiwygeditor'} eq 'on') {
1737: $r->print('</div><div class="LC_clear_float_footer"></div>');
1738: }
1.95 raeburn 1739: }
1740: $r->print(&generate_preview_form);
1741: }
1742:
1743: sub check_group_priv {
1744: my ($group) = @_;
1745: my $cid = $env{'request.course.id'};
1746: my $sec = $env{'request.course.sec'};
1747: return if !$cid;
1748: my $can_broadcast = &Apache::lonnet::allowed('sgb',$cid.'/'.$group);
1749: my $viewgrps = &Apache::lonnet::allowed('vcg',$cid.($sec?'/'.$sec:''));
1750: my $editgrps = &Apache::lonnet::allowed('mdg',$cid.($sec?'/'.$sec:''));
1751: if ($viewgrps || $editgrps || $can_broadcast) {
1752: return 1;
1753: }
1754: return;
1.1 albertel 1755: }
1756:
1.38 raeburn 1757: sub recipient_input_row {
1758: my ($dom,%lt) = @_;
1759: my $domform = &Apache::loncommon::select_dom_form($dom,'recdomain');
1760: my $selectlink=
1761: &Apache::loncommon::selectstudent_link('compemail','recuname',
1762: 'recdomain');
1763: my $output = <<"ENDREC";
1.95 raeburn 1764: <tr><td colspan="3"><span class="LC_nobreak"><b>$lt{'to'}</b> $lt{'us'}: <input type="text" size="12" name="recuname" value="$env{'form.recname'}" /> $lt{'do'}: $domform $selectlink</span></td></tr>
1.38 raeburn 1765: ENDREC
1766: return $output;
1767: }
1768:
1.78 raeburn 1769: sub reply_to_row {
1770: my ($lt) = @_;
1771: my $radioyes = &mt('Yes');
1772: my $radiono = &mt('No');
1773: my $output = <<"ENDREP";
1.95 raeburn 1774: <tr><td colspan="3"><span class="LC_nobreak"><b>$lt->{'ar'}</b>:<label><input type="radio" name="can_reply" value="Y" checked="checked" />$radioyes</label> <label><input type="radio" name="can_reply" value="N" />$radiono</label></span> <span class="LC_nobreak">$lt->{'rt'}: <input type="text" size="25" name="reply_to_addr" value="$env{'user.name'}:$env{'user.domain'}" /></span></td></tr>
1.78 raeburn 1775: ENDREP
1776: return $output;
1777: }
1778:
1.53 raeburn 1779: sub additional_rec_row {
1780: my ($lt) = @_;
1.73 raeburn 1781: my $cc = &mt('Cc:');
1.85 bisitz 1782: my $bcc = &mt('Bcc:');
1783: my $exmpl = &mt('username:domain,username:domain,...');
1.53 raeburn 1784: my $output = <<"ENDADD";
1.125 bisitz 1785: <tr><td colspan="3"><fieldset id="LC_additionalrecips"><legend>$lt->{'ad'} <tt>($exmpl)</tt></legend><table>
1.95 raeburn 1786: <tr><td> </td><td>$lt->{'to'}</td><td><input type="text" size="50" name="additionalrec_to" /></td></tr>
1787: <tr><td> </td><td>$cc</td><td><input type="text" size="50" name="additionalrec_cc" /></td></tr>
1.110 raeburn 1788: <tr><td> </td><td>$bcc</td><td><input type="text" size="50" name="additionalrec_bcc" /></td></tr></table></fieldset></td></tr>
1.53 raeburn 1789: ENDADD
1790: return $output;
1791: }
1792:
1793: sub submit_button_row {
1.95 raeburn 1794: my ($folder,$dismode,$sendtext,$lt,$is_crsform,$group) = @_;
1795: my $pre=&mt("Show Preview and Check Spelling");
1.98 schafran 1796: my $value=&mt('Send');
1.95 raeburn 1797: my $prevbutton = '<input type="button" name="preview" value="'.$pre.'" onclick="if (typeof(document.compemail.onsubmit)=='."'function'".') {document.compemail.onsubmit();};document.preview.comment.value=document.compemail.message.value;document.preview.subject.value=document.compemail.subject.value;document.preview.submit();" />';
1798: my $output = qq|
1.53 raeburn 1799: <input type="hidden" name="folder" value="$folder" />
1.95 raeburn 1800: <input type="hidden" name="dismode" value="$dismode" />|;
1801: if ($is_crsform) {
1802: $output .= '<input type="hidden" name="courserecips" value="" />'."\n";
1803: if ($group ne '') {
1804: $output .= '<input type="hidden" name="groupmail" value="" />'."\n";
1805: }
1806: }
1807: $output .= qq|
1808: <table><tr><td align="left">
1.98 schafran 1809: <input type="submit" name="send" value="$value" title="$sendtext" />
1.95 raeburn 1810: <input type="submit" name="cancel" value="$lt->{'ca'}" />
1811: </td><td width="60"> </td><td align="right">$prevbutton</td></tr></table>
1.53 raeburn 1812: |;
1813: return $output;
1814: }
1815:
1816: sub msg_subject_row {
1817: my ($dissub,$lt,$subj_size,$extra) = @_;
1.95 raeburn 1818: my $output = '<tr><td colspan="3"><b>'.$lt->{'sb'}.'</b>: <input type="text" size="'.
1.53 raeburn 1819: $subj_size.'" name="subject" value="'.$dissub.'" />'.$extra.
1820: '</td></tr>';
1821: return $output;
1822: }
1823:
1.95 raeburn 1824: sub generate_preview_form {
1825: my $prevbutton = (<<ENDPREVIEW);
1826: <form name="preview" action="/adm/feedback?preview=1" method="post" target="preview">
1827: <input type="hidden" name="subject" />
1828: <input type="hidden" name="comment" />
1829: </form>
1830: ENDPREVIEW
1831: }
1832:
1833: # ---------------------------------------------------- Display all face to face
1834:
1.1 albertel 1835: sub retrieve_instructor_comments {
1836: my ($user,$domain)=@_;
1837: my $target=$env{'form.grade_target'};
1838: if (! $env{'request.course.id'}) { return; }
1.49 albertel 1839: if (! &Apache::lonnet::allowed('dff',$env{'request.course.id'})
1840: && ! &Apache::lonnet::allowed('dff',$env{'request.course.id'}.
1.1 albertel 1841: '/'.$env{'request.course.sec'})) {
1842: return;
1843: }
1844: my %records=&Apache::lonnet::dump('nohist_email',
1845: $env{'course.'.$env{'request.course.id'}.'.domain'},
1846: $env{'course.'.$env{'request.course.id'}.'.num'},
1847: '%255b'.$user.'%253a'.$domain.'%255d');
1848: my $result='';
1.42 raeburn 1849: foreach my $key (sort(keys(%records))) {
1850: my %content=&Apache::lonmsg::unpackagemsg($records{$key});
1.1 albertel 1851: next if ($content{'senderdomain'} eq '');
1852: next if ($content{'subject'} !~ /^Record/);
1853: # &Apache::lonfeedback::newline_to_br(\$content{'message'});
1854: $result.='Recorded by '.
1.14 albertel 1855: $content{'sendername'}.':'.$content{'senderdomain'}."\n";
1.1 albertel 1856: $result.=
1857: &Apache::lontexconvert::msgtexconverted($content{'message'})."\n";
1858: }
1859: return $result;
1860: }
1861:
1862: sub disfacetoface {
1.136 amueller 1863: my ($r,$user,$domain,$target)=@_;
1.145 raeburn 1864: if ($target eq '') {
1865: $target=$env{'form.grade_target'};
1866: }
1.1 albertel 1867: unless ($env{'request.course.id'}) { return; }
1.49 albertel 1868: if (!&Apache::lonnet::allowed('dff',$env{'request.course.id'})
1869: && ! &Apache::lonnet::allowed('dff',$env{'request.course.id'}.
1.1 albertel 1870: '/'.$env{'request.course.sec'})) {
1.50 raeburn 1871: $r->print(&mt('Not allowed'));
1.1 albertel 1872: return;
1873: }
1874: my %records=&Apache::lonnet::dump('nohist_email',
1875: $env{'course.'.$env{'request.course.id'}.'.domain'},
1876: $env{'course.'.$env{'request.course.id'}.'.num'},
1877: '%255b'.$user.'%253a'.$domain.'%255d');
1.136 amueller 1878: my $result='<div>';
1.42 raeburn 1879: foreach my $key (sort(keys(%records))) {
1880: my %content=&Apache::lonmsg::unpackagemsg($records{$key});
1.1 albertel 1881: next if ($content{'senderdomain'} eq '');
1.139 faziophi 1882: if (!&Apache::lonfeedback::contains_block_html($content{'message'})) {
1883: &Apache::lonfeedback::newline_to_br(\$content{'message'});
1884: }
1.1 albertel 1885: if ($content{'subject'}=~/^Record/) {
1886: $result.='<h3>'.&mt('Record').'</h3>';
1887: } elsif ($content{'subject'}=~/^Broadcast/) {
1888: $result .='<h3>'.&mt('Broadcast Message').'</h3>';
1889: if ($content{'subject'}=~/^Broadcast\./) {
1890: if (defined($content{'coursemsgid'})) {
1.29 www 1891: my $crsmsgid = &escape($content{'coursemsgid'});
1.1 albertel 1892: my $broadcast_message = &general_message($crsmsgid);
1893: $content{'message'} = '<b>'.&mt('Subject').': '.$content{'message'}.'</b><br />'.$broadcast_message;
1894: } else {
1895: %content=&Apache::lonmsg::unpackagemsg($content{'message'});
1896: $content{'message'} =
1897: '<b>'.&mt('Subject').': '.$content{'subject'}.'</b><br />'.
1898: $content{'message'};
1899: }
1.70 raeburn 1900: }
1901: } elsif ($content{'subject'}=~/^Archive/) {
1902: $result.='<h3>'.&mt('Archived Message').'</h3>';
1903: if (defined($content{'coursemsgid'})) {
1904: my $crsmsgid = &escape($content{'coursemsgid'});
1905: my $archive_message = &general_message($crsmsgid);
1906: $content{'message'} = '<b>'.&mt('Subject').': '.$content{'message'}.'</b><br />'.$archive_message;
1907: } else {
1908: %content=&Apache::lonmsg::unpackagemsg($content{'message'});
1909: $content{'message'} =
1910: '<b>'.&mt('Subject').': '.$content{'subject'}.'</b><br
1911: '.
1912: $content{'message'};
1913: }
1.1 albertel 1914: } else {
1915: $result.='<h3>'.&mt('Critical Message').'</h3>';
1916: if (defined($content{'coursemsgid'})) {
1.29 www 1917: my $crsmsgid=&escape($content{'coursemsgid'});
1.1 albertel 1918: my $critical_message = &general_message($crsmsgid);
1919: $content{'message'} = '<b>'.&mt('Subject').': '.$content{'message'}.'</b><br />'.$critical_message;
1920: } else {
1921: %content=&Apache::lonmsg::unpackagemsg($content{'message'});
1922: $content{'message'}=
1923: '<b>'.&mt('Subject').': '.$content{'subject'}.'</b><br />'.
1924: $content{'message'};
1925: }
1926: }
1927: $result.=&mt('By').': <b>'.
1928: &Apache::loncommon::aboutmewrapper(
1929: &Apache::loncommon::plainname($content{'sendername'},$content{'senderdomain'}),$content{'sendername'},$content{'senderdomain'}).'</b> ('.
1.14 albertel 1930: $content{'sendername'}.':'.
1.1 albertel 1931: $content{'senderdomain'}.') '.$content{'time'}.
1932: '<br /><pre>'.
1933: &Apache::lontexconvert::msgtexconverted($content{'message'}).
1934: '</pre>';
1935: }
1936: # Check to see if there were any messages.
1937: if ($result eq '') {
1.106 riegler 1938: my $lctype = &mt(lc(&Apache::loncommon::course_type()));
1.1 albertel 1939: if ($target ne 'tex') {
1.30 raeburn 1940: $r->print("<p><b>".&mt('No notes, face-to-face discussion records, critical messages, or broadcast messages in this [_1].',$lctype)."</b></p>");
1.1 albertel 1941: } else {
1.30 raeburn 1942: $r->print('\textbf{'.&mt('No notes, face-to-face discussion records, critical messages or broadcast messages in this [_1].',$lctype).'}\\\\');
1.1 albertel 1943: }
1.136 amueller 1944: } elsif ($target ne 'tex') {
1945: $r->print($result.'</div>');
1.1 albertel 1946: } else {
1.136 amueller 1947: $r->print(&Apache::lonxml::xmlparse($r, 'tex', $result));
1948: }
1.1 albertel 1949: }
1950:
1951: sub general_message {
1952: my ($crsmsgid) = @_;
1953: my %general_content;
1954: if ($crsmsgid) {
1955: my %course_content = &Apache::lonnet::get('nohist_email',[$crsmsgid],
1956: $env{'course.'.$env{'request.course.id'}.'.domain'},
1957: $env{'course.'.$env{'request.course.id'}.'.num'});
1958: %general_content = &Apache::lonmsg::unpackagemsg($course_content{$crsmsgid});
1959: }
1960: return $general_content{'message'};
1961: }
1962:
1963: # ---------------------------------------------------------------- Face to face
1964:
1965: sub facetoface {
1966: my ($r,$stage)=@_;
1.49 albertel 1967: if (!&Apache::lonnet::allowed('dff',$env{'request.course.id'})
1968: && ! &Apache::lonnet::allowed('dff',$env{'request.course.id'}.
1.1 albertel 1969: '/'.$env{'request.course.sec'})) {
1.50 raeburn 1970: $r->print(&mt('Not allowed'));
1.1 albertel 1971: return;
1972: }
1.33 albertel 1973: my $crstype = &Apache::loncommon::course_type();
1.128 raeburn 1974: my $leaders = ($crstype eq 'Community') ? 'coordinators and leaders'
1975: : 'faculty and staff';
1.1 albertel 1976: &printheader($r,
1977: '/adm/email?recordftf=query',
1.70 raeburn 1978: "User Notes, Face-to-Face, Critical Messages, Broadcast Messages, Archived Messages");
1.1 albertel 1979: # from query string
1980:
1981: if ($env{'form.recname'}) { $env{'form.recuname'}=$env{'form.recname'}; }
1982: if ($env{'form.recdom'}) { $env{'form.recdomain'}=$env{'form.recdom'}; }
1983:
1984: my $defdom=$env{'user.domain'};
1985: # already filled in
1986: if ($env{'form.recdomain'}) { $defdom=$env{'form.recdomain'}; }
1987: # generate output
1988: my $domform = &Apache::loncommon::select_dom_form($defdom,'recdomain');
1989: my $stdbrws = &Apache::loncommon::selectstudent_link
1990: ('stdselect','recuname','recdomain');
1991: my %lt=&Apache::lonlocal::texthash('user' => 'Username',
1992: 'dom' => 'Domain',
1.70 raeburn 1993: 'head' => "User Notes, Records of Face-To-Face Discussions, Critical Messages, Broadcast Messages and Archived Messages in $crstype",
1.1 albertel 1994: 'subm' => 'Retrieve discussion and message records',
1.30 raeburn 1995: 'newr' => 'New Record (record is visible to '.lc($crstype).' '.$leaders.')',
1.1 albertel 1996: 'post' => 'Post this Record');
1.123 bisitz 1997:
1998: $r->print('<h2>'.$lt{'head'}.'</h2>'
1999: .'<form method="post" action="/adm/email" name="stdselect">'
2000: .'<input type="hidden" name="recordftf" value="retrieve" />'
2001: .&Apache::lonhtmlcommon::start_pick_box()
2002: .&Apache::lonhtmlcommon::row_title($lt{'user'})
2003: .'<input type="text" size="12" name="recuname" value="'.$env{'form.recuname'}.'" />'
2004: .' '.$stdbrws
2005: .&Apache::lonhtmlcommon::row_closure()
2006: .&Apache::lonhtmlcommon::row_title($lt{'dom'})
2007: .$domform
2008: .&Apache::lonhtmlcommon::row_closure(1)
2009: .&Apache::lonhtmlcommon::end_pick_box()
2010: .'<br />'
2011: .'<input type="submit" value="'.$lt{'subm'}.'" />'
1.150 raeburn 2012: .'</form>'
1.123 bisitz 2013: );
2014:
1.1 albertel 2015: if (($stage ne 'query') &&
2016: ($env{'form.recdomain'}) && ($env{'form.recuname'})) {
2017: chomp($env{'form.newrecord'});
2018: if ($env{'form.newrecord'}) {
1.31 albertel 2019: &Apache::lonmsg::store_instructor_comment($env{'form.newrecord'},
2020: $env{'form.recuname'},
2021: $env{'form.recdomain'});
1.1 albertel 2022: }
1.123 bisitz 2023: my $aboutmelink=&Apache::loncommon::aboutmewrapper(
2024: &Apache::loncommon::plainname($env{'form.recuname'}
2025: ,$env{'form.recdomain'})
2026: ,$env{'form.recuname'},$env{'form.recdomain'});
2027: $r->print('<hr />'
2028: .'<h2>'
2029: .&mt('Discussion and message records for [_1] ([_2])'
2030: ,$aboutmelink
2031: ,$env{'form.recuname'}.':'.$env{'form.recdomain'})
2032: .'<h2>'
2033: );
1.1 albertel 2034: &disfacetoface($r,$env{'form.recuname'},$env{'form.recdomain'});
2035: $r->print(<<ENDRHEAD);
2036: <form method="post" action="/adm/email">
2037: <input name="recdomain" value="$env{'form.recdomain'}" type="hidden" />
2038: <input name="recuname" value="$env{'form.recuname'}" type="hidden" />
2039: ENDRHEAD
2040: $r->print(<<ENDBFORM);
2041: <hr />$lt{'newr'}<br />
2042: <textarea name="newrecord" cols="80" rows="10" wrap="hard"></textarea>
2043: <br />
2044: <input type="hidden" name="recordftf" value="post" />
2045: <input type="submit" value="$lt{'post'}" />
2046: </form>
2047: ENDBFORM
2048: }
2049: }
2050:
2051: # ----------------------------------------------------------- Blocking during exams
2052:
2053: sub examblock {
2054: my ($r,$action) = @_;
2055: unless ($env{'request.course.id'}) { return;}
1.44 raeburn 2056: if (!&Apache::lonnet::allowed('dcm',$env{'request.course.id'})
2057: && ! &Apache::lonnet::allowed('dcm',$env{'request.course.id'}.
1.1 albertel 2058: '/'.$env{'request.course.sec'})) {
2059: $r->print('Not allowed');
2060: return;
2061: }
1.138 raeburn 2062: my $usertype;
2063: my $crstype = &Apache::loncommon::course_type();
2064: if ($crstype eq 'Community') {
2065: $usertype = 'members';
2066: } else {
2067: $usertype = 'students';
2068: }
2069: my $lctype = lc($crstype);
1.1 albertel 2070: my %lt=&Apache::lonlocal::texthash(
2071: 'comb' => 'Communication Blocking',
2072: 'cbds' => 'Communication blocking during scheduled exams',
1.138 raeburn 2073: 'desc' => "You can use communication blocking to prevent $usertype enrolled in this $lctype from displaying LON-CAPA messages sent by other $usertype during an online exam. As blocking of communication could potentially interrupt legitimate communication between $usertype who are also both enrolled in a different LON-CAPA course or community, please be careful that you select the correct start and end times for your scheduled exam when setting or modifying these parameters.",
1.1 albertel 2074: 'mecb' => 'Modify existing communication blocking periods',
1.72 albertel 2075: 'ncbc' => 'No communication blocks currently saved',
2076: 'stor' => 'Save',
1.1 albertel 2077: );
2078:
2079: my %ltext = &Apache::lonlocal::texthash(
2080: 'dura' => 'Duration',
2081: 'setb' => 'Set by',
2082: 'even' => 'Event',
1.44 raeburn 2083: 'blck' => 'Blocked?',
1.1 albertel 2084: 'actn' => 'Action',
2085: 'star' => 'Start',
2086: 'endd' => 'End'
2087: );
2088:
2089: &printheader($r,'/adm/email?block=display',$lt{'comb'});
2090: $r->print('<h3>'.$lt{'cbds'}.'</h3>');
2091:
2092: if ($action eq 'store') {
2093: &blockstore($r);
2094: }
2095:
2096: $r->print($lt{'desc'}.'<br /><br />
2097: <form name="blockform" method="post" action="/adm/email?block=store">
2098: ');
2099:
2100: $r->print('<h4>'.$lt{'mecb'}.'</h4>');
2101: my %records = ();
2102: my $blockcount = 0;
2103: my $parmcount = 0;
2104: &get_blockdates(\%records,\$blockcount);
2105: if ($blockcount > 0) {
2106: $parmcount = &display_blocker_status($r,\%records,\%ltext);
2107: } else {
2108: $r->print($lt{'ncbc'}.'<br /><br />');
2109: }
2110: &display_addblocker_table($r,$parmcount,\%ltext);
2111: my $end_page=&Apache::loncommon::end_page();
2112: $r->print(<<"END");
2113: <br />
2114: <input type="hidden" name="blocktotal" value="$blockcount" />
1.50 raeburn 2115: <input type ="submit" value="$lt{'stor'}" />
1.1 albertel 2116: </form>
2117: $end_page
2118: END
2119: return;
2120: }
2121:
2122: sub blockstore {
2123: my $r = shift;
2124: my %lt=&Apache::lonlocal::texthash(
2125: 'tfcm' => 'The following changes were made',
2126: 'ncwm' => 'No changes were made.'
2127: );
2128: my %adds = ();
2129: my %removals = ();
2130: my %cancels = ();
2131: my $modtotal = 0;
2132: my $canceltotal = 0;
2133: my $addtotal = 0;
2134: my %blocking = ();
2135: $r->print('<h3>'.$lt{'head'}.'</h3>');
1.42 raeburn 2136: foreach my $envkey (keys(%env)) {
1.44 raeburn 2137: if ($envkey =~ m/^form\.modify_(\d+)$/) {
1.1 albertel 2138: $adds{$1} = $1;
2139: $removals{$1} = $1;
2140: $modtotal ++;
1.42 raeburn 2141: } elsif ($envkey =~ m/^form\.cancel_(\d+)$/) {
1.1 albertel 2142: $cancels{$1} = $1;
2143: unless ( defined($removals{$1}) ) {
2144: $removals{$1} = $1;
2145: $canceltotal ++;
2146: }
1.42 raeburn 2147: } elsif ($envkey =~ m/^form\.add_(\d+)$/) {
1.1 albertel 2148: $adds{$1} = $1;
2149: $addtotal ++;
1.44 raeburn 2150: }
1.1 albertel 2151: }
2152:
1.42 raeburn 2153: foreach my $key (keys(%removals)) {
2154: my $hashkey = $env{'form.key_'.$key};
1.1 albertel 2155: &Apache::lonnet::del('comm_block',["$hashkey"],
2156: $env{'course.'.$env{'request.course.id'}.'.domain'},
2157: $env{'course.'.$env{'request.course.id'}.'.num'}
2158: );
2159: }
1.42 raeburn 2160: foreach my $key (keys(%adds)) {
2161: unless ( defined($cancels{$key}) ) {
2162: my ($newstart,$newend) = &get_dates_from_form($key);
1.1 albertel 2163: my $newkey = $newstart.'____'.$newend;
1.44 raeburn 2164: my $blocktypes = &get_block_choices($key);
2165: $blocking{$newkey} = {
2166: setter => $env{'user.name'}.':'.$env{'user.domain'},
2167: event => &escape($env{'form.title_'.$key}),
2168: blocks => $blocktypes,
2169: };
1.1 albertel 2170: }
2171: }
2172: if ($addtotal + $modtotal > 0) {
2173: &Apache::lonnet::put('comm_block',\%blocking,
2174: $env{'course.'.$env{'request.course.id'}.'.domain'},
2175: $env{'course.'.$env{'request.course.id'}.'.num'}
2176: );
2177: }
2178: my $chgestotal = $canceltotal + $modtotal + $addtotal;
2179: if ($chgestotal > 0) {
2180: $r->print($lt{'tfcm'}.'<ul>');
2181: if ($canceltotal > 0) {
1.50 raeburn 2182: $r->print('<li>'.&mt('[quant,_1,communication blocking period was,communication blocking periods were] removed.',$canceltotal).'</li>');
1.1 albertel 2183: }
2184: if ($modtotal > 0) {
1.50 raeburn 2185: $r->print('<li>'.&mt('[quant,_1,communication blocking period was,communication blocking periods were] modified.',$modtotal).'</li>');
1.1 albertel 2186: }
2187: if ($addtotal > 0) {
1.50 raeburn 2188: $r->print('<li>'.&mt('[quant,_1,communication blocking period was,communication blocking periods were] added.',$addtotal).'</li>');
1.1 albertel 2189: }
2190: $r->print('</ul>');
2191: } else {
2192: $r->print($lt{'ncwm'});
2193: }
2194: $r->print('<br />');
2195: return;
2196: }
2197:
2198: sub get_dates_from_form {
2199: my $item = shift;
2200: my $startdate = &Apache::lonhtmlcommon::get_date_from_form('startdate_'.$item);
2201: my $enddate = &Apache::lonhtmlcommon::get_date_from_form('enddate_'.$item);
2202: return ($startdate,$enddate);
2203: }
2204:
2205: sub get_blockdates {
2206: my ($records,$blockcount) = @_;
2207: $$blockcount = 0;
2208: %{$records} = &Apache::lonnet::dump('comm_block',
2209: $env{'course.'.$env{'request.course.id'}.'.domain'},
2210: $env{'course.'.$env{'request.course.id'}.'.num'}
2211: );
1.15 albertel 2212: $$blockcount = keys(%{$records});
2213:
2214: if ((keys(%{$records}))[0] =~ /^error: 2 /) {
2215: $records = {};
2216: $$blockcount = 0;
1.1 albertel 2217: }
2218: }
2219:
1.44 raeburn 2220: sub get_block_choices {
2221: my $item = shift;
2222: my $blocklist;
2223: my ($typeorder,$types) = &blocktype_text();
2224: foreach my $type (@{$typeorder}) {
2225: if ($env{'form.'.$type.'_'.$item}) {
2226: $blocklist->{$type} = 'on';
2227: } else {
2228: $blocklist->{$type} = 'off';
2229: }
2230: }
2231: return $blocklist;
2232: }
2233:
1.1 albertel 2234: sub display_blocker_status {
2235: my ($r,$records,$ltext) = @_;
2236: my $parmcount = 0;
1.16 albertel 2237:
1.1 albertel 2238: my %lt = &Apache::lonlocal::texthash(
2239: 'modi' => 'Modify',
2240: 'canc' => 'Cancel',
2241: );
1.44 raeburn 2242: my ($typeorder,$types) = &blocktype_text();
1.18 albertel 2243: $r->print(&Apache::loncommon::start_data_table());
1.1 albertel 2244: $r->print(<<"END");
1.16 albertel 2245: <tr>
1.44 raeburn 2246: <th>$ltext->{'dura'}</th>
2247: <th>$ltext->{'setb'}</th>
2248: <th>$ltext->{'even'}</th>
2249: <th>$ltext->{'blck'}</th>
1.142 bisitz 2250: <th>$ltext->{'actn'}</th>
1.16 albertel 2251: </tr>
1.1 albertel 2252: END
1.18 albertel 2253: foreach my $record (sort(keys(%{$records}))) {
1.1 albertel 2254: my $onchange = 'onFocus="javascript:window.document.forms['.
2255: "'blockform'].elements['modify_".$parmcount."'].".
2256: 'checked=true;"';
1.18 albertel 2257: my ($start,$end) = split(/____/,$record);
1.1 albertel 2258: my $startform = &Apache::lonhtmlcommon::date_setter('blockform','startdate_'.$parmcount,$start,$onchange);
2259: my $endform = &Apache::lonhtmlcommon::date_setter('blockform','enddate_'.$parmcount,$end,$onchange);
1.15 albertel 2260:
1.44 raeburn 2261: my ($setuname,$setudom,$title,$blocks) =
2262: &Apache::loncommon::parse_block_record($$records{$record});
1.21 albertel 2263: $title = &HTML::Entities::encode($title,'"<>&');
1.44 raeburn 2264: my $settername =
2265: &Apache::loncommon::aboutmewrapper(
2266: &Apache::loncommon::plainname($setuname,$setudom),
2267: $setuname,$setudom);
1.18 albertel 2268: $r->print(&Apache::loncommon::start_data_table_row());
1.1 albertel 2269: $r->print(<<"END");
1.145 raeburn 2270: <td>$ltext->{'star'}: $startform<br />$ltext->{'endd'}: $endform</td>
1.1 albertel 2271: <td>$settername</td>
1.18 albertel 2272: <td><input type="text" name="title_$parmcount" size="15" value="$title" /><input type="hidden" name="key_$parmcount" value="$record" /></td>
1.44 raeburn 2273: <td>
2274: END
2275: foreach my $block (@{$typeorder}) {
2276: my $blockstatus = '';
2277: if ($blocks->{$block} eq 'on') {
1.118 bisitz 2278: $blockstatus = 'checked="checked"';
1.44 raeburn 2279: }
1.146 raeburn 2280: $r->print('<span class="LC_nobreak"><label><input type="checkbox" name="'.$block.'_'.$parmcount.'" '.$blockstatus.' value="1" />'.$types->{$block}.'</label></span><br />');
1.44 raeburn 2281: }
2282: $r->print(<<"END");
2283: </td>
1.142 bisitz 2284: <td><span class="LC_nobreak"><label>
2285: <input type="checkbox" name="modify_$parmcount" />$lt{'modi'}
1.146 raeburn 2286: </label></span><br /><span class="LC_nobreak">
1.142 bisitz 2287: <label>
2288: <input type="checkbox" name="cancel_$parmcount" />$lt{'canc'}
2289: </label></span>
1.1 albertel 2290: END
1.18 albertel 2291: $r->print(&Apache::loncommon::end_data_table_row());
2292: $parmcount++;
1.1 albertel 2293: }
2294: $r->print(<<"END");
2295: </table>
2296: <br />
2297: <br />
2298: END
2299: return $parmcount;
2300: }
2301:
2302: sub display_addblocker_table {
2303: my ($r,$parmcount,$ltext) = @_;
2304: my $start = time;
2305: my $end = $start + (60 * 60 * 2); #Default is an exam of 2 hours duration.
2306: my $onchange = 'onFocus="javascript:window.document.forms['.
2307: "'blockform'].elements['add_".$parmcount."'].".
2308: 'checked=true;"';
2309: my $startform = &Apache::lonhtmlcommon::date_setter('blockform','startdate_'.$parmcount,$start,$onchange);
2310: my $endform = &Apache::lonhtmlcommon::date_setter('blockform','enddate_'.$parmcount,$end,$onchange);
2311: my %lt = &Apache::lonlocal::texthash(
2312: 'addb' => 'Add block',
2313: 'exam' => 'e.g., Exam 1',
2314: 'addn' => 'Add new communication blocking periods'
2315: );
1.44 raeburn 2316: my ($typeorder,$types) = &blocktype_text();
1.1 albertel 2317: $r->print(<<"END");
2318: <h4>$lt{'addn'}</h4>
1.18 albertel 2319: END
2320: $r->print(&Apache::loncommon::start_data_table());
2321: $r->print(<<"END");
1.16 albertel 2322: <tr>
1.44 raeburn 2323: <th>$ltext->{'dura'}</th>
2324: <th>$ltext->{'even'} $lt{'exam'}</th>
2325: <th>$ltext->{'blck'}</th>
1.142 bisitz 2326: <th>$ltext->{'actn'}</th>
1.16 albertel 2327: </tr>
1.18 albertel 2328: END
1.44 raeburn 2329: $r->print(&Apache::loncommon::start_data_table_row());
1.18 albertel 2330: $r->print(<<"END");
1.44 raeburn 2331: <td>$ltext->{'star'}: $startform<br />$ltext->{'endd'}: $endform</td>
1.16 albertel 2332: <td><input type="text" name="title_$parmcount" size="15" value="" /></td>
1.44 raeburn 2333: <td>
2334: END
2335: foreach my $block (@{$typeorder}) {
1.146 raeburn 2336: $r->print('<span class="LC_nobreak"><label><input type="checkbox" name="'.$block.'_'.$parmcount.'" value="1" />'.$types->{$block}.'</label></span><br />');
1.44 raeburn 2337: }
2338: $r->print(<<"END");
1.146 raeburn 2339: </td>
2340: <td><span class="LC_nobreak"><label>
1.142 bisitz 2341: <input type="checkbox" name="add_$parmcount" value="1" />$lt{'addb'}
1.146 raeburn 2342: </label></span></td>
1.1 albertel 2343: END
1.18 albertel 2344: $r->print(&Apache::loncommon::end_data_table_row());
2345: $r->print(&Apache::loncommon::end_data_table());
1.1 albertel 2346: return;
2347: }
2348:
1.44 raeburn 2349: sub blocktype_text {
2350: my %types = &Apache::lonlocal::texthash(
2351: 'com' => 'Messaging',
1.115 hauer 2352: 'chat' => 'Chat Room',
1.44 raeburn 2353: 'boards' => 'Discussion',
2354: 'port' => 'Portfolio',
1.45 raeburn 2355: 'groups' => 'Groups',
2356: 'blogs' => 'Blogs',
1.18 albertel 2357: );
1.45 raeburn 2358: my $typeorder = ['com','chat','boards','port','groups','blogs'];
1.44 raeburn 2359: return ($typeorder,\%types);
1.1 albertel 2360: }
2361:
2362: # ----------------------------------------------------------- Display a message
2363:
2364: sub displaymessage {
1.53 raeburn 2365: my ($r,$msgid,$folder,$msgstatus)=@_;
1.1 albertel 2366: my $suffix=&Apache::lonmsg::foldersuffix($folder);
2367: my %blocked = ();
2368: my %setters = ();
2369: my $numblocked = 0;
1.33 albertel 2370: my $crstype = &Apache::loncommon::course_type();
1.30 raeburn 2371:
1.1 albertel 2372: # info to generate "next" and "previous" buttons and check if message is blocked
1.44 raeburn 2373: my ($startblock,$endblock) = &Apache::loncommon::blockcheck(\%setters,'com');
1.53 raeburn 2374: my @messages=&sortedmessages(\%blocked,$startblock,$endblock,\$numblocked,$folder,$msgstatus);
1.1 albertel 2375: if ( $blocked{$msgid} eq 'ON' ) {
2376: &printheader($r,'/adm/email',&mt('Display a Message'));
1.129 kalberla 2377: #$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.'));
2378: #&build_block_table($r,$startblock,$endblock,\%setters);
1.130 kalberla 2379: my($blocked, $blocktext) = &Apache::loncommon::blocking_status("com");
1.129 kalberla 2380: $r->print("<br />".$blocktext);
1.1 albertel 2381: return;
2382: }
1.59 raeburn 2383: if ($msgstatus eq '') {
2384: &statuschange($msgid,'read',$folder);
2385: }
1.1 albertel 2386: my %message=&Apache::lonnet::get('nohist_email'.$suffix,[$msgid]);
2387: my %content=&Apache::lonmsg::unpackagemsg($message{$msgid});
2388: my $counter=0;
1.29 www 2389: my $escmsgid=&escape($msgid);
1.1 albertel 2390: foreach (@messages) {
2391: if ($_->[5] eq $escmsgid){
2392: last;
2393: }
2394: $counter++;
2395: }
1.82 albertel 2396:
2397: my $see_anonymous;
2398: my $from_student = 0;
2399: if ($env{'request.course.id'} eq $content{'courseid'}) {
2400: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
2401: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
2402: my $username = $content{'sendername'}.':'.$content{'senderdomain'};
2403: my %classlist_entry =
2404: &Apache::lonnet::get('classlist',[$username],$cdom,$cnum);
2405: if (exists($classlist_entry{$username})) {
2406: $from_student = 1;
2407: $see_anonymous = &Apache::lonnet::allowed('rin',$env{'request.course.id'}.($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''));
2408: }
2409: }
2410:
2411:
1.1 albertel 2412: my $number_of_messages = scalar(@messages); #subtract 1 for last index
2413: # start output
1.29 www 2414: &printheader($r,'/adm/email?display='.&escape($msgid),'Display a Message','',$content{'baseurl'});
1.1 albertel 2415: my %courseinfo=&Apache::lonnet::coursedescription($content{'courseid'});
1.101 bisitz 2416:
2417: # Prepare available functions
1.119 bisitz 2418: my @functionlist;
1.78 raeburn 2419: if (!$content{'noreplies'}) {
1.119 bisitz 2420: push(@functionlist,'<a href="/adm/email?replyto='.&escape($msgid).$sqs.'">'
1.101 bisitz 2421: .&mt('Reply')
1.119 bisitz 2422: .'</a>');
1.101 bisitz 2423: }
1.119 bisitz 2424: push(@functionlist,'<a href="/adm/email?forward='.&escape($msgid).$sqs.'">'
1.101 bisitz 2425: .&mt('Forward')
1.119 bisitz 2426: .'</a>');
2427: push(@functionlist,'<a href="/adm/email?markunread='.&escape($msgid).$sqs.'">'
1.101 bisitz 2428: .&mt('Mark Unread')
1.119 bisitz 2429: .'</a>');
2430: push(@functionlist,'<a href="/adm/email?markdel='.&escape($msgid).$sqs.'">'
1.101 bisitz 2431: .&mt('Delete')
1.119 bisitz 2432: .'</a>');
2433: push(@functionlist,'<a href="/adm/email?'.$sqs.'">'
1.101 bisitz 2434: .&mt('Back to Folder Display')
1.119 bisitz 2435: .'</a>');
1.1 albertel 2436: if ($counter > 0){
1.119 bisitz 2437: push(@functionlist,'<a href="/adm/email?display='.$messages[$counter-1]->[5].$sqs.'">'
2438: .&mt('Previous')
2439: .'</a>');
1.1 albertel 2440: }
2441: if ($counter < $number_of_messages - 1){
1.119 bisitz 2442: push(@functionlist,'<a href="/adm/email?display='.$messages[$counter+1]->[5].$sqs.'">'
2443: .&mt('Next')
2444: .'</a>');
1.101 bisitz 2445: }
2446:
2447: # Prepare available actions
1.59 raeburn 2448: my $symb;
2449: if (defined($content{'symb'})) {
2450: $symb = $content{'symb'};
2451: } elsif (defined($content{'baseurl'})) {
2452: $symb=&Apache::lonnet::symbread($content{'baseurl'});
2453: }
1.126 bisitz 2454: my @actionlist;
1.1 albertel 2455: if ($env{'user.adv'}) {
1.101 bisitz 2456:
1.1 albertel 2457: if (&Apache::lonnet::allowed('vgr',$env{'request.course.id'})) {
1.119 bisitz 2458: push(@actionlist,&Apache::loncommon::track_student_link(
2459: &mt('View recent activity')
2460: ,$content{'sendername'}
2461: ,$content{'senderdomain'}
2462: ,'check'));
1.90 bisitz 2463: }
1.1 albertel 2464: if (&Apache::lonnet::allowed('opa',$env{'request.course.id'}) && $symb) {
1.119 bisitz 2465: push(@actionlist,&Apache::loncommon::pprmlink(
2466: &mt('Set/Change parameters')
2467: ,$content{'sendername'}
2468: ,$content{'senderdomain'}
2469: ,$symb
2470: ,'check'));
1.1 albertel 2471: }
2472: if (&Apache::lonnet::allowed('mgr',$env{'request.course.id'}) && $symb) {
1.119 bisitz 2473: push(@actionlist,&Apache::loncommon::pgrdlink(
2474: &mt('Set/Change grades')
2475: ,$content{'sendername'}
2476: ,$content{'senderdomain'}
2477: ,$symb
2478: ,'check'));
1.90 bisitz 2479: }
1.126 bisitz 2480: }
2481:
2482: # Print functionlist and actionlist in page header
2483: my $functions='<div class="LC_columnSection">';
1.101 bisitz 2484:
1.126 bisitz 2485: # Functionlist
2486: $functions.=&Apache::lonhtmlcommon::start_funclist();
2487: foreach my $item (@functionlist) {
2488: $functions.=&Apache::lonhtmlcommon::add_item_funclist($item);
2489: }
2490: $functions .= &Apache::lonhtmlcommon::end_funclist();
2491:
2492: # Actionlist
1.119 bisitz 2493: if (@actionlist) {
1.126 bisitz 2494: my $legendtext=&mt('Currently available actions (will open extra window)');
2495: $functions.=&Apache::lonhtmlcommon::start_funclist($legendtext);
1.119 bisitz 2496: foreach my $item (@actionlist) {
1.126 bisitz 2497: $functions.=&Apache::lonhtmlcommon::add_item_funclist($item);
1.119 bisitz 2498: }
1.126 bisitz 2499: $functions.=&Apache::lonhtmlcommon::end_funclist();
1.90 bisitz 2500: }
1.126 bisitz 2501:
2502: $functions.='</div>';
2503: $r->print(&Apache::loncommon::head_subbox($functions));
2504:
1.101 bisitz 2505:
1.95 raeburn 2506: my ($tonum,$tolist,$cclist,$bcclist,$groupcclist,%recipients);
2507: if ($content{'recipid'}) {
2508: $tonum = &retrieve_recips('display',\%content,\%recipients);
2509: if (ref($recipients{'cc'}) eq 'ARRAY') {
2510: $cclist = join(', ',@{$recipients{'cc'}});
2511: }
2512: if (ref($recipients{'to'}) eq 'ARRAY') {
2513: $tolist = join(', ',@{$recipients{'to'}});
2514: }
2515: if (ref($recipients{'bcc'}) eq 'ARRAY') {
2516: $bcclist = join(', ',@{$recipients{'bcc'}});
2517: }
2518: }
1.107 raeburn 2519:
2520: my $broadcast_link;
2521: if (($content{'courseid'}) && ($content{'recipid'} &&
2522: (ref($recipients{'course_broadcast'}) eq 'ARRAY') ||
2523: (ref($recipients{'group_cc_broadcast'}) eq 'ARRAY') ||
2524: (ref($recipients{'group_bcc_broadcast'}) eq 'ARRAY'))) {
2525: $broadcast_link = &recipients_link($r,\%content,\%recipients);
2526: }
2527:
2528: if (((!$tolist) && (!$broadcast_link)) && ref($content{'recuser'}) eq 'ARRAY') {
1.95 raeburn 2529: my @recipients;
1.73 raeburn 2530: for (my $i=0; $i<@{$content{'recuser'}}; $i++) {
2531: $recipients[$i] = &Apache::loncommon::aboutmewrapper(
2532: &Apache::loncommon::plainname($content{'recuser'}[$i],
1.1 albertel 2533: $content{'recdomain'}[$i]),
1.73 raeburn 2534: $content{'recuser'}[$i],$content{'recdomain'}[$i]).
1.95 raeburn 2535: ' ('.$content{'recuser'}[$i].':'.$content{'recdomain'}[$i].') ';
1.73 raeburn 2536: }
1.95 raeburn 2537: $tolist = join(', ',@recipients);
1.73 raeburn 2538: }
1.59 raeburn 2539: my ($restitle,$baseurl,$refers_to);
2540: if (defined($content{'resource_title'})) {
2541: $restitle = $content{'resource_title'};
2542: } else {
2543: if (defined($content{'baseurl'})) {
2544: $restitle = &Apache::lonnet::gettitle($content{'baseurl'});
2545: }
2546: }
2547: if (defined($content{'baseurl'})) {
2548: $baseurl = &Apache::lonenc::check_encrypt($content{'baseurl'});
2549: }
1.104 raeburn 2550: $r->print('<div class="LC_clear_float_footer">');
1.82 albertel 2551: if ($from_student && $see_anonymous ) {
1.104 raeburn 2552: $r->print(&Apache::loncommon::student_image_tag($content{'senderdomain'},$content{'sendername'}).'</br>');
1.82 albertel 2553: }
2554:
1.91 bisitz 2555: # Display LON-CAPA Message (Start)
2556: # Subject
1.104 raeburn 2557: $r->print('</div>'
1.91 bisitz 2558: .&Apache::lonhtmlcommon::start_pick_box()
2559: .&Apache::lonhtmlcommon::row_title(&mt('Subject'))
2560: .$content{'subject'}
2561: .&Apache::lonhtmlcommon::row_closure()
2562: );
1.73 raeburn 2563: if ($folder eq 'sent') {
1.91 bisitz 2564: # To
1.107 raeburn 2565: if ($tolist) {
2566: $r->print(&Apache::lonhtmlcommon::row_title(&mt('To'))
2567: .$tolist
2568: .&Apache::lonhtmlcommon::row_closure()
2569: );
2570: }
1.95 raeburn 2571: if ($cclist) {
2572: $r->print(&Apache::lonhtmlcommon::row_title(&mt('Cc'))
2573: .$cclist
2574: .&Apache::lonhtmlcommon::row_closure()
2575: );
2576: }
2577: if ($bcclist) {
2578: $r->print(&Apache::lonhtmlcommon::row_title(&mt('Bcc'))
2579: .$bcclist
2580: .&Apache::lonhtmlcommon::row_closure()
2581: );
2582: }
2583: if (($content{'courseid'}) && ($content{'recipid'})) {
2584: my %broadcast_types =
2585: &Apache::lonlocal::texthash (
2586: course_broadcast => 'Broadcast to',
2587: group_cc_broadcast => 'Cc to group',
2588: group_bcc_broadcast => 'Bcc to group',
2589: );
2590: foreach my $type (sort(keys(%broadcast_types))) {
2591: if (ref($recipients{$type}) eq 'ARRAY') {
2592: my $num = @{$recipients{$type}};
2593: my $broadcastlist = join(', ',@{$recipients{$type}});
2594: if ($broadcastlist && $broadcast_link) {
2595: if ($type eq 'group_cc_broadcast') {
2596: $groupcclist = $broadcastlist;
2597: }
2598: $r->print(&Apache::lonhtmlcommon::row_title(
2599: $broadcast_types{$type})
2600: .&mt('[quant,_1,recipient]',$num)
2601: .' <a href="javascript:showBroadcastList();">['
2602: .&mt('Show').']</a>'
2603: .&Apache::lonhtmlcommon::row_closure());
2604: }
2605: }
2606: }
2607: }
1.78 raeburn 2608: if ($content{'replytoaddr'}) {
2609: my ($replytoname,$replytodom) = split(/:/,$content{'replytoaddr'});
2610: if ($replytoname ne '' && $replytodom ne '') {
1.91 bisitz 2611: $r->print(&Apache::lonhtmlcommon::row_title(&mt('Reply To'))
1.95 raeburn 2612: .$replytoname.':'.$replytodom
1.91 bisitz 2613: .&Apache::lonhtmlcommon::row_closure()
2614: );
1.78 raeburn 2615: }
2616: }
1.73 raeburn 2617: } else {
1.91 bisitz 2618: # From, Reply
2619: $r->print(&Apache::lonhtmlcommon::row_title(&mt('From'))
2620: .&Apache::loncommon::aboutmewrapper(
2621: &Apache::loncommon::plainname($content{'sendername'},$content{'senderdomain'}),
2622: $content{'sendername'},$content{'senderdomain'})
2623: );
1.78 raeburn 2624: if ($content{'noreplies'}) {
1.91 bisitz 2625: $r->print(' ('.&mt('No replies to sender').')'
2626: .&Apache::lonhtmlcommon::row_closure()
1.95 raeburn 2627: );
1.78 raeburn 2628: } else {
2629: if ($content{'replytoaddr'}) {
2630: my ($replytoname,$replytodom) = split(/:/,$content{'replytoaddr'});
2631: if ($replytoname ne '' && $replytodom ne '') {
1.91 bisitz 2632: $r->print(&Apache::lonhtmlcommon::row_closure()
2633: .&Apache::lonhtmlcommon::row_title(&mt('Reply To'))
1.95 raeburn 2634: .$replytoname.':'.$replytodom
1.91 bisitz 2635: .&Apache::lonhtmlcommon::row_closure()
2636: );
2637: } else {
2638: $r->print(&Apache::lonhtmlcommon::row_closure());
1.78 raeburn 2639: }
2640: } else {
1.95 raeburn 2641: $r->print(' ('.$content{'sendername'}.':'.$content{'senderdomain'}.') '
1.91 bisitz 2642: .&Apache::lonhtmlcommon::row_closure()
2643: );
1.78 raeburn 2644: }
1.95 raeburn 2645: if ($tonum && $tolist) {
2646: $r->print(&Apache::lonhtmlcommon::row_title(&mt('To'))
2647: .$tolist
2648: .&Apache::lonhtmlcommon::row_closure()
2649: );
2650: }
2651: if ($cclist) {
1.91 bisitz 2652: $r->print(&Apache::lonhtmlcommon::row_title(&mt('Cc'))
2653: .$cclist
2654: .&Apache::lonhtmlcommon::row_closure()
2655: );
1.95 raeburn 2656: }
2657: if ($content{'group'} ne '') {
2658: if (&check_group_priv($content{'group'})) {
2659: $groupcclist = join(', ',@{$recipients{'group_cc_broadcast'}});
2660: if ($groupcclist) {
2661: $r->print(&Apache::lonhtmlcommon::row_title(&mt('Group Cc'))
2662: .$groupcclist
2663: .&Apache::lonhtmlcommon::row_closure()
2664: );
2665: }
2666: }
1.78 raeburn 2667: }
1.91 bisitz 2668: }
1.73 raeburn 2669: }
1.91 bisitz 2670:
2671: # Course
1.73 raeburn 2672: if ($content{'courseid'}) {
1.91 bisitz 2673: $r->print(&Apache::lonhtmlcommon::row_title(&mt($crstype))
2674: .$courseinfo{'description'}
2675: );
1.73 raeburn 2676: if ($content{'coursesec'}) {
2677: $r->print(' ('.&mt('Section').': '.$content{'coursesec'}.')');
2678: }
1.91 bisitz 2679: $r->print(&Apache::lonhtmlcommon::row_closure());
1.73 raeburn 2680: }
1.91 bisitz 2681: $r->print(&Apache::lonhtmlcommon::row_title(&mt('Time'))
2682: .$content{'time'}
2683: .&Apache::lonhtmlcommon::row_closure()
2684: );
2685:
2686: # Refers to
1.59 raeburn 2687: if ($baseurl) {
2688: if (defined($content{'courseid'}) && defined($env{'request.course.id'})) {
2689: if ($content{'courseid'} eq $env{'request.course.id'}) {
2690: my $symblink;
1.62 raeburn 2691: my $showsymb = &Apache::lonenc::check_decrypt($symb);
2692: my $showurl = &Apache::lonenc::check_decrypt($baseurl);
2693: my $encrypturl = &Apache::lonnet::EXT('resource.0.encrypturl',
2694: $showsymb,$env{'user.domain'},$env{'user.name'});
1.59 raeburn 2695: if ($symb) {
1.62 raeburn 2696: if ($encrypturl =~ /^yes$/i && !$env{'request.role.adv'}) {
2697: $showsymb = &Apache::lonenc::check_encrypt($symb);
2698: }
2699: $symblink = '?symb='.$showsymb;
2700: }
2701: if ($encrypturl =~ /^yes$/i && !$env{'request.role.adv'}) {
2702: $showurl = $baseurl;
1.59 raeburn 2703: }
1.91 bisitz 2704: $r->print(&Apache::lonhtmlcommon::row_title(&mt('Refers to'))
2705: .'<a href="'.$showurl.$symblink.'">'.$restitle.'</a>'
2706: .&Apache::lonhtmlcommon::row_closure()
2707: );
1.59 raeburn 2708: $refers_to = 1;
2709: }
2710: }
2711: if (!$refers_to) {
2712: if ($baseurl =~ m-^/enc/-) {
2713: if (defined($content{'courseid'})) {
1.62 raeburn 2714: if (!$env{'request.course.id'}) {
2715: my $unencurl =
2716: &Apache::lonenc::unencrypted($baseurl,
2717: $content{'courseid'});
2718: if ($unencurl ne '') {
2719: if (&Apache::lonnet::allowed('bre',$unencurl)) {
1.91 bisitz 2720: $r->print(&Apache::lonhtmlcommon::row_title(&mt('Refers to'))
2721: .'<a href="'.$unencurl.'">'.$restitle.'</a>'
2722: .&Apache::lonhtmlcommon::row_closure()
2723: );
1.62 raeburn 2724: }
1.59 raeburn 2725: }
2726: }
2727: }
2728: } else {
2729: if (&Apache::lonnet::allowed('bre',$baseurl)) {
1.91 bisitz 2730: $r->print(&Apache::lonhtmlcommon::row_title(&mt('Refers to'))
2731: .'<a href="'.$baseurl.'">'.$restitle.'</a>'
2732: .&Apache::lonhtmlcommon::row_closure()
2733: );
2734:
1.59 raeburn 2735: }
2736: }
2737: }
2738: }
1.91 bisitz 2739:
2740: # Message
2741: $r->print(&Apache::lonhtmlcommon::row_title(&mt('Message'))
2742: .'<pre>'
2743: .&Apache::lontexconvert::msgtexconverted($content{'message'},1)
2744: .'</pre>'
2745: );
2746: if (&displayresource(%content)) {
2747: $r->print(&Apache::lonhtmlcommon::row_closure()
2748: .&Apache::lonhtmlcommon::row_title(&mt('Resource Details'))
2749: .&displayresource(%content)
2750: );
2751: }
1.92 raeburn 2752: $r->print(&Apache::lonhtmlcommon::row_closure(1).
2753: &Apache::lonhtmlcommon::end_pick_box());
1.91 bisitz 2754: # Display LON-CAPA Message (End)
1.59 raeburn 2755: return;
1.1 albertel 2756: }
2757:
1.95 raeburn 2758: sub retrieve_recips {
2759: my ($context,$content,$recips)= @_;
2760: my $tonum = 0;
2761: if (ref($content) eq 'HASH') {
2762: my %reciphash =
2763: &Apache::lonnet::get('nohist_emailrecip',[$content->{'recipid'}],
2764: $content->{'senderdomain'},$content->{'sendername'});
2765: my $recipinfo = $reciphash{$content->{'recipid'}};
2766: if (ref($recipinfo) eq 'HASH') {
2767: foreach my $type ('to','cc','course_broadcast','group_cc_broadcast','group_bcc_broadcast') {
2768: if (ref($recipinfo->{$type}) eq 'HASH') {
2769: if ($type eq 'to') {
2770: $tonum = keys(%{$recipinfo->{$type}});
2771: }
2772: foreach my $user (sort(keys(%{$recipinfo->{$type}}))) {
2773: my ($uname,$udom) = split(/:/,$user);
2774: next if (($context eq 'replying') && ($uname eq $env{'user.name'})
2775: && ($udom eq $env{'user.domain'}));
2776: my $showuser ='<span class="LC_nobreak">';
2777: if ($context eq 'replying') {
2778: if (($type eq 'to') || ($type eq 'cc')) {
2779: $showuser = '<label><input type="checkbox" name="replying_'.$type.'" value="'.$user.'" />';
2780: } elsif ($type eq 'group_cc_broadcast') {
2781: $showuser = '<label><input type="checkbox" name="replying_groupcc" value="'.$user.'" />';
2782: }
2783: }
2784: $showuser .= &Apache::loncommon::aboutmewrapper(
2785: &Apache::loncommon::plainname($uname,
2786: $udom),$uname,$udom);
2787: if ($context eq 'replying') {
2788: $showuser .='</label>';
2789: }
2790: $showuser .= '</span>';
2791: if (ref($recips) eq 'HASH') {
2792: push(@{$recips->{$type}},$showuser);
2793: }
2794: }
1.73 raeburn 2795: }
2796: }
2797: }
2798: }
1.95 raeburn 2799: return $tonum;
2800: }
2801:
2802: sub recipients_link {
2803: my ($r,$content,$recipients) = @_;
2804: my ($broadcast_link,$show);
2805: if ((ref($content) eq 'HASH') && (ref($recipients) eq 'HASH')) {
2806: if (ref($recipients->{'course_broadcast'}) eq 'ARRAY') {
2807: if (@{$recipients->{'course_broadcast'}} > 0) {
2808: $show = 'course';
2809: }
2810: } elsif (ref($recipients->{'group_cc_broadcast'}) eq 'ARRAY') {
2811: if (@{$recipients->{'group_cc_broadcast'}} > 0) {
2812: $show = 'group_cc';
2813: }
2814: } elsif (ref($recipients->{'group_bcc_broadcast'}) eq 'ARRAY') {
2815: if (@{$recipients->{'group_bcc_broadcast'}} > 0) {
2816: $show = 'group_bcc';
2817: }
2818: }
2819: if ($show) {
2820: my ($nothing,$height,$width,$start_page,$end_page,$body);
2821: $nothing=&Apache::lonhtmlcommon::javascript_nothing();
2822: $height = 400;
2823: $width = 600;
1.108 raeburn 2824: $start_page =
2825: &Apache::loncommon::start_page('Broadcast List', undef,
2826: {only_body => 1,
2827: js_ready => 1,});
2828: $end_page = &Apache::loncommon::end_page({js_ready => 1,});
2829: $body = '<h3>'.&mt("Recipients of broadcast message").'</h3>'.
2830: &Apache::loncommon::start_data_table();
1.95 raeburn 2831: my $cell = 0;
2832: $body .= &Apache::loncommon::start_data_table_row();
2833: foreach my $item (@{$recipients->{$show.'_broadcast'}}) {
2834: $item =~ s/'/\\'/g;
2835: if (!($cell%2) && $cell > 0) {
2836: $body .= &Apache::loncommon::end_data_table_row().
2837: &Apache::loncommon::start_data_table_row();
2838: }
2839: $cell ++;
2840: $body .= '<td>'.$cell.' '.$item.' </td>';
2841: }
2842: if ($cell%2) {
2843: $body .= '<td> </td>';
2844: }
2845: $body .= &Apache::loncommon::end_data_table_row().
2846: &Apache::loncommon::end_data_table();
2847: $body =~ s{</}{<\\/}g;
2848: $body =~ s{\n}{}g;
2849: $r->print(<<ENDJS);
2850: <script type="text/javascript">
1.127 bisitz 2851: // <![CDATA[
1.95 raeburn 2852: function showBroadcastList() {
2853: var caller = this;
2854: var newWindow = null;
2855: try {
2856: newWindow = window.open($nothing,"broadcast","HEIGHT=$height,WIDTH=$width,resizable=yes,scrollbars=yes" );
2857: }
2858: catch(error) {
2859: writeWin(caller);
2860: return;
2861: }
2862: if (newWindow) {
2863: caller = newWindow;
2864: }
2865: writeWin(caller);
2866: return;
2867: }
2868:
2869: function writeWin(caller) {
2870: caller.document.writeln('$start_page $body $end_page');
2871: caller.document.close();
2872: caller.focus();
2873: }
1.127 bisitz 2874: // ]]>
1.95 raeburn 2875: </script>
2876:
2877: ENDJS
2878: $broadcast_link = 1;
2879: }
2880: }
2881: return $broadcast_link;
1.73 raeburn 2882: }
2883:
1.1 albertel 2884: # =========================================================== Show the citation
2885:
2886: sub displayresource {
2887: my %content=@_;
2888: #
2889: # If the recipient is in the same course that the message was sent from and
2890: # has sufficient privileges, show "all details," else show citation
2891: #
2892: if (($env{'request.course.id'} eq $content{'courseid'})
2893: && (&Apache::lonnet::allowed('vgr',$content{'courseid'}))) {
1.59 raeburn 2894: my $symb;
2895: if (defined($content{'symb'})) {
2896: $symb = $content{'symb'};
2897: } else {
2898: $symb=&Apache::lonnet::symbread($content{'baseurl'});
2899: }
1.1 albertel 2900: # Could not get a symb, give up
2901: unless ($symb) { return $content{'citation'}; }
2902: # Have a symb, can render
2903: return '<h2>'.&mt('Current attempts of student (if applicable)').'</h2>'.
2904: &Apache::loncommon::get_previous_attempt($symb,
2905: $content{'sendername'},
2906: $content{'senderdomain'},
2907: $content{'courseid'}).
2908: '<hr /><h2>'.&mt('Current screen output (if applicable)').'</h2>'.
2909: &Apache::loncommon::get_student_view($symb,
2910: $content{'sendername'},
2911: $content{'senderdomain'},
2912: $content{'courseid'}).
2913: '<h2>'.&mt('Correct Answer(s) (if applicable)').'</h2>'.
2914: &Apache::loncommon::get_student_answers($symb,
2915: $content{'sendername'},
2916: $content{'senderdomain'},
2917: $content{'courseid'});
2918: } elsif ($env{'user.adv'}) {
2919: return $content{'citation'};
2920: }
2921: return '';
2922: }
2923:
2924: # ================================================================== The Header
2925:
2926: sub header {
2927: my ($r,$title,$baseurl)=@_;
2928: my $extra = &Apache::loncommon::studentbrowser_javascript();
2929: if ($baseurl) {
1.41 albertel 2930: $extra .= "<base href=\"".&Apache::lonnet::absolute_url()."/$baseurl\" />";
1.1 albertel 2931: }
1.138 raeburn 2932: $r->print(&Apache::loncommon::start_page('Messages',
1.38 raeburn 2933: $extra));
1.1 albertel 2934: $r->print(&Apache::lonhtmlcommon::breadcrumbs
1.138 raeburn 2935: (($title?$title:'Send and display messages')));
1.1 albertel 2936: }
2937:
2938: # ---------------------------------------------------------------- Print header
2939:
2940: sub printheader {
2941: my ($r,$url,$desc,$title,$baseurl)=@_;
2942: &Apache::lonhtmlcommon::add_breadcrumb
2943: ({href=>$url,
2944: text=>$desc});
2945: &header($r,$title,$baseurl);
2946: }
2947:
2948: # ------------------------------------------------------------ Store the comment
2949:
2950: sub storecomment {
2951: my ($r)=@_;
2952: my $msgtxt=&Apache::lonfeedback::clear_out_html($env{'form.message'});
2953: my $cleanmsgtxt='';
1.42 raeburn 2954: foreach my $line (split(/[\n\r]/,$msgtxt)) {
2955: unless ($line=~/^\s*(\>|\>\;)/) {
2956: $cleanmsgtxt.=$line."\n";
1.1 albertel 2957: }
2958: }
1.29 www 2959: my $key=&escape($env{'form.baseurl'}).'___'.time;
1.1 albertel 2960: &Apache::lonnet::put('nohist_stored_comments',{ $key => $cleanmsgtxt });
2961: }
2962:
2963: sub storedcommentlisting {
2964: my ($r)=@_;
2965: my %msgs=&Apache::lonnet::dump('nohist_stored_comments',undef,undef,
1.29 www 2966: '^'.&escape(&escape($env{'form.showcommentbaseurl'})));
1.72 albertel 2967: $r->print(&Apache::loncommon::start_page('Saved Comment Listing',undef,
1.1 albertel 2968: {'onlybody' => 1}));
2969: if ((keys %msgs)[0]=~/^error\:/) {
1.72 albertel 2970: $r->print(&mt('No saved comments yet.'));
1.1 albertel 2971: } else {
2972: my $found=0;
1.42 raeburn 2973: foreach my $key (sort(keys(%msgs))) {
2974: $r->print("\n".$msgs{$key}."<hr />");
1.1 albertel 2975: $found=1;
2976: }
2977: unless ($found) {
1.72 albertel 2978: $r->print(&mt('No saved comments yet for this resource.'));
1.1 albertel 2979: }
2980: }
2981: }
2982:
2983: # ---------------------------------------------------------------- Send an email
2984:
2985: sub sendoffmail {
2986: my ($r,$folder)=@_;
2987: my $suffix=&Apache::lonmsg::foldersuffix($folder);
2988: my $sendstatus='';
1.71 raeburn 2989: my %msg_status;
2990: my $numsent = 0;
2991: my $nosentstore = 1;
1.86 raeburn 2992: my $attachmenturl;
2993: my $now = time;
1.38 raeburn 2994: my ($cdom,$cnum,$group);
2995: if (exists($env{'form.group'})) {
2996: $group = $env{'form.group'};
2997: }
2998: if (exists($env{'request.course.id'})) {
2999: $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
3000: $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
3001: }
1.1 albertel 3002: if ($env{'form.send'}) {
1.53 raeburn 3003: if (!$env{'form.multiforward'}) {
3004: if ($group eq '') {
3005: &printheader($r,'','Messages being sent.');
3006: } else {
3007: $r->print(&groupmail_header('sending',$group));
3008: }
1.38 raeburn 3009: }
1.1 albertel 3010: $r->rflush();
3011: my %content=();
3012: undef %content;
3013: if ($env{'form.forwid'}) {
3014: my $msgid=$env{'form.forwid'};
3015: my %message=&Apache::lonnet::get('nohist_email'.$suffix,[$msgid]);
1.86 raeburn 3016: %content=&Apache::lonmsg::unpackagemsg($message{$msgid},1,1);
1.1 albertel 3017: &statuschange($msgid,'forwarded',$folder);
1.86 raeburn 3018: if ($content{'attachmenturl'} ne '') {
3019: $attachmenturl = $content{'attachmenturl'};
3020: }
3021: $env{'form.message'} .= "\n\n-- Forwarded message --\n\n".
3022: $content{'message'};
1.1 albertel 3023: }
3024: if ($env{'form.replyid'}) {
3025: my $msgid=$env{'form.replyid'};
3026: my %message=&Apache::lonnet::get('nohist_email'.$suffix,[$msgid]);
3027: %content=&Apache::lonmsg::unpackagemsg($message{$msgid},1);
3028: &statuschange($msgid,'replied',$folder);
3029: }
1.13 albertel 3030:
1.25 foxr 3031: my $mode = $env{'form.sendmode'};
1.95 raeburn 3032: my (%toaddr,$tos,$cc,$bcc,$broadcast);
1.25 foxr 3033:
1.95 raeburn 3034: if ($mode eq 'group') {
3035: if (defined($env{'form.courserecips'})) {
3036: my $courseusers = $env{'form.courserecips'};
3037: $courseusers =~ s/^_\&\&\&_//;
3038: my @to = split('_&&&_',$courseusers);
3039: foreach my $dest (@to) {
3040: my ($user,$domain) = split(/:/, $dest);
3041: if (($user ne '') && ($domain ne '')) {
3042: my $rec = $user.":".$domain;
3043: $toaddr{$rec} = '';
3044: $broadcast->{$rec} = '';
3045: }
3046: }
3047: }
3048: } elsif ($mode eq 'upload') {
1.71 raeburn 3049: $nosentstore = 0;
1.13 albertel 3050: foreach my $line (split(/[\n\r\f]+/,$env{'form.upfile'})) {
1.43 raeburn 3051: my ($rec,$txt) = ($line =~ /^([^:]+:[^:]+):(.*)$/);
1.1 albertel 3052: if ($txt) {
1.43 raeburn 3053: $rec =~ s/^\s+//;
1.44 raeburn 3054: $rec =~ s/\s+$//;
1.1 albertel 3055: $toaddr{$rec}.=$txt."\n";
1.95 raeburn 3056: $broadcast->{$rec} = '';
1.1 albertel 3057: }
3058: }
3059: } else {
1.25 foxr 3060: if (($env{'form.recuname'} ne '') && ($env{'form.recdomain'} ne '')) {
3061: $toaddr{$env{'form.recuname'}.':'.$env{'form.recdomain'}}='';
1.95 raeburn 3062: $tos->{$env{'form.recuname'}.':'.$env{'form.recdomain'}}='';
1.25 foxr 3063: }
1.1 albertel 3064: }
1.95 raeburn 3065: if ($env{'form.additionalrec_to'}) {
3066: foreach my $rec (split(/\s*,\s*/,$env{'form.additionalrec_to'})) {
3067: my ($auname,$audom)=split(/:/,$rec);
3068: if (($auname ne "") && ($audom ne "")) {
3069: $toaddr{$auname.':'.$audom}='';
3070: $tos->{$auname.':'.$audom}='';
3071: }
3072: }
3073: }
3074: if ($env{'form.replying_to'}) {
3075: my @toreplies =
3076: &Apache::loncommon::get_env_multiple('form.replying_to');
3077: foreach my $rec (@toreplies) {
3078: my ($auname,$audom)=split(/:/,$rec);
3079: if (($auname ne "") && ($audom ne "")) {
3080: $toaddr{$auname.':'.$audom}='';
3081: $tos->{$auname.':'.$audom}='';
3082: }
3083: }
3084: }
1.73 raeburn 3085: if ($env{'form.additionalrec_cc'}) {
3086: foreach my $rec (split(/\s*,\s*/,$env{'form.additionalrec_cc'})) {
1.43 raeburn 3087: my ($auname,$audom)=split(/:/,$rec);
1.25 foxr 3088: if (($auname ne "") && ($audom ne "")) {
1.73 raeburn 3089: $toaddr{$auname.':'.$audom}='';
1.95 raeburn 3090: if (!defined($tos->{$auname.':'.$audom})) {
3091: $cc->{$auname.':'.$audom}='';
3092: }
1.25 foxr 3093: }
1.1 albertel 3094: }
3095: }
1.95 raeburn 3096: if ($env{'form.replying_cc'}) {
3097: my @ccreplies =
3098: &Apache::loncommon::get_env_multiple('form.replying_cc');
3099: foreach my $rec (@ccreplies) {
3100: my ($auname,$audom)=split(/:/,$rec);
3101: if (($auname ne "") && ($audom ne "")) {
3102: $toaddr{$auname.':'.$audom}='';
3103: if (!defined($tos->{$auname.':'.$audom})) {
3104: $cc->{$auname.':'.$audom}='';
3105: }
3106: }
3107: }
3108: }
3109: if ($env{'form.replying_groupcc'}) {
3110: my @groupreplies =
3111: &Apache::loncommon::get_env_multiple('form.replying_groupcc');
3112: foreach my $rec (@groupreplies) {
1.73 raeburn 3113: my ($auname,$audom)=split(/:/,$rec);
3114: if (($auname ne "") && ($audom ne "")) {
3115: $toaddr{$auname.':'.$audom}='';
1.95 raeburn 3116: if (!defined($tos->{$auname.':'.$audom})) {
3117: $broadcast->{$auname.':'.$audom}='';
3118: }
1.73 raeburn 3119: }
3120: }
3121: }
1.95 raeburn 3122: if ($env{'form.additionalrec_bcc'}) {
3123: foreach my $rec (split(/\s*,\s*/,$env{'form.additionalrec_bcc'})) {
1.73 raeburn 3124: my ($auname,$audom)=split(/:/,$rec);
3125: if (($auname ne "") && ($audom ne "")) {
3126: $toaddr{$auname.':'.$audom}='';
1.95 raeburn 3127: if ((!defined($tos->{$auname.':'.$audom})) &&
3128: (!defined($cc->{$auname.':'.$audom}))) {
3129: $bcc->{$auname.':'.$audom}='';
3130: }
1.73 raeburn 3131: }
3132: }
3133: }
1.1 albertel 3134: my $savemsg;
3135: my $msgtype;
3136: my %sentmessage;
1.7 albertel 3137: my $msgsubj=&Apache::lonfeedback::clear_out_html($env{'form.subject'},
3138: undef,1);
1.1 albertel 3139: if ((($env{'form.critmsg'}) || ($env{'form.sendbck'})) &&
3140: (&Apache::lonnet::allowed('srm',$env{'request.course.id'})
3141: || &Apache::lonnet::allowed('srm',$env{'request.course.id'}.
3142: '/'.$env{'request.course.sec'})
3143: )) {
3144: $savemsg=&Apache::lonfeedback::clear_out_html($env{'form.message'},1);
3145: $msgtype = 'critical';
3146: } else {
3147: $savemsg=&Apache::lonfeedback::clear_out_html($env{'form.message'});
3148: }
1.73 raeburn 3149: my %reciphash = (
1.95 raeburn 3150: to => $tos,
1.73 raeburn 3151: cc => $cc,
3152: bcc => $bcc,
1.95 raeburn 3153: );
3154: if ($mode eq 'group') {
3155: if ($group eq '') {
3156: $reciphash{'course_broadcast'} = $broadcast;
3157: } else {
3158: if ($env{'form.groupmail'} eq 'cc') {
3159: $reciphash{'group_cc_broadcast'} = $broadcast;
3160: } else {
3161: $reciphash{'group_bcc_broadcast'} = $broadcast;
3162: }
3163: }
3164: }
1.73 raeburn 3165: my ($recipid,$recipstatus) =
3166: &Apache::lonmsg::store_recipients($msgsubj,$env{'user.name'},
3167: $env{'user.domain'},\%reciphash);
3168: if ($recipstatus ne 'ok') {
1.95 raeburn 3169: &Apache::lonnet::logthis('Failed to store To, Bcc and Cc recipients for '.$env{'user.name'}.':'.$env{'user.domain'});
1.86 raeburn 3170: }
3171: if ($env{'form.attachment'}) {
3172: if (length($env{'form.attachment'})<131072) {
3173: $attachmenturl=&Apache::lonnet::userfileupload('attachment',undef,'feedback/'.$now);
3174: } else {
3175: $r->print('<p><span class="LC_warning">'.&mt('Attachment not included - exceeded permitted length').'</span><br /></p>');
3176: }
3177: } elsif ($env{'form.multiforward'}) {
3178: if ($env{'form.attachmenturl'} ne '') {
3179: $attachmenturl = $env{'form.attachmenturl'};
3180: }
3181: }
1.71 raeburn 3182: my @recusers;
3183: my @recudoms;
1.13 albertel 3184: foreach my $address (sort(keys(%toaddr))) {
3185: my ($recuname,$recdomain)=split(/\:/,$address);
1.1 albertel 3186: my $msgtxt = $savemsg;
1.73 raeburn 3187: if ($toaddr{$address}) {
1.151 raeburn 3188: $msgtxt.="\n".'<hr />'."\n".$toaddr{$address};
1.73 raeburn 3189: }
1.12 albertel 3190: my @thismsg;
1.60 raeburn 3191: if ($msgtype eq 'critical') {
3192: $r->print(&mt('Sending critical message').' '.
3193: $recuname.':'.$recdomain.': ');
1.13 albertel 3194: @thismsg=
3195: &Apache::lonmsg::user_crit_msg($recuname,$recdomain,
3196: $msgsubj,$msgtxt,
3197: $env{'form.sendbck'},
3198: $env{'form.permanent'},
1.71 raeburn 3199: \$sentmessage{$address},
1.73 raeburn 3200: $nosentstore,$recipid);
1.1 albertel 3201: } else {
1.14 albertel 3202: $r->print(&mt('Sending').' '.$recuname.':'.$recdomain.': ');
1.13 albertel 3203: @thismsg=
3204: &Apache::lonmsg::user_normal_msg($recuname,$recdomain,
3205: $msgsubj,$msgtxt,
3206: $content{'citation'},
1.86 raeburn 3207: undef,$attachmenturl,
1.13 albertel 3208: $env{'form.permanent'},
1.71 raeburn 3209: \$sentmessage{$address},
3210: undef,undef,undef,
1.73 raeburn 3211: $nosentstore,$recipid);
1.71 raeburn 3212: }
3213: $msg_status{$recuname.':'.$recdomain}=join(' ',@thismsg);
3214: if ($msg_status{$recuname.':'.$recdomain} =~ /(ok|con_delayed)/) {
3215: $numsent++;
3216: push(@recusers,$recuname);
3217: push(@recudoms,$recdomain);
1.1 albertel 3218: }
1.12 albertel 3219: $sendstatus.=' '.join(' ',@thismsg);
1.1 albertel 3220: }
1.71 raeburn 3221: my $subj_prefix;
3222: if ($numsent > 0) {
3223: if (($env{'request.course.id'}) &&
1.95 raeburn 3224: (($mode eq 'group') ||
1.71 raeburn 3225: ($env{'form.courserecord'}) ||
1.95 raeburn 3226: ($msgtype eq 'critical')) ||
3227: ($env{'form.replyid'} &&
3228: (($content{'courseid'} ne '') &&
3229: ($mode eq 'group')))) {
1.71 raeburn 3230: if ($msgtype eq 'critical') {
3231: $subj_prefix = 'Critical.';
1.95 raeburn 3232: } elsif ($mode eq 'group') {
1.71 raeburn 3233: $subj_prefix = 'Broadcast.';
3234: } else {
3235: $subj_prefix = 'Archive';
3236: }
3237: my ($specialmsgid,$specialresult);
1.95 raeburn 3238: my $course_str;
3239: if ($env{'form.replyid'}) {
3240: if ($content{'courseid'} ne '') {
3241: my %crsdesc =
3242: &Apache::lonnet::coursedescription($content{'courseid'},
3243: {'one_time' => 1});
3244: $course_str = &escape('['.$crsdesc{'num'}.':'.$crsdesc{'domain'}.']');
3245: }
3246: } elsif ($env{'request.course.id'}) {
3247: $course_str = &escape('['.$cnum.':'.$cdom.']');
3248: }
1.71 raeburn 3249: $specialresult =
3250: &Apache::lonmsg::user_normal_msg_raw($cnum,$cdom,
3251: $subj_prefix.' '.$course_str,$savemsg,undef,undef,
1.86 raeburn 3252: $attachmenturl,undef,undef,\$specialmsgid,undef,undef,undef,
1.71 raeburn 3253: undef,undef,1);
1.29 www 3254: $specialmsgid = &unescape($specialmsgid);
1.71 raeburn 3255: if ($specialresult eq 'ok') {
3256: my ($stamp,$crssubj,$msgname,$msgdom,$msgcount,$context,$pid) =
3257: split(/\:/,&unescape($specialmsgid));
3258:
3259: foreach my $recipient (sort(keys(%toaddr))) {
3260: if ($msg_status{$recipient} =~ /\s*(ok|con_delayed)\s*/) {
3261: my $usersubj = $subj_prefix.'['.$recipient.']';
3262: my $usermsgid =
3263: &Apache::lonmsg::buildmsgid($stamp,$usersubj,
3264: $msgname,$msgdom,
3265: $msgcount,$context,
3266: $pid);
3267: &Apache::lonmsg::user_normal_msg_raw($cnum,$cdom,
3268: $subj_prefix.' ['.$recipient.']',$msgsubj,
1.86 raeburn 3269: undef,undef,$attachmenturl,undef,$usermsgid,undef,
1.71 raeburn 3270: undef,$specialmsgid,undef,undef,undef,1);
3271: }
3272: }
1.95 raeburn 3273: if (($mode ne 'upload') && (@recusers > 0)) {
1.71 raeburn 3274: &Apache::lonmsg::process_sent_mail($msgsubj,
3275: $subj_prefix,$numsent,$stamp,$msgname,$msgdom,
3276: $msgcount,$context,$pid,$savemsg,\@recusers,
1.95 raeburn 3277: \@recudoms,undef,$attachmenturl,'','','','',$recipid);
1.1 albertel 3278: }
1.71 raeburn 3279: } else {
1.78 raeburn 3280: &Apache::lonnet::logthis('Failed to create record of critical, broadcast or archived message in '.$env{'course.'.$env{'request.course.id'}.'.num'}.' '&mt('at').' '.$env{'course.'.$env{'request.course.id'}.'.domain'}.' - no msgid generated');
1.1 albertel 3281: }
3282: } else {
1.71 raeburn 3283: my $stamp = time;
3284: my $msgcount = &Apache::lonmsg::get_uniq();
3285: my $context = &Apache::lonmsg::get_course_context();
3286: &Apache::lonmsg::process_sent_mail($msgsubj,$subj_prefix,
3287: $numsent,$stamp,$env{'user.name'},
3288: $env{'user.domain'},$msgcount,$context,
1.95 raeburn 3289: $$,$savemsg,\@recusers,\@recudoms,undef,$attachmenturl,
3290: '','','','',$recipid);
1.1 albertel 3291: }
3292: }
1.143 wenzelju 3293: if (!$env{'form.multiforward'}) {
1.71 raeburn 3294: if ($sendstatus=~/^(\s*(?:ok|con_delayed)\s*)*$/) {
1.143 wenzelju 3295: my $message = &Apache::lonhtmlcommon::confirm_success(&mt('Completed.'));
3296: $message = &Apache::loncommon::confirmwrapper($message);
3297: $r->print($message);
1.71 raeburn 3298: if ($env{'form.displayedcrit'}) {
3299: &discrit($r);
3300: }
3301: if ($group ne '') {
3302: $r->print(&groupmail_sent($group,$cdom,$cnum));
3303: } else {
3304: &Apache::loncommunicate::menu($r);
3305: }
3306: } else {
1.143 wenzelju 3307: my $message = &Apache::lonhtmlcommon::confirm_success(&mt('Could not deliver message'),1);
1.145 raeburn 3308: $message .= '<br />'.&mt('Please use the browser "Back" button and correct the recipient addresses ([_1]).',$sendstatus);
1.143 wenzelju 3309: $message = &Apache::loncommon::confirmwrapper($message);
3310: $r->print($message);
1.53 raeburn 3311: }
1.38 raeburn 3312: }
1.152 www 3313: } else {
3314: &printheader($r,'','Messages cancelled.');
3315: return 'cancelled';
1.1 albertel 3316: }
1.53 raeburn 3317: return $sendstatus;
1.1 albertel 3318: }
3319:
3320: # ===================================================================== Handler
3321:
3322: sub handler {
3323: my $r=shift;
3324:
3325: # ----------------------------------------------------------- Set document type
3326:
3327: &Apache::loncommon::content_type($r,'text/html');
3328: $r->send_http_header;
3329:
3330: return OK if $r->header_only;
3331:
3332: # --------------------------- Get query string for limited number of parameters
3333: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
3334: ['display','replyto','forward','markread','markdel','markunread',
3335: 'sendreply','compose','sendmail','critical','recname','recdom',
3336: 'recordftf','sortedby','block','folder','startdis','interdis',
1.53 raeburn 3337: 'showcommentbaseurl','dismode','group','subject','text','ref',
3338: 'msgstatus']);
1.127 bisitz 3339: $sqs='&sortedby='.$env{'form.sortedby'};
1.1 albertel 3340:
3341: # ------------------------------------------------------ They checked for email
3342: unless ($env{'form.block'}) {
3343: &Apache::lonnet::put('email_status',{'recnewemail'=>0});
3344: }
3345:
3346: # ----------------------------------------------------------------- Breadcrumbs
3347:
3348: &Apache::lonhtmlcommon::clear_breadcrumbs();
3349: &Apache::lonhtmlcommon::add_breadcrumb
3350: ({href=>"/adm/communicate",
1.138 raeburn 3351: text=>"Messages",
1.1 albertel 3352: faq=>12,bug=>'Communication Tools',});
3353:
3354: # ------------------------------------------------------------------ Get Folder
3355:
3356: my $folder=$env{'form.folder'};
3357: unless ($folder) {
3358: $folder='';
3359: } else {
1.127 bisitz 3360: $sqs.='&folder='.&escape($folder);
1.1 albertel 3361: }
3362: # ------------------------------------------------------------ Get Display Mode
3363:
3364: my $dismode=$env{'form.dismode'};
3365: unless ($dismode) {
3366: $dismode='';
3367: } else {
1.48 albertel 3368: $sqs.='&dismode='.&escape($dismode);
1.1 albertel 3369: }
3370:
3371: # --------------------------------------------------------------------- Display
1.53 raeburn 3372: my $msgstatus = $env{'form.msgstatus'};
1.1 albertel 3373: $startdis=$env{'form.startdis'};
1.53 raeburn 3374: if ($startdis ne '') {
3375: $startdis--;
3376: }
1.1 albertel 3377: unless ($startdis) { $startdis=0; }
3378:
3379: if ($env{'form.firstview'}) {
3380: $startdis=0;
3381: }
3382: if ($env{'form.lastview'}) {
3383: $startdis=-1;
3384: }
3385: if ($env{'form.prevview'}) {
3386: $startdis--;
3387: }
3388: if ($env{'form.nextview'}) {
3389: $startdis++;
3390: }
3391: my $postedstartdis=$startdis+1;
1.127 bisitz 3392: $sqs.='&startdis='.$postedstartdis;
1.1 albertel 3393:
3394: # --------------------------------------------------------------- Render Output
3395:
3396: if ($env{'form.display'}) {
1.53 raeburn 3397: &displaymessage($r,$env{'form.display'},$folder,$msgstatus);
1.1 albertel 3398: } elsif ($env{'form.replyto'}) {
3399: &compout($r,'',$env{'form.replyto'},undef,undef,$folder,$dismode);
3400: } elsif ($env{'form.confirm'}) {
3401: &printheader($r,'','Confirmed Receipt');
1.36 albertel 3402: my $replying = 0;
1.42 raeburn 3403: foreach my $envkey (keys(%env)) {
1.75 raeburn 3404: if ($envkey=~/^form\.(rep)?rec\_(.*)$/) {
1.77 raeburn 3405: my $repchk = $1;
1.75 raeburn 3406: my $msgid = $2;
3407: $r->print('<b>'.&mt('Confirming Receipt').':</b> ');
3408: my $result = &Apache::lonmsg::user_crit_received($msgid);
3409: if ($result =~ /trans:\s+ok/) {
3410: &statuschange($msgid,'read');
3411: }
1.76 albertel 3412: $r->print($result.'<br />');
1.77 raeburn 3413: if ($repchk eq 'rep') {
1.75 raeburn 3414: &compout($r,'','','',$msgid);
3415: $replying = 1;
3416: }
1.1 albertel 3417: }
3418: }
1.36 albertel 3419: if (!$replying) {
3420: &discrit($r);
3421: }
1.1 albertel 3422: } elsif ($env{'form.critical'}) {
3423: &printheader($r,'','Displaying Critical Messages');
3424: &discrit($r);
3425: } elsif ($env{'form.forward'}) {
3426: &compout($r,$env{'form.forward'},undef,undef,undef,$folder);
3427: } elsif ($env{'form.markdel'}) {
3428: &printheader($r,'','Deleted Message');
1.9 albertel 3429: my ($result,$msg) =
3430: &statuschange($env{'form.markdel'},'deleted',$folder);
3431: if (!$result) {
1.143 wenzelju 3432: my $message = &Apache::lonhtmlcommon::confirm_success(&mt('Failed to delete the message.'),1);
1.147 wenzelju 3433: $message .= '<p class="LC_error" style="font-size: inherit;">'.$msg.'</p>';
1.143 wenzelju 3434: $message = &Apache::loncommon::confirmwrapper($message);
3435: $r->print($message);
1.9 albertel 3436: }
1.1 albertel 3437: &Apache::loncommunicate::menu($r);
1.53 raeburn 3438: &disall($r,($folder?$folder:$dismode),$msgstatus);
3439: } elsif ($env{'form.markedaction'} eq 'markedforward') {
3440: my $total = 0;
3441: my @to_forward = &Apache::loncommon::get_env_multiple('form.delmark');
3442: foreach my $msgid (@to_forward) {
3443: &statuschange(&unescape($msgid),'forwarded',$folder);
3444: $total ++;
3445: }
3446: if ($total > 0) {
3447: &compout($r,undef,undef,undef,undef,$folder,$dismode,$total);
3448: }
3449: } elsif ($env{'form.markedaction'} eq 'markedread') {
3450: my $total = 0;
3451: my @to_markread = &Apache::loncommon::get_env_multiple('form.delmark');
3452: foreach my $msgid (@to_markread) {
3453: &statuschange(&unescape($msgid),'read',$folder);
3454: $total ++;
3455: }
3456: &printheader($r,'','Marked Messages Read');
1.143 wenzelju 3457: my $message = &Apache::lonhtmlcommon::confirm_success(&mt('Marked [quant,_1,message] read',$total));
3458: $message = &Apache::loncommon::confirmwrapper($message);
3459: $r->print($message);
3460: # $r->print('<p>');
1.53 raeburn 3461: &Apache::loncommunicate::menu($r);
3462: &disall($r,($folder?$folder:$dismode),$msgstatus);
3463: } elsif ($env{'form.markedaction'} eq 'markedunread') {
3464: my $total = 0;
3465: my @to_markunread = &Apache::loncommon::get_env_multiple('form.delmark');
3466: foreach my $msgid (@to_markunread) {
3467: &statuschange(&unescape($msgid),'new',$folder);
3468: $total ++;
3469: }
3470: &printheader($r,'','Marked Messages Unread');
1.143 wenzelju 3471: my $message = &Apache::lonhtmlcommon::confirm_success(&mt('Marked [quant,_1,message] unread',$total));
3472: $message = &Apache::loncommon::confirmwrapper($message);
3473: $r->print($message);
3474: # $r->print('<p>');
1.53 raeburn 3475: &Apache::loncommunicate::menu($r);
3476: &disall($r,($folder?$folder:$dismode),$msgstatus);
3477: } elsif ($env{'form.markedaction'} eq 'markedmove') {
3478: my $destfolder = $env{'form.movetofolder'};
3479: my %gotfolders = &Apache::lonmsg::get_user_folders();
3480: &printheader($r,'','Moved Messages');
3481: if (!defined($gotfolders{$destfolder})) {
3482: $r->print(&mt('Destination folder [_1] is not a valid folder',
1.148 bisitz 3483: '<span class="LC_filename">'.$destfolder.'</span>'));
1.53 raeburn 3484: } else {
3485: my ($total,$failed,@failed_msg)=(0,0);
3486: my @to_move = &Apache::loncommon::get_env_multiple('form.delmark');
3487: foreach my $msgid (@to_move) {
3488: my ($result,$msg) = &movemsg(&unescape($msgid),$folder,
3489: $env{'form.movetofolder'});
3490: if ($result) {
1.9 albertel 3491: $total++;
1.53 raeburn 3492: } else {
1.9 albertel 3493: $failed++;
3494: push(@failed_msg,$msg);
1.53 raeburn 3495: }
1.1 albertel 3496: }
1.143 wenzelju 3497: my $message = '';
3498: if ($failed) {
3499: $message .= &Apache::lonhtmlcommon::confirm_success(&mt('Failed to move [quant,_1,message]',$failed),1);
1.147 wenzelju 3500: $message .= '<p class="LC_error" style="font-size: inherit;">'.
3501: join("</p>\n<p class=\"LC_error\" style=\"font-size: inherit;\">",@failed_msg).
1.143 wenzelju 3502: "</p>\n";
3503: }
3504: $message .= &Apache::lonhtmlcommon::confirm_success(&mt('Moved [quant,_1,message]',$total));
3505: $message = &Apache::loncommon::confirmwrapper($message);
3506: $r->print($message);
3507: # $r->print('<p>');
1.53 raeburn 3508: }
1.1 albertel 3509: &Apache::loncommunicate::menu($r);
1.53 raeburn 3510: &disall($r,($folder?$folder:$dismode),$msgstatus);
3511: } elsif ($env{'form.markedaction'} eq 'markeddel') {
1.9 albertel 3512: my ($total,$failed,@failed_msg)=(0,0);
1.53 raeburn 3513: my @to_delete = &Apache::loncommon::get_env_multiple('form.delmark');
3514: foreach my $msgid (@to_delete) {
3515: my ($result,$msg) = &statuschange(&unescape($msgid),'deleted',
3516: $folder);
3517: if ($result) {
3518: $total++;
3519: } else {
3520: $failed++;
3521: push(@failed_msg,$msg);
1.1 albertel 3522: }
3523: }
3524: &printheader($r,'','Deleted Messages');
1.143 wenzelju 3525: my $message = '';
1.9 albertel 3526: if ($failed) {
1.143 wenzelju 3527: $message .= &Apache::lonhtmlcommon::confirm_success(&mt('Failed to delete [quant,_1,message]',$failed),1);
1.147 wenzelju 3528: $message .= '<p class="LC_error" style="font-size: inherit;">'.
3529: join("</p>\n<p class=\"LC_error\" style=\"font-size: inherit;\">",@failed_msg).
1.143 wenzelju 3530: "</p>\n";
1.9 albertel 3531: }
1.143 wenzelju 3532: $message .= &Apache::lonhtmlcommon::confirm_success(&mt('Deleted [quant,_1,message]',$total));
3533: $message = &Apache::loncommon::confirmwrapper($message);
3534: $r->print($message);
3535: # $r->print('<p>');
1.1 albertel 3536: &Apache::loncommunicate::menu($r);
1.53 raeburn 3537: &disall($r,($folder?$folder:$dismode),$msgstatus);
1.1 albertel 3538: } elsif ($env{'form.markunread'}) {
3539: &printheader($r,'','Marked Message as Unread');
3540: &statuschange($env{'form.markunread'},'new');
3541: &Apache::loncommunicate::menu($r);
1.53 raeburn 3542: &disall($r,($folder?$folder:$dismode),$msgstatus);
1.1 albertel 3543: } elsif ($env{'form.compose'}) {
3544: &compout($r,'','',$env{'form.compose'});
3545: } elsif ($env{'form.recordftf'}) {
3546: &facetoface($r,$env{'form.recordftf'});
3547: } elsif ($env{'form.block'}) {
3548: &examblock($r,$env{'form.block'});
3549: } elsif ($env{'form.sendmail'}) {
1.53 raeburn 3550: if ($env{'form.multiforward'}) {
3551: &printheader($r,'','Messages being sent.');
3552: my $fixed_subj = $env{'form.subject'};
3553: my $suffix=&Apache::lonmsg::foldersuffix($folder);
3554: my (%sendresult,%forwardok,%forwardfail,$fwdcount);
3555: my @to_forward = &Apache::loncommon::get_env_multiple('form.delmark');
3556: foreach my $item (@to_forward) {
3557: my $msgid=&unescape($item);
3558: my %message=&Apache::lonnet::get('nohist_email'.$suffix,[$msgid]);
1.86 raeburn 3559: my %content=&Apache::lonmsg::unpackagemsg($message{$msgid},1,1);
1.53 raeburn 3560: if ($env{'form.showorigsubj'}) {
3561: $env{'form.subject'} = $fixed_subj.$content{'subject'};
3562: } else {
3563: $env{'form.subject'} = '';
3564: }
3565: my $uname = $content{'sendername'};
3566: my $udom = $content{'senderdomain'};
3567: &statuschange($msgid,'forwarded',$folder);
3568: if ($env{'form.showorigsender'}) {
3569: $env{'form.message'} = $env{'form.msgheader'}.' '.
3570: &Apache::loncommon::plainname($uname,$udom).' ('.
3571: $uname.':'.$udom.')';
3572: }
1.86 raeburn 3573: $env{'form.message'}.="\n\n-- Forwarded message --\n\n".
3574: $content{'message'};
3575: $env{'form.attachmenturl'} = $content{'attachmenturl'};
3576: $env{'form.multiforwid'} = $item;
1.53 raeburn 3577: $fwdcount ++;
3578: $r->print($fwdcount.': ');
3579: $sendresult{$msgid} = &sendoffmail($r,$folder);
3580: $r->print('<br />');
3581: }
3582: foreach my $key (keys(%sendresult)) {
3583: if ($sendresult{$key} =~/^(\s*(?:ok|con_delayed)\s*)*$/) {
3584: $forwardok{$key} = $sendresult{$key};
3585: } else {
3586: $forwardfail{$key} = $sendresult{$key};
3587: }
3588: }
3589: if (keys(%forwardok) > 0) {
3590: my $count = keys(%forwardok);
1.143 wenzelju 3591: my $message = &Apache::lonhtmlcommon::confirm_success(&mt('[quant,_1,message] forwarded.',$count));
3592: $message = &Apache::loncommon::confirmwrapper($message);
3593: $r->print($message);
1.53 raeburn 3594: }
3595: if (keys(%forwardfail) > 0) {
3596: my $count = keys(%forwardfail);
1.143 wenzelju 3597: my $message = &Apache::lonhtmlcommon::confirm_success(&mt('Could not forward [quant,_1,message].',$count),1);
1.53 raeburn 3598: foreach my $key (keys(%forwardfail)) {
1.145 raeburn 3599: $message .= '<br />'.&mt('Could not deliver forwarded message.').'</span> '.
1.143 wenzelju 3600: &mt('The recipient addresses may need to be corrected').' ('.$forwardfail{$key}.')';
1.53 raeburn 3601: }
1.143 wenzelju 3602: $message = &Apache::loncommon::confirmwrapper($message);
3603: $r->print($message);
1.53 raeburn 3604: }
3605: &Apache::loncommunicate::menu($r);
3606: } else {
3607: &sendoffmail($r,$folder);
3608: }
1.1 albertel 3609: if ($env{'form.storebasecomment'}) {
3610: &storecomment($r);
1.38 raeburn 3611: }
1.1 albertel 3612: if (($env{'form.rsspost'}) && ($env{'request.course.id'})) {
1.38 raeburn 3613: &Apache::lonrss::addentry($env{'course.'.$env{'request.course.id'}.'.num'},
1.1 albertel 3614: $env{'course.'.$env{'request.course.id'}.'.domain'},
3615: 'Course_Announcements',
3616: $env{'form.subject'},
3617: $env{'form.message'},'/adm/communicate','public');
3618: }
1.38 raeburn 3619: if ((!exists($env{'form.group'})) && (!$env{'form.displayedcrit'})) {
1.53 raeburn 3620: &disall($r,($folder?$folder:$dismode),$msgstatus);
1.36 albertel 3621: }
1.1 albertel 3622: } elsif ($env{'form.newfolder'}) {
3623: &printheader($r,'','New Folder');
1.46 raeburn 3624: my $showfolder = $env{'form.newfolder'};
3625: my ($makeresult,$warning) = &makefolder($env{'form.newfolder'});
3626: if ($makeresult eq 'ok') {
1.143 wenzelju 3627: my $message = &Apache::lonhtmlcommon::confirm_success(&mt('Folder "[_1]" created.',$showfolder));
3628: $message = &Apache::loncommon::confirmwrapper($message);
3629: $r->print($message);
1.46 raeburn 3630: } else {
1.143 wenzelju 3631: my $message = &Apache::lonhtmlcommon::confirm_success(&mt('Creation failed.').' '.$makeresult.'<br />'.$warning,1);
3632: $message = &Apache::loncommon::confirmwrapper($message);
3633: $r->print($message);
1.46 raeburn 3634: $showfolder = $folder;
3635: }
3636: &Apache::loncommunicate::menu($r);
1.53 raeburn 3637: &disall($r,$showfolder,$msgstatus);
1.1 albertel 3638: } elsif ($env{'form.showcommentbaseurl'}) {
3639: &storedcommentlisting($r);
1.46 raeburn 3640: } elsif ($env{'form.folderaction'} eq 'delete') {
3641: &printheader($r,'','Deleted Folder');
3642: my $showfolder = '';
3643: my $delresult = &deletefolder($folder);
3644: if ($delresult eq 'ok') {
1.143 wenzelju 3645: my $message = &Apache::lonhtmlcommon::confirm_success(&mt('Folder "[_1]" deleted.',$folder));
3646: $message = &Apache::loncommon::confirmwrapper($message);
3647: $r->print($message);
1.65 raeburn 3648: $env{'form.folder'} = '';
1.46 raeburn 3649: } else {
1.143 wenzelju 3650: my $message = &Apache::lonhtmlcommon::confirm_success(&mt('Deletion failed.').' '.$delresult,1);
3651: $message = &Apache::loncommon::confirmwrapper($message);
3652: $r->print($message);
1.46 raeburn 3653: $showfolder = $folder;
3654: }
3655: &Apache::loncommunicate::menu($r);
1.53 raeburn 3656: &disall($r,$showfolder,$msgstatus);
1.46 raeburn 3657: } elsif ($env{'form.folderaction'} eq 'rename') {
3658: &printheader($r,'','Renamed Folder');
3659: my $showfolder = $env{'form.renamed'};
3660: my $renresult = &renamefolder($folder);
3661: if ($renresult eq 'ok') {
1.143 wenzelju 3662: my $message = &Apache::lonhtmlcommon::confirm_success(&mt('Folder "[_1]" renamed to "[_2]".',$folder,$showfolder));
3663: $message = &Apache::loncommon::confirmwrapper($message);
3664: $r->print($message);
1.46 raeburn 3665: } else {
1.143 wenzelju 3666: my $message = &Apache::lonhtmlcommon::confirm_success(&mt('Renaming failed.').' '.$renresult,1);
3667: $message = &Apache::loncommon::confirmwrapper($message);
3668: $r->print($message);
1.46 raeburn 3669: $showfolder = $folder;
3670: }
3671: &Apache::loncommunicate::menu($r);
1.53 raeburn 3672: &disall($r,$showfolder,$msgstatus);
1.1 albertel 3673: } else {
1.112 weissno 3674: &printheader($r,'','Display All Messages');
1.44 raeburn 3675: &Apache::loncommunicate::menu($r);
1.53 raeburn 3676: &disall($r,($folder?$folder:$dismode),$msgstatus);
1.1 albertel 3677: }
3678: $r->print(&Apache::loncommon::end_page());
3679: return OK;
3680: }
3681: # ================================================= Main program, reset counter
3682:
3683: =pod
3684:
3685: =cut
3686:
3687: 1;
3688:
3689: __END__
3690:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>