Bug 30572: Adjust search_marc_to_field.sort in kohastructure
[koha.git] / misc / cronjobs / patron_emailer.pl
1 #!/usr/bin/perl
2
3 #
4 # This file is part of Koha.
5 #
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18
19 use Modern::Perl;
20
21 use Koha::Script -cron;
22 use Getopt::Long qw( GetOptions );
23 use Pod::Usage qw( pod2usage );
24
25 use C4::Log qw( cronlogaction );
26 use C4::Reports::Guided qw( EmailReport );
27
28 cronlogaction();
29
30 =head1 NAME
31
32 patron_emailer.pl
33
34 =head1 SYNOPSIS
35
36 patron_emailer.pl
37     [--report ][--notice][--module] --library  --from
38
39  Options:
40     --help                       brief help
41     --report                     report ID to use as data for email template
42     --notice                     specific notice code to use
43     --module                     which module to find the above notice in
44     --library                    specified branch for selecting notice, will use all libraries by default
45     --from                       specified email for 'from' address, report column 'from' used if not specified
46     --email                      specified column to use as 'to' email address, report column 'email' used if not specified
47     --verbose                    increased verbosity, will print notices and errors
48     --commit                     send emails, without this script will only report
49
50 =head1 OPTIONS
51
52 =over 8
53
54 =item B<-help>
55
56 Print brief help and exit.
57
58 =item B<-man>
59
60 Print full documentation and exit.
61
62 =item B<-report>
63
64 Specify a saved SQL report id in the Koha system to user for the emails. All, and only,
65     columns in the report will be available for notice template variables
66
67 =item B<-notice>
68
69 Specific notice (CODE) to select
70
71 =item B<-module>
72
73 Which module to find the specified notice in
74
75 =item B<-library>
76
77 Option to specify which branches notice should be used, 'All libraries' is used if not specified
78
79 =item B<-from>
80
81 Specify the sender address of the email, if not specified a 'from' column in the report will be used.
82
83 =item B<-email>
84
85 Specify the column to find recipient address of the email, if not specified an 'email' column in the report will be used.
86
87 =item B<-verbose>
88
89 Increased verbosity, reports successes and errors.
90
91 =item B<-commit>
92
93 Send emails, if omitted script will report as verbose.
94
95 =back
96
97 =cut
98
99 my $help     = 0;
100 my $report_id;
101 my $notice;
102 my $module;  #this is only for selecting correct notice - report itself defines available columns, not module
103 my $library; #as above, determines which notice to use, will use 'all libraries' if not specified
104 my $email;   #to specify which column should be used as email in report will use 'email' from borrwers table
105 my $from;    #to specify from address, will expect 'from' column in report if not specified
106 my $verbose  = 0;
107 my $commit   = 0;
108
109 my $error_msgs = {
110     MISSING_PARAMS => "You must supply a report ID, letter module and code at minimum\n",
111     NO_LETTER      => "The specified letter was not found, please check your input\n",
112     NO_REPORT      => "The specified report was not found, please check your input\n",
113     REPORT_FAIL    => "There was an error running the report, please check your SQL\n",
114     NO_BOR_COL     => "There was no borrowernumber found for row ",
115     NO_EMAIL_COL   => "There was no email found for row ",
116     NO_FROM_COL    => "No from email was specified for row ",
117     NO_BOR         => "There is no borrower with borrowernumber "
118 };
119
120 GetOptions(
121     'help|?'      => \$help,
122     'report=i'    => \$report_id,
123     'notice=s'    => \$notice,
124     'module=s'    => \$module,
125     'library=s'   => \$library,
126     'email=s'     => \$email,
127     'from=s'      => \$from,
128     'verbose'     => \$verbose,
129     'commit'      => \$commit
130 ) or pod2usage(1);
131 pod2usage(1) if $help;
132 pod2usage(1) unless $report_id && $notice && $module;
133
134 my ( $emails, $errors ) = C4::Reports::Guided::EmailReport({
135     email      => $email,
136     from       => $from,
137     report_id  => $report_id,
138     module     => $module,
139     code       => $notice,
140     branch     => $library,
141     verbose    => $verbose,
142     commit     => $commit,
143 });
144
145 foreach my $email (@$emails){
146     print "No emails will be sent!\n" unless $commit;
147     if( $verbose || !$commit ){
148         print "Email generated to $email->{to_address} from $email->{from_address}\n";
149         print "Content:\n";
150         print $email->{letter}->{content} ."\n";
151     }
152     C4::Letters::EnqueueLetter({
153         letter => $email->{letter},
154         borrowernumber         => $email->{borrowernumber},
155         message_transport_type => 'email',
156         from_address           => $email->{from_address},
157         to_address             => $email->{to_address},
158     }) if $commit;
159 }
160
161 if( $verbose || !$commit ){
162     foreach my $error ( @$errors ){
163         foreach ( keys %{$error} ){
164             print "$_\n";
165             if ( $_ eq 'FATAL' ) { print $error_msgs->{ ${$error}{$_} } }
166             else { print $error_msgs->{$_} . ${$error}{$_} . "\n" }
167         }
168     }
169 }