3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
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
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.
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.
27 use C4
::Members
::Attributes
qw(GetBorrowerAttributes);
32 use Date
::Calc
qw( Add_Delta_Days );
36 use vars
qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
40 # set the version for version checking
44 &GetLetters &GetPreparedLetter &GetWrappedLetter &addalert &getalert &delalert &findrelatedto &SendAlerts &GetPrintMessages
50 C4::Letters - Give functions for Letters management
58 "Letters" is the tool used in Koha to manage informations sent to the patrons and/or the library. This include some cron jobs like
59 late issues, as well as other tasks like sending a mail to users that have subscribed to a "serial issue alert" (= being warned every time a new issue has arrived at the library)
61 Letters are managed through "alerts" sent by Koha on some events. All "alert" related functions are in this module too.
63 =head2 GetLetters([$category])
65 $letters = &GetLetters($category);
66 returns informations about letters.
67 if needed, $category filters for letters given category
68 Create a letter selector with the following code
72 my $letters = GetLetters($cat);
74 foreach my $thisletter (keys %$letters) {
75 my $selected = 1 if $thisletter eq $letter;
78 selected => $selected,
79 lettername => $letters->{$thisletter},
81 push @letterloop, \%row;
83 $template->param(LETTERLOOP => \@letterloop);
87 <select name="letter">
88 <option value="">Default</option>
89 <!-- TMPL_LOOP name="LETTERLOOP" -->
90 <option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="lettername" --></option>
98 # returns a reference to a hash of references to ALL letters...
101 my $dbh = C4
::Context
->dbh;
104 my $query = "SELECT * FROM letter WHERE module = ? ORDER BY name";
105 $sth = $dbh->prepare($query);
109 my $query = "SELECT * FROM letter ORDER BY name";
110 $sth = $dbh->prepare($query);
113 while ( my $letter = $sth->fetchrow_hashref ) {
114 $letters{ $letter->{'code'} } = $letter->{'name'};
120 sub getletter
($$$) {
121 my ( $module, $code, $branchcode ) = @_;
123 if (C4
::Context
->preference('IndependantBranches') && $branchcode){
124 $branchcode = C4
::Context
->userenv->{'branch'};
127 if ( my $l = $letter{$module}{$code}{$branchcode} ) {
128 return { %$l }; # deep copy
131 my $dbh = C4
::Context
->dbh;
132 my $sth = $dbh->prepare("select * from letter where module=? and code=? and (branchcode = ? or branchcode = '') order by branchcode desc limit 1");
133 $sth->execute( $module, $code, $branchcode );
134 my $line = $sth->fetchrow_hashref
136 $line->{'content-type'} = 'text/html; charset="UTF-8"' if $line->{is_html
};
137 $letter{$module}{$code}{$branchcode} = $line;
141 =head2 addalert ($borrowernumber, $type, $externalid)
144 - $borrowernumber : the number of the borrower subscribing to the alert
145 - $type : the type of alert.
146 - $externalid : the primary key of the object to put alert on. For issues, the alert is made on subscriptionid.
148 create an alert and return the alertid (primary key)
153 my ( $borrowernumber, $type, $externalid ) = @_;
154 my $dbh = C4
::Context
->dbh;
157 "insert into alert (borrowernumber, type, externalid) values (?,?,?)");
158 $sth->execute( $borrowernumber, $type, $externalid );
160 # get the alert number newly created and return it
161 my $alertid = $dbh->{'mysql_insertid'};
165 =head2 delalert ($alertid)
168 - alertid : the alert id
174 my $alertid = shift or die "delalert() called without valid argument (alertid)"; # it's gonna die anyway.
175 $debug and warn "delalert: deleting alertid $alertid";
176 my $sth = C4
::Context
->dbh->prepare("delete from alert where alertid=?");
177 $sth->execute($alertid);
180 =head2 getalert ([$borrowernumber], [$type], [$externalid])
183 - $borrowernumber : the number of the borrower subscribing to the alert
184 - $type : the type of alert.
185 - $externalid : the primary key of the object to put alert on. For issues, the alert is made on subscriptionid.
186 all parameters NON mandatory. If a parameter is omitted, the query is done without the corresponding parameter. For example, without $externalid, returns all alerts for a borrower on a topic.
190 sub getalert
(;$$$) {
191 my ( $borrowernumber, $type, $externalid ) = @_;
192 my $dbh = C4
::Context
->dbh;
193 my $query = "SELECT a.*, b.branchcode FROM alert a JOIN borrowers b USING(borrowernumber) WHERE";
195 if ($borrowernumber and $borrowernumber =~ /^\d+$/) {
196 $query .= " borrowernumber=? AND ";
197 push @bind, $borrowernumber;
200 $query .= " type=? AND ";
204 $query .= " externalid=? AND ";
205 push @bind, $externalid;
207 $query =~ s/ AND $//;
208 my $sth = $dbh->prepare($query);
209 $sth->execute(@bind);
210 return $sth->fetchall_arrayref({});
213 =head2 findrelatedto($type, $externalid)
216 - $type : the type of alert
217 - $externalid : the id of the "object" to query
219 In the table alert, a "id" is stored in the externalid field. This "id" is related to another table, depending on the type of the alert.
220 When type=issue, the id is related to a subscriptionid and this sub returns the name of the biblio.
225 # When type=virtual, the id is related to a virtual shelf and this sub returns the name of the sub
227 sub findrelatedto
($$) {
228 my $type = shift or return undef;
229 my $externalid = shift or return undef;
230 my $q = ($type eq 'issue' ) ?
231 "select title as result from subscription left join biblio on subscription.biblionumber=biblio.biblionumber where subscriptionid=?" :
232 ($type eq 'borrower') ?
233 "select concat(firstname,' ',surname) from borrowers where borrowernumber=?" : undef;
235 warn "findrelatedto(): Illegal type '$type'";
238 my $sth = C4
::Context
->dbh->prepare($q);
239 $sth->execute($externalid);
240 my ($result) = $sth->fetchrow;
247 - $type : the type of alert
248 - $externalid : the id of the "object" to query
249 - $letter_code : the letter to send.
251 send an alert to all borrowers having put an alert on a given subject.
256 my ( $type, $externalid, $letter_code ) = @_;
257 my $dbh = C4
::Context
->dbh;
258 if ( $type eq 'issue' ) {
260 # prepare the letter...
261 # search the biblionumber
264 "SELECT biblionumber FROM subscription WHERE subscriptionid=?");
265 $sth->execute($externalid);
266 my ($biblionumber) = $sth->fetchrow
267 or warn( "No subscription for '$externalid'" ),
271 # find the list of borrowers to alert
272 my $alerts = getalert
( '', 'issue', $externalid );
275 my $borinfo = C4
::Members
::GetMember
('borrowernumber' => $_->{'borrowernumber'});
276 my $email = $borinfo->{email
} or next;
278 # warn "sending issues...";
279 my $userenv = C4
::Context
->userenv;
280 my $letter = GetPreparedLetter
(
282 letter_code
=> $letter_code,
283 branchcode
=> $userenv->{branch
},
285 'branches' => $_->{branchcode
},
286 'biblio' => $biblionumber,
287 'biblioitems' => $biblionumber,
288 'borrowers' => $borinfo,
297 Subject
=> Encode
::encode
( "utf8", "" . $letter->{title
} ),
298 Message
=> Encode
::encode
( "utf8", "" . $letter->{content
} ),
299 'Content-Type' => 'text/plain; charset="utf8"',
301 sendmail
(%mail) or carp
$Mail::Sendmail
::error
;
304 elsif ( $type eq 'claimacquisition' or $type eq 'claimissues' ) {
306 # prepare the letter...
307 # search the biblionumber
308 my $strsth = $type eq 'claimacquisition'
310 SELECT aqorders
.*,aqbasket
.*,biblio
.*,biblioitems
.*,aqbooksellers
.*,
311 aqbooksellers
.id AS booksellerid
313 LEFT JOIN aqbasket ON aqbasket
.basketno
=aqorders
.basketno
314 LEFT JOIN biblio ON aqorders
.biblionumber
=biblio
.biblionumber
315 LEFT JOIN biblioitems ON aqorders
.biblioitemnumber
=biblioitems
.biblioitemnumber
316 LEFT JOIN aqbooksellers ON aqbasket
.booksellerid
=aqbooksellers
.id
317 WHERE aqorders
.ordernumber IN
(
320 SELECT serial
.*,subscription
.*, biblio
.*, aqbooksellers
.*,
321 aqbooksellers
.id AS booksellerid
323 LEFT JOIN subscription ON serial
.subscriptionid
=subscription
.subscriptionid
324 LEFT JOIN biblio ON serial
.biblionumber
=biblio
.biblionumber
325 LEFT JOIN aqbooksellers ON subscription
.aqbooksellerid
=aqbooksellers
.id
326 WHERE serial
.serialid IN
(
328 $strsth .= join( ",", @
$externalid ) . ")";
329 my $sthorders = $dbh->prepare($strsth);
331 my $dataorders = $sthorders->fetchall_arrayref( {} );
334 $dbh->prepare("select * from aqbooksellers where id=?");
335 $sthbookseller->execute( $dataorders->[0]->{booksellerid
} );
336 my $databookseller = $sthbookseller->fetchrow_hashref;
339 push @email, $databookseller->{bookselleremail
} if $databookseller->{bookselleremail
};
340 push @email, $databookseller->{contemail
} if $databookseller->{contemail
};
342 warn "Bookseller $dataorders->[0]->{booksellerid} without emails";
343 return { error
=> "no_email" };
346 my $userenv = C4
::Context
->userenv;
347 my $letter = GetPreparedLetter
(
349 letter_code
=> $letter_code,
350 branchcode
=> $userenv->{branch
},
352 'branches' => $userenv->{branch
},
353 'aqbooksellers' => $databookseller,
355 repeat
=> $dataorders,
361 To
=> join( ',', @email),
362 From
=> $userenv->{emailaddress
},
363 Subject
=> Encode
::encode
( "utf8", "" . $letter->{title
} ),
364 Message
=> Encode
::encode
( "utf8", "" . $letter->{content
} ),
365 'Content-Type' => 'text/plain; charset="utf8"',
367 sendmail
(%mail) or carp
$Mail::Sendmail
::error
;
371 $type eq 'claimissues' ?
"CLAIM ISSUE" : "ACQUISITION CLAIM",
374 . $databookseller->{contemail
}
379 ) if C4
::Context
->preference("LetterLog");
381 # send an "account details" notice to a newly created user
382 elsif ( $type eq 'members' ) {
383 my $branchdetails = GetBranchDetail
($externalid->{'branchcode'});
384 my $letter = GetPreparedLetter
(
386 letter_code
=> $letter_code,
387 branchcode
=> $externalid->{'branchcode'},
389 'branches' => $branchdetails,
390 'borrowers' => $externalid->{'borrowernumber'},
392 substitute
=> { 'borrowers.password' => $externalid->{'password'} },
396 return { error
=> "no_email" } unless $externalid->{'emailaddr'};
398 To
=> $externalid->{'emailaddr'},
399 From
=> $branchdetails->{'branchemail'} || C4
::Context
->preference("KohaAdminEmailAddress"),
400 Subject
=> Encode
::encode
( "utf8", $letter->{'title'} ),
401 Message
=> Encode
::encode
( "utf8", $letter->{'content'} ),
402 'Content-Type' => 'text/plain; charset="utf8"',
404 sendmail
(%mail) or carp
$Mail::Sendmail
::error
;
408 =head2 GetPreparedLetter( %params )
411 module => letter module, mandatory
412 letter_code => letter code, mandatory
413 branchcode => for letter selection, if missing default system letter taken
414 tables => a hashref with table names as keys. Values are either:
415 - a scalar - primary key value
416 - an arrayref - primary key values
417 - a hashref - full record
418 substitute => custom substitution key/value pairs
419 repeat => records to be substituted on consecutive lines:
420 - an arrayref - tries to guess what needs substituting by
421 taking remaining << >> tokensr; not recommended
422 - a hashref token => @tables - replaces <token> << >> << >> </token>
423 subtemplate for each @tables row; table is a hashref as above
424 want_librarian => boolean, if set to true triggers librarian details
425 substitution from the userenv
427 letter fields hashref (title & content useful)
431 sub GetPreparedLetter
{
434 my $module = $params{module
} or croak
"No module";
435 my $letter_code = $params{letter_code
} or croak
"No letter_code";
436 my $branchcode = $params{branchcode
} || '';
438 my $letter = getletter
( $module, $letter_code, $branchcode )
439 or warn( "No $module $letter_code letter"),
442 my $tables = $params{tables
};
443 my $substitute = $params{substitute
};
444 my $repeat = $params{repeat
};
445 $tables || $substitute || $repeat
446 or carp
( "ERROR: nothing to substitute - both 'tables' and 'substitute' are empty" ),
448 my $want_librarian = $params{want_librarian
};
451 while ( my ($token, $val) = each %$substitute ) {
452 $letter->{title
} =~ s/<<$token>>/$val/g;
453 $letter->{content
} =~ s/<<$token>>/$val/g;
457 if ($want_librarian) {
458 # parsing librarian name
459 my $userenv = C4
::Context
->userenv;
460 $letter->{content
} =~ s/<<LibrarianFirstname>>/$userenv->{firstname}/go;
461 $letter->{content
} =~ s/<<LibrarianSurname>>/$userenv->{surname}/go;
462 $letter->{content
} =~ s/<<LibrarianEmailaddress>>/$userenv->{emailaddress}/go;
465 my ($repeat_no_enclosing_tags, $repeat_enclosing_tags);
468 if (ref ($repeat) eq 'ARRAY' ) {
469 $repeat_no_enclosing_tags = $repeat;
471 $repeat_enclosing_tags = $repeat;
475 if ($repeat_enclosing_tags) {
476 while ( my ($tag, $tag_tables) = each %$repeat_enclosing_tags ) {
477 if ( $letter->{content
} =~ m!<$tag>(.*)</$tag>!s ) {
480 my %subletter = ( title
=> '', content
=> $subcontent );
481 _substitute_tables
( \
%subletter, $_ );
484 $letter->{content
} =~ s!<$tag>.*</$tag>!join( "\n", @lines )!se;
490 _substitute_tables
( $letter, $tables );
493 if ($repeat_no_enclosing_tags) {
494 if ( $letter->{content
} =~ m/[^\n]*<<.*>>[^\n]*/so ) {
499 $c =~ s/<<count>>/$i/go;
500 foreach my $field ( keys %{$_} ) {
501 $c =~ s/(<<[^\.]+.$field>>)/$_->{$field}/;
505 } @
$repeat_no_enclosing_tags;
507 my $replaceby = join( "\n", @lines );
508 $letter->{content
} =~ s/\Q$line\E/$replaceby/s;
512 $letter->{content
} =~ s/<<\S*>>//go; #remove any stragglers
513 # $letter->{content} =~ s/<<[^>]*>>//go;
518 sub _substitute_tables
{
519 my ( $letter, $tables ) = @_;
520 while ( my ($table, $param) = each %$tables ) {
523 my $ref = ref $param;
526 if ($ref && $ref eq 'HASH') {
531 my $sth = _parseletter_sth
($table);
533 warn "_parseletter_sth('$table') failed to return a valid sth. No substitution will be done for that table.";
536 $sth->execute( $ref ? @
$param : $param );
538 $values = $sth->fetchrow_hashref;
541 _parseletter
( $letter, $table, $values );
546 sub _parseletter_sth
{
549 carp
"ERROR: _parseletter_sth() called without argument (table)";
553 (defined $handles{$table}) and return $handles{$table};
555 ($table eq 'biblio' ) ?
"SELECT * FROM $table WHERE biblionumber = ?" :
556 ($table eq 'biblioitems' ) ?
"SELECT * FROM $table WHERE biblionumber = ?" :
557 ($table eq 'items' ) ?
"SELECT * FROM $table WHERE itemnumber = ?" :
558 ($table eq 'issues' ) ?
"SELECT * FROM $table WHERE itemnumber = ?" :
559 ($table eq 'reserves' ) ?
"SELECT * FROM $table WHERE borrowernumber = ? and biblionumber = ?" :
560 ($table eq 'borrowers' ) ?
"SELECT * FROM $table WHERE borrowernumber = ?" :
561 ($table eq 'branches' ) ?
"SELECT * FROM $table WHERE branchcode = ?" :
562 ($table eq 'suggestions' ) ?
"SELECT * FROM $table WHERE suggestionid = ?" :
563 ($table eq 'aqbooksellers') ?
"SELECT * FROM $table WHERE id = ?" :
564 ($table eq 'aqorders' ) ?
"SELECT * FROM $table WHERE ordernumber = ?" :
565 ($table eq 'opac_news' ) ?
"SELECT * FROM $table WHERE idnew = ?" :
568 warn "ERROR: No _parseletter_sth query for table '$table'";
569 return; # nothing to get
571 unless ($handles{$table} = C4
::Context
->dbh->prepare($query)) {
572 warn "ERROR: Failed to prepare query: '$query'";
575 return $handles{$table}; # now cache is populated for that $table
578 =head2 _parseletter($letter, $table, $values)
581 - $letter : a hash to letter fields (title & content useful)
582 - $table : the Koha table to parse.
583 - $values : table record hashref
584 parse all fields from a table, and replace values in title & content with the appropriate value
585 (not exported sub, used only internally)
591 my ( $letter, $table, $values ) = @_;
593 # TEMPORARY hack until the expirationdate column is added to reserves
594 if ( $table eq 'reserves' && $values->{'waitingdate'} ) {
595 my @waitingdate = split /-/, $values->{'waitingdate'};
597 $values->{'expirationdate'} = C4
::Dates
->new(
600 Add_Delta_Days
( @waitingdate, C4
::Context
->preference( 'ReservesMaxPickUpDelay' ) )
606 if ($letter->{content
} && $letter->{content
} =~ /<<today>>/) {
607 my @da = localtime();
608 my $todaysdate = "$da[2]:$da[1] " . C4
::Dates
->today();
609 $letter->{content
} =~ s/<<today>>/$todaysdate/go;
612 # and get all fields from the table
613 # my $columns = $columns{$table};
614 # unless ($columns) {
615 # $columns = $columns{$table} = C4::Context->dbh->selectcol_arrayref("SHOW COLUMNS FROM $table");
617 # foreach my $field (@$columns) {
619 while ( my ($field, $val) = each %$values ) {
620 my $replacetablefield = "<<$table.$field>>";
621 my $replacefield = "<<$field>>";
622 $val =~ s/\p{P}(?=$)//g if $val;
623 my $replacedby = defined ($val) ?
$val : '';
624 ($letter->{title
} ) and do {
625 $letter->{title
} =~ s/$replacetablefield/$replacedby/g;
626 $letter->{title
} =~ s/$replacefield/$replacedby/g;
628 ($letter->{content
}) and do {
629 $letter->{content
} =~ s/$replacetablefield/$replacedby/g;
630 $letter->{content
} =~ s/$replacefield/$replacedby/g;
634 if ($table eq 'borrowers' && $letter->{content
}) {
635 if ( my $attributes = GetBorrowerAttributes
($values->{borrowernumber
}) ) {
637 foreach (@
$attributes) {
638 my $code = $_->{code
};
639 my $val = $_->{value_description
} || $_->{value
};
640 $val =~ s/\p{P}(?=$)//g if $val;
641 next unless $val gt '';
643 push @
{ $attr{$code} }, $val;
645 while ( my ($code, $val_ar) = each %attr ) {
646 my $replacefield = "<<borrower-attribute:$code>>";
647 my $replacedby = join ',', @
$val_ar;
648 $letter->{content
} =~ s/$replacefield/$replacedby/g;
657 my $success = EnqueueLetter( { letter => $letter,
658 borrowernumber => '12', message_transport_type => 'email' } )
660 places a letter in the message_queue database table, which will
661 eventually get processed (sent) by the process_message_queue.pl
662 cronjob when it calls SendQueuedMessages.
664 return true on success
668 sub EnqueueLetter
($) {
669 my $params = shift or return undef;
671 return unless exists $params->{'letter'};
672 return unless exists $params->{'borrowernumber'};
673 return unless exists $params->{'message_transport_type'};
675 # If we have any attachments we should encode then into the body.
676 if ( $params->{'attachments'} ) {
677 $params->{'letter'} = _add_attachments
(
678 { letter
=> $params->{'letter'},
679 attachments
=> $params->{'attachments'},
680 message
=> MIME
::Lite
->new( Type
=> 'multipart/mixed' ),
685 my $dbh = C4
::Context
->dbh();
686 my $statement = << 'ENDSQL';
687 INSERT INTO message_queue
688 ( borrowernumber
, subject
, content
, metadata
, letter_code
, message_transport_type
, status
, time_queued
, to_address
, from_address
, content_type
)
690 ( ?
, ?
, ?
, ?
, ?
, ?
, ?
, NOW
(), ?
, ?
, ?
)
693 my $sth = $dbh->prepare($statement);
694 my $result = $sth->execute(
695 $params->{'borrowernumber'}, # borrowernumber
696 $params->{'letter'}->{'title'}, # subject
697 $params->{'letter'}->{'content'}, # content
698 $params->{'letter'}->{'metadata'} || '', # metadata
699 $params->{'letter'}->{'code'} || '', # letter_code
700 $params->{'message_transport_type'}, # message_transport_type
702 $params->{'to_address'}, # to_address
703 $params->{'from_address'}, # from_address
704 $params->{'letter'}->{'content-type'}, # content_type
709 =head2 SendQueuedMessages ([$hashref])
711 my $sent = SendQueuedMessages( { verbose => 1 } );
713 sends all of the 'pending' items in the message queue.
715 returns number of messages sent.
719 sub SendQueuedMessages
(;$) {
722 my $unsent_messages = _get_unsent_messages
();
723 MESSAGE
: foreach my $message ( @
$unsent_messages ) {
724 # warn Data::Dumper->Dump( [ $message ], [ 'message' ] );
725 warn sprintf( 'sending %s message to patron: %s',
726 $message->{'message_transport_type'},
727 $message->{'borrowernumber'} || 'Admin' )
728 if $params->{'verbose'} or $debug;
729 # This is just begging for subclassing
730 next MESSAGE
if ( lc($message->{'message_transport_type'}) eq 'rss' );
731 if ( lc( $message->{'message_transport_type'} ) eq 'email' ) {
732 _send_message_by_email
( $message, $params->{'username'}, $params->{'password'}, $params->{'method'} );
734 elsif ( lc( $message->{'message_transport_type'} ) eq 'sms' ) {
735 _send_message_by_sms
( $message );
738 return scalar( @
$unsent_messages );
741 =head2 GetRSSMessages
743 my $message_list = GetRSSMessages( { limit => 10, borrowernumber => '14' } )
745 returns a listref of all queued RSS messages for a particular person.
752 return unless $params;
753 return unless ref $params;
754 return unless $params->{'borrowernumber'};
756 return _get_unsent_messages
( { message_transport_type
=> 'rss',
757 limit
=> $params->{'limit'},
758 borrowernumber
=> $params->{'borrowernumber'}, } );
761 =head2 GetPrintMessages
763 my $message_list = GetPrintMessages( { borrowernumber => $borrowernumber } )
765 Returns a arrayref of all queued print messages (optionally, for a particular
770 sub GetPrintMessages
{
771 my $params = shift || {};
773 return _get_unsent_messages
( { message_transport_type
=> 'print',
774 borrowernumber
=> $params->{'borrowernumber'}, } );
777 =head2 GetQueuedMessages ([$hashref])
779 my $messages = GetQueuedMessage( { borrowernumber => '123', limit => 20 } );
781 fetches messages out of the message queue.
784 list of hashes, each has represents a message in the message queue.
788 sub GetQueuedMessages
{
791 my $dbh = C4
::Context
->dbh();
792 my $statement = << 'ENDSQL';
793 SELECT message_id
, borrowernumber
, subject
, content
, message_transport_type
, status
, time_queued
799 if ( exists $params->{'borrowernumber'} ) {
800 push @whereclauses, ' borrowernumber = ? ';
801 push @query_params, $params->{'borrowernumber'};
804 if ( @whereclauses ) {
805 $statement .= ' WHERE ' . join( 'AND', @whereclauses );
808 if ( defined $params->{'limit'} ) {
809 $statement .= ' LIMIT ? ';
810 push @query_params, $params->{'limit'};
813 my $sth = $dbh->prepare( $statement );
814 my $result = $sth->execute( @query_params );
815 return $sth->fetchall_arrayref({});
818 =head2 _add_attachements
821 letter - the standard letter hashref
822 attachments - listref of attachments. each attachment is a hashref of:
823 type - the mime type, like 'text/plain'
824 content - the actual attachment
825 filename - the name of the attachment.
826 message - a MIME::Lite object to attach these to.
828 returns your letter object, with the content updated.
832 sub _add_attachments
{
835 my $letter = $params->{'letter'};
836 my $attachments = $params->{'attachments'};
837 return $letter unless @
$attachments;
838 my $message = $params->{'message'};
840 # First, we have to put the body in as the first attachment
842 Type
=> $letter->{'content-type'} || 'TEXT',
843 Data
=> $letter->{'is_html'}
844 ? _wrap_html
($letter->{'content'}, $letter->{'title'})
845 : $letter->{'content'},
848 foreach my $attachment ( @
$attachments ) {
850 Type
=> $attachment->{'type'},
851 Data
=> $attachment->{'content'},
852 Filename
=> $attachment->{'filename'},
855 # we're forcing list context here to get the header, not the count back from grep.
856 ( $letter->{'content-type'} ) = grep( /^Content-Type:/, split( /\n/, $params->{'message'}->header_as_string ) );
857 $letter->{'content-type'} =~ s/^Content-Type:\s+//;
858 $letter->{'content'} = $message->body_as_string;
864 sub _get_unsent_messages
(;$) {
867 my $dbh = C4
::Context
->dbh();
868 my $statement = << 'ENDSQL';
869 SELECT message_id
, borrowernumber
, subject
, content
, message_transport_type
, status
, time_queued
, from_address
, to_address
, content_type
874 my @query_params = ('pending');
876 if ( $params->{'message_transport_type'} ) {
877 $statement .= ' AND message_transport_type = ? ';
878 push @query_params, $params->{'message_transport_type'};
880 if ( $params->{'borrowernumber'} ) {
881 $statement .= ' AND borrowernumber = ? ';
882 push @query_params, $params->{'borrowernumber'};
884 if ( $params->{'limit'} ) {
885 $statement .= ' limit ? ';
886 push @query_params, $params->{'limit'};
889 $debug and warn "_get_unsent_messages SQL: $statement";
890 $debug and warn "_get_unsent_messages params: " . join(',',@query_params);
891 my $sth = $dbh->prepare( $statement );
892 my $result = $sth->execute( @query_params );
893 return $sth->fetchall_arrayref({});
896 sub _send_message_by_email
($;$$$) {
897 my $message = shift or return;
898 my ($username, $password, $method) = @_;
900 my $to_address = $message->{to_address
};
901 unless ($to_address) {
902 my $member = C4
::Members
::GetMember
( 'borrowernumber' => $message->{'borrowernumber'} );
904 warn "FAIL: No 'to_address' and INVALID borrowernumber ($message->{borrowernumber})";
905 _set_message_status
( { message_id
=> $message->{'message_id'},
906 status
=> 'failed' } );
909 my $which_address = C4
::Context
->preference('AutoEmailPrimaryAddress');
910 # If the system preference is set to 'first valid' (value == OFF), look up email address
911 if ($which_address eq 'OFF') {
912 $to_address = GetFirstValidEmailAddress
( $message->{'borrowernumber'} );
914 $to_address = $member->{$which_address};
916 unless ($to_address) {
917 # warn "FAIL: No 'to_address' and no email for " . ($member->{surname} ||'') . ", borrowernumber ($message->{borrowernumber})";
918 # warning too verbose for this more common case?
919 _set_message_status
( { message_id
=> $message->{'message_id'},
920 status
=> 'failed' } );
925 my $utf8 = decode
('MIME-Header', $message->{'subject'} );
926 $message->{subject
}= encode
('MIME-Header', $utf8);
927 my $subject = encode
('utf8', $message->{'subject'});
928 my $content = encode
('utf8', $message->{'content'});
929 my $content_type = $message->{'content_type'} || 'text/plain; charset="UTF-8"';
930 my $is_html = $content_type =~ m/html/io;
931 my %sendmail_params = (
933 From
=> $message->{'from_address'} || C4
::Context
->preference('KohaAdminEmailAddress'),
936 Message
=> $is_html ? _wrap_html
($content, $subject) : $content,
937 'content-type' => $content_type,
939 $sendmail_params{'Auth'} = {user
=> $username, pass
=> $password, method
=> $method} if $username;
940 if ( my $bcc = C4
::Context
->preference('OverdueNoticeBcc') ) {
941 $sendmail_params{ Bcc
} = $bcc;
944 _update_message_to_address
($message->{'message_id'},$to_address) unless $message->{to_address
}; #if initial message address was empty, coming here means that a to address was found and queue should be updated
945 if ( sendmail
( %sendmail_params ) ) {
946 _set_message_status
( { message_id
=> $message->{'message_id'},
947 status
=> 'sent' } );
950 _set_message_status
( { message_id
=> $message->{'message_id'},
951 status
=> 'failed' } );
952 carp
$Mail::Sendmail
::error
;
958 my ($content, $title) = @_;
960 my $css = C4
::Context
->preference("NoticeCSS") || '';
961 $css = qq{<link rel
="stylesheet" type
="text/css" href
="$css">} if $css;
963 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
964 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
965 <html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
967 <title>$title</title>
968 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
978 sub _send_message_by_sms
($) {
979 my $message = shift or return undef;
980 my $member = C4
::Members
::GetMember
( 'borrowernumber' => $message->{'borrowernumber'} );
981 return unless $member->{'smsalertnumber'};
983 my $success = C4
::SMS
->send_sms( { destination
=> $member->{'smsalertnumber'},
984 message
=> $message->{'content'},
986 _set_message_status
( { message_id
=> $message->{'message_id'},
987 status
=> ($success ?
'sent' : 'failed') } );
991 sub _update_message_to_address
{
993 my $dbh = C4
::Context
->dbh();
994 $dbh->do('UPDATE message_queue SET to_address=? WHERE message_id=?',undef,($to,$id));
997 sub _set_message_status
($) {
998 my $params = shift or return undef;
1000 foreach my $required_parameter ( qw( message_id status ) ) {
1001 return undef unless exists $params->{ $required_parameter };
1004 my $dbh = C4
::Context
->dbh();
1005 my $statement = 'UPDATE message_queue SET status= ? WHERE message_id = ?';
1006 my $sth = $dbh->prepare( $statement );
1007 my $result = $sth->execute( $params->{'status'},
1008 $params->{'message_id'} );