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>.
25 use Text
::CSV
::Encoded
;
32 use C4
::Search
; # enabled_staff_search_views
40 use vars
qw($debug $cgi_debug);
44 plugin that shows stats
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 $info = $input->param("info");
58 my $datefrom = $input->param("from");
59 my $dateto = $input->param("to");
60 my $basename = $input->param("basename");
61 my $output = $input->param("output") || "screen";
62 my $src = $input->param("src") || ""; # this param allows us to be told where we were called from -fbcit
64 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
66 template_name => "tools/viewlog.tt",
70 flagsrequired => { tools => 'view_system_logs' },
75 if ( $src eq 'circ' ) {
77 my $borrowernumber = $object;
78 my $patron = Koha::Patrons->find( $borrowernumber );
86 circulation => $circ_info,
92 C4::Search::enabled_staff_search_views,
93 subscriptionsnumber => CountSubscriptionFromBiblionumber(scalar $input->param('object')),
98 my $dtf = Koha::Database->new->schema->storage->datetime_parser;
101 if ($datefrom and $dateto ) {
102 my $dateto_endday = dt_from_string($dateto);
103 $dateto_endday->set( # We set last second of day to see all log from that day
108 $search_params{'timestamp'} = {
110 $dtf->format_datetime( dt_from_string($datefrom) ),
111 $dtf->format_datetime( $dateto_endday ),
114 } elsif ($datefrom) {
115 $search_params{'timestamp'} = {
116 '>=' => $dtf->format_datetime( dt_from_string($datefrom) )
119 my $dateto_endday = dt_from_string($dateto);
120 $dateto_endday->set( # We set last second of day to see all log from that day
125 $search_params{'timestamp'} = {
126 '<=' => $dtf->format_datetime( $dateto_endday )
129 # Circulation uses RENEWAL, but Patrons uses RENEW, this helps to find both
130 if ( grep { $_ eq 'RENEW'} @actions ) { push @actions, 'RENEWAL' };
132 $search_params{user} = $user if $user;
133 $search_params{module} = { -in => [ @modules ] } if ( defined $modules[0] and $modules[0] ne '' ) ;
134 $search_params{action} = { -in => [ @actions ] } if ( defined $actions[0] && $actions[0] ne '' );
135 $search_params{object} = $object if $object;
136 $search_params{info} = $info if $info;
137 $search_params{interface} = { -in => [ @interfaces ] } if ( defined $interfaces[0] && $interfaces[0] ne '' );
139 my @logs = Koha::ActionLogs->search(\%search_params);
142 foreach my $log (@logs) {
143 my $result = $log->unblessed;
144 # Init additional columns for CSV export
145 $result->{'biblionumber'} = q{};
146 $result->{'biblioitemnumber'} = q{};
147 $result->{'barcode'} = q{};
149 if ( substr( $log->info, 0, 4 ) eq 'item' || $log->module eq "CIRCULATION" ) {
151 # get item information so we can create a working link
152 my $itemnumber = $log->object;
153 $itemnumber = $log->info if ( $log->module eq "CIRCULATION" );
154 my $item = Koha
::Items
->find($itemnumber);
156 $result->{'biblionumber'} = $item->biblionumber;
157 $result->{'biblioitemnumber'} = $item->biblionumber;
158 $result->{'barcode'} = $item->barcode;
162 #always add firstname and surname for librarian/user
164 my $patron = Koha
::Patrons
->find( $log->user );
166 $result->{librarian
} = $patron;
170 #add firstname and surname for borrower, when using the CIRCULATION, MEMBERS, FINES
171 if ( $log->module eq "CIRCULATION" || $log->module eq "MEMBERS" || $log->module eq "FINES" ) {
172 if ( $log->object ) {
173 my $patron = Koha
::Patrons
->find( $log->object );
175 $result->{patron
} = $patron;
181 if ( $output eq "screen" ) {
183 # Printing results to screen
186 total
=> scalar @data,
189 datefrom
=> $datefrom,
194 modules
=> \
@modules,
195 actions
=> \
@actions,
196 interfaces
=> \
@interfaces
200 foreach my $module (@modules) {
201 $template->param( $module => 1 );
203 output_html_with_http_headers
$input, $cookie, $template->output;
207 # Printing to a csv file
209 my $delimiter = C4
::Context
->preference('delimiter') || ',';
211 my $csv = Text
::CSV
::Encoded
->new( { encoding_out
=> 'utf8', sep_char
=> $delimiter } );
212 $csv or die "Text::CSV::Encoded->new FAILED: " . Text
::CSV
::Encoded
->error_diag();
214 # First line with heading
215 # Exporting bd id seems useless
216 my @headings = grep { $_ ne 'action_id' } sort keys %{$data[0]};
217 if ( $csv->combine(@headings) ) {
218 $content .= $csv->string() . "\n";
222 foreach my $line (@data) {
223 my @cells = map { $line->{$_} } @headings;
224 if ( $csv->combine(@cells) ) {
225 $content .= $csv->string() . "\n";
231 print $input->header(
233 -attachment
=> $basename . '.csv',
240 output_html_with_http_headers
$input, $cookie, $template->output;