Bug 11856: Add confirm option to POD in advance_notices.pl
[koha.git] / misc / cronjobs / advance_notices.pl
1 #!/usr/bin/perl
2
3 # Copyright 2008 LibLime
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 =head1 NAME
21
22 advance_notices.pl - cron script to put item due reminders into message queue
23
24 =head1 SYNOPSIS
25
26 ./advance_notices.pl -c
27
28 or, in crontab:
29 0 1 * * * advance_notices.pl -c
30
31 =head1 DESCRIPTION
32
33 This script prepares pre-due and item due reminders to be sent to
34 patrons. It queues them in the message queue, which is processed by
35 the process_message_queue.pl cronjob. The type and timing of the
36 messages can be configured by the patrons in their "My Alerts" tab in
37 the OPAC.
38
39 =cut
40
41 use strict;
42 use warnings;
43 use Getopt::Long;
44 use Pod::Usage;
45 use Data::Dumper;
46 BEGIN {
47     # find Koha's Perl modules
48     # test carefully before changing this
49     use FindBin;
50     eval { require "$FindBin::Bin/../kohalib.pl" };
51 }
52 use C4::Biblio;
53 use C4::Context;
54 use C4::Letters;
55 use C4::Members;
56 use C4::Members::Messaging;
57 use C4::Overdues;
58 use Koha::DateUtils;
59
60 =head1 NAME
61
62 advance_notices.pl - prepare messages to be sent to patrons for nearly due, or due, items
63
64 =head1 SYNOPSIS
65
66 advance_notices.pl
67   [ -n ][ -m <number of days> ][ --itemscontent <comma separated field list> ][ -c ]
68
69 =head1 OPTIONS
70
71 =over 8
72
73 =item B<--help>
74
75 Print a brief help message and exits.
76
77 =item B<--man>
78
79 Prints the manual page and exits.
80
81 =item B<-v>
82
83 Verbose. Without this flag set, only fatal errors are reported.
84
85 =item B<-n>
86
87 Do not send any email. Advanced or due notices that would have been sent to
88 the patrons are printed to standard out.
89
90 =item B<-m>
91
92 Defines the maximum number of days in advance to send advance notices.
93
94 =item B<-c>
95
96 Confirm flag: Add this option. The script will only print a usage
97 statement otherwise.
98
99 =item B<--itemscontent>
100
101 comma separated list of fields that get substituted into templates in
102 places of the E<lt>E<lt>items.contentE<gt>E<gt> placeholder. This
103 defaults to due date,title,author,barcode
104
105 Other possible values come from fields in the biblios, items and
106 issues tables.
107
108 =back
109
110 =head1 DESCRIPTION
111
112 This script is designed to alert patrons when items are due, or coming due
113
114 =head2 Configuration
115
116 This script pays attention to the advanced notice configuration
117 performed by borrowers in the OPAC, or by staff in the patron detail page of the intranet. The content of the messages is configured in Tools -> Notices and slips. Advanced notices use the PREDUE template, due notices use DUE. More information about the use of this
118 section of Koha is available in the Koha manual.
119
120 =head2 Outgoing emails
121
122 Typically, messages are prepared for each patron with due
123 items, and who have selected (or the library has elected for them) Advance or Due notices.
124
125 These emails are staged in the outgoing message queue, as are messages
126 produced by other features of Koha. This message queue must be
127 processed regularly by the
128 F<misc/cronjobs/process_message_queue.pl> program.
129
130 In the event that the C<-n> flag is passed to this program, no emails
131 are sent. Instead, messages are sent on standard output from this
132 program. They may be redirected to a file if desired.
133
134 =head2 Templates
135
136 Templates can contain variables enclosed in double angle brackets like
137 E<lt>E<lt>thisE<gt>E<gt>. Those variables will be replaced with values
138 specific to the overdue items or relevant patron. Available variables
139 are:
140
141 =over
142
143 =item E<lt>E<lt>items.contentE<gt>E<gt>
144
145 one line for each item, each line containing a tab separated list of
146 title, author, barcode, issuedate
147
148 =item E<lt>E<lt>borrowers.*E<gt>E<gt>
149
150 any field from the borrowers table
151
152 =item E<lt>E<lt>branches.*E<gt>E<gt>
153
154 any field from the branches table
155
156 =back
157
158 =head1 SEE ALSO
159
160 The F<misc/cronjobs/overdue_notices.pl> program allows you to send
161 messages to patrons when their messages are overdue.
162 =cut
163
164 # These are defaults for command line options.
165 my $confirm;                                                        # -c: Confirm that the user has read and configured this script.
166 my $nomail;                                                         # -n: No mail. Will not send any emails.
167 my $mindays     = 0;                                                # -m: Maximum number of days in advance to send notices
168 my $maxdays     = 30;                                               # -e: the End of the time period
169 my $verbose     = 0;                                                # -v: verbose
170 my $itemscontent = join(',',qw( date_due title author barcode ));
171
172 my $help    = 0;
173 my $man     = 0;
174
175 GetOptions(
176             'help|?'         => \$help,
177             'man'            => \$man,
178             'c'              => \$confirm,
179             'n'              => \$nomail,
180             'm:i'            => \$maxdays,
181             'v'              => \$verbose,
182             'itemscontent=s' => \$itemscontent,
183        )or pod2usage(2);
184 pod2usage(1) if $help;
185 pod2usage( -verbose => 2 ) if $man;;
186
187 # Since advance notice options are not visible in the web-interface
188 # unless EnhancedMessagingPreferences is on, let the user know that
189 # this script probably isn't going to do much
190 if ( ! C4::Context->preference('EnhancedMessagingPreferences') ) {
191     warn <<'END_WARN';
192
193 The "EnhancedMessagingPreferences" syspref is off.
194 Therefore, it is unlikely that this script will actually produce any messages to be sent.
195 To change this, edit the "EnhancedMessagingPreferences" syspref.
196
197 END_WARN
198 }
199 unless ($confirm) {
200      pod2usage(1);
201 }
202 # The fields that will be substituted into <<items.content>>
203 my @item_content_fields = split(/,/,$itemscontent);
204
205 warn 'getting upcoming due issues' if $verbose;
206 my $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => $maxdays } );
207 warn 'found ' . scalar( @$upcoming_dues ) . ' issues' if $verbose;
208
209 # hash of borrowernumber to number of items upcoming
210 # for patrons wishing digests only.
211 my $upcoming_digest;
212 my $due_digest;
213
214 my $dbh = C4::Context->dbh();
215 my $sth = $dbh->prepare(<<'END_SQL');
216 SELECT biblio.*, items.*, issues.*
217   FROM issues,items,biblio
218   WHERE items.itemnumber=issues.itemnumber
219     AND biblio.biblionumber=items.biblionumber
220     AND issues.borrowernumber = ?
221     AND issues.itemnumber = ?
222     AND (TO_DAYS(date_due)-TO_DAYS(NOW()) = ?)
223 END_SQL
224
225 my $admin_adress = C4::Context->preference('KohaAdminEmailAddress');
226
227 my @letters;
228 UPCOMINGITEM: foreach my $upcoming ( @$upcoming_dues ) {
229     warn 'examining ' . $upcoming->{'itemnumber'} . ' upcoming due items' if $verbose;
230     # warn( Data::Dumper->Dump( [ $upcoming ], [ 'overdue' ] ) );
231
232     my $from_address = $upcoming->{branchemail} || $admin_adress;
233
234     my $borrower_preferences;
235     if ( 0 == $upcoming->{'days_until_due'} ) {
236         # This item is due today. Send an 'item due' message.
237         $borrower_preferences = C4::Members::Messaging::GetMessagingPreferences( { borrowernumber => $upcoming->{'borrowernumber'},
238                                                                                    message_name   => 'item_due' } );
239         # warn( Data::Dumper->Dump( [ $borrower_preferences ], [ 'borrower_preferences' ] ) );
240         next unless $borrower_preferences;
241         
242         if ( $borrower_preferences->{'wants_digest'} ) {
243             # cache this one to process after we've run through all of the items.
244             my $digest = $due_digest->{$upcoming->{'borrowernumber'}} ||= {};
245             $digest->{email} ||= $from_address;
246             $digest->{count}++;
247         } else {
248             my $biblio = C4::Biblio::GetBiblioFromItemNumber( $upcoming->{'itemnumber'} );
249             my $letter_type = 'DUE';
250             $sth->execute($upcoming->{'borrowernumber'},$upcoming->{'itemnumber'},'0');
251             my $titles = "";
252             while ( my $item_info = $sth->fetchrow_hashref()) {
253               my @item_info = map { $_ =~ /^date|date$/ ? format_date($item_info->{$_}) : $item_info->{$_} || '' } @item_content_fields;
254               $titles .= join("\t",@item_info) . "\n";
255             }
256
257             ## Get branch info for borrowers home library.
258             foreach my $transport ( keys %{$borrower_preferences->{'transports'}} ) {
259                 my $letter = parse_letter( { letter_code    => $letter_type,
260                                       borrowernumber => $upcoming->{'borrowernumber'},
261                                       branchcode     => $upcoming->{'branchcode'},
262                                       biblionumber   => $biblio->{'biblionumber'},
263                                       itemnumber     => $upcoming->{'itemnumber'},
264                                       substitute     => { 'items.content' => $titles },
265                                       message_transport_type => $transport,
266                                     } )
267                     or warn "no letter of type '$letter_type' found. Please see sample_notices.sql";
268                 push @letters, $letter;
269             }
270         }
271     } else {
272         $borrower_preferences = C4::Members::Messaging::GetMessagingPreferences( { borrowernumber => $upcoming->{'borrowernumber'},
273                                                                                    message_name   => 'advance_notice' } );
274         # warn( Data::Dumper->Dump( [ $borrower_preferences ], [ 'borrower_preferences' ] ) );
275         next UPCOMINGITEM unless $borrower_preferences && exists $borrower_preferences->{'days_in_advance'};
276         next UPCOMINGITEM unless $borrower_preferences->{'days_in_advance'} == $upcoming->{'days_until_due'};
277
278         if ( $borrower_preferences->{'wants_digest'} ) {
279             # cache this one to process after we've run through all of the items.
280             my $digest = $upcoming_digest->{$upcoming->{'borrowernumber'}} ||= {};
281             $digest->{email} ||= $from_address;
282             $digest->{count}++;
283         } else {
284             my $biblio = C4::Biblio::GetBiblioFromItemNumber( $upcoming->{'itemnumber'} );
285             my $letter_type = 'PREDUE';
286             $sth->execute($upcoming->{'borrowernumber'},$upcoming->{'itemnumber'},$borrower_preferences->{'days_in_advance'});
287             my $titles = "";
288             while ( my $item_info = $sth->fetchrow_hashref()) {
289               my @item_info = map { $_ =~ /^date|date$/ ? format_date($item_info->{$_}) : $item_info->{$_} || '' } @item_content_fields;
290               $titles .= join("\t",@item_info) . "\n";
291             }
292
293             ## Get branch info for borrowers home library.
294             foreach my $transport ( keys %{$borrower_preferences->{'transports'}} ) {
295                 my $letter = parse_letter( { letter_code    => $letter_type,
296                                       borrowernumber => $upcoming->{'borrowernumber'},
297                                       branchcode     => $upcoming->{'branchcode'},
298                                       biblionumber   => $biblio->{'biblionumber'},
299                                       itemnumber     => $upcoming->{'itemnumber'},
300                                       substitute     => { 'items.content' => $titles },
301                                       message_transport_type => $transport,
302                                     } )
303                     or warn "no letter of type '$letter_type' found. Please see sample_notices.sql";
304                 push @letters, $letter;
305             }
306         }
307     }
308
309     # If we have prepared a letter, send it.
310     if ( @letters ) {
311       if ($nomail) {
312         for my $letter ( @letters ) {
313             local $, = "\f";
314             print $letter->{'content'};
315         }
316       }
317       else {
318         for my $letter ( @letters ) {
319             C4::Letters::EnqueueLetter( { letter                 => $letter,
320                                           borrowernumber         => $upcoming->{'borrowernumber'},
321                                           from_address           => $from_address,
322                                           message_transport_type => $letter->{message_transport_type} } );
323         }
324       }
325     }
326 }
327
328
329 # warn( Data::Dumper->Dump( [ $upcoming_digest ], [ 'upcoming_digest' ] ) );
330
331 # Now, run through all the people that want digests and send them
332
333 $sth = $dbh->prepare(<<'END_SQL');
334 SELECT biblio.*, items.*, issues.*
335   FROM issues,items,biblio
336   WHERE items.itemnumber=issues.itemnumber
337     AND biblio.biblionumber=items.biblionumber
338     AND issues.borrowernumber = ?
339     AND (TO_DAYS(date_due)-TO_DAYS(NOW()) = ?)
340 END_SQL
341 @letters = ();
342 PATRON: while ( my ( $borrowernumber, $digest ) = each %$upcoming_digest ) {
343     my $count = $digest->{count};
344     my $from_address = $digest->{email};
345
346     my $borrower_preferences = C4::Members::Messaging::GetMessagingPreferences( { borrowernumber => $borrowernumber,
347                                                                                   message_name   => 'advance_notice' } );
348     # warn( Data::Dumper->Dump( [ $borrower_preferences ], [ 'borrower_preferences' ] ) );
349     next PATRON unless $borrower_preferences; # how could this happen?
350
351
352     my $letter_type = 'PREDUEDGST';
353
354     $sth->execute($borrowernumber,$borrower_preferences->{'days_in_advance'});
355     my $titles = "";
356     while ( my $item_info = $sth->fetchrow_hashref()) {
357       my @item_info = map { $_ =~ /^date|date$/ ? format_date($item_info->{$_}) : $item_info->{$_} || '' } @item_content_fields;
358       $titles .= join("\t",@item_info) . "\n";
359     }
360
361     ## Get branch info for borrowers home library.
362     my %branch_info = get_branch_info( $borrowernumber );
363
364     foreach my $transport ( keys %{ $borrower_preferences->{'transports'} } ) {
365         my $letter = parse_letter(
366             {
367                 letter_code    => $letter_type,
368                 borrowernumber => $borrowernumber,
369                 substitute     => {
370                     count           => $count,
371                     'items.content' => $titles,
372                     %branch_info,
373                 },
374                 branchcode             => $branch_info{"branches.branchcode"},
375                 message_transport_type => $transport,
376             }
377           )
378           or die "no letter of type '$letter_type' found. Please see sample_notices.sql";
379         push @letters, $letter;
380     }
381
382     if ( @letters ) {
383       if ($nomail) {
384         for my $letter ( @letters ) {
385             local $, = "\f";
386             print $letter->{'content'};
387         }
388       }
389       else {
390         for my $letter ( @letters ) {
391             C4::Letters::EnqueueLetter( { letter                 => $letter,
392                                           borrowernumber         => $borrowernumber,
393                                           from_address           => $from_address,
394                                           message_transport_type => $letter->{message_transport_type} } );
395         }
396       }
397     }
398 }
399
400 # Now, run through all the people that want digests and send them
401 @letters = ();
402 PATRON: while ( my ( $borrowernumber, $digest ) = each %$due_digest ) {
403     my $count = $digest->{count};
404     my $from_address = $digest->{email};
405
406     my $borrower_preferences = C4::Members::Messaging::GetMessagingPreferences( { borrowernumber => $borrowernumber,
407                                                                                   message_name   => 'item_due' } );
408     # warn( Data::Dumper->Dump( [ $borrower_preferences ], [ 'borrower_preferences' ] ) );
409     next PATRON unless $borrower_preferences; # how could this happen?
410
411     my $letter_type = 'DUEDGST';
412     $sth->execute($borrowernumber,'0');
413     my $titles = "";
414     while ( my $item_info = $sth->fetchrow_hashref()) {
415       my @item_info = map { $_ =~ /^date|date$/ ? format_date($item_info->{$_}) : $item_info->{$_} || '' } @item_content_fields;
416       $titles .= join("\t",@item_info) . "\n";
417     }
418
419     ## Get branch info for borrowers home library.
420     my %branch_info = get_branch_info( $borrowernumber );
421
422     for my $transport ( keys %{ $borrower_preferences->{'transports'} } ) {
423         my $letter = parse_letter(
424             {
425                 letter_code    => $letter_type,
426                 borrowernumber => $borrowernumber,
427                 substitute     => {
428                     count           => $count,
429                     'items.content' => $titles,
430                     %branch_info,
431                 },
432                 branchcode             => $branch_info{"branches.branchcode"},
433                 message_transport_type => $transport,
434             }
435           )
436           or die "no letter of type '$letter_type' found. Please see sample_notices.sql";
437         push @letters, $letter;
438     }
439
440     if ( @letters ) {
441       if ($nomail) {
442         for my $letter ( @letters ) {
443             local $, = "\f";
444             print $letter->{'content'};
445         }
446       }
447       else {
448         for my $letter ( @letters ) {
449             C4::Letters::EnqueueLetter( { letter                 => $letter,
450                                           borrowernumber         => $borrowernumber,
451                                           from_address           => $from_address,
452                                           message_transport_type => $letter->{message_transport_type} } );
453         }
454       }
455     }
456
457 }
458
459 =head1 METHODS
460
461 =head2 parse_letter
462
463 =cut
464
465 sub parse_letter {
466     my $params = shift;
467     foreach my $required ( qw( letter_code borrowernumber ) ) {
468         return unless exists $params->{$required};
469     }
470
471     my %table_params = ( 'borrowers' => $params->{'borrowernumber'} );
472
473     if ( my $p = $params->{'branchcode'} ) {
474         $table_params{'branches'} = $p;
475     }
476     if ( my $p = $params->{'itemnumber'} ) {
477         $table_params{'issues'} = $p;
478         $table_params{'items'} = $p;
479     }
480     if ( my $p = $params->{'biblionumber'} ) {
481         $table_params{'biblio'} = $p;
482         $table_params{'biblioitems'} = $p;
483     }
484
485     return C4::Letters::GetPreparedLetter (
486         module => 'circulation',
487         letter_code => $params->{'letter_code'},
488         branchcode => $table_params{'branches'},
489         substitute => $params->{'substitute'},
490         tables     => \%table_params,
491         message_transport_type => $params->{message_transport_type},
492     );
493 }
494
495 sub format_date {
496     my $date_string = shift;
497     my $dt=dt_from_string($date_string);
498     return output_pref($dt);
499 }
500
501 =head2 get_branch_info
502
503 =cut
504
505 sub get_branch_info {
506     my ( $borrowernumber ) = @_;
507
508     ## Get branch info for borrowers home library.
509     my $borrower_details = C4::Members::GetMember( borrowernumber => $borrowernumber );
510     my $borrower_branchcode = $borrower_details->{'branchcode'};
511     my $branch = C4::Branch::GetBranchDetail( $borrower_branchcode );
512     my %branch_info;
513     foreach my $key( keys %$branch ) {
514         $branch_info{"branches.$key"} = $branch->{$key};
515     }
516
517     return %branch_info;
518 }
519
520 1;
521
522 __END__