Bug 24591: Add --help option to misc/devel/get-prepared-letter.pl
[koha.git] / tools / viewlog.pl
blobeb1a6900a47d56672844ece116910bcef7bbde19
1 #!/usr/bin/perl
3 # Copyright 2010 BibLibre
4 # Copyright 2011 MJ Ray and software.coop
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 use Modern::Perl;
23 use C4::Auth;
24 use CGI qw ( -utf8 );
25 use Text::CSV::Encoded;
26 use C4::Context;
27 use C4::Koha;
28 use C4::Output;
29 use C4::Items;
30 use C4::Serials;
31 use C4::Debug;
32 use C4::Search; # enabled_staff_search_views
34 use Koha::ActionLogs;
35 use Koha::Database;
36 use Koha::DateUtils;
37 use Koha::Items;
38 use Koha::Patrons;
40 use vars qw($debug $cgi_debug);
42 =head1 viewlog.pl
44 plugin that shows stats
46 =cut
48 my $input = new CGI;
50 $debug or $debug = $cgi_debug;
51 my $do_it = $input->param('do_it');
52 my @modules = $input->multi_param("modules");
53 my $user = $input->param("user") // '';
54 my @actions = $input->multi_param("actions");
55 my @interfaces = $input->multi_param("interfaces");
56 my $object = $input->param("object");
57 my $object_type = $input->param("object_type") // '';
58 my $info = $input->param("info");
59 my $datefrom = $input->param("from");
60 my $dateto = $input->param("to");
61 my $basename = $input->param("basename");
62 my $output = $input->param("output") || "screen";
63 my $src = $input->param("src") || ""; # this param allows us to be told where we were called from -fbcit
65 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
67 template_name => "tools/viewlog.tt",
68 query => $input,
69 type => "intranet",
70 authnotrequired => 0,
71 flagsrequired => { tools => 'view_system_logs' },
72 debug => 1,
76 if ( $src eq 'circ' ) {
78 my $borrowernumber = $object;
79 my $patron = Koha::Patrons->find( $borrowernumber );
80 my $circ_info = 1;
81 unless ( $patron ) {
82 $circ_info = 0;
85 $template->param(
86 patron => $patron,
87 circulation => $circ_info,
91 $template->param(
92 debug => $debug,
93 C4::Search::enabled_staff_search_views,
94 subscriptionsnumber => CountSubscriptionFromBiblionumber(scalar $input->param('object')),
95 object => $object,
98 if ($do_it) {
99 my $dtf = Koha::Database->new->schema->storage->datetime_parser;
100 my %search_params;
102 if ($datefrom and $dateto ) {
103 my $dateto_endday = dt_from_string($dateto);
104 $dateto_endday->set( # We set last second of day to see all log from that day
105 hour => 23,
106 minute => 59,
107 second => 59
109 $search_params{'timestamp'} = {
110 -between => [
111 $dtf->format_datetime( dt_from_string($datefrom) ),
112 $dtf->format_datetime( $dateto_endday ),
115 } elsif ($datefrom) {
116 $search_params{'timestamp'} = {
117 '>=' => $dtf->format_datetime( dt_from_string($datefrom) )
119 } elsif ($dateto) {
120 my $dateto_endday = dt_from_string($dateto);
121 $dateto_endday->set( # We set last second of day to see all log from that day
122 hour => 23,
123 minute => 59,
124 second => 59
126 $search_params{'timestamp'} = {
127 '<=' => $dtf->format_datetime( $dateto_endday )
130 # Circulation uses RENEWAL, but Patrons uses RENEW, this helps to find both
131 if ( grep { $_ eq 'RENEW'} @actions ) { push @actions, 'RENEWAL' };
133 $search_params{user} = $user if $user;
134 $search_params{module} = { -in => [ @modules ] } if ( defined $modules[0] and $modules[0] ne '' ) ;
135 $search_params{action} = { -in => [ @actions ] } if ( defined $actions[0] && $actions[0] ne '' );
136 $search_params{interface} = { -in => [ @interfaces ] } if ( defined $interfaces[0] && $interfaces[0] ne '' );
138 if ( @modules == 1 && $object_type eq 'biblio' ) {
139 # Handle 'Modification log' from cataloguing
140 my @itemnumbers = Koha::Items->search({ biblionumber => $object })->get_column('itemnumber');
141 $search_params{'-or'} = [
142 { -and => { object => $object, info => { -like => 'biblio%' }}},
143 { -and => { object => \@itemnumbers, info => { -like => 'item%' }}},
145 } else {
146 $search_params{info} = { -like => '%' . $info . '%' } if $info;
147 $search_params{object} = $object if $object;
150 my @logs = Koha::ActionLogs->search(\%search_params);
152 my @data;
153 foreach my $log (@logs) {
154 my $result = $log->unblessed;
155 # Init additional columns for CSV export
156 $result->{'biblionumber'} = q{};
157 $result->{'biblioitemnumber'} = q{};
158 $result->{'barcode'} = q{};
160 if ( substr( $log->info, 0, 4 ) eq 'item' || $log->module eq "CIRCULATION" ) {
162 # get item information so we can create a working link
163 my $itemnumber = $log->object;
164 $itemnumber = $log->info if ( $log->module eq "CIRCULATION" );
165 my $item = Koha::Items->find($itemnumber);
166 if ($item) {
167 $result->{'biblionumber'} = $item->biblionumber;
168 $result->{'biblioitemnumber'} = $item->biblionumber;
169 $result->{'barcode'} = $item->barcode;
173 #always add firstname and surname for librarian/user
174 if ( $log->user ) {
175 my $patron = Koha::Patrons->find( $log->user );
176 if ($patron && $output eq 'screen') {
177 $result->{librarian} = $patron;
181 #add firstname and surname for borrower, when using the CIRCULATION, MEMBERS, FINES
182 if ( $log->module eq "CIRCULATION" || $log->module eq "MEMBERS" || $log->module eq "FINES" ) {
183 if ( $log->object ) {
184 my $patron = Koha::Patrons->find( $log->object );
185 if ($patron && $output eq 'screen') {
186 $result->{patron} = $patron;
190 push @data, $result;
192 if ( $output eq "screen" ) {
194 # Printing results to screen
195 $template->param(
196 logview => 1,
197 total => scalar @data,
198 looprow => \@data,
199 do_it => 1,
200 datefrom => $datefrom,
201 dateto => $dateto,
202 user => $user,
203 info => $info,
204 src => $src,
205 modules => \@modules,
206 actions => \@actions,
207 interfaces => \@interfaces
210 # Used modules
211 foreach my $module (@modules) {
212 $template->param( $module => 1 );
214 output_html_with_http_headers $input, $cookie, $template->output;
216 else {
218 # Printing to a csv file
219 my $content = q{};
220 my $delimiter = C4::Context->preference('delimiter') || ',';
221 if (@data) {
222 my $csv = Text::CSV::Encoded->new( { encoding_out => 'utf8', sep_char => $delimiter } );
223 $csv or die "Text::CSV::Encoded->new FAILED: " . Text::CSV::Encoded->error_diag();
225 # First line with heading
226 # Exporting bd id seems useless
227 my @headings = grep { $_ ne 'action_id' } sort keys %{$data[0]};
228 if ( $csv->combine(@headings) ) {
229 $content .= $csv->string() . "\n";
232 # Lines of logs
233 foreach my $line (@data) {
234 my @cells = map { $line->{$_} } @headings;
235 if ( $csv->combine(@cells) ) {
236 $content .= $csv->string() . "\n";
241 # Output
242 print $input->header(
243 -type => 'text/csv',
244 -attachment => $basename . '.csv',
246 print $content;
248 exit;
250 else {
251 output_html_with_http_headers $input, $cookie, $template->output;