Annotation of loncom/interface/lonnotify.pm, revision 1.43

1.25      www         1: # The LearningOnline Network with CAPA
                      2: # Sending messages
                      3: #
1.43    ! raeburn     4: # $Id: lonnotify.pm,v 1.42 2017/01/18 21:07:31 raeburn Exp $
1.1       raeburn     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: package Apache::lonnotify;
                     30:                                                                                 
                     31: use strict;
                     32: use Apache::lonnet;
                     33: use Apache::loncommon;
1.24      raeburn    34: use Apache::courseclassifier;
1.1       raeburn    35: use LONCAPA::Enrollment;
                     36: use Apache::Constants qw(:common :http);
                     37: use Apache::lonlocal;
1.2       raeburn    38: use Mail::Send;
                     39: use HTML::TokeParser;
                     40: use HTML::Entities;
1.19      www        41: use lib '/home/httpd/lib/perl/';
                     42: use LONCAPA;
1.1       raeburn    43: 
                     44: sub handler {
                     45:     my ($r) = @_;
                     46:     &Apache::loncommon::content_type($r,'text/html');
                     47:     $r->send_http_header;
                     48: 
                     49:     if ($r->header_only) {
                     50:         return OK;
                     51:     }
1.2       raeburn    52:     my $cdom = $env{'request.role.domain'};
                     53:     unless (&Apache::lonnet::allowed('psa',$cdom)) {
1.1       raeburn    54:         # Not allowed to broadcast e-mail system-wide 
                     55:         $env{'user.error.msg'}="/adm/notify:psa:0:0:Cannot broadcast e-mail systemwide";
                     56:         return HTTP_NOT_ACCEPTABLE;
                     57:     }
                     58: 
1.2       raeburn    59:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
                     60:                                             ['command']);
1.1       raeburn    61:     my $command = $env{'form.command'};
1.8       raeburn    62:     my $origin = $env{'form.origin'};
                     63: 
1.1       raeburn    64:     &Apache::lonhtmlcommon::clear_breadcrumbs();
1.12      albertel   65: 
1.1       raeburn    66:     &Apache::lonhtmlcommon::add_breadcrumb
                     67:         ({href=>'/adm/notify',
1.2       raeburn    68:           text=>"Broadcast E-mail"});
1.1       raeburn    69:     if ($command eq 'process') {
1.20      albertel   70:         &print_request_receipt($r,$command,$cdom);
1.1       raeburn    71:     } elsif ($command eq 'compose') {
1.20      albertel   72:         &print_composition_form($r,$command,$cdom);
1.2       raeburn    73:     } elsif ($command eq 'pick_target') {
1.20      albertel   74:         &print_selection_form($r,$command,$cdom);
1.2       raeburn    75:     } elsif ($command eq 'pick_display') {
1.20      albertel   76:         &print_display_option_form($r,$command,$cdom);
1.2       raeburn    77:     } elsif ($command eq 'display') {
1.20      albertel   78:         &print_display($r,$command,$cdom);
1.1       raeburn    79:     } else {
1.20      albertel   80:         &print_front_page($r,'front',$cdom);
1.1       raeburn    81:     }
                     82:     return OK;
                     83: }
                     84: 
1.12      albertel   85: sub add_script {
                     86:     my ($js) = @_;
                     87:     return '<script type="text/javascript">'."\n".$js."\n".'</script>';
                     88: }
                     89: 
                     90: sub start_page {
1.14      albertel   91:     my ($jscript,$bread_title,$formname) = @_;
1.12      albertel   92: 
1.14      albertel   93:     my $loadcode;
                     94:     if ((defined($env{'form.origin'})) 
                     95: 	&& ($env{'form.command'} eq 'compose' 
                     96: 	    || $env{'form.command'} eq 'pick_target' 
                     97: 	    || $env{'form.command'} eq 'pick_display')) {
                     98:         if ($env{'form.origin'} ne '') {
                     99:             $loadcode = 'javascript:setFormElements(document.'.$env{'form.command'}.')';
                    100:             if (($env{'form.command'} eq 'pick_target') 
                    101: 		&& (($env{'form.origin'} eq 'compose')
                    102: 		    || ($env{'form.origin'} eq 'process'))) {
                    103:                 if ($env{'form.coursepick'} eq 'category') {
                    104:                     $loadcode .= ';javascript:setCourseCat(document.'.$env{'form.command'}.')';
                    105:                 }
                    106:             }
                    107:         }
                    108:     }
                    109:     
1.15      albertel  110:     my $start_page = 
                    111: 	&Apache::loncommon::start_page('Broadcast e-mail to users', $jscript,
1.16      albertel  112: 				       {'add_entries' => 
                    113: 					    {'onload' => $loadcode,},});
1.12      albertel  114:     my $breadcrumbs =
1.18      albertel  115: 	&Apache::lonhtmlcommon::breadcrumbs($bread_title,
1.12      albertel  116: 					    'Broadcast_system_email');
                    117:     my $output = <<"ENDONE";
1.15      albertel  118: $start_page
1.12      albertel  119: $breadcrumbs
                    120: <br />
1.36      bisitz    121: <form name="$formname" method="post" action="">
1.12      albertel  122: ENDONE
                    123: 
                    124:     return $output;
                    125: }
                    126: 
                    127: sub end_page {
                    128:     return '</form>'.&Apache::loncommon::end_page();
                    129: }
                    130: 
1.2       raeburn   131: sub print_front_page {
1.20      albertel  132:     my ($r,$formname,$cdom) = @_;
1.12      albertel  133: 
1.2       raeburn   134:     my $jscript = qq|
                    135: function next_page(caller) {
                    136:     if (caller == 'view') {
                    137:         document.front.command.value="pick_display"
                    138:     }
                    139:     else {
                    140:         document.front.command.value="pick_target"
                    141:     }
                    142:     document.front.submit()
                    143: }
                    144:     |; 
1.12      albertel  145: 
                    146: 
1.36      bisitz    147:     my @menu=
                    148:         ({  categorytitle=>'Broadcast e-mail to Domain',
                    149:         items =>[
                    150:             {   linktext => 'Send e-mail to selected users',
                    151:                 url => 'javascript:next_page('."'new'".')',
                    152:                 permission => 1,
                    153:                 #help => '',
                    154:                 icon => 'mail-reply-all.png',
                    155:                 linktitle => 'Send a new e-mail to selected users from this domain'
                    156:             },
                    157:             {   linktext => 'Display sent e-mails',
                    158:                 url => 'javascript:next_page('."'view'".')',
                    159:                 permission => 1,
                    160:                 #help => '',
                    161:                 icon => 'messalog.png',
                    162:                 linktitle => 'Display e-mail sent by Domain Coordinators in this domain'
                    163:             },
                    164:         ]
                    165:         },
                    166:         );
                    167: 
                    168:     $r->print(
                    169:         &start_page(&add_script($jscript),
                    170:             'Broadcast e-mail to Domain', $formname)
                    171:        .'<input type="hidden" name="command" />'
                    172:        .&Apache::lonhtmlcommon::generate_menu(@menu)
                    173:        .&end_page()
                    174:     );
1.2       raeburn   175:     return;
                    176: }
                    177: 
                    178: sub print_display_option_form {
1.20      albertel  179:     my ($r,$formname,$cdom) = @_;
1.12      albertel  180:     &Apache::lonhtmlcommon::add_breadcrumb({text=>"Display options"});
                    181: 
1.2       raeburn   182:     my $cmd = 'display';
1.35      raeburn   183:     my $submit_text = &mt('Display e-mail');
1.2       raeburn   184:     my @roles = ('dc');
                    185:     my $now = time;
1.12      albertel  186: 
1.2       raeburn   187:     my $startdateform = &Apache::lonhtmlcommon::date_setter($formname,
                    188:                                                             'startdate',
                    189:                                                             $now);
                    190:     my $enddateform = &Apache::lonhtmlcommon::date_setter($formname,
                    191:                                                           'enddate',
                    192:                                                           $now);
1.8       raeburn   193:     my %elements = (
                    194:         startdate_month => 'selectbox',
                    195:         startdate_hour => 'selectbox',
                    196:         enddate_month => 'selectbox',
                    197:         enddate_hour => 'selectbox',
                    198:         startdate_day => 'text',
                    199:         startdate_year => 'text',
                    200:         startdate_minute => 'text',
                    201:         startdate_second => 'text',
                    202:         enddate_day => 'text',
                    203:         enddate_year => 'text',
                    204:         enddate_minute => 'text',
                    205:         enddate_second => 'text',
                    206:         sender => 'checkbox',
                    207:     );
                    208:     my $jscript = &Apache::lonhtmlcommon::set_form_elements(\%elements);
1.12      albertel  209: 
1.14      albertel  210:     my $output = &start_page(&add_script($jscript),
1.12      albertel  211: 			     'Broadcast e-mail display options', $formname);
                    212: 
1.20      albertel  213:     $output .= &Apache::lonhtmlcommon::start_pick_box();
                    214:     $output .= &Apache::lonhtmlcommon::row_title(&mt('Date range'));
                    215:     $output .= '<table><tr><td>'.&mt('Earliest to display:').' </td><td>'.
1.2       raeburn   216:                 $startdateform.'</td></tr>';
1.20      albertel  217:     $output .= '<tr><td>'.&mt('Latest to display:').' </td><td>'.$enddateform.
                    218:                '</td></tr></table>';
1.2       raeburn   219:     $output .= &Apache::lonhtmlcommon::row_closure();
1.20      albertel  220:     $output .= &Apache::lonhtmlcommon::row_title(&mt('Choose sender(s)'));
1.4       raeburn   221:     my %personnel = &Apache::lonnet::get_domain_roles($cdom,\@roles);
                    222:     my @domcc = ();
1.41      raeburn   223:     foreach my $server (keys(%personnel)) {
                    224:         foreach my $user (sort(keys(%{$personnel{$server}}))) {
1.4       raeburn   225:             my ($trole,$uname,$udom,$runame,$rudom,$rsec) = split(/:/,$user);
                    226:             unless (grep/^$uname:$udom$/,@domcc) {
                    227:                 my %userinfo = &Apache::lonnet::get('environment',['lastname','firstname'],$udom,$uname);
1.25      www       228:                 $output .= '<input type="checkbox" name="sender" value="'.$uname.':'.$udom.'" />&nbsp;'.$userinfo{'firstname'}.' '.$userinfo{'lastname'}.'&nbsp;&nbsp;('.$uname.':'.$udom.')';
1.4       raeburn   229:                 push (@domcc,$uname.':'.$udom);
                    230:             }
1.2       raeburn   231:         }
                    232:     }
                    233:     $output .= &Apache::lonhtmlcommon::row_closure();
1.20      albertel  234:     $output .= &Apache::lonhtmlcommon::submit_row(&mt('Submit'),$cmd,$submit_text);
1.2       raeburn   235:     $output .= &Apache::lonhtmlcommon::end_pick_box();
1.13      albertel  236:     $output .= qq(<input type="hidden" name="sortby" value="date" />\n).
                    237: 	&end_page();
1.2       raeburn   238:     $r->print($output);
                    239:     return;
                    240: }
                    241: 
                    242: sub print_display {
1.20      albertel  243:     my ($r,$formname,$cdom) = @_;
1.2       raeburn   244:     &Apache::lonhtmlcommon::add_breadcrumb
1.8       raeburn   245:          ({href=>"javascript:goBack('pick_display')",
1.2       raeburn   246:           text=>"Display options"},
                    247:          {text=>"E-mail display"});
1.12      albertel  248: 
1.2       raeburn   249:     my $msgcount = 0;
                    250:     my $start = &Apache::lonhtmlcommon::get_date_from_form('startdate');
                    251:     my $end = &Apache::lonhtmlcommon::get_date_from_form('enddate');
                    252:     my @senders = &Apache::loncommon::get_env_multiple('form.sender');
1.6       albertel  253:     my %sentmail = &Apache::lonnet::dcmaildump($cdom,$start,$end,\@senders);
1.2       raeburn   254:     my %dcmail = ();
                    255:     my %Sortby = ();
                    256:     my $jscript = <<"ENDSCRIPT";
                    257: function changeSort(caller) {
1.8       raeburn   258:     document.$formname.command.value = '$formname';
1.2       raeburn   259:     document.$formname.sortby.value = caller;
1.8       raeburn   260:     document.$formname.submit();
                    261: }
                    262: function goBack(target) {
                    263:     document.$formname.command.value = target;
                    264:     document.$formname.submit();
1.2       raeburn   265: }
1.8       raeburn   266: 
1.2       raeburn   267: ENDSCRIPT
1.12      albertel  268: 
1.14      albertel  269:     my $output = &start_page(&add_script($jscript),
1.12      albertel  270: 			     'Display Broadcast e-mail', $formname);
1.2       raeburn   271: 
1.9       raeburn   272:     foreach my $msgid (keys(%sentmail)) {
1.10      raeburn   273:         my %content = &Apache::lonmsg::unpackagemsg($sentmail{$msgid});
1.9       raeburn   274:         $msgcount ++;
                    275:         %{$dcmail{$msgid}} = ();
                    276:         foreach my $item (keys(%content)) {
1.10      raeburn   277:             if ($item eq 'recipient') {
                    278:                 foreach my $user (keys(%{$content{recipient}})) {
                    279:                     $dcmail{$msgid}{recipient}{$user} = $content{recipient}{$user};
1.2       raeburn   280:                 }
                    281:             } else {
1.9       raeburn   282:                 $dcmail{$msgid}{$item} = $content{$item};
1.2       raeburn   283:             }
                    284:         }
                    285:     }
1.20      albertel  286:     $output .= &Apache::loncommon::start_data_table();
1.2       raeburn   287:     if ($msgcount > 0) {
1.20      albertel  288:         $output .= &Apache::loncommon::start_data_table_header_row().
1.40      bisitz    289: 	    '<th><a href="javascript:changeSort(\'date\')">'.&mt('Date').'</a></th>'.
                    290: 	    '<th><a href="javascript:changeSort(\'subject\')">'.&mt('Subject').'</a></th>'.
                    291: 	    '<th><a href="javascript:changeSort(\'sender\')">'.&mt('Sender').'</a></th>'.
                    292: 	    '<th><a href="javascript:changeSort(\'message\')">'.&mt('Message').'</a></th>'.
                    293: 	    '<th><a href="javascript:changeSort(\'recipients\')">'.&mt('Recipients').'</a></th>'.
1.20      albertel  294: 	    &Apache::loncommon::end_data_table_header_row();
                    295: 
1.2       raeburn   296:         if (($env{'form.sortby'} eq 'date') || ($env{'form.sortby'} eq '') || (!defined($env{'form.sortby'})) || (($env{'form.sortby'} eq 'sender') && (@senders <= 1))) {
                    297:             foreach my $msgid (sort(keys(%dcmail))) {
                    298:                 my $recipients = '';
1.17      albertel  299:                 my ($date,undef,$sname,$sdom) =
1.11      raeburn   300:                                   &Apache::lonmsg::unpackmsgid($msgid,undef,1);
1.2       raeburn   301:                 $date = &Apache::lonlocal::locallocaltime($date);
1.10      raeburn   302:                 foreach my $user (sort(keys(%{$dcmail{$msgid}{recipient}}))) {
                    303:                     $recipients .= $dcmail{$msgid}{recipient}{$user}.', ';
1.2       raeburn   304:                 }
                    305:                 $recipients =~ s/,\s$//;
1.20      albertel  306:                 $output .= &Apache::loncommon::start_data_table_row().
                    307: 		    '<td><small>'.$date.'</small></td>'.
                    308: 		    '<td><small>'.&cr_to_br($dcmail{$msgid}{subject}).'</small></td>'.
                    309: 		    '<td><small>'.$sname.':'.$sdom.'</small></td><td><small>'.&cr_to_br($dcmail{$msgid}{message}).'</small></td>'.
                    310: 		    '<td><small>'.$recipients.'</small></td>'."\n".
                    311: 		    &Apache::loncommon::end_data_table_row();
1.2       raeburn   312:             }
                    313:         } else {
                    314:             foreach my $msgid (sort(keys(%dcmail))) {
1.17      albertel  315:                 my ($date,undef,$sname,$sdom) =
1.11      raeburn   316:                                    &Apache::lonmsg::unpackmsgid($msgid,undef,1);
1.2       raeburn   317:                 if ($env{'form.sortby'} eq 'subject') {
                    318:                     push @{$Sortby{$dcmail{$msgid}{subject}}},$msgid;
                    319:                 } elsif ($env{'form.sortby'} eq 'message') {
                    320:                     push @{$Sortby{$dcmail{$msgid}{message}}},$msgid;
                    321:                 } elsif ($env{'form.sortby'} eq 'recipients') {
                    322:                     my $recipients ='';
1.10      raeburn   323:                     foreach my $user (sort(keys(%{$dcmail{$msgid}{recipient}}))) {
                    324:                         $recipients .= $dcmail{$msgid}{recipient}{$user}.', ';
1.2       raeburn   325:                     }
                    326:                     $recipients =~ s/,\s$//;
                    327:                     push @{$Sortby{$recipients}},$msgid;
                    328:                 } elsif ($env{'form.sortby'} eq 'sender') {
                    329:                     if (@senders > 1) {
                    330:                        push @{$Sortby{$sname.':'.$sdom}},$msgid;
                    331:                     }
                    332:                 }
                    333:             }
                    334:             foreach my $key (sort(keys(%Sortby))) {
                    335:                 foreach my $msgid (@{$Sortby{$key}}) {
                    336:                     my $recipients = '';
                    337:                     if ($env{'form.sortby'} eq 'recipients') {
                    338:                         $recipients = $key;
                    339:                     } else {
1.10      raeburn   340:                         foreach my $user (sort(keys(%{$dcmail{$msgid}{recipient}}))) {
                    341:                             $recipients .= $dcmail{$msgid}{recipient}{$user}.', ';
1.2       raeburn   342:                         }
                    343:                         $recipients =~ s/,\s$//;
                    344:                     }
1.17      albertel  345:                     my ($date,undef,$sname,$sdom) =
1.11      raeburn   346:                                    &Apache::lonmsg::unpackmsgid($msgid,undef,1);
1.2       raeburn   347:                     $date = &Apache::lonlocal::locallocaltime($date);
1.20      albertel  348:                     $output .=  &Apache::loncommon::start_data_table_row().
                    349: 			'<td><small>'.$date.'</small></td>'.
                    350: 			'<td><small>'.&cr_to_br($dcmail{$msgid}{subject}).'</small></td>'.
                    351: 			'<td><small>'.$sname.':'.$sdom.'</small></td>'.
                    352: 			'<td><small>'.&cr_to_br($dcmail{$msgid}{message}).'</small></td>'.
                    353: 			'<td><small>'.$recipients.'</small></td>'."\n".
                    354: 			&Apache::loncommon::end_data_table_row();
1.2       raeburn   355:                 }
                    356:             }
                    357:         }
                    358:     } else {
1.20      albertel  359:         $output .= &Apache::loncommon::start_data_table_empty_row().
1.40      bisitz    360: 	    '<td>'.&mt('No mail sent matching supplied criteria').'</td>'.
1.20      albertel  361: 	    &Apache::loncommon::end_data_table_empty_row();
1.2       raeburn   362:     }
1.20      albertel  363:     $output .= &Apache::loncommon::end_data_table();
1.8       raeburn   364:     $output .= &Apache::lonhtmlcommon::echo_form_input(['sortby','command','origin']);
                    365:     my $curr_sortby;
                    366:     if (defined($env{'form.sortby'})) {
                    367:         $curr_sortby = $env{'form.sortby'};
                    368:     } else {
                    369:         $curr_sortby = 'date';
                    370:     }
                    371:     $output .= qq(<input type="hidden" name="origin" value="$formname" />\n);
                    372:     $output .= qq(<input type="hidden" name="command" />\n);
                    373:     $output .= qq(<input type="hidden" name="sortby" value="$curr_sortby" />\n);
1.13      albertel  374:     $output .= &end_page();
1.2       raeburn   375:     $r->print($output);
                    376:     return;
                    377: }
                    378: 
1.1       raeburn   379: sub print_selection_form {
1.20      albertel  380:     my ($r,$formname,$cdom) = @_;
1.1       raeburn   381:     my %codes = ();
                    382:     my @codetitles = ();
                    383:     my %cat_titles = ();
                    384:     my %cat_order = ();
                    385:     my %idlist = ();
                    386:     my %idnums = ();
                    387:     my %idlist_titles = ();
                    388:     my $totcodes = 0;
                    389:     my $jscript = '';
1.2       raeburn   390:     my %lt=&Apache::lonlocal::texthash(
                    391:                'buil' => 'Building valid e-mail address from username, if missing from preferences:',
                    392:                'kerb' => 'Kerberos: enter default for each realm used in the domain, with comma separation of entries',
                    393:                'infs' => 'Internal, Filesystem and Local authentication: enter single default.',
1.29      schafran  394:                'comp' => 'Compose E-mail'
1.2       raeburn   395:            );
                    396:     &Apache::lonhtmlcommon::add_breadcrumb
                    397:           ({text=>"Select Audience"});
                    398: 
1.43    ! raeburn   399:     my $instcats = &Apache::lonnet::get_dom_instcats($cdom);
        !           400:     if (ref($instcats) eq 'HASH') {
        !           401:         if ((ref($instcats->{'codetitles'}) eq 'ARRAY') && (ref($instcats->{'codes'}) eq 'HASH') &&
        !           402:             (ref($instcats->{'cat_titles'}) eq 'HASH') && (ref($instcats->{'cat_order'}) eq 'HASH')) {
        !           403:             %codes = %{$instcats->{'codes'}};
        !           404:             @codetitles = @{$instcats->{'codetitles'}};
        !           405:             %cat_titles = %{$instcats->{'cat_titles'}};
        !           406:             %cat_order = %{$instcats->{'cat_order'}};
        !           407:             $totcodes = scalar(keys(%codes));
1.1       raeburn   408:             my $numtypes = @codetitles;
1.24      raeburn   409:             &Apache::courseclassifier::build_code_selections(\%codes,\@codetitles,\%cat_titles,\%cat_order,\%idlist,\%idnums,\%idlist_titles);
                    410:             my ($scripttext,$longtitles) = &Apache::courseclassifier::javascript_definitions(\@codetitles,\%idlist,\%idlist_titles,\%idnums,\%cat_titles);
                    411:             my $longtitles_str = join('","',@{$longtitles});
                    412:             my $allidlist = $idlist{$codetitles[0]};
                    413:             $jscript .= &Apache::courseclassifier::courseset_js_start($formname,$longtitles_str,$allidlist);
                    414:             $jscript .= $scripttext;
1.42      raeburn   415:             $jscript .= &Apache::courseclassifier::javascript_code_selections($formname,\@codetitles);
1.1       raeburn   416:         }
                    417:     }
1.37      raeburn   418:     my @standardnames = &Apache::loncommon::get_standard_codeitems();
1.1       raeburn   419: 
1.3       albertel  420:     my $cb_jscript = &Apache::loncommon::coursebrowser_javascript($cdom);
1.8       raeburn   421: 
                    422:     my %elements = (
                    423:                      roles => 'selectbox',
                    424:                      types => 'selectbox',
                    425:                      Year => 'selectbox',
                    426:                      coursepick => 'radio',
                    427:                      coursetotal => 'text',
                    428:                      courselist => 'text',
                    429:                      internal => 'text',
                    430:                      krb4 => 'text',
                    431:                      krb5 => 'text',
1.28      raeburn   432:                      localauth => 'text',
1.8       raeburn   433:                      unix => 'text',
                    434:                    );
                    435:     $jscript .= &Apache::lonhtmlcommon::set_form_elements(\%elements);
                    436:     if ($env{'form.coursepick'} eq 'category') {
                    437:         $jscript .= qq|
                    438: function setCourseCat(formname) {
                    439:     if (formname.Year.options[formname.Year.selectedIndex].value == -1) {
                    440:         return;
                    441:     }
1.37      raeburn   442:     courseSet('$codetitles[0]');
1.8       raeburn   443:     for (var j=0; j<formname.Semester.length; j++) {
                    444:         if (formname.Semester.options[j].value == "$env{'form.Semester'}") {
                    445:             formname.Semester.options[j].selected = true;
                    446:         }
                    447:     }
                    448:     if (formname.Semester.options[formname.Semester.selectedIndex].value == -1) {
                    449:         return;
                    450:     }
1.37      raeburn   451:     courseSet('$codetitles[1]');
1.8       raeburn   452:     for (var j=0; j<formname.Department.length; j++) {
                    453:         if (formname.Department.options[j].value == "$env{'form.Department'}") {
                    454:             formname.Department.options[j].selected = true;
                    455:         }
                    456:     }
                    457:     if (formname.Department.options[formname.Department.selectedIndex].value == -1) {
                    458:         return;
                    459:     }
1.37      raeburn   460:     courseSet('$codetitles[2]');
1.8       raeburn   461:     for (var j=0; j<formname.Number.length; j++) {
                    462:         if (formname.Number.options[j].value == "$env{'form.Number'}") {
                    463:             formname.Number.options[j].selected = true;
                    464:         }
                    465:     }
                    466: }
                    467: |; 
                    468:     }
1.12      albertel  469: 
                    470: 
                    471:     my $output = &start_page(&add_script($jscript).$cb_jscript,
1.14      albertel  472: 			     'Choose e-mail audience', $formname);
1.12      albertel  473: 
1.20      albertel  474:     $output .= &Apache::lonhtmlcommon::start_pick_box();
1.13      albertel  475:     my @roles = ('ow','cc','in','ta','ep','st','cr');
                    476:     my %longtypes = ();
                    477:     my %authtypes = ();
                    478:     &form_elements(\%longtypes,\%authtypes);
                    479:     my $descrip = $lt{'buil'}.' 
1.2       raeburn   480: <ul>
                    481: <li>'.$lt{'kerb'}.'<br />(e.g., MSU.EDU=msu.edu, MSUE.EDU=msue.msu.edu).</li>
                    482: <li>'.$lt{'infs'}.'</li>
                    483: </ul>'."\n";
1.13      albertel  484:     my $submit_text = $lt{'comp'};
                    485:     my $cmd = 'compose';
1.32      schafran  486:     $output .= &Apache::lonhtmlcommon::role_select_row(\@roles,&mt('Roles'));
1.37      raeburn   487:     $output .= &Apache::lonhtmlcommon::course_select_row(&mt('Courses'),$formname,$totcodes,\@codetitles,\%idlist,\%idlist_titles,undef,undef,\@standardnames);
1.20      albertel  488:     $output .= &Apache::lonhtmlcommon::status_select_row(\%longtypes,&mt('Access status'));
1.33      schafran  489:     $output .= &Apache::lonhtmlcommon::email_default_row(\%authtypes,&mt('Username -> E-mail conversion'),$descrip);
1.20      albertel  490:     $output .= &Apache::lonhtmlcommon::submit_row(&mt('Submit'),$cmd,$submit_text);
1.13      albertel  491:     $output .= &Apache::lonhtmlcommon::end_pick_box();
                    492:     $output .= &end_page();
1.2       raeburn   493:     $r->print($output);
1.1       raeburn   494:     return;
                    495: }
                    496: 
                    497: sub print_composition_form {
1.20      albertel  498:     my ($r,$formname,$cdom) = @_;
1.1       raeburn   499:     &Apache::lonhtmlcommon::add_breadcrumb
1.8       raeburn   500:         ({href=>"javascript:goBack('pick_target')",
1.2       raeburn   501:           text=>"Select Audience"},
1.29      schafran  502:          {text=>"Compose E-mail"});
1.2       raeburn   503:     my $jscript = &Apache::loncommon::check_uncheck_jscript();
1.8       raeburn   504:     $jscript .= qq|
                    505: function goBack(target) {
                    506:     document.$formname.command.value = target;
                    507:     document.$formname.submit();
                    508: }
                    509: |;
1.1       raeburn   510: 
1.2       raeburn   511:     my %lt=&Apache::lonlocal::texthash(
                    512:                       'nore' => 'No recipients identified',
                    513:                       'emad' => 'e-mail address',
                    514:                    );
1.8       raeburn   515:     my %elements = (
                    516:                      subject => 'text',
                    517:                      message => 'text',
                    518:                      sender => 'text',
                    519:                      recipient => 'checkbox',
                    520:                    );
                    521:     $jscript .= &Apache::lonhtmlcommon::set_form_elements(\%elements);
                    522: 
1.14      albertel  523:     $r->print(&start_page(&add_script($jscript),
1.12      albertel  524: 			  'Broadcast e-mail to users', $formname));
                    525: 
1.2       raeburn   526:     my $coursefilter = $env{'form.coursepick'};
1.27      raeburn   527:     my %courses;
1.2       raeburn   528:     if ($coursefilter eq 'all') {
1.22      raeburn   529:         %courses = &Apache::lonnet::courseiddump($cdom,'.','.','.','.','.',
                    530:                                                  undef,undef,'Course');
1.2       raeburn   531:     } elsif ($coursefilter eq 'category') {
1.37      raeburn   532:         my $instcode = &Apache::courseclassifier::instcode_from_selectors($cdom);
                    533:         my $regexp = '';
1.2       raeburn   534:         if ($instcode eq '') {
                    535:             $instcode = '.';
1.37      raeburn   536:         } else {
                    537:             $regexp = 1;
1.2       raeburn   538:         }
1.22      raeburn   539:         %courses = &Apache::lonnet::courseiddump($cdom,'.','.',$instcode,'.','.',
1.37      raeburn   540:                                                  undef,undef,'Course',$regexp);
1.2       raeburn   541:     } elsif ($coursefilter eq 'specific') {
                    542:         if ($env{'form.coursetotal'} > 1) {
                    543:             my @course_ids = split(/&&/,$env{'form.courselist'});
1.27      raeburn   544:             foreach my $cid (@course_ids) {
                    545:                 $courses{$cid} = '';
1.2       raeburn   546:             }
                    547:         } else {
                    548:             $courses{$env{'form.courselist'}} = '';
                    549:         }
1.1       raeburn   550:     }
1.2       raeburn   551: 
                    552:     my @types = &Apache::loncommon::get_env_multiple('form.types');
                    553:     my @roles = &Apache::loncommon::get_env_multiple('form.roles');
                    554: 
                    555:     my %longtypes = ();
                    556:     my %authtypes = ();
                    557:     my %email_defaults = ();
                    558: 
                    559:     &form_elements(\%longtypes,\%authtypes);
1.3       albertel  560:     foreach my $auth (keys(%authtypes)) {
1.2       raeburn   561:         if (exists($env{'form.'.$auth})) {
                    562:              my $default = $env{'form.'.$auth};
                    563:              $default =~ s/^,+//;
                    564:              $default =~ s/,+$//;
                    565:              if ($auth =~ /^krb/) {
                    566:                  %{$email_defaults{$auth}} = ();
                    567:                  if ($default =~ /,/) {
                    568:                      my @items = split(/,/,$default);
                    569:                      foreach my $item (@items) {
                    570:                          my ($realm,$value) = split(/=/,$item);
                    571:                          $email_defaults{$auth}{$realm} = $value;
                    572:                      }
                    573:                  } else {
                    574:                      my ($realm,$value) = split(/=/,$default);
                    575:                      $email_defaults{$auth}{$realm} = $value;
                    576:                  }
                    577:              } else {
                    578:                  $email_defaults{$auth} = $default;
                    579:              }
                    580:          }
1.1       raeburn   581:     }
1.2       raeburn   582: 
                    583:     my $sender = &get_user_info($env{'user.name'},%email_defaults);
                    584: 
1.1       raeburn   585:     my %recipients = ();
1.2       raeburn   586:     my %users = ();
                    587:     my %access = ();
1.8       raeburn   588:     my @sections = ();
1.2       raeburn   589:     my $totalrecip = 0;
                    590:     my @unmatched = ();
                    591:     foreach my $role (@roles) {
                    592:         %{$users{$role}} = ();
                    593:     }
                    594:     foreach my $type (@types) {
                    595:         $access{$type} = $type;
                    596:     }
                    597:     foreach my $course_id (keys(%courses)) {
1.27      raeburn   598:         my %coursehash = 
                    599:             &Apache::lonnet::coursedescription($course_id,{'one_time' => 1});
                    600:         my $cdom = $coursehash{'domain'};
                    601:         my $cnum = $coursehash{'num'};
1.8       raeburn   602:         &Apache::loncommon::get_course_users($cdom,$cnum,\%access,\@roles,\@sections,\%users);
1.2       raeburn   603:     }
                    604:     foreach my $role (keys(%users)) {
                    605:         foreach my $user (keys(%{$users{$role}})) {
                    606:             unless (defined($recipients{$user})) {
                    607:                 $recipients{$user} = &get_user_info($user,%email_defaults);
                    608:                 if ($recipients{$user} eq '') {
                    609:                     push @unmatched, $user;
                    610:                 } else {
                    611:                     $totalrecip ++;
                    612:                 } 
                    613:             }
                    614:         }
1.1       raeburn   615:     }
1.12      albertel  616:     my $output;
1.2       raeburn   617:   
                    618:     if ($totalrecip > 0) {
1.20      albertel  619:         $output .= &Apache::lonhtmlcommon::start_pick_box();
                    620:         $output .= &Apache::lonhtmlcommon::row_title(&mt('Subject'));
                    621:         $output .= '<input type="text" name="subject" size="30" />';
1.2       raeburn   622:         $output .= &Apache::lonhtmlcommon::row_closure();
1.20      albertel  623:         $output .= &Apache::lonhtmlcommon::row_title(&mt('Message'));
                    624:         $output .= '  <textarea name="message" id="message"
                    625:                       cols="60" rows="10" wrap="hard"></textarea>';
1.2       raeburn   626:         $output .= &Apache::lonhtmlcommon::row_closure();
1.20      albertel  627:         $output .= &Apache::lonhtmlcommon::row_title(&mt('Recipients'));
                    628:         $output .= '<input type="button" value="check all" 
1.2       raeburn   629:                     onclick="javascript:checkAll(document.compose.recipient)" />
                    630:                     &nbsp;&nbsp;<input type="button" value="uncheck all"
                    631:                     onclick="javascript:uncheckAll(document.compose.recipient)" />
1.20      albertel  632:                     <br />';
                    633: 	$output .= &Apache::loncommon::start_data_table();
1.2       raeburn   634:         if (keys(%recipients) > 0) {
1.20      albertel  635: 	    $output .= &Apache::loncommon::start_data_table_header_row();
1.23      raeburn   636:             $output .= '<th>&nbsp;<th>username:domain</th><th>'.$lt{'emad'}.'</th>';
1.20      albertel  637: 	    $output .= &Apache::loncommon::end_data_table_header_row();
1.2       raeburn   638:         }
                    639:         foreach my $username (sort(keys(%recipients))) {
1.20      albertel  640: 	    $output .= &Apache::loncommon::start_data_table_row();
1.1       raeburn   641:             if ($recipients{$username} =~ /\@/) {
1.19      www       642:                 my $value=&escape($username).':'.&escape($recipients{$username});
1.23      raeburn   643:                 $output .= '<td><input type="checkbox" name="recipient" value="'.$value.'" /></td><td>'.$username.'</td><td>'.$recipients{$username}.'</td>';
1.1       raeburn   644:             }
1.20      albertel  645: 	    $output .= &Apache::loncommon::end_data_table_row();
1.1       raeburn   646:         }
1.20      albertel  647:         $output .= &Apache::loncommon::end_data_table();
1.5       raeburn   648:         if (@unmatched) {
                    649:             $output .= '<br /><br />'.&mt('Could not determine e-mail addresses for the following users:').'<ul>';
1.41      raeburn   650:             foreach my $username (sort(@unmatched)) {
1.5       raeburn   651:                 $output .= '<li>'.$username.'</li>';
                    652:             }
                    653:             $output .= '</ul>';
                    654:         }
1.2       raeburn   655:         $output .= &Apache::lonhtmlcommon::row_closure();
1.20      albertel  656:         $output .= &Apache::lonhtmlcommon::row_title(&mt('Sender e-mail address'));
                    657:         $output .= '<input type="text" name="sender" value="'.$sender.'" />';
1.2       raeburn   658:         $output .= &Apache::lonhtmlcommon::row_closure();
1.29      schafran  659:         $output .= &Apache::lonhtmlcommon::submit_row(&mt('Submit'),'process',&mt('Send'));
1.2       raeburn   660:         $output .= &Apache::lonhtmlcommon::end_pick_box();
1.1       raeburn   661:     } else {
1.8       raeburn   662:         $output .= $lt{'nore'}."\n".
                    663:                    '<input type="hidden" name="command" value="" />'."\n";
1.1       raeburn   664:     }
1.8       raeburn   665:     $output .= '<input type="hidden" name="origin" value="'.$formname.'" />'."\n";
                    666:     $output .= &Apache::lonhtmlcommon::echo_form_input(['command','origin','subject','message','recipient','sender'],);
1.13      albertel  667:     $output .= &end_page();
1.2       raeburn   668:     $r->print($output);
1.1       raeburn   669:     return;
                    670: }
                    671: 
                    672: 
                    673: sub print_request_receipt {
1.20      albertel  674:     my ($r,$formname,$dom) =@_;
1.2       raeburn   675:     my @recipients = &Apache::loncommon::get_env_multiple('form.recipient');
1.1       raeburn   676:     my $subject = $env{'form.subject'};
                    677:     my $message = $env{'form.message'};
1.2       raeburn   678:     my $from = $env{'form.sender'};
                    679:     my $jscript = <<ENDSCRIPT;
1.8       raeburn   680: function goBack(target) {
                    681:     document.$formname.command.value = target;
                    682:     document.$formname.submit();
1.2       raeburn   683: }
                    684: ENDSCRIPT
1.12      albertel  685: 
1.2       raeburn   686:     &Apache::lonhtmlcommon::add_breadcrumb
1.8       raeburn   687:         ({href=>"javascript:goBack('pick_target')",
1.2       raeburn   688:           text=>"Select audience"});
                    689:     &Apache::lonhtmlcommon::add_breadcrumb
1.8       raeburn   690:         ({href=>"javascript:goBack('compose')",
1.29      schafran  691:           text=>"Compose E-mail"});
1.2       raeburn   692:     &Apache::lonhtmlcommon::add_breadcrumb
1.8       raeburn   693:         ({href=>"/adm/notify?command=process",
1.2       raeburn   694:           text=>"Outcome"});
1.12      albertel  695: 
                    696: 
1.14      albertel  697:     my $output = &start_page(&add_script($jscript), 'E-mail Delivery',
                    698: 			     $formname);
1.12      albertel  699: 
1.20      albertel  700: 
1.2       raeburn   701:     my @deliveries = ();
                    702:     &broadcast_email(\@recipients,$subject,$from,$message,\@deliveries);
                    703:     if (@deliveries > 0) {
1.20      albertel  704: 	$output .= &Apache::loncommon::start_data_table();
1.5       raeburn   705:         &store_mail($subject,$message,$dom,\@deliveries);
1.20      albertel  706:         $output .= &Apache::loncommon::start_data_table_header_row().
                    707: 	    '<th>'.&mt('Status').'</th>'.
                    708: 	    '<th>'.&mt('Subject').'</th>'.
                    709: 	    '<th>'.&mt('Message').'</th>'.
1.39      raeburn   710: 	    '<th>'.&mt('Recipients').'</th>'.
1.20      albertel  711: 	    &Apache::loncommon::end_data_table_header_row();
                    712: 	$output .= &Apache::loncommon::start_data_table_row().
                    713: 	    '<td valign="middle">'.&mt('Sent').'</td>'.
                    714: 	    '<td valign="middle">'.&cr_to_br($subject).'</td>'.
                    715: 	    '<td valign="middle">'.&cr_to_br($message).'</td>'.
                    716: 	    '<td>';
1.2       raeburn   717:         foreach my $person (@deliveries) {
                    718:             my ($username,$email) = split(/:/,$person);
1.19      www       719:             $output .= &unescape($email).'&nbsp;('.&unescape($username).')<br />'."\n";
1.2       raeburn   720:         }
1.20      albertel  721:         $output .= '</td>'.
                    722: 	    &Apache::loncommon::end_data_table_row().
                    723: 	    &Apache::loncommon::end_data_table();
1.2       raeburn   724:     } else {
1.40      bisitz    725:         $output .= &mt('No mail sent - no recipients identified'); 
1.1       raeburn   726:     }
1.31      schafran  727:     $output .= '<br /><a href="/adm/notify">'.&mt('Send another e-mail').'</a>'."\n";
1.8       raeburn   728:     $output .= '<input type="hidden" name="command" />'."\n".
                    729:                '<input type="hidden" name="origin" value="'.$formname.'" />'."\n";
                    730:     $output .= &Apache::lonhtmlcommon::echo_form_input(['command','origin']);
1.13      albertel  731:     $output .= &end_page();
1.2       raeburn   732:     $r->print($output);
1.1       raeburn   733:     return;
                    734: }
                    735: 
1.2       raeburn   736: sub broadcast_email {
1.12      albertel  737:     my ($recipients,$subject,$from,$message,$deliveries)=@_;
1.8       raeburn   738: # Should implement staggered delivery for large numbers of recipients?.
1.2       raeburn   739:     foreach my $user (@{$recipients}) {
                    740:         my $msg = new Mail::Send;
                    741:         my ($username,$to) = split(/:/,$user);
1.19      www       742:         $username = &unescape($username);
                    743:         $to = &unescape($to);
1.2       raeburn   744:         $msg->to($to);
                    745:         $msg->subject($subject);
                    746:         $msg->add('From',"$from");
1.38      bisitz    747:         $msg->add('Content-type','text/plain; charset=UTF-8');
1.2       raeburn   748:         if (my $fh = $msg->open()) {
                    749:             print $fh $message;
                    750:             $fh->close;
                    751:             push(@{$deliveries},$user); 
                    752:         }
                    753:     }
                    754: }
                    755: 
                    756: sub get_user_info {
1.5       raeburn   757:     my ($user,%email_defaults) = @_;
1.2       raeburn   758:     my ($uname,$udom) = split(/:/,$user);
                    759:     my @emailtypes = ('permanentemail','critnotification','notification');
1.25      www       760:     my %userinfo = &Apache::loncommon::getemails($uname,$udom);
1.2       raeburn   761:     my $email = '';
                    762:     foreach my $type (@emailtypes) {
                    763:         $email = $userinfo{$type};
                    764:         if ($email =~ /\@/) {
                    765:             last;
                    766:         }
                    767:     }
                    768:     if ($email eq '') {
                    769:         my $authinfo  = &Apache::lonnet::queryauthenticate($uname,$udom);
                    770:         my ($authtype,$autharg) = split(/:/,$authinfo);
                    771:         if ($authtype =~ /^krb/) {
                    772:             if (defined($email_defaults{$authtype}{$autharg})) {
                    773:                 $email = $uname.'@'.$email_defaults{$authtype}{$autharg};
                    774:             }
                    775:         } else {
1.5       raeburn   776:             if ((defined($email_defaults{$authtype})) && ($email_defaults{$authtype} ne '')) {
1.2       raeburn   777:                 $email = $uname.'@'.$email_defaults{$authtype};
                    778:             }
                    779:         }
                    780:     }
                    781:     return $email;
                    782: }
                    783: 
                    784: sub form_elements {
1.12      albertel  785:    my ($longtypes,$authtypes) = @_;
1.2       raeburn   786:    %{$longtypes} = (
1.32      schafran  787:                    active => &mt('Currently has access'),
                    788:                    previous => &mt('Previously had access'),
                    789:                    future => &mt('Will have future access'),
1.2       raeburn   790:                    );
                    791:    %{$authtypes} = (
                    792:                    krb4 => 'Kerberos 4',
                    793:                    krb5 => 'Kerberos 5',
1.5       raeburn   794:                    internal => 'Internal (LON-CAPA)',
1.2       raeburn   795:                    unix => 'Filesystem (UNIX)',
1.28      raeburn   796:                    localauth => 'Local/Customized',
1.2       raeburn   797:                    );
                    798:    return;
                    799: }
                    800: 
                    801: sub store_mail {
1.12      albertel  802:     my ($subject,$message,$domain,$recipients,$attachmenturl) = @_;
1.9       raeburn   803:     my $msgid;
1.10      raeburn   804:     ($msgid,$message) = &Apache::lonmsg::packagemsg($subject,$message,undef,undef,
                    805:                         $attachmenturl,$recipients,undef,undef,'dcmail');
                    806: 
1.9       raeburn   807: # Store in dc email db files on primary library server for domain.
1.26      albertel  808:     my $server = &Apache::lonnet::domain($domain,'primary');
1.9       raeburn   809:     if (defined($server)) {
                    810:         unless (&Apache::lonnet::dcmailput($domain,$msgid,$message,$server) 
                    811:                                                             eq 'ok') {
                    812:             &Apache::lonnet::logthis('Storage of dc mail failed for domain'.
                    813:                  $domain.' for server: '. $server.'.  Message ID was '.$msgid);
1.4       raeburn   814:         }
1.9       raeburn   815:     } else {
                    816:         &Apache::lonnet::logthis('Storage of dc mail failed for domain'.
                    817:            $domain.' as no primary server identified. Message ID was '.$msgid);
1.2       raeburn   818:     }
                    819: }
                    820: 
1.5       raeburn   821: sub cr_to_br {
                    822:     my $incoming = shift;
                    823:     $incoming =~ s/\n/\<br \/\>/g;
                    824:     return $incoming;
                    825: }
                    826: 
1.1       raeburn   827: 1;

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