Bug 21549: Lock expired patron accounts
[koha.git] / misc / cronjobs / thirdparty / TalkingTech_itiva_inbound.pl
1 #!/usr/bin/perl
2 #
3 # Copyright (C) 2011 ByWater Solutions
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use strict;
21 use warnings;
22
23 BEGIN {
24
25     # find Koha's Perl modules
26     # test carefully before changing this
27     use FindBin;
28     eval { require "$FindBin::Bin/../kohalib.pl" };
29 }
30
31 use Getopt::Long;
32 use Pod::Usage;
33
34 use Koha::Script -cron;
35 use C4::Context;
36
37 sub usage {
38     pod2usage( -verbose => 2 );
39     exit;
40 }
41
42 die
43   "TalkingTechItivaPhoneNotification system preference not activated... dying\n"
44   unless ( C4::Context->preference("TalkingTechItivaPhoneNotification") );
45
46 # Database handle
47 my $dbh = C4::Context->dbh;
48
49 # Benchmarking
50 my $updated = 0;
51 my $total   = 0;
52
53 # Options
54 my $verbose;
55 my $help;
56 my $infile;
57
58 GetOptions(
59     'i|input:s' => \$infile,
60     'v'         => \$verbose,
61     'help|h'    => \$help,
62 );
63
64 die pod2usage() if $help;
65
66 # initialize the input data, either file or query
67 if ( defined $infile ) {
68     open( my $IN, '<', $infile ) || die("Cannot open input file");
69     print "Opening $infile\n" if ( defined $verbose );
70
71     while (<$IN>) {
72
73         # data should take to form "<Transaction ID>","<SUCCESS or FAIL>"
74         s/["\n]//g;    # strip quotes and newlines: they're unnecessary
75         my @data   = split(/,/);
76         my $result = update_notice(@data);
77         $updated += $result;
78         $total++;
79     }
80     close($IN);
81 }
82 else {
83     die pod2usage( -verbose => 1 );
84 }
85
86 print "$updated of $total results lines processed\n" if ( defined $verbose );
87
88 =head1 NAME
89
90 TalkingTech_itiva_inbound.pl
91
92 =head1 SYNOPSIS
93
94   TalkingTech_itiva_inbound.pl
95   TalkingTech_itiva_inbound.pl -v --input=/tmp/talkingtech/results.csv
96
97 Script to process received Results files for Talking Tech i-tiva
98 phone notification system.
99
100 =over 8
101
102 =item B<--help> B<-h>
103
104 Prints this help
105
106 =item B<-v>
107
108 Provide verbose log information.
109
110 =item B<--input> B<-i>
111
112 REQUIRED. Path to incoming results file.
113
114 =back
115
116 =cut
117
118 sub update_notice {
119     my $message_id = shift;
120     my $status     = shift;
121
122     if ( $status =~ m/SUCCESS/i ) {
123         $status = 'sent';
124     }
125     elsif ( $status =~ m/FAIL/i ) {
126         $status = 'failed';
127     }
128     else {
129         warn "unexpected status $status for message ID $message_id\n";
130         return 0;
131     }
132
133     my $query =
134 "UPDATE message_queue SET status = ? WHERE message_id = ? and status = 'pending'";
135     my $sth = $dbh->prepare($query);
136
137     my $result = $sth->execute( $status, $message_id );
138     return $result;
139 }