6584: Enable searching on Zebra's Bib-level index
[koha.git] / tools / viewlog.pl
blob5c430985dacf0d63312e057d51b7673899f242b4
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 under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 use strict;
22 #use warnings; FIXME - Bug 2505
23 use C4::Auth;
24 use CGI;
25 use C4::Context;
26 use C4::Koha;
27 use C4::Dates;
28 use C4::Output;
29 use C4::Log;
30 use C4::Items;
31 use C4::Branch;
32 use C4::Debug;
33 # use Data::Dumper;
34 use C4::Search; # enabled_staff_search_views
36 use vars qw($debug $cgi_debug);
38 =head1 viewlog.pl
40 plugin that shows stats
42 =cut
44 my $input = new CGI;
46 $debug or $debug = $cgi_debug;
47 my $do_it = $input->param('do_it');
48 my @modules = $input->param("modules");
49 my $user = $input->param("user");
50 my @action = $input->param("action");
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 $del = $input->param("sep");
57 my $output = $input->param("output") || "screen";
58 my $src = $input->param("src"); # this param allows us to be told where we were called from -fbcit
60 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
62 template_name => "tools/viewlog.tmpl",
63 query => $input,
64 type => "intranet",
65 authnotrequired => 0,
66 flagsrequired => { tools => 'view_system_logs' },
67 debug => 1,
71 if ($src eq 'circ') { # if we were called from circulation, use the circulation menu and get data to populate it -fbcit
72 use C4::Members;
73 my $borrowernumber = $object;
74 my $data = GetMember('borrowernumber'=>$borrowernumber);
75 my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'});
76 $template->param( picture => 1 ) if $picture;
77 $template->param( menu => 1,
78 title => $data->{'title'},
79 initials => $data->{'initials'},
80 surname => $data->{'surname'},
81 borrowernumber => $borrowernumber,
82 firstname => $data->{'firstname'},
83 cardnumber => $data->{'cardnumber'},
84 categorycode => $data->{'categorycode'},
85 categoryname => $data->{'description'},
86 address => $data->{'address'},
87 address2 => $data->{'address2'},
88 city => $data->{'city'},
89 state => $data->{'state'},
90 zipcode => $data->{'zipcode'},
91 phone => $data->{'phone'},
92 phonepro => $data->{'phonepro'},
93 email => $data->{'email'},
94 branchcode => $data->{'branchcode'},
95 branchname => GetBranchName($data->{'branchcode'}),
99 $template->param(
100 DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
101 dateformat => C4::Dates->new()->format(),
102 debug => $debug,
103 C4::Search::enabled_staff_search_views,
106 if ($do_it) {
108 my @data;
109 my ($results,$modules,$action);
110 if ($action[0] ne '') { $action = \@action; } # match All means no limit
111 if ($modules[0] ne '') { $modules = \@modules; } # match All means no limit
112 $results = GetLogs($datefrom,$dateto,$user,$modules,$action,$object,$info);
113 @data=@$results;
114 my $total = scalar @data;
115 foreach my $result (@data){
116 if ($result->{'info'} eq 'item'||$result->{module} eq "CIRCULATION"){
117 # get item information so we can create a working link
118 my $itemnumber=$result->{'object'};
119 $itemnumber=$result->{'info'} if ($result->{module} eq "CIRCULATION");
120 my $item=GetItem($itemnumber);
121 $result->{'biblionumber'}=$item->{'biblionumber'};
122 $result->{'biblioitemnumber'}=$item->{'biblionumber'};
126 if ( $output eq "screen" ) {
127 # Printing results to screen
128 $template->param (
129 logview => 1,
130 total => $total,
131 looprow => \@data,
132 do_it => 1,
133 datefrom => $datefrom,
134 dateto => $dateto,
135 user => $user,
136 object => $object,
137 action => \@action,
138 info => $info,
139 src => $src,
141 #module => 'fix this', #this seems unused in actual code
142 foreach my $module (@modules) {
143 $template->param($module => 1);
146 output_html_with_http_headers $input, $cookie, $template->output;
147 } else {
148 # Printing to a csv file
149 print $input->header(
150 -type => 'text/csv',
151 -attachment => "$basename.csv",
152 -filename => "$basename.csv"
154 my $sep = C4::Context->preference("delimiter");
155 foreach my $line (@data) {
156 #next unless $modules[0] eq "catalogue";
157 foreach (qw(timestamp firstname surname action info title author)) {
158 print $line->{$_} . $sep;
162 exit;
163 } else {
164 #my @values;
165 #my %labels;
166 #my %select;
167 #initialize some paramaters that might not be used in the template - it seems to evaluate EXPR even if a false TMPL_IF
168 $template->param(
169 total => 0,
170 module => "",
171 info => ""
173 output_html_with_http_headers $input, $cookie, $template->output;