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
;
33 use C4
::Search
; # enabled_staff_search_views
34 use Koha
::Patron
::Images
;
36 use vars
qw($debug $cgi_debug);
40 plugin that shows stats
46 $debug or $debug = $cgi_debug;
47 my $do_it = $input->param('do_it');
48 my @modules = $input->multi_param("modules");
49 my $user = $input->param("user") // '';
50 my @actions = $input->multi_param("actions");
51 my $object = $input->param("object");
52 my $info = $input->param("info");
53 my $datefrom = $input->param("from");
54 my $dateto = $input->param("to");
55 my $basename = $input->param("basename");
56 my $output = $input->param("output") || "screen";
57 my $src = $input->param("src") || ""; # this param allows us to be told where we were called from -fbcit
59 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
61 template_name => "tools/viewlog.tt",
65 flagsrequired => { tools => 'view_system_logs' },
70 if ( $src eq 'circ' ) {
72 # if we were called from circulation, use the circulation menu and get data to populate it -fbcit
74 use C4::Members::Attributes qw(GetBorrowerAttributes);
75 my $borrowernumber = $object;
76 my $data = GetMember
( 'borrowernumber' => $borrowernumber );
77 my $patron_image = Koha
::Patron
::Images
->find($data->{borrowernumber
});
78 $template->param( picture
=> 1 ) if $patron_image;
80 if ( C4
::Context
->preference('ExtendedPatronAttributes') ) {
81 my $attributes = GetBorrowerAttributes
( $data->{'borrowernumber'} );
83 ExtendedPatronAttributes
=> 1,
84 extendedattributes
=> $attributes
88 $template->param(%$data);
92 borrowernumber
=> $borrowernumber,
93 categoryname
=> $data->{'description'},
94 branchname
=> GetBranchName
( $data->{'branchcode'} ),
95 RoutingSerials
=> C4
::Context
->preference('RoutingSerials'),
101 C4
::Search
::enabled_staff_search_views
,
108 my ( $results, $modules, $actions );
109 if ( defined $actions[0] && $actions[0] ne '' ) { $actions = \
@actions; } # match All means no limit
110 if ( $modules[0] ne '' ) { $modules = \
@modules; } # match All means no limit
111 $results = GetLogs
( $datefrom, $dateto, $user, $modules, $actions, $object, $info );
113 foreach my $result (@data) {
115 # Init additional columns for CSV export
116 $result->{'biblionumber'} = q{};
117 $result->{'biblioitemnumber'} = q{};
118 $result->{'barcode'} = q{};
119 $result->{'userfirstname'} = q{};
120 $result->{'usersurname'} = q{};
121 $result->{'borrowerfirstname'} = q{};
122 $result->{'borrowersurname'} = q{};
124 if ( substr( $result->{'info'}, 0, 4 ) eq 'item' || $result->{module
} eq "CIRCULATION" ) {
126 # get item information so we can create a working link
127 my $itemnumber = $result->{'object'};
128 $itemnumber = $result->{'info'} if ( $result->{module
} eq "CIRCULATION" );
129 my $item = GetItem
($itemnumber);
131 $result->{'biblionumber'} = $item->{'biblionumber'};
132 $result->{'biblioitemnumber'} = $item->{'biblionumber'};
133 $result->{'barcode'} = $item->{'barcode'};
137 #always add firstname and surname for librarian/user
138 if ( $result->{'user'} ) {
139 my $userdetails = C4
::Members
::GetMemberDetails
( $result->{'user'} );
141 $result->{'userfirstname'} = $userdetails->{'firstname'};
142 $result->{'usersurname'} = $userdetails->{'surname'};
146 #add firstname and surname for borrower, when using the CIRCULATION, MEMBERS, FINES
147 if ( $result->{module
} eq "CIRCULATION" || $result->{module
} eq "MEMBERS" || $result->{module
} eq "FINES" ) {
148 if ( $result->{'object'} ) {
149 my $borrowerdetails = C4
::Members
::GetMemberDetails
( $result->{'object'} );
150 if ($borrowerdetails) {
151 $result->{'borrowerfirstname'} = $borrowerdetails->{'firstname'};
152 $result->{'borrowersurname'} = $borrowerdetails->{'surname'};
158 if ( $output eq "screen" ) {
160 # Printing results to screen
163 total
=> scalar @data,
166 datefrom
=> $datefrom,
171 modules
=> \
@modules,
172 actions
=> \
@actions,
176 foreach my $module (@modules) {
177 $template->param( $module => 1 );
180 output_html_with_http_headers
$input, $cookie, $template->output;
184 # Printing to a csv file
186 my $delimiter = C4
::Context
->preference('delimiter') || ',';
188 my $csv = Text
::CSV
::Encoded
->new( { encoding_out
=> 'utf8', sep_char
=> $delimiter } );
189 $csv or die "Text::CSV::Encoded->new FAILED: " . Text
::CSV
::Encoded
->error_diag();
191 # First line with heading
192 # Exporting bd id seems useless
193 my @headings = grep { $_ ne 'action_id' } sort keys %{$data[0]};
194 if ( $csv->combine(@headings) ) {
195 $content .= $csv->string() . "\n";
199 foreach my $line (@data) {
200 my @cells = map { $line->{$_} } @headings;
201 if ( $csv->combine(@cells) ) {
202 $content .= $csv->string() . "\n";
208 print $input->header(
210 -attachment
=> $basename . '.csv',
217 output_html_with_http_headers
$input, $cookie, $template->output;