Bug 4330 : Adding some copyright BibLibre statements
[koha.git] / misc / cronjobs / overdue_notices.pl
1 #!/usr/bin/perl
2
3 # Copyright 2008 Liblime
4 # Copyright 2010 BibLibre
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21 use strict;
22 use warnings;
23
24 BEGIN {
25
26     # find Koha's Perl modules
27     # test carefully before changing this
28     use FindBin;
29     eval { require "$FindBin::Bin/../kohalib.pl" };
30 }
31
32 use Getopt::Long;
33 use Pod::Usage;
34 use Text::CSV_XS;
35 use Locale::Currency::Format 1.28;
36 use Encode;
37
38 use C4::Context;
39 use C4::Dates qw/format_date/;
40 use C4::Debug;
41 use C4::Letters;
42 use C4::Overdues qw(GetFine);
43
44 =head1 NAME
45
46 overdue_notices.pl - prepare messages to be sent to patrons for overdue items
47
48 =head1 SYNOPSIS
49
50 overdue_notices.pl [ -n ] [ -library <branchcode> ] [ -library <branchcode>...] [ -max <number of days> ] [ -csv [ <filename> ] ] [ -itemscontent <field list> ]
51
52  Options:
53    -help                          brief help message
54    -man                           full documentation
55    -n                             No email will be sent
56    -max          <days>           maximum days overdue to deal with
57    -library      <branchname>     only deal with overdues from this library (repeatable : several libraries can be given)
58    -csv          <filename>       populate CSV file
59    -html         <filename>       Output html to file
60    -itemscontent <list of fields> item information in templates
61    -borcat       <categorycode>   category code that must be included
62    -borcatout    <categorycode>   category code that must be excluded
63
64 =head1 OPTIONS
65
66 =over 8
67
68 =item B<-help>
69
70 Print a brief help message and exits.
71
72 =item B<-man>
73
74 Prints the manual page and exits.
75
76 =item B<-v>
77
78 Verbose. Without this flag set, only fatal errors are reported.
79
80 =item B<-n>
81
82 Do not send any email. Overdue notices that would have been sent to
83 the patrons or to the admin are printed to standard out. CSV data (if
84 the -csv flag is set) is written to standard out or to any csv
85 filename given.
86
87 =item B<-max>
88
89 Items older than max days are assumed to be handled somewhere else,
90 probably the F<longoverdues.pl> script. They are therefore ignored by
91 this program. No notices are sent for them, and they are not added to
92 any CSV files. Defaults to 90 to match F<longoverdues.pl>.
93
94 =item B<-library>
95
96 select overdues for one specific library. Use the value in the
97 branches.branchcode table. This option can be repeated in order 
98 to select overdues for a group of libraries.
99
100 =item B<-csv>
101
102 Produces CSV data. if -n (no mail) flag is set, then this CSV data is
103 sent to standard out or to a filename if provided. Otherwise, only
104 overdues that could not be emailed are sent in CSV format to the admin.
105
106 =item B<-html>
107
108 Produces html data. if patron does not have a mail address or
109 -n (no mail) flag is set, an html file is generated in the specified
110 directory. This can be downloaded or futher processed by library staff.
111
112 =item B<-itemscontent>
113
114 comma separated list of fields that get substituted into templates in
115 places of the E<lt>E<lt>items.contentE<gt>E<gt> placeholder. This
116 defaults to due date,title,barcode,author
117
118 Other possible values come from fields in the biblios, items and
119 issues tables.
120
121 =item B<-borcat>
122
123 Repetable field, that permit to select only few of patrons categories.
124
125 =item B<-borcatout>
126
127 Repetable field, permis to exclude some patrons categories.
128
129 =item B<-t> | B<--triggered>
130
131 This option causes a notice to be generated if and only if 
132 an item is overdue by the number of days defined in a notice trigger.
133
134 By default, a notice is sent each time the script runs, which is suitable for 
135 less frequent run cron script, but requires syncing notice triggers with 
136 the  cron schedule to ensure proper behavior.
137 Add the --triggered option for daily cron, at the risk of no notice 
138 being generated if the cron fails to run on time.
139
140 =item B<-list-all>
141
142 Default items.content lists only those items that fall in the 
143 range of the currently processing notice.
144 Choose list-all to include all overdue items in the list (limited by B<-max> setting).
145
146 =back
147
148 =head1 DESCRIPTION
149
150 This script is designed to alert patrons and administrators of overdue
151 items.
152
153 =head2 Configuration
154
155 This script pays attention to the overdue notice configuration
156 performed in the "Overdue notice/status triggers" section of the
157 "Tools" area of the staff interface to Koha. There, you can choose
158 which letter templates are sent out after a configurable number of
159 days to patrons of each library. More information about the use of this
160 section of Koha is available in the Koha manual.
161
162 The templates used to craft the emails are defined in the "Tools:
163 Notices" section of the staff interface to Koha.
164
165 =head2 Outgoing emails
166
167 Typically, messages are prepared for each patron with overdue
168 items. Messages for whom there is no email address on file are
169 collected and sent as attachments in a single email to each library
170 administrator, or if that is not set, then to the email address in the
171 C<KohaAdminEmailAddress> system preference.
172
173 These emails are staged in the outgoing message queue, as are messages
174 produced by other features of Koha. This message queue must be
175 processed regularly by the
176 F<misc/cronjobs/process_message_queue.pl> program.
177
178 In the event that the C<-n> flag is passed to this program, no emails
179 are sent. Instead, messages are sent on standard output from this
180 program. They may be redirected to a file if desired.
181
182 =head2 Templates
183
184 Templates can contain variables enclosed in double angle brackets like
185 E<lt>E<lt>thisE<gt>E<gt>. Those variables will be replaced with values
186 specific to the overdue items or relevant patron. Available variables
187 are:
188
189 =over
190
191 =item E<lt>E<lt>bibE<gt>E<gt>
192
193 the name of the library
194
195 =item E<lt>E<lt>items.contentE<gt>E<gt>
196
197 one line for each item, each line containing a tab separated list of
198 title, author, barcode, issuedate
199
200 =item E<lt>E<lt>borrowers.*E<gt>E<gt>
201
202 any field from the borrowers table
203
204 =item E<lt>E<lt>branches.*E<gt>E<gt>
205
206 any field from the branches table
207
208 =back
209
210 =head2 CSV output
211
212 The C<-csv> command line option lets you specify a file to which
213 overdues data should be output in CSV format.
214
215 With the C<-n> flag set, data about all overdues is written to the
216 file. Without that flag, only information about overdues that were
217 unable to be sent directly to the patrons will be written. In other
218 words, this CSV file replaces the data that is typically sent to the
219 administrator email address.
220
221 =head1 USAGE EXAMPLES
222
223 C<overdue_notices.pl> - In this most basic usage, with no command line
224 arguments, all libraries are procesed individually, and notices are
225 prepared for all patrons with overdue items for whom we have email
226 addresses. Messages for those patrons for whom we have no email
227 address are sent in a single attachment to the library administrator's
228 email address, or to the address in the KohaAdminEmailAddress system
229 preference.
230
231 C<overdue_notices.pl -n -csv /tmp/overdues.csv> - sends no email and
232 populates F</tmp/overdues.csv> with information about all overdue
233 items.
234
235 C<overdue_notices.pl -library MAIN max 14> - prepare notices of
236 overdues in the last 2 weeks for the MAIN library.
237
238 =head1 SEE ALSO
239
240 The F<misc/cronjobs/advance_notices.pl> program allows you to send
241 messages to patrons in advance of thier items becoming due, or to
242 alert them of items that have just become due.
243
244 =cut
245
246 # These variables are set by command line options.
247 # They are initially set to default values.
248 my $dbh = C4::Context->dbh();
249 my $help    = 0;
250 my $man     = 0;
251 my $verbose = 0;
252 my $nomail  = 0;
253 my $MAX     = 90;
254 my @branchcodes; # Branch(es) passed as parameter
255 my $csvfilename;
256 my $htmlfilename;
257 my $triggered = 0;
258 my $listall = 0;
259 my $itemscontent = join( ',', qw( date_due title barcode author itemnumber ) );
260 my @myborcat;
261 my @myborcatout;
262
263 GetOptions(
264     'help|?'         => \$help,
265     'man'            => \$man,
266     'v'              => \$verbose,
267     'n'              => \$nomail,
268     'max=s'          => \$MAX,
269     'library=s'      => \@branchcodes,
270     'csv:s'          => \$csvfilename,    # this optional argument gets '' if not supplied.
271     'html:s'          => \$htmlfilename,    # this optional argument gets '' if not supplied.
272     'itemscontent=s' => \$itemscontent,
273     'list-all'      => \$listall,
274     't|triggered'             => \$triggered,
275     'borcat=s'      => \@myborcat,
276     'borcatout=s'   => \@myborcatout,
277 ) or pod2usage(2);
278 pod2usage(1) if $help;
279 pod2usage( -verbose => 2 ) if $man;
280
281 if ( defined $csvfilename && $csvfilename =~ /^-/ ) {
282     warn qq(using "$csvfilename" as filename, that seems odd);
283 }
284
285 my @overduebranches    = C4::Overdues::GetBranchcodesWithOverdueRules();        # Branches with overdue rules
286 my @branches;                                                                   # Branches passed as parameter with overdue rules
287 my $branchcount = scalar(@overduebranches);
288
289 my $overduebranch_word = scalar @overduebranches > 1 ? 'branches' : 'branch';
290 my $branchcodes_word = scalar @branchcodes > 1 ? 'branches' : 'branch';
291
292 my $PrintNoticesMaxLines = C4::Context->preference('PrintNoticesMaxLines');
293
294 if ($branchcount) {
295     $verbose and warn "Found $branchcount $overduebranch_word with first message enabled: " . join( ', ', map { "'$_'" } @overduebranches ), "\n";
296 } else {
297     die 'No branches with active overduerules';
298 }
299
300 if (@branchcodes) {
301     $verbose and warn "$branchcodes_word @branchcodes passed on parameter\n";
302     
303     # Getting libraries which have overdue rules
304     my %seen = map { $_ => 1 } @branchcodes;
305     @branches = grep { $seen{$_} } @overduebranches;
306     
307     
308     if (@overduebranches) {
309
310         my $branch_word = scalar @branches > 1 ? 'branches' : 'branch';
311         $verbose and warn "$branch_word @branches have overdue rules\n";
312
313     } else {
314     
315         $verbose and warn "No active overduerules for $branchcodes_word  '@branchcodes'\n";
316         ( scalar grep { '' eq $_ } @branches )
317           or die "No active overduerules for DEFAULT either!";
318         $verbose and warn "Falling back on default rules for @branchcodes\n";
319         @branches = ('');
320     }
321 }
322
323 # these are the fields that will be substituted into <<item.content>>
324 my @item_content_fields = split( /,/, $itemscontent );
325
326 binmode( STDOUT, ":utf8" );
327
328
329 our $csv;       # the Text::CSV_XS object
330 our $csv_fh;    # the filehandle to the CSV file.
331 if ( defined $csvfilename ) {
332     my $sep_char = C4::Context->preference('delimiter') || ',';
333     $csv = Text::CSV_XS->new( { binary => 1 , sep_char => $sep_char } );
334     if ( $csvfilename eq '' ) {
335         $csv_fh = *STDOUT;
336     } else {
337         open $csv_fh, ">", $csvfilename or die "unable to open $csvfilename: $!";
338     }
339     if ( $csv->combine(qw(name surname address1 address2 zipcode city country email itemcount itemsinfo)) ) {
340         print $csv_fh $csv->string, "\n";
341     } else {
342         $verbose and warn 'combine failed on argument: ' . $csv->error_input;
343     }
344 }
345
346 @branches = @overduebranches unless @branches;
347 our $html_fh;
348 if ( defined $htmlfilename ) {
349   if ( $htmlfilename eq '' ) {
350     $html_fh = *STDOUT;
351   } else {
352     my $today = C4::Dates->new();
353     open $html_fh, ">",File::Spec->catdir ($htmlfilename,"notices-".$today->output('iso').".html");
354   }
355   
356   print $html_fh "<html>\n";
357   print $html_fh "<head>\n";
358   print $html_fh "<style type='text/css'>\n";
359   print $html_fh "pre {page-break-after: always;}\n";
360   print $html_fh "pre {white-space: pre-wrap;}\n";
361   print $html_fh "pre {white-space: -moz-pre-wrap;}\n";
362   print $html_fh "pre {white-space: -o-pre-wrap;}\n";
363   print $html_fh "pre {word-wrap: break-work;}\n";
364   print $html_fh "</style>\n";
365   print $html_fh "</head>\n";
366   print $html_fh "<body>\n";
367 }
368
369 foreach my $branchcode (@branches) {
370
371     my $branch_details = C4::Branch::GetBranchDetail($branchcode);
372     my $admin_email_address = $branch_details->{'branchemail'} || C4::Context->preference('KohaAdminEmailAddress');
373     my @output_chunks;    # may be sent to mail or stdout or csv file.
374
375     $verbose and warn sprintf "branchcode : '%s' using %s\n", $branchcode, $admin_email_address;
376
377     my $sth2 = $dbh->prepare( <<'END_SQL' );
378 SELECT biblio.*, items.*, issues.*, TO_DAYS(NOW())-TO_DAYS(date_due) AS days_overdue
379   FROM issues,items,biblio
380   WHERE items.itemnumber=issues.itemnumber
381     AND biblio.biblionumber   = items.biblionumber
382     AND issues.borrowernumber = ?
383     AND TO_DAYS(NOW())-TO_DAYS(date_due) BETWEEN ? and ?
384 END_SQL
385
386     my $query = "SELECT * FROM overduerules WHERE delay1 IS NOT NULL AND branchcode = ? ";
387     $query .= " AND categorycode IN (".join( ',' , ('?') x @myborcat ).") " if (@myborcat);
388     $query .= " AND categorycode NOT IN (".join( ',' , ('?') x @myborcatout ).") " if (@myborcatout);
389     
390     my $rqoverduerules =  $dbh->prepare($query);
391     $rqoverduerules->execute($branchcode, @myborcat, @myborcatout);
392     
393     # We get default rules is there is no rule for this branch
394     if($rqoverduerules->rows == 0){
395         $query = "SELECT * FROM overduerules WHERE delay1 IS NOT NULL AND branchcode = '' ";
396         $query .= " AND categorycode IN (".join( ',' , ('?') x @myborcat ).") " if (@myborcat);
397         $query .= " AND categorycode NOT IN (".join( ',' , ('?') x @myborcatout ).") " if (@myborcatout);
398         
399         $rqoverduerules = $dbh->prepare($query);
400         $rqoverduerules->execute(@myborcat, @myborcatout);
401     }
402
403     # my $outfile = 'overdues_' . ( $mybranch || $branchcode || 'default' );
404     while ( my $overdue_rules = $rqoverduerules->fetchrow_hashref ) {
405       PERIOD: foreach my $i ( 1 .. 3 ) {
406
407             $verbose and warn "branch '$branchcode', pass $i\n";
408             my $mindays = $overdue_rules->{"delay$i"};    # the notice will be sent after mindays days (grace period)
409             my $maxdays = (
410                   $overdue_rules->{ "delay" . ( $i + 1 ) }
411                 ? $overdue_rules->{ "delay" . ( $i + 1 ) }
412                 : ($MAX)
413             );                                            # issues being more than maxdays late are managed somewhere else. (borrower probably suspended)
414
415             if ( !$overdue_rules->{"letter$i"} ) {
416                 $verbose and warn "No letter$i code for branch '$branchcode'";
417                 next PERIOD;
418             }
419
420             # $letter->{'content'} is the text of the mail that is sent.
421             # this text contains fields that are replaced by their value. Those fields must be written between brackets
422             # The following fields are available :
423             # itemcount is interpreted here as the number of items in the overdue range defined by the current notice or all overdues < max if(-list-all).
424             # <date> <itemcount> <firstname> <lastname> <address1> <address2> <address3> <city> <postcode>
425
426             my $borrower_sql = <<'END_SQL';
427 SELECT COUNT(*), issues.borrowernumber, firstname, surname, address, address2, city, zipcode, country, email, MIN(date_due) as longest_issue
428 FROM   issues,borrowers,categories
429 WHERE  issues.borrowernumber=borrowers.borrowernumber
430 AND    borrowers.categorycode=categories.categorycode
431 END_SQL
432             my @borrower_parameters;
433             if ($branchcode) {
434                 $borrower_sql .= ' AND issues.branchcode=? ';
435                 push @borrower_parameters, $branchcode;
436             }
437             if ( $overdue_rules->{categorycode} ) {
438                 $borrower_sql .= ' AND borrowers.categorycode=? ';
439                 push @borrower_parameters, $overdue_rules->{categorycode};
440             }
441             $borrower_sql .= '  AND categories.overduenoticerequired=1
442                                 GROUP BY issues.borrowernumber ';
443             if($triggered) {
444                 $borrower_sql .= ' HAVING TO_DAYS(NOW())-TO_DAYS(longest_issue) = ?';
445                 push @borrower_parameters, $mindays;
446             } else {
447                 $borrower_sql .= ' HAVING TO_DAYS(NOW())-TO_DAYS(longest_issue) BETWEEN ? and ? ' ;
448                 push @borrower_parameters, $mindays, $maxdays;
449             }
450
451             # $sth gets borrower info iff at least one overdue item has triggered the overdue action.
452                 my $sth = $dbh->prepare($borrower_sql);
453             $sth->execute(@borrower_parameters);
454             $verbose and warn $borrower_sql . "\n $branchcode | " . $overdue_rules->{'categorycode'} . "\n ($mindays, $maxdays)\nreturns " . $sth->rows . " rows";
455
456             while ( my ($itemcount, $borrowernumber, $firstname, $lastname,
457                     $address1, $address2, $city, $postcode, $country, $email,
458                     $longest_issue ) = $sth->fetchrow )
459             {
460                 $verbose and warn "borrower $firstname, $lastname ($borrowernumber) has $itemcount items triggering level $i.";
461     
462                 my $letter = C4::Letters::getletter( 'circulation', $overdue_rules->{"letter$i"} );
463
464                 unless ($letter) {
465                     $verbose and warn "Message '$overdue_rules->{letter$i}' content not found";
466     
467                     # might as well skip while PERIOD, no other borrowers are going to work.
468                     # FIXME : Does this mean a letter must be defined in order to trigger a debar ?
469                     next PERIOD;
470                 }
471     
472                 if ( $overdue_rules->{"debarred$i"} ) {
473     
474                     #action taken is debarring
475                     C4::Members::DebarMember($borrowernumber);
476                     $verbose and warn "debarring $borrowernumber $firstname $lastname\n";
477                 }
478                 my @params = ($listall ? ( $borrowernumber , 1 , $MAX ) : ( $borrowernumber, $mindays, $maxdays ));
479                 $verbose and warn "STH2 PARAMS: borrowernumber = $borrowernumber, mindays = $mindays, maxdays = $maxdays";
480                 $sth2->execute(@params);
481                 my $itemcount = 0;
482                 my $titles = "";
483                 my @items = ();
484                 
485                 my $i = 0;
486                 my $exceededPrintNoticesMaxLines = 0;
487                 while ( my $item_info = $sth2->fetchrow_hashref() ) {
488                     if ( ( !$email || $nomail ) && $PrintNoticesMaxLines && $i >= $PrintNoticesMaxLines ) {
489                       $exceededPrintNoticesMaxLines = 1;
490                       last;
491                     }
492                     $i++;
493                     my @item_info = map { $_ =~ /^date|date$/ ? format_date( $item_info->{$_} ) : $item_info->{$_} || '' } @item_content_fields;
494                     $titles .= join("\t", @item_info) . "\n";
495                     $itemcount++;
496                     push @items, { itemnumber => $item_info->{'itemnumber'}, biblionumber => $item_info->{'biblionumber'} };
497                 }
498                 $sth2->finish;
499                 $letter = parse_letter(
500                     {   letter          => $letter,
501                         borrowernumber  => $borrowernumber,
502                         branchcode      => $branchcode,
503                         items           => \@items,
504                         substitute      => {    # this appears to be a hack to overcome incomplete features in this code.
505                                             bib             => $branch_details->{'branchname'}, # maybe 'bib' is a typo for 'lib<rary>'?
506                                             'items.content' => $titles
507                                            }
508                     }
509                 );
510                 
511                 if ( $exceededPrintNoticesMaxLines ) {
512                   $letter->{'content'} .= "List too long for form; please check your account online for a complete list of your overdue items.";
513                 }
514
515                 my @misses = grep { /./ } map { /^([^>]*)[>]+/; ( $1 || '' ); } split /\</, $letter->{'content'};
516                 if (@misses) {
517                     $verbose and warn "The following terms were not matched and replaced: \n\t" . join "\n\t", @misses;
518                 }
519                 $letter->{'content'} =~ s/\<[^<>]*?\>//g;    # Now that we've warned about them, remove them.
520                 $letter->{'content'} =~ s/\<[^<>]*?\>//g;    # 2nd pass for the double nesting.
521     
522                 if ($nomail) {
523     
524                     push @output_chunks,
525                       prepare_letter_for_printing(
526                         {   letter         => $letter,
527                             borrowernumber => $borrowernumber,
528                             firstname      => $firstname,
529                             lastname       => $lastname,
530                             address1       => $address1,
531                             address2       => $address2,
532                             city           => $city,
533                             postcode       => $postcode,
534                             email          => $email,
535                             itemcount      => $itemcount,
536                             titles         => $titles,
537                             outputformat   => defined $csvfilename ? 'csv' : defined $htmlfilename ? 'html' : '',
538                         }
539                       );
540                 } else {
541                     if ($email) {
542                         C4::Letters::EnqueueLetter(
543                             {   letter                 => $letter,
544                                 borrowernumber         => $borrowernumber,
545                                 message_transport_type => 'email',
546                                 from_address           => $admin_email_address,
547                             }
548                         );
549                     } else {
550     
551                         # If we don't have an email address for this patron, send it to the admin to deal with.
552                         push @output_chunks,
553                           prepare_letter_for_printing(
554                             {   letter         => $letter,
555                                 borrowernumber => $borrowernumber,
556                                 firstname      => $firstname,
557                                 lastname       => $lastname,
558                                 address1       => $address1,
559                                 address2       => $address2,
560                                 city           => $city,
561                                 postcode       => $postcode,
562                                 email          => $email,
563                                 itemcount      => $itemcount,
564                                 titles         => $titles,
565                                 outputformat   => defined $csvfilename ? 'csv' : defined $htmlfilename ? 'html' : '',
566                             }
567                           );
568                     }
569                 }
570             }
571             $sth->finish;
572         }
573     }
574
575     if (@output_chunks) {
576         if ( defined $csvfilename ) {
577             print $csv_fh @output_chunks;        
578         }
579         elsif ( defined $htmlfilename ) {
580             print $html_fh @output_chunks;        
581         }
582         elsif ($nomail){
583                 local $, = "\f";    # pagebreak
584                 print @output_chunks;
585         }
586         my $attachment = {
587             filename => defined $csvfilename ? 'attachment.csv' : 'attachment.txt',
588             type => 'text/plain',
589             content => join( "\n", @output_chunks )
590         };
591
592         my $letter = {
593             title   => 'Overdue Notices',
594             content => 'These messages were not sent directly to the patrons.',
595         };
596         C4::Letters::EnqueueLetter(
597             {   letter                 => $letter,
598                 borrowernumber         => undef,
599                 message_transport_type => 'email',
600                 attachments            => [$attachment],
601                 to_address             => $admin_email_address,
602             }
603         );
604     }
605
606 }
607 if ($csvfilename) {
608     # note that we're not testing on $csv_fh to prevent closing
609     # STDOUT.
610     close $csv_fh;
611 }
612
613 if ( defined $htmlfilename ) {
614   print $html_fh "</body>\n";
615   print $html_fh "</html>\n";
616   close $html_fh;
617 }
618
619 =head1 INTERNAL METHODS
620
621 These methods are internal to the operation of overdue_notices.pl.
622
623 =head2 parse_letter
624
625 parses the letter template, replacing the placeholders with data
626 specific to this patron, biblio, or item
627
628 named parameters:
629   letter - required hashref
630   borrowernumber - required integer
631   substitute - optional hashref of other key/value pairs that should
632     be substituted in the letter content
633
634 returns the C<letter> hashref, with the content updated to reflect the
635 substituted keys and values.
636
637
638 =cut
639
640 sub parse_letter { # FIXME: this code should probably be moved to C4::Letters:parseletter
641     my $params = shift;
642     foreach my $required (qw( letter borrowernumber )) {
643         return unless exists $params->{$required};
644     }
645
646
647     if ( $params->{'substitute'} ) {
648         while ( my ( $key, $replacedby ) = each %{ $params->{'substitute'} } ) {
649             my $replacefield = "<<$key>>";
650             $params->{'letter'}->{title}   =~ s/$replacefield/$replacedby/g;
651             $params->{'letter'}->{content} =~ s/$replacefield/$replacedby/g;
652         }
653     }
654
655     $params->{'letter'} = C4::Letters::parseletter( $params->{'letter'}, 'borrowers', $params->{'borrowernumber'} );
656
657     if ( $params->{'branchcode'} ) {
658         $params->{'letter'} = C4::Letters::parseletter( $params->{'letter'}, 'branches', $params->{'branchcode'} );
659     }
660
661     if ( $params->{'items'} ) {
662         my $item_format = '';
663         PROCESS_ITEMS:
664         while (scalar(@{$params->{'items'}}) > 0) {
665             my $item = shift @{$params->{'items'}};
666             my $fine = GetFine($item->{'itemnumber'}, $params->{'borrowernumber'});
667             if (!$item_format) {
668                 $params->{'letter'}->{'content'} =~ m/(<item>.*<\/item>)/;
669                 $item_format = $1;
670             }
671             if ($params->{'letter'}->{'content'} =~ m/<fine>(.*)<\/fine>/) { # process any fine tags...
672                 my $formatted_fine = currency_format("$1", "$fine", FMT_SYMBOL);
673                 $params->{'letter'}->{'content'} =~ s/<fine>.*<\/fine>/$formatted_fine/;
674             }
675             $params->{'letter'} = C4::Letters::parseletter( $params->{'letter'}, 'biblio',      $item->{'biblionumber'} );
676             $params->{'letter'} = C4::Letters::parseletter( $params->{'letter'}, 'biblioitems', $item->{'biblionumber'} );
677             $params->{'letter'} = C4::Letters::parseletter( $params->{'letter'}, 'items', $item->{'itemnumber'} );
678             $params->{'letter'}->{'content'} =~ s/(<item>.*<\/item>)/$1\n$item_format/ if scalar(@{$params->{'items'}} > 0);
679
680         }
681     }
682     $params->{'letter'}->{'content'} =~ s/<\/{0,1}?item>//g; # strip all remaining item tags...
683     return $params->{'letter'};
684 }
685
686 =head2 prepare_letter_for_printing
687
688 returns a string of text appropriate for printing in the event that an
689 overdue notice will not be sent to the patron's email
690 address. Depending on the desired output format, this may be a CSV
691 string, or a human-readable representation of the notice.
692
693 required parameters:
694   letter
695   borrowernumber
696
697 optional parameters:
698   outputformat
699
700 =cut
701
702 sub prepare_letter_for_printing {
703     my $params = shift;
704
705     return unless ref $params eq 'HASH';
706
707     foreach my $required_parameter (qw( letter borrowernumber )) {
708         return unless defined $params->{$required_parameter};
709     }
710
711     my $return;
712     if ( exists $params->{'outputformat'} && $params->{'outputformat'} eq 'csv' ) {
713         if ($csv->combine(
714                 $params->{'firstname'}, $params->{'lastname'}, $params->{'address1'},  $params->{'address2'}, $params->{'postcode'},
715                 $params->{'city'},      $params->{'email'},    $params->{'itemcount'}, $params->{'titles'}
716             )
717           ) {
718             return $csv->string, "\n";
719         } else {
720             $verbose and warn 'combine failed on argument: ' . $csv->error_input;
721         }
722     } elsif ( exists $params->{'outputformat'} && $params->{'outputformat'} eq 'html' ) {
723       $return = "<pre>\n";
724       $return .= "$params->{'letter'}->{'content'}\n";
725       $return .= "\n</pre>\n";
726     } else {
727         $return .= "$params->{'letter'}->{'content'}\n";
728
729         # $return .= Data::Dumper->Dump( [ $params->{'borrowernumber'}, $params->{'letter'} ], [qw( borrowernumber letter )] );
730     }
731     return $return;
732 }
733