--- loncom/interface/lonmsg.pm 2003/08/15 17:57:57 1.62
+++ loncom/interface/lonmsg.pm 2004/01/15 03:53:12 1.78
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Routines for messaging
#
-# $Id: lonmsg.pm,v 1.62 2003/08/15 17:57:57 www Exp $
+# $Id: lonmsg.pm,v 1.78 2004/01/15 03:53:12 www Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -25,23 +25,8 @@
#
# http://www.lon-capa.org/
#
-#
-# (Routines to control the menu
-#
-# (TeX Conversion Module
-#
-# 05/29/00,05/30 Gerd Kortemeyer)
-#
-# 10/05 Gerd Kortemeyer)
-#
-# 10/19,10/20,10/30,
-# 02/06/01 Gerd Kortemeyer
-# 07/27 Guy Albertelli
-# 07/27,07/28,07/30,08/03,08/06,08/08,08/09,08/10,8/13,8/15,
-# 10/1,11/5 Gerd Kortemeyer
-# YEAR=2002
-# 1/1,3/18 Gerd Kortemeyer
-#
+
+
package Apache::lonmsg;
=pod
@@ -115,6 +100,10 @@ use Apache::loncommon();
use Apache::lontexconvert();
use HTML::Entities();
use Mail::Send;
+use Apache::lonlocal;
+
+# Querystring component with sorting type
+my $sqs;
# ===================================================================== Package
@@ -140,7 +129,7 @@ sub packagemsg {
my $result=''.$ENV{'user.name'}.' '.
''.$ENV{'user.domain'}.' '.
''.$subject.' '.
- ''.localtime($now).' '.
+ ''.&Apache::lonlocal::locallocaltime($now).' '.
''.$ENV{'SERVER_NAME'}.' '.
''.$ENV{'HTTP_HOST'}.' '.
''.$ENV{'REMOTE_ADDR'}.' '.
@@ -183,9 +172,9 @@ sub unpackagemsg {
if ($content{'attachmenturl'}) {
my ($fname,$ft)=($content{'attachmenturl'}=~/\/(\w+)\.(\w+)$/);
if ($notoken) {
- $content{'message'}.='
Attachment: '.$fname.'.'.$ft.' ';
+ $content{'message'}.='
'.&mt('Attachment').': '.$fname.'.'.$ft.' ';
} else {
- $content{'message'}.='
Attachment: '.$fname.'.'.$ft.' ';
}
@@ -209,14 +198,15 @@ sub unpackmsgid {
sub sendemail {
my ($to,$subject,$body)=@_;
$body=
- "*** This is an automatic message generated by the LON-CAPA system.\n".
- "*** Please do not reply to this address.\n\n".$body;
+ "*** ".&mt('This is an automatic message generated by the LON-CAPA system.')."\n".
+ "*** ".&mt('Please do not reply to this address.')."\n\n".$body;
my $msg = new Mail::Send;
$msg->to($to);
$msg->subject('[LON-CAPA] '.$subject);
- my $fh = $msg->open('smtp',Server => 'localhost');
- print $fh $body;
- $fh->close;
+ if (my $fh = $msg->open('smtp',Server => 'localhost')) {
+ print $fh $body;
+ $fh->close;
+ }
}
# ==================================================== Send notification emails
@@ -279,6 +269,53 @@ sub author_res_msg {
return 'no_host';
}
+# =========================================== Retrieve author resource messages
+
+sub retrieve_author_res_msg {
+ my $url=shift;
+ $url=&Apache::lonnet::declutter($url);
+ my ($domain,$author)=($url=~/^(\w+)\/(\w+)\//);
+ my %errormsgs=&Apache::lonnet::dump('nohist_res_msgs',$domain,$author);
+ my $msgs='';
+ foreach (keys %errormsgs) {
+ if ($_=~/^\Q$url\E\_\d+$/) {
+ my %content=&unpackagemsg($errormsgs{$_});
+ $msgs.='
'.
+ $content{'time'}.' : '.$content{'message'}.
+ '
';
+ }
+ }
+ return $msgs;
+}
+
+
+# =============================== Delete all author messages related to one URL
+
+sub del_url_author_res_msg {
+ my $url=shift;
+ $url=&Apache::lonnet::declutter($url);
+ my ($domain,$author)=($url=~/^(\w+)\/(\w+)\//);
+ my @delmsgs=();
+ foreach (&Apache::lonnet::getkeys('nohist_res_msgs',$domain,$author)) {
+ if ($_=~/^\Q$url\E\_\d+$/) {
+ push (@delmsgs,$_);
+ }
+ }
+ return &Apache::lonnet::del('nohist_res_msgs',\@delmsgs,$domain,$author);
+}
+
+# ================= Return hash with URLs for which there is a resource message
+
+sub all_url_author_res_msg {
+ my ($author,$domain)=@_;
+ my %returnhash=();
+ foreach (&Apache::lonnet::getkeys('nohist_res_msgs',$domain,$author)) {
+ $_=~/^(.+)\_\d+/;
+ $returnhash{$1}=1;
+ }
+ return %returnhash;
+}
+
# ================================================== Critical message to a user
sub user_crit_msg_raw {
@@ -359,10 +396,10 @@ sub user_crit_received {
my %contents=&unpackagemsg($message{$msgid},1);
my $status='rec: '.($contents{'sendback'}?
&user_normal_msg($contents{'sendername'},$contents{'senderdomain'},
- 'Receipt: '.$ENV{'user.name'}.' at '.$ENV{'user.domain'},
- 'User '.$ENV{'user.name'}.' at '.$ENV{'user.domain'}.
+ &mt('Receipt').': '.$ENV{'user.name'}.' at '.$ENV{'user.domain'},
+ &mt('User').' '.$ENV{'user.name'}.' '.&mt('at').' '.$ENV{'user.domain'}.
' acknowledged receipt of message'."\n".' "'.
- $contents{'subject'}.'"'."\n".'dated '.
+ $contents{'subject'}.'"'."\n".&mt('dated').' '.
$contents{'time'}.".\n"
):'no msg req');
$status.=' trans: '.
@@ -466,6 +503,9 @@ sub discourse {
$ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
$ENV{'course.'.$ENV{'request.course.id'}.'.num'});
my $now=time;
+ my %lt=&Apache::lonlocal::texthash('cfa' => 'Check for All',
+ 'cfs' => 'Check for Section/Group',
+ 'cfn' => 'Check for None');
$r->print(<
-
-
+
+
-
+
ENDDISHEADER
my %coursepersonnel=
@@ -542,7 +582,7 @@ ENDDISHEADER
sub discrit {
my $r=shift;
- my $header = '
Critical Messages '.
+ my $header = ''.&mt('Critical Messages').' '.
'
ENDREPLY
}
+sub sortedmessages {
+ my @messages = &Apache::lonnet::getkeys('nohist_email');
+ #unpack the varibles and repack into temp for sorting
+ my @temp;
+ foreach (@messages) {
+ my $msgid=&Apache::lonnet::escape($_);
+ my ($sendtime,$shortsubj,$fromname,$fromdomain,$status)=
+ &Apache::lonmsg::unpackmsgid($msgid);
+ my @temp1 = ($sendtime,$shortsubj,$fromname,$fromdomain,$status,
+ $msgid);
+ push @temp ,\@temp1;
+ }
+ #default sort
+ @temp = sort {$a->[0] <=> $b->[0]} @temp;
+ if ($ENV{'form.sortedby'} eq "date"){
+ @temp = sort {$a->[0] <=> $b->[0]} @temp;
+ }
+ if ($ENV{'form.sortedby'} eq "revdate"){
+ @temp = sort {$b->[0] <=> $a->[0]} @temp;
+ }
+ if ($ENV{'form.sortedby'} eq "user"){
+ @temp = sort {lc($a->[2]) cmp lc($b->[2])} @temp;
+ }
+ if ($ENV{'form.sortedby'} eq "revuser"){
+ @temp = sort {lc($b->[2]) cmp lc($a->[2])} @temp;
+ }
+ if ($ENV{'form.sortedby'} eq "domain"){
+ @temp = sort {$a->[3] cmp $b->[3]} @temp;
+ }
+ if ($ENV{'form.sortedby'} eq "revdomain"){
+ @temp = sort {$b->[3] cmp $a->[3]} @temp;
+ }
+ if ($ENV{'form.sortedby'} eq "subject"){
+ @temp = sort {lc($a->[1]) cmp lc($b->[1])} @temp;
+ }
+ if ($ENV{'form.sortedby'} eq "revsubject"){
+ @temp = sort {lc($b->[1]) cmp lc($a->[1])} @temp;
+ }
+ if ($ENV{'form.sortedby'} eq "status"){
+ @temp = sort {$a->[4] cmp $b->[4]} @temp;
+ }
+ if ($ENV{'form.sortedby'} eq "revstatus"){
+ @temp = sort {$b->[4] cmp $a->[4]} @temp;
+ }
+ return @temp;
+}
+
# ======================================================== Display all messages
sub disall {
@@ -638,107 +732,66 @@ sub disall {
}
ENDDISHEADER
- $r->print('Display All Messages '.
- '  ');
+ $r->print(''.&mt('Display All Messages').' '.
+ '  ');
if ($ENV{'form.sortedby'} eq "revdate") {
- $r->print('Date ');
+ $r->print(''.&mt('Date').' ');
} else {
- $r->print('Date ');
+ $r->print(''.&mt('Date').' ');
}
$r->print('');
if ($ENV{'form.sortedby'} eq "revuser") {
- $r->print('Username ');
+ $r->print(''.&mt('Username').' ');
} else {
- $r->print('Username ');
+ $r->print(''.&mt('Username').' ');
}
$r->print(' ');
if ($ENV{'form.sortedby'} eq "revdomain") {
- $r->print('Domain ');
+ $r->print(''.&mt('Domain').' ');
} else {
- $r->print('Domain ');
+ $r->print(''.&mt('Domain').' ');
}
$r->print(' ');
if ($ENV{'form.sortedby'} eq "revsubject") {
- $r->print('Subject ');
+ $r->print(''.&mt('Subject').' ');
} else {
- $r->print('Subject ');
+ $r->print(''.&mt('Subject').' ');
}
$r->print(' ');
if ($ENV{'form.sortedby'} eq "revstatus") {
- $r->print('Status ');
+ $r->print(''.&mt('Status').'');
} else {
- $r->print(' Status');
+ $r->print(' '.&mt('Status').'');
}
$r->print(' ');
-my @messages = split(/\&/,&Apache::lonnet::reply('keys:'.$ENV{'user.domain'}.':'.$ENV{'user.name'}.':nohist_email',$ENV{'user.home'}));
-#unpack the varibles and repack into temp for sorting
-my @temp;
-foreach (@messages)
-{
- my ($sendtime,$shortsubj,$fromname,$fromdomain,$status)=
- &Apache::lonmsg::unpackmsgid($_);
-my @temp1 = ($sendtime,$shortsubj,$fromname,$fromdomain,$status);
- push @temp ,\@temp1;
-}
-#default sort
- @temp = sort {$a->[0] <=> $b->[0]} @temp;
-if ($ENV{'form.sortedby'} eq "date"){
- @temp = sort {$a->[0] <=> $b->[0]} @temp;
-}
-if ($ENV{'form.sortedby'} eq "revdate"){
- @temp = sort {$b->[0] <=> $a->[0]} @temp;
-}
-if ($ENV{'form.sortedby'} eq "user"){
- @temp = sort {lc($a->[2]) cmp lc($b->[2])} @temp;
-}
-if ($ENV{'form.sortedby'} eq "revuser"){
- @temp = sort {lc($b->[2]) cmp lc($a->[2])} @temp;
-}
-if ($ENV{'form.sortedby'} eq "domain"){
- @temp = sort {$a->[3] cmp $b->[3]} @temp;
-}
-if ($ENV{'form.sortedby'} eq "revdomain"){
- @temp = sort {$b->[3] cmp $a->[3]} @temp;
-}
-if ($ENV{'form.sortedby'} eq "subject"){
- @temp = sort {lc($a->[1]) cmp lc($b->[1])} @temp;
-}
-if ($ENV{'form.sortedby'} eq "revsubject"){
- @temp = sort {lc($b->[1]) cmp lc($a->[1])} @temp;
-}
-if ($ENV{'form.sortedby'} eq "status"){
- @temp = sort {$a->[4] cmp $b->[4]} @temp;
-}
-if ($ENV{'form.sortedby'} eq "revstatus"){
- @temp = sort {$b->[4] cmp $a->[4]} @temp;
-}
- foreach (@temp){
- my ($sendtime,$shortsubj,$fromname,$fromdomain,$status)= @$_;
- if (($status ne 'deleted') && defined($sendtime) && $sendtime!~/error/) {
+ my @temp=sortedmessages();
+ foreach (@temp){
+ my ($sendtime,$shortsubj,$fromname,$fromdomain,$status,$origID)= @$_;
+ if (($status ne 'deleted') && defined($sendtime) && $sendtime!~/error/) {
if ($status eq 'new') {
$r->print('');
} elsif ($status eq 'read') {
$r->print(' ');
} elsif ($status eq 'replied') {
$r->print(' ');
-
} else {
$r->print(' ');
}
- $r->print('Open Delete '.
- ''.localtime($sendtime).' '.
+ $r->print(' '.&mt('Open').' '.&mt('Delete').' '.
+ ''.&Apache::lonlocal::locallocaltime($sendtime).' '.
$fromname.' '.$fromdomain.' '.
&Apache::lonnet::unescape($shortsubj).' '.
$status.' ');
- }
- }
- $r->print('
'.
- 'Check All '.
- 'Uncheck All
'.
- ' '.
+ }
+ }
+ $r->print('
'.
+ ''.&mt('Check All').' '.
+ ''.&mt('Uncheck All').'
'.
+ ' '.
+ ' '.
'