Annotation of loncom/interface/lonmsg.pm, revision 1.29

1.1       www         1: # The LearningOnline Network with CAPA
1.26      albertel    2: # Routines for messaging
                      3: #
1.29    ! www         4: # $Id: lonmsg.pm,v 1.28 2002/02/16 19:59:10 harris41 Exp $
1.26      albertel    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
1.1       www        27: #
                     28: #
                     29: # (Routines to control the menu
                     30: #
                     31: # (TeX Conversion Module
                     32: #
                     33: # 05/29/00,05/30 Gerd Kortemeyer)
                     34: #
                     35: # 10/05 Gerd Kortemeyer)
                     36: #
1.6       www        37: # 10/19,10/20,10/30,
                     38: # 02/06/01 Gerd Kortemeyer
1.11      www        39: # 07/27 Guy Albertelli
1.23      www        40: # 07/27,07/28,07/30,08/03,08/06,08/08,08/09,08/10,8/13,8/15,
1.24      www        41: # 10/1,11/5 Gerd Kortemeyer
1.27      www        42: # YEAR=2002
1.29    ! www        43: # 1/1,3/18 Gerd Kortemeyer
1.27      www        44: #
1.1       www        45: package Apache::lonmsg;
                     46: 
                     47: use strict;
                     48: use Apache::lonnet();
1.2       www        49: use vars qw($msgcount);
                     50: use HTML::TokeParser;
1.5       www        51: use Apache::Constants qw(:common);
1.1       www        52: 
                     53: # ===================================================================== Package
                     54: 
1.3       www        55: sub packagemsg {
1.7       www        56:     my ($subject,$message,$citation)=@_;
1.1       www        57:     $message=~s/\</\&lt\;/g;
                     58:     $message=~s/\>/\&gt\;/g;
1.7       www        59:     $citation=~s/\</\&lt\;/g;
                     60:     $citation=~s/\>/\&gt\;/g;
1.1       www        61:     $subject=~s/\</\&lt\;/g;
                     62:     $subject=~s/\>/\&gt\;/g;
1.2       www        63:     my $now=time;
                     64:     $msgcount++;
1.6       www        65:     my $partsubj=$subject;
                     66:     $partsubj=&Apache::lonnet::escape($partsubj);
                     67:     my $msgid=&Apache::lonnet::escape(
                     68:            $now.':'.$partsubj.':'.$ENV{'user.name'}.':'.
                     69:            $ENV{'user.domain'}.':'.$msgcount.':'.$$);
1.2       www        70:     return $msgid,
                     71:            '<sendername>'.$ENV{'user.name'}.'</sendername>'.
1.1       www        72:            '<senderdomain>'.$ENV{'user.domain'}.'</senderdomain>'.
                     73:            '<subject>'.$subject.'</subject>'.
1.2       www        74: 	   '<time>'.localtime($now).'</time>'.
1.1       www        75: 	   '<servername>'.$ENV{'SERVER_NAME'}.'</servername>'.
                     76:            '<host>'.$ENV{'HTTP_HOST'}.'</host>'.
                     77: 	   '<client>'.$ENV{'REMOTE_ADDR'}.'</client>'.
                     78: 	   '<browsertype>'.$ENV{'browser.type'}.'</browsertype>'.
                     79: 	   '<browseros>'.$ENV{'browser.os'}.'</browseros>'.
                     80: 	   '<browserversion>'.$ENV{'browser.version'}.'</browserversion>'.
                     81:            '<browsermathml>'.$ENV{'browser.mathml'}.'</browsermathml>'.
                     82: 	   '<browserraw>'.$ENV{'HTTP_USER_AGENT'}.'</browserraw>'.
                     83: 	   '<courseid>'.$ENV{'request.course.id'}.'</courseid>'.
                     84: 	   '<role>'.$ENV{'request.role'}.'</role>'.
                     85: 	   '<resource>'.$ENV{'request.filename'}.'</resource>'.
1.2       www        86:            '<msgid>'.$msgid.'</msgid>'.
1.7       www        87: 	   '<message>'.$message.'</message>'.
                     88: 	   '<citation>'.$citation.'</citation>';
1.1       www        89: }
                     90: 
1.2       www        91: # ================================================== Unpack message into a hash
                     92: 
1.3       www        93: sub unpackagemsg {
1.2       www        94:     my $message=shift;
                     95:     my %content=();
                     96:     my $parser=HTML::TokeParser->new(\$message);
                     97:     my $token;
                     98:     while ($token=$parser->get_token) {
                     99:        if ($token->[0] eq 'S') {
                    100: 	   my $entry=$token->[1];
                    101:            my $value=$parser->get_text('/'.$entry);
                    102:            $content{$entry}=$value;
                    103:        }
                    104:     }
                    105:     return %content;
                    106: }
                    107: 
1.6       www       108: # ======================================================= Get info out of msgid
                    109: 
                    110: sub unpackmsgid {
1.7       www       111:     my $msgid=&Apache::lonnet::unescape(shift);
1.6       www       112:     my ($sendtime,$shortsubj,$fromname,$fromdomain)=split(/\:/,
1.7       www       113:                           &Apache::lonnet::unescape($msgid));
1.8       albertel  114:     my %status=&Apache::lonnet::get('email_status',[$msgid]);
1.6       www       115:     if ($status{$msgid}=~/^error\:/) { $status{$msgid}=''; }
                    116:     unless ($status{$msgid}) { $status{$msgid}='new'; }
                    117:     return ($sendtime,$shortsubj,$fromname,$fromdomain,$status{$msgid});
                    118: } 
                    119: 
1.1       www       120: # =============================== Automated message to the author of a resource
                    121: 
                    122: sub author_res_msg {
                    123:     my ($filename,$message)=@_;
1.2       www       124:     unless ($message) { return 'empty'; }
1.1       www       125:     $filename=&Apache::lonnet::declutter($filename);
                    126:     my ($domain,$author,@dummy)=split(/\//,$filename);
                    127:     my $homeserver=&Apache::lonnet::homeserver($author,$domain);
                    128:     if ($homeserver ne 'no_host') {
                    129:        my $id=unpack("%32C*",$message);
1.2       www       130:        my $msgid;
1.3       www       131:        ($msgid,$message)=&packagemsg($filename,$message);
                    132:        return &Apache::lonnet::reply('put:'.$domain.':'.$author.
                    133:          ':nohist_res_msgs:'.
                    134:           &Apache::lonnet::escape($filename.'_'.$id).'='.
                    135:           &Apache::lonnet::escape($message),$homeserver);
1.1       www       136:     }
1.2       www       137:     return 'no_host';
1.1       www       138: }
                    139: 
                    140: # ================================================== Critical message to a user
                    141: 
                    142: sub user_crit_msg {
1.24      www       143:     my ($user,$domain,$subject,$message,$sendback)=@_;
1.2       www       144: # Check if allowed missing
                    145:     my $status='';
                    146:     my $msgid='undefined';
                    147:     unless (($message)&&($user)&&($domain)) { $status='empty'; };
                    148:     my $homeserver=&Apache::lonnet::homeserver($user,$domain);
                    149:     if ($homeserver ne 'no_host') {
1.3       www       150:        ($msgid,$message)=&packagemsg($subject,$message);
1.24      www       151:        if ($sendback) { $message.='<sendback>true</sendback>'; }
1.4       www       152:        $status=&Apache::lonnet::critical(
                    153:            'put:'.$domain.':'.$user.':critical:'.
                    154:            &Apache::lonnet::escape($msgid).'='.
                    155:            &Apache::lonnet::escape($message),$homeserver);
1.2       www       156:     } else {
                    157:        $status='no_host';
                    158:     }
                    159:     &Apache::lonnet::logthis(
1.4       www       160:       'Sending critical email '.$msgid.
1.2       www       161:       ', log status: '.
                    162:       &Apache::lonnet::log($ENV{'user.domain'},$ENV{'user.name'},
                    163:                          $ENV{'user.home'},
                    164:       'Sending critical '.$msgid.' to '.$user.' at '.$domain.' with status: '
1.4       www       165:       .$status));
1.2       www       166:     return $status;
                    167: }
                    168: 
                    169: # =================================================== Critical message received
                    170: 
                    171: sub user_crit_received {
1.12      www       172:     my $msgid=shift;
                    173:     my %message=&Apache::lonnet::get('critical',[$msgid]);
                    174:     my %contents=&unpackagemsg($message{$msgid});
1.24      www       175:     my $status='rec: '.($contents{'sendback'}?
1.5       www       176:      &user_normal_msg($contents{'sendername'},$contents{'senderdomain'},
1.4       www       177:                      'Receipt: '.$ENV{'user.name'}.' at '.$ENV{'user.domain'},
                    178:                      'User '.$ENV{'user.name'}.' at '.$ENV{'user.domain'}.
                    179:                      ' acknowledged receipt of message "'.
                    180:                      $contents{'subject'}.'" dated '.$contents{'time'}.".\n\n"
1.24      www       181:                      .'Message ID: '.$contents{'msgid'}):'no msg req');
1.5       www       182:     $status.=' trans: '.
1.12      www       183:      &Apache::lonnet::put(
                    184:      'nohist_email',{$contents{'msgid'} => $message{$msgid}});
1.5       www       185:     $status.=' del: '.
1.9       albertel  186:      &Apache::lonnet::del('critical',[$contents{'msgid'}]);
1.5       www       187:     &Apache::lonnet::log($ENV{'user.domain'},$ENV{'user.name'},
                    188:                          $ENV{'user.home'},'Received critical message '.
                    189:                          $contents{'msgid'}.
                    190:                          ', '.$status);
1.12      www       191:     return $status;
1.2       www       192: }
                    193: 
                    194: # ======================================================== Normal communication
                    195: 
                    196: sub user_normal_msg {
1.7       www       197:     my ($user,$domain,$subject,$message,$citation)=@_;
1.2       www       198: # Check if allowed missing
                    199:     my $status='';
                    200:     my $msgid='undefined';
                    201:     unless (($message)&&($user)&&($domain)) { $status='empty'; };
                    202:     my $homeserver=&Apache::lonnet::homeserver($user,$domain);
                    203:     if ($homeserver ne 'no_host') {
1.7       www       204:        ($msgid,$message)=&packagemsg($subject,$message,$citation);
1.4       www       205:        $status=&Apache::lonnet::critical(
                    206:            'put:'.$domain.':'.$user.':nohist_email:'.
                    207:            &Apache::lonnet::escape($msgid).'='.
                    208:            &Apache::lonnet::escape($message),$homeserver);
1.2       www       209:     } else {
                    210:        $status='no_host';
                    211:     }
                    212:     &Apache::lonnet::log($ENV{'user.domain'},$ENV{'user.name'},
                    213:                          $ENV{'user.home'},
                    214:       'Sending '.$msgid.' to '.$user.' at '.$domain.' with status: '.$status);
                    215:     return $status;
                    216: }
                    217: 
1.7       www       218: # =============================================================== Status Change
                    219: 
                    220: sub statuschange {
                    221:     my ($msgid,$newstatus)=@_;
1.8       albertel  222:     my %status=&Apache::lonnet::get('email_status',[$msgid]);
1.7       www       223:     if ($status{$msgid}=~/^error\:/) { $status{$msgid}=''; }
                    224:     unless ($status{$msgid}) { $status{$msgid}='new'; }
                    225:     unless (($status{$msgid} eq 'replied') || 
                    226:             ($status{$msgid} eq 'forwarded')) {
1.10      albertel  227: 	&Apache::lonnet::put('email_status',{$msgid => $newstatus});
1.7       www       228:     }
1.14      www       229:     if (($newstatus eq 'deleted') || ($newstatus eq 'new')) {
                    230: 	&Apache::lonnet::put('email_status',{$msgid => $newstatus});
                    231:     }
1.7       www       232: }
1.14      www       233: 
1.17      www       234: # ======================================================= Display a course list
                    235: 
                    236: sub discourse {
                    237:     my $r=shift;
                    238:     my %courselist=&Apache::lonnet::dump(
                    239:                    'classlist',
                    240: 		   $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
                    241: 		   $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
                    242:     my $now=time;
                    243:     $r->print(<<ENDDISHEADER);
                    244: <input type=hidden name=sendmode value=group>
                    245: <script>
                    246:     function checkall() {
                    247: 	for (i=0; i<document.forms.compemail.elements.length; i++) {
                    248:             if 
                    249:           (document.forms.compemail.elements[i].name.indexOf('send_to_')==0) {
                    250: 	      document.forms.compemail.elements[i].checked=true;
                    251:             }
                    252:         }
                    253:     }
                    254: 
1.19      www       255:     function checksec() {
                    256: 	for (i=0; i<document.forms.compemail.elements.length; i++) {
                    257:             if 
                    258:           (document.forms.compemail.elements[i].name.indexOf
                    259:            ('send_to_&&&'+document.forms.compemail.chksec.value)==0) {
                    260: 	      document.forms.compemail.elements[i].checked=true;
                    261:             }
                    262:         }
                    263:     }
                    264: 
1.17      www       265:     function uncheckall() {
                    266: 	for (i=0; i<document.forms.compemail.elements.length; i++) {
                    267:             if 
                    268:           (document.forms.compemail.elements[i].name.indexOf('send_to_')==0) {
                    269: 	      document.forms.compemail.elements[i].checked=false;
                    270:             }
                    271:         }
                    272:     }
                    273: </script>
1.19      www       274: <input type=button onClick="checkall()" value="Check for All">&nbsp;
                    275: <input type=button onClick="checksec()" value="Check for Section/Group">
                    276: <input type=text size=5 name=chksec>&nbsp;
1.17      www       277: <input type=button onClick="uncheckall()" value="Check for None">
                    278: <p>
                    279: ENDDISHEADER
1.28      harris41  280:     foreach (sort keys %courselist) {
1.17      www       281:         my ($end,$start)=split(/\:/,$courselist{$_});
                    282:         my $active=1;
                    283:         if (($end) && ($now>$end)) { $active=0; }
                    284:         if ($active) {
                    285:            my ($sname,$sdom)=split(/\:/,$_);
                    286:            my %reply=&Apache::lonnet::get('environment',
                    287:               ['firstname','middlename','lastname','generation'],
                    288:               $sdom,$sname);
1.19      www       289:            my $section=&Apache::lonnet::usection
                    290: 	       ($sdom,$sname,$ENV{'request.course.id'});
                    291:            $r->print(
                    292:         '<br><input type=checkbox name="send_to_&&&'.$section.'&&&_'.$_.'"> '.
1.17      www       293: 		      $reply{'firstname'}.' '. 
                    294:                       $reply{'middlename'}.' '.
                    295:                       $reply{'lastname'}.' '.
                    296:                       $reply{'generation'}.
1.19      www       297:                       ' ('.$_.') '.$section);
1.17      www       298:         } 
1.28      harris41  299:     }
1.17      www       300: }
                    301: 
1.13      www       302: # ==================================================== Display Critical Message
1.5       www       303: 
1.12      www       304: sub discrit {
                    305:     my $r=shift;
                    306:       $r->print('<h1><font color=red>Critical Messages</font></h1>'.
                    307:          '<form action=/adm/email method=post>'.
                    308:          '<input type=hidden name=confirm value=true>');
                    309:       my %what=&Apache::lonnet::dump('critical');
1.28      harris41  310:       foreach (sort keys %what) {
1.12      www       311:           my %content=&unpackagemsg($what{$_});
                    312:           $content{'message'}=~s/\n/\<br\>/g;
                    313: 	  $r->print('<hr>From: <b>'.$content{'sendername'}.'@'.
                    314:                     $content{'senderdomain'}.'</b> ('.$content{'time'}.
                    315:                     ')<br><blockquote>'.$content{'message'}.'</blockquote>'.
1.13      www       316:   '<input type=submit name="rec_'.$_.'" value="Confirm Receipt">'.
                    317:  '<input type=submit name="reprec_'.$_.'" value="Confirm Receipt and Reply">');
1.28      harris41  318:       }
1.16      www       319:       $r->print(
                    320:           '<input type=hidden name="displayedcrit" value="true"></form>');
1.12      www       321: }
                    322: 
1.13      www       323: # =============================================================== Compose reply
                    324: 
                    325: sub comprep {
                    326:     my ($r,$msgid)=@_;
                    327:       my %message=&Apache::lonnet::get('nohist_email',[$msgid]);
                    328:       my %content=&unpackagemsg($message{$msgid});
                    329:       my $quotemsg='> '.$content{'message'};
                    330:       $quotemsg=~s/\r/\n/g;
                    331:       $quotemsg=~s/\f/\n/g;
                    332:       $quotemsg=~s/\n+/\n\> /g;
                    333:       my $subject='Re: '.$content{'subject'};
                    334:       my $dispcrit='';
                    335:       if (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
                    336:          $dispcrit=
1.24      www       337:  '<input type=checkbox name=critmsg> Send as critical message<br>'.
                    338:  '<input type=checkbox name=sendbck> Send as critical message'.
                    339:  ' and return receipt<p>';
1.13      www       340:       }
                    341:       $r->print(<<"ENDREPLY");
                    342: <form action="/adm/email" method=post>
                    343: <input type=hidden name=sendreply value="$msgid">
                    344: Subject: <input type=text size=50 name=subject value="$subject"><p>
1.23      www       345: <textarea name=message cols=64 rows=10 wrap=hard>
1.13      www       346: $quotemsg
                    347: </textarea><p>
                    348: $dispcrit
                    349: <input type=submit value="Send Reply">
                    350: </form>
                    351: ENDREPLY
                    352: }
                    353: 
1.15      www       354: # ======================================================== Display all messages
                    355: 
1.14      www       356: sub disall {
                    357:     my $r=shift;
1.29    ! www       358:      $r->print(<<ENDDISHEADER);
        !           359: <script>
        !           360:     function checkall() {
        !           361: 	for (i=0; i<document.forms.disall.elements.length; i++) {
        !           362:             if 
        !           363:           (document.forms.disall.elements[i].name.indexOf('delmark_')==0) {
        !           364: 	      document.forms.disall.elements[i].checked=true;
        !           365:             }
        !           366:         }
        !           367:     }
        !           368: 
        !           369:     function uncheckall() {
        !           370: 	for (i=0; i<document.forms.disall.elements.length; i++) {
        !           371:             if 
        !           372:           (document.forms.disall.elements[i].name.indexOf('delmark_')==0) {
        !           373: 	      document.forms.disall.elements[i].checked=false;
        !           374:             }
        !           375:         }
        !           376:     }
        !           377: </script>
        !           378: ENDDISHEADER
        !           379:    $r->print(
        !           380:  '<h1>Display All Messages</h1><form method=post name=disall '.
        !           381:  'action="/adm/email">'.
1.14      www       382:      '<table border=2><tr><th colspan=2>&nbsp</th><th>Date</th>'.
                    383:      '<th>Username</th><th>Domain</th><th>Subject</th><th>Status</th></tr>');
1.27      www       384:     foreach (sort split(/\&/,&Apache::lonnet::reply('keys:'.
                    385: 					$ENV{'user.domain'}.':'.
                    386:                                         $ENV{'user.name'}.':nohist_email',
                    387:                                         $ENV{'user.home'}))) {
1.14      www       388:         my ($sendtime,$shortsubj,$fromname,$fromdomain,$status)=
                    389: 	    &Apache::lonmsg::unpackmsgid($_);
                    390:        unless ($status eq 'deleted') {
                    391:         if ($status eq 'new') {
                    392: 	    $r->print('<tr bgcolor="#FFBB77">');
                    393:         } elsif ($status eq 'read') {
                    394: 	    $r->print('<tr bgcolor="#BBBB77">');
                    395:         } elsif ($status eq 'replied') {
                    396: 	    $r->print('<tr bgcolor="#AAAA88">');
                    397: 	} else {
                    398: 	    $r->print('<tr bgcolor="#99BBBB">');
                    399:         }
                    400:         $r->print('<td><a href="/adm/email?display='.$_.
                    401:                   '">Open</a></td><td><a href="/adm/email?markdel='.$_.
1.25      www       402:                 '">Delete</a><input type=checkbox name="delmark_'.$_.'"></td>'.
                    403:                   '<td>'.localtime($sendtime).'</td><td>'.
1.14      www       404:                   $fromname.'</td><td>'.$fromdomain.'</td><td>'.
                    405: 		      &Apache::lonnet::unescape($shortsubj).'</td><td>'.
                    406:                       $status.'</td></tr>');
                    407:        }
1.27      www       408:     }
1.25      www       409:     $r->print('</table><p>'.
1.29    ! www       410:               '<a href="javascript:checkall()">Check All</a>&nbsp;'.
        !           411:               '<a href="javascript:uncheckall()">Uncheck All</a><p>'.
1.25      www       412:               '<input type=submit name="markeddel" value="Delete Checked">'.
                    413:               '</form></body></html>');
1.14      www       414: }
                    415: 
1.15      www       416: # ============================================================== Compose output
                    417: 
                    418: sub compout {
1.17      www       419:     my ($r,$forwarding,$broadcast)=@_;
1.15      www       420:       my $dispcrit='';
                    421:     my $dissub='';
                    422:     my $dismsg='';
                    423:     my $func='Send New';
                    424:       if (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
                    425:          $dispcrit=
1.24      www       426:  '<input type=checkbox name=critmsg> Send as critical message<br>'.
                    427:  '<input type=checkbox name=sendbck> Send as critical message'.
                    428:  ' and return receipt<p>';
1.15      www       429:       }
                    430:     if ($forwarding) {
                    431:        $dispcrit.='<input type=hidden name=forwid value="'.
                    432: 	   $forwarding.'">';
                    433:        $func='Forward';
                    434:       my %message=&Apache::lonnet::get('nohist_email',[$forwarding]);
                    435:       my %content=&unpackagemsg($message{$forwarding});
                    436: 
                    437:        $dissub='Forwarding: '.$content{'subject'};
                    438:        $dismsg='Forwarded message from '.
                    439: 	   $content{'sendername'}.' at '.$content{'senderdomain'};
                    440:     }
                    441:     my $defdom=$ENV{'user.domain'};
1.22      www       442:       $r->print(
                    443:                 '<form action="/adm/email"  name="compemail" method=post'.
                    444:                 ' enctype="multipart/form-data">'.
1.17      www       445:                 '<input type=hidden name=sendmail value=on><table>');
1.22      www       446:     unless (($broadcast eq 'group') || ($broadcast eq 'upload')) {
1.17      www       447:        $r->print(<<"ENDREC");
1.15      www       448: <table>
                    449: <tr><td>Username:</td><td><input type=text size=12 name=recuname></td></tr>
                    450: <tr><td>Domain:</td>
                    451: <td><input type=text size=12 name=recdomain value="$defdom"></td></tr>
1.17      www       452: ENDREC
                    453:     }
1.22      www       454:     unless ($broadcast eq 'upload') {
                    455:        $r->print(<<"ENDCOMP");
1.20      www       456: <tr><td>Additional Recipients<br><tt>username\@domain,username\@domain, ...
                    457: </tt></td><td>
                    458: <input type=text size=50 name=additionalrec></td></tr>
1.15      www       459: <tr><td>Subject:</td><td><input type=text size=50 name=subject value="$dissub">
                    460: </td></tr></table>
1.23      www       461: <textarea name=message cols=60 rows=10 wrap=hard>$dismsg
1.15      www       462: </textarea><p>
                    463: $dispcrit
                    464: <input type=submit value="$func Mail">
                    465: ENDCOMP
1.22      www       466:     }
                    467:     if ($broadcast eq 'upload') {
                    468: 	$r->print(<<ENDUPLOAD);
                    469: <input type=hidden name=sendmode value=upload>
                    470: <h3>Generate messages from a file</h3>
                    471: Subject: <input type=text size=50 name=subject>
                    472: <pre>
                    473: username1\@domain1: text
                    474: username2\@domain2: text
                    475: username1\@domain1: text
                    476: </pre>
                    477: The messages will be assembled from all lines with the respective 
                    478: <tt>username\@domain</tt>, and appended to the general message text.<p>
                    479: <input type=file name=upfile size=20><p>
                    480: General message text:<p>
1.23      www       481: <textarea name=message cols=60 rows=10 wrap=hard>$dismsg
1.22      www       482: </textarea><p>
                    483: $dispcrit
                    484: <input type=submit value="Upload and send">
                    485: ENDUPLOAD
                    486:     }
1.17      www       487:     if ($broadcast eq 'group') {
                    488:        &discourse;
                    489:     }
                    490:     $r->print('</form>');
1.15      www       491: }
                    492: 
1.13      www       493: # ===================================================================== Handler
                    494: 
1.5       www       495: sub handler {
                    496:     my $r=shift;
                    497: 
                    498: # ----------------------------------------------------------- Set document type
                    499: 
                    500:   $r->content_type('text/html');
                    501:   $r->send_http_header;
                    502: 
                    503:   return OK if $r->header_only;
                    504: 
1.6       www       505: # --------------------------- Get query string for limited number of parameters
                    506: 
1.28      harris41  507:     foreach (split(/&/,$ENV{'QUERY_STRING'})) {
1.6       www       508:        my ($name, $value) = split(/=/,$_);
                    509:        $value =~ tr/+/ /;
                    510:        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
                    511:        if (($name eq 'display') || ($name eq 'replyto') || 
1.14      www       512:            ($name eq 'forward') || ($name eq 'markread') ||
                    513:            ($name eq 'markdel') || ($name eq 'markunread') ||
1.12      www       514:            ($name eq 'sendreply') || ($name eq 'compose') ||
                    515:            ($name eq 'sendmail') || ($name eq 'critical')) {
1.6       www       516:            unless ($ENV{'form.'.$name}) {
                    517:               $ENV{'form.'.$name}=$value;
                    518: 	   }
                    519:        }
1.28      harris41  520:     }
1.6       www       521: 
1.5       www       522: # --------------------------------------------------------------- Render Output
                    523:   
                    524:   $r->print('<html><head><title>EMail and Messaging</title></head>');
1.7       www       525:   $r->print(
                    526:    '<body bgcolor="#FFFFFF"><img align=right src=/adm/lonIcons/lonlogos.gif>');
1.5       www       527:   $r->print('<h1>EMail</h1>');
1.6       www       528:   if ($ENV{'form.display'}) {
1.7       www       529:       my $msgid=$ENV{'form.display'};
                    530:       &statuschange($msgid,'read');
1.8       albertel  531:       my %message=&Apache::lonnet::get('nohist_email',[$msgid]);
1.7       www       532:       my %content=&unpackagemsg($message{$msgid});
                    533:       $r->print('<b>Subject:</b> '.$content{'subject'}.
                    534:              '<br><b>From:</b> '.$content{'sendername'}.' at '.
                    535:                                  $content{'senderdomain'}.
1.14      www       536:              '<br><b>Time:</b> '.$content{'time'}.'<p>'.
                    537:              '<table border=2><tr bgcolor="#FFFFAA"><td>Functions:</td>'.
                    538:            '<td><a href="/adm/email?replyto='.&Apache::lonnet::escape($msgid).
                    539:              '"><b>Reply</b></a></td>'.
1.15      www       540:            '<td><a href="/adm/email?forward='.&Apache::lonnet::escape($msgid).
1.14      www       541:              '"><b>Forward</b></a></td>'.
1.15      www       542:         '<td><a href="/adm/email?markunread='.&Apache::lonnet::escape($msgid).
                    543:              '"><b>Mark Unread</b></a></td>'.
                    544:         '<td><a href="/adm/email"><b>Display all Messages</b></a></td>'.
1.14      www       545:              '</tr></table><p><pre>'.
1.7       www       546:              $content{'message'}.'</pre><hr>'.$content{'citation'});
1.6       www       547:   } elsif ($ENV{'form.replyto'}) {
1.13      www       548:       &comprep($r,$ENV{'form.replyto'});
1.7       www       549:   } elsif ($ENV{'form.sendreply'}) {
                    550:       my $msgid=$ENV{'form.sendreply'};
1.8       albertel  551:       my %message=&Apache::lonnet::get('nohist_email',[$msgid]);
1.7       www       552:       my %content=&unpackagemsg($message{$msgid});
                    553:       &statuschange($msgid,'replied');
1.24      www       554:       if ((($ENV{'form.critmsg'}) || ($ENV{'form.sendbck'})) && 
1.12      www       555:           (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'}))) {
                    556:          $r->print('Sending critical: '.
                    557:                 &user_crit_msg($content{'sendername'},
1.7       www       558:                                  $content{'senderdomain'},
                    559:                                  $ENV{'form.subject'},
1.24      www       560:                                  $ENV{'form.message'},
                    561:                                  $ENV{'form.sendbck'}));
1.12      www       562:       } else {
                    563:          $r->print('Sending: '.&user_normal_msg($content{'sendername'},
                    564:                                  $content{'senderdomain'},
                    565:                                  $ENV{'form.subject'},
                    566:                                  $ENV{'form.message'}));
                    567:       }
1.14      www       568:       if ($ENV{'form.displayedcrit'}) {
                    569:           &discrit($r);
                    570:       } else {
                    571: 	  &disall($r);
                    572:       }
1.12      www       573:   } elsif ($ENV{'form.confirm'}) {
1.28      harris41  574:       foreach (keys %ENV) {
1.12      www       575:           if ($_=~/^form\.rec\_(.*)$/) {
                    576: 	      $r->print('<b>Confirming Receipt:</b> '.
                    577:                         &user_crit_received($1).'<br>');
1.13      www       578:           }
                    579:           if ($_=~/^form\.reprec\_(.*)$/) {
                    580:               my $msgid=$1;
                    581: 	      $r->print('<b>Confirming Receipt:</b> '.
                    582:                         &user_crit_received($msgid).'<br>');
                    583:               &comprep($r,$msgid);
1.12      www       584:           }
1.28      harris41  585:       }
1.12      www       586:       &discrit($r);
                    587:   } elsif ($ENV{'form.critical'}) {
                    588:       &discrit($r);
1.6       www       589:   } elsif ($ENV{'form.forward'}) {
1.15      www       590:       &compout($r,$ENV{'form.forward'});
1.14      www       591:   } elsif ($ENV{'form.markread'}) {
                    592:   } elsif ($ENV{'form.markdel'}) {
                    593:       &statuschange($ENV{'form.markdel'},'deleted');
1.25      www       594:       &disall($r);
                    595:   } elsif ($ENV{'form.markeddel'}) {
                    596:       my $total=0;
1.28      harris41  597:       foreach (keys %ENV) {
1.25      www       598:           if ($_=~/^form\.delmark_(.*)$/) {
                    599: 	      &statuschange(&Apache::lonnet::unescape($1),'deleted');
                    600:               $total++;
                    601:           }
1.28      harris41  602:       }
1.25      www       603:       $r->print('Deleted '.$total.' message(s)<p>');
1.14      www       604:       &disall($r);
                    605:   } elsif ($ENV{'form.markunread'}) {
1.15      www       606:       &statuschange($ENV{'form.markunread'},'new');
                    607:       &disall($r);
1.11      www       608:   } elsif ($ENV{'form.compose'}) {
1.17      www       609:       &compout($r,'',$ENV{'form.compose'});
1.11      www       610:   } elsif ($ENV{'form.sendmail'}) {
1.16      www       611:       my %content=();
                    612:       undef %content;
                    613:       if ($ENV{'form.forwid'}) {
                    614:         my $msgid=$ENV{'form.forwid'};
                    615:         my %message=&Apache::lonnet::get('nohist_email',[$msgid]);
                    616:         %content=&unpackagemsg($message{$msgid});
                    617:         &statuschange($msgid,'forwarded');
                    618:         $ENV{'form.message'}.="\n\n-- Forwarded message --\n\n".
                    619: 	                       $content{'message'};
                    620:       }
1.18      www       621:       my %toaddr=();
                    622:       undef %toaddr;
                    623:       if ($ENV{'form.sendmode'} eq 'group') {
1.28      harris41  624:           foreach (keys %ENV) {
1.19      www       625: 	      if ($_=~/^form\.send\_to\_\&\&\&[^\&]*\&\&\&\_(.+)$/) {
1.22      www       626: 		  $toaddr{$1}='';
1.18      www       627:               }
1.28      harris41  628:           }
1.22      www       629:       } elsif ($ENV{'form.sendmode'} eq 'upload') {
1.28      harris41  630:           foreach (split(/[\n\r\f]+/,$ENV{'form.upfile'})) {
1.22      www       631:               my ($rec,$txt)=split(/\s*\:\s*/,$_);
                    632:               if ($txt) {
                    633: 		  $rec=~s/\@/\:/;
                    634:                   $toaddr{$rec}.=$txt."\n";
                    635:               }
1.28      harris41  636:           }
1.18      www       637:       } else {
1.22      www       638: 	  $toaddr{$ENV{'form.recuname'}.':'.$ENV{'form.recdomain'}}='';
1.20      www       639:       }
                    640:       if ($ENV{'form.additionalrec'}) {
1.28      harris41  641: 	  foreach (split(/\,/,$ENV{'form.additionalrec'})) {
1.20      www       642:               my ($auname,$audom)=split(/\@/,$_);
1.22      www       643:               $toaddr{$auname.':'.$audom}='';
1.28      harris41  644:           }
1.18      www       645:       }
1.28      harris41  646:     foreach (keys %toaddr) {
1.18      www       647:       my ($recuname,$recdomain)=split(/\:/,$_);
1.22      www       648:       my $msgtxt=$ENV{'form.message'};
                    649:       if ($toaddr{$_}) { $msgtxt.='<hr>'.$toaddr{$_}; }    
1.24      www       650:       if ((($ENV{'form.critmsg'}) || ($ENV{'form.sendbck'})) && 
1.16      www       651:           (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'}))) {
                    652:          $r->print('Sending critical: '.
1.18      www       653:                 &user_crit_msg($recuname,$recdomain,
1.16      www       654:                                  $ENV{'form.subject'},
1.22      www       655:                                  $msgtxt,
1.24      www       656:                                  $ENV{'form.sendbck'}));
1.16      www       657:       } else {
1.18      www       658:          $r->print('Sending: '.&user_normal_msg($recuname,$recdomain,
1.16      www       659:                                  $ENV{'form.subject'},
1.22      www       660:                                  $msgtxt,
1.16      www       661:                                  $content{'citation'}));
                    662:       }
1.18      www       663:       $r->print('<br>');
1.28      harris41  664:     }
1.16      www       665:       if ($ENV{'form.displayedcrit'}) {
                    666:           &discrit($r);
                    667:       } else {
                    668: 	  &disall($r);
                    669:       }
1.6       www       670:   } else {
1.14      www       671:       &disall($r);
1.6       www       672:   }
1.5       www       673:   $r->print('</body></html>');
                    674:   return OK;
                    675: 
                    676: }
1.2       www       677: # ================================================= Main program, reset counter
                    678: 
1.27      www       679: BEGIN {
1.2       www       680:     $msgcount=0;
1.1       www       681: }
                    682: 
                    683: 1;
                    684: __END__
                    685: 
                    686: 
                    687: 
                    688: 
                    689: 
                    690: 
                    691: 

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