2ef2a1433fae494072da20e275b42d49c647bacb
[koha.git] / stats / monthly_new_patron_statistics.pl
1 #!/usr/bin/perl
2 #-----------------------------------
3 # Script Name: borrstats.pl
4 # Script Version: 1.0
5 # Date:  2006/02/24
6 # Author:  Stephen Hedges (shedges@skemotah.com)
7 # Description: 
8 #       This script creates a comma-separated value file of
9 #       new borrower statistics for any given month and year.
10 #       The statistics are grouped by borrower type, then by
11 #       branch.
12 # Revision History:
13 #    1.0  2006/02/24: original version
14 #-----------------------------------
15 # Contributed 2003-6 by Skemotah Solutions
16 #
17 # This file is part of Koha.
18 #
19 # Koha is free software; you can redistribute it and/or modify it under the
20 # terms of the GNU General Public License as published by the Free Software
21 # Foundation; either version 2 of the License, or (at your option) any later
22 # version.
23 #
24 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
25 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
26 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
27 #
28 # You should have received a copy of the GNU General Public License along with
29 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
30 # Suite 330, Boston, MA  02111-1307 USA
31
32 # use strict;
33 use warnings;
34
35 # UNCOMMENT the following lines if running from a command line
36 # print "THIS SCRIPT produces a comma-separated values file of circulation statistics for a given month and year.\n\nDo you wish to continue? (y/n) ";
37 # chomp($_ = <STDIN>);
38 # die unless (/^y/i);
39
40 # UNCOMMENT the following lines if getting old stats (but be aware that renewal numbers are affected by deletes)
41 # YOU WILL also need to modify the SQLs to use these dates
42 # my ($month,$year);
43 # print "Get statistics for which month (1 to 12)? ";
44 # chomp($month = <STDIN>);
45 # die if ($month < 1 || $month > 12);
46 # print "Get statistics for which year (2000 to 2050)? ";
47 # chomp($year = <STDIN>);
48 # die if ($year < 2000 || $year > 2050);
49
50 open OUTFILE, ">borrstats.csv" or die "Cannot open file borrstats.csv: $!";
51 print OUTFILE "\"type\",\"branch\",\"count\"\n";
52
53 use C4::Context;
54 use Mail::Sendmail;  # comment out 3 lines if not doing e-mail sending of file
55 use MIME::QuotedPrint;
56 use MIME::Base64;
57 # set the e-mail server -- comment out if not doing e-mail notices
58 unshift @{$Mail::Sendmail::mailcfg{'smtp'}} , 'localhost';
59 #                                         set your own mail server name here
60
61 my $dbh = C4::Context->dbh;
62 my $sth1 = $dbh->prepare ("SELECT categorycode FROM categories ORDER BY categorycode");
63 my $sth2 = $dbh->prepare ("SELECT branchcode,COUNT(branchcode) FROM borrowers WHERE categorycode=? AND YEAR(dateenrolled)=YEAR(SUBDATE(CURDATE(),INTERVAL 1 MONTH)) AND MONTH(dateenrolled)=MONTH(SUBDATE(CURDATE(),INTERVAL 1 MONTH)) GROUP BY branchcode");
64
65 my ($rowc,$rowb,$categorycode,$branchcode,$count,$line);
66
67 $sth1->execute();
68
69 while ($rowc = $sth1->fetchrow_arrayref) {
70     $categorycode = $rowc->[0];
71     $line = "\"$categorycode\"";
72     
73     $sth2->execute($categorycode);
74
75     while ($rowb = $sth2->fetchrow_arrayref) {
76         $branchcode = $rowb->[0];
77         $count = $rowb->[1];
78
79         $line = $line . ",\"$branchcode\",\"$count\"";
80     }
81     $sth2->finish;
82
83     $line = $line . "\n";
84     print OUTFILE "$line";
85 }
86 $sth1->finish;
87 close OUTFILE;
88 $dbh->disconnect;
89
90 # send the outfile as an attachment to the library e-mail
91
92 my %attachmail = (
93          from => $from_address,
94          to => $to_addresses,
95          subject => 'New Patrons Statistics',
96         );
97
98
99 my $boundary = "====" . time() . "====";
100 $attachmail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
101
102 my $attachmessage = "Attached is the file of new borrower statistics for the previous month. Please open the statistics spreadsheet for Page 2, open this file in a new spreadsheet, and paste the numbers from this file into the statistics spreadsheet.\n";
103
104 my $attachfile = "borrstats.csv"; 
105
106 open (F, $attachfile) or die "Cannot read $attachfile: $!";
107 binmode F; undef $/;
108 $attachmail{body} = encode_base64(<F>);
109 close F;
110
111 $boundary = '--'.$boundary;
112 $attachmail{body} = <<END_OF_BODY;
113 $boundary
114 Content-Type: text/plain; charset="iso-8859-1"
115 Content-Transfer-Encoding: quoted-printable
116
117 $attachmessage
118 $boundary
119 Content-Type: application/octet-stream; name="borrstats.csv"
120 Content-Transfer-Encoding: base64
121 Content-Disposition: attachment; filename="borrstats.csv"
122
123 $attachmail{body}
124 $boundary--
125 END_OF_BODY
126
127 sendmail(%attachmail) || print "Error: $Mail::Sendmail::error\n";
128