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 # if we were called from circulation, use the circulation menu and get data to populate it -fbcit
78 use C4::Members::Attributes qw(GetBorrowerAttributes);
79 my $borrowernumber = $object;
80 my $patron = Koha
::Patrons
->find( $borrowernumber );
85 if ( C4
::Context
->preference('ExtendedPatronAttributes') ) {
86 my $attributes = GetBorrowerAttributes
( $borrowernumber );
88 ExtendedPatronAttributes
=> 1,
89 extendedattributes
=> $attributes
95 circulation
=> $circ_info,
101 C4
::Search
::enabled_staff_search_views
,
102 subscriptionsnumber
=> CountSubscriptionFromBiblionumber
($input->param('object')),
107 my $dtf = Koha
::Database
->new->schema->storage->datetime_parser;
110 if ($datefrom and $dateto ) {
111 my $dateto_endday = dt_from_string
($dateto);
112 $dateto_endday->set( # We set last second of day to see all log from that day
117 $search_params{'timestamp'} = {
119 $dtf->format_datetime( dt_from_string
($datefrom) ),
120 $dtf->format_datetime( $dateto_endday ),
123 } elsif ($datefrom) {
124 $search_params{'timestamp'} = {
125 '>=' => $dtf->format_datetime( dt_from_string
($datefrom) )
128 my $dateto_endday = dt_from_string
($dateto);
129 $dateto_endday->set( # We set last second of day to see all log from that day
134 $search_params{'timestamp'} = {
135 '<=' => $dtf->format_datetime( $dateto_endday )
138 $search_params{user
} = $user if $user;
139 $search_params{module
} = { -in => [ @modules ] } if ( defined $modules[0] and $modules[0] ne '' ) ;
140 $search_params{action
} = { -in => [ @actions ] } if ( defined $actions[0] && $actions[0] ne '' );
141 $search_params{object
} = $object if $object;
142 $search_params{info
} = $info if $info;
143 $search_params{interface
} = { -in => [ @interfaces ] } if ( defined $interfaces[0] && $interfaces[0] ne '' );
145 my @logs = Koha
::ActionLogs
->search(\
%search_params);
148 foreach my $log (@logs) {
149 my $result = $log->unblessed;
150 # Init additional columns for CSV export
151 $result->{'biblionumber'} = q{};
152 $result->{'biblioitemnumber'} = q{};
153 $result->{'barcode'} = q{};
155 if ( substr( $log->info, 0, 4 ) eq 'item' || $log->module eq "CIRCULATION" ) {
157 # get item information so we can create a working link
158 my $itemnumber = $log->object;
159 $itemnumber = $log->info if ( $log->module eq "CIRCULATION" );
160 my $item = Koha
::Items
->find($itemnumber);
162 $result->{'biblionumber'} = $item->biblionumber;
163 $result->{'biblioitemnumber'} = $item->biblionumber;
164 $result->{'barcode'} = $item->barcode;
168 #always add firstname and surname for librarian/user
170 my $patron = Koha
::Patrons
->find( $log->user );
172 $result->{librarian
} = $patron;
176 #add firstname and surname for borrower, when using the CIRCULATION, MEMBERS, FINES
177 if ( $log->module eq "CIRCULATION" || $log->module eq "MEMBERS" || $log->module eq "FINES" ) {
178 if ( $log->object ) {
179 my $patron = Koha
::Patrons
->find( $log->object );
181 $result->{patron
} = $patron;
187 if ( $output eq "screen" ) {
189 # Printing results to screen
192 total
=> scalar @data,
195 datefrom
=> $datefrom,
200 modules
=> \
@modules,
201 actions
=> \
@actions,
202 interfaces
=> \
@interfaces
206 foreach my $module (@modules) {
207 $template->param( $module => 1 );
209 output_html_with_http_headers
$input, $cookie, $template->output;
213 # Printing to a csv file
215 my $delimiter = C4
::Context
->preference('delimiter') || ',';
217 my $csv = Text
::CSV
::Encoded
->new( { encoding_out
=> 'utf8', sep_char
=> $delimiter } );
218 $csv or die "Text::CSV::Encoded->new FAILED: " . Text
::CSV
::Encoded
->error_diag();
220 # First line with heading
221 # Exporting bd id seems useless
222 my @headings = grep { $_ ne 'action_id' } sort keys %{$data[0]};
223 if ( $csv->combine(@headings) ) {
224 $content .= $csv->string() . "\n";
228 foreach my $line (@data) {
229 my @cells = map { $line->{$_} } @headings;
230 if ( $csv->combine(@cells) ) {
231 $content .= $csv->string() . "\n";
237 print $input->header(
239 -attachment
=> $basename . '.csv',
246 output_html_with_http_headers
$input, $cookie, $template->output;