Bug 9108: Followup: send the dateformat value from C4::Auth
[koha.git] / tools / viewlog.pl
1 #!/usr/bin/perl
2
3 # Copyright 2010 BibLibre
4 # Copyright 2011 MJ Ray and software.coop
5 #
6 # This file is part of Koha.
7 #
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.
12 #
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.
16 #
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.
20
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
35
36 use vars qw($debug $cgi_debug);
37
38 =head1 viewlog.pl
39
40 plugin that shows stats
41
42 =cut
43
44 my $input    = new CGI;
45
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
59
60 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
61     {
62         template_name   => "tools/viewlog.tmpl",
63         query           => $input,
64         type            => "intranet",
65         authnotrequired => 0,
66         flagsrequired   => { tools => 'view_system_logs' },
67         debug           => 1,
68     }
69 );
70
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     
78     $template->param(   menu            => 1,
79                         title           => $data->{'title'},
80                         initials        => $data->{'initials'},
81                         surname         => $data->{'surname'},
82                         othernames      => $data->{'othernames'},
83                         borrowernumber  => $borrowernumber,
84                         firstname       => $data->{'firstname'},
85                         cardnumber      => $data->{'cardnumber'},
86                         categorycode    => $data->{'categorycode'},
87                         category_type   => $data->{'category_type'},
88                         categoryname    => $data->{'description'},
89                         address         => $data->{'address'},
90                         address2        => $data->{'address2'},
91                         city            => $data->{'city'},
92                         state           => $data->{'state'},
93                         zipcode         => $data->{'zipcode'},
94                         phone           => $data->{'phone'},
95                         phonepro        => $data->{'phonepro'},
96                         email           => $data->{'email'},
97                         branchcode      => $data->{'branchcode'},
98                         branchname              => GetBranchName($data->{'branchcode'}),
99     );
100 }
101
102 $template->param(
103     debug => $debug,
104     C4::Search::enabled_staff_search_views,
105 );
106
107 if ($do_it) {
108
109     my @data;
110     my ($results,$modules,$action);
111     if ($action[0] ne '') { $action = \@action; } # match All means no limit
112     if ($modules[0] ne '') { $modules = \@modules; } # match All means no limit
113     $results = GetLogs($datefrom,$dateto,$user,$modules,$action,$object,$info);
114     @data=@$results;
115     my $total = scalar @data;
116     foreach my $result (@data){
117         if ($result->{'info'} eq 'item'||$result->{module} eq "CIRCULATION"){
118             # get item information so we can create a working link
119         my $itemnumber=$result->{'object'};
120         $itemnumber=$result->{'info'} if ($result->{module} eq "CIRCULATION");
121             my $item=GetItem($itemnumber);
122             $result->{'biblionumber'}=$item->{'biblionumber'};
123             $result->{'biblioitemnumber'}=$item->{'biblionumber'};              
124         $result->{'barcode'}=$item->{'barcode'};
125         }
126     }
127     
128     if ( $output eq "screen" ) {
129         # Printing results to screen
130         $template->param (
131                         logview => 1,
132             total    => $total,
133             looprow  => \@data,
134             do_it    => 1,
135             datefrom => $datefrom,
136             dateto   => $dateto,
137             user     => $user,
138             object   => $object,
139             action   => \@action,
140             info     => $info,
141             src      => $src,
142         );
143             #module   => 'fix this', #this seems unused in actual code
144         foreach my $module (@modules) {
145                 $template->param($module  => 1);
146         }
147
148         output_html_with_http_headers $input, $cookie, $template->output;
149     } else {
150         # Printing to a csv file
151         print $input->header(
152             -type       => 'text/csv',
153             -attachment => "$basename.csv",
154             -filename   => "$basename.csv"
155         );
156         my $sep = C4::Context->preference("delimiter");
157         foreach my $line (@data) {
158             #next unless $modules[0] eq "catalogue";
159                 foreach (qw(timestamp firstname surname action info title author)) {
160                         print $line->{$_} . $sep;
161                 }       
162         }
163     }
164         exit;
165 } else {
166     #my @values;
167     #my %labels;
168     #my %select;
169         #initialize some paramaters that might not be used in the template - it seems to evaluate EXPR even if a false TMPL_IF
170         $template->param(
171                 total => 0,
172                 module => "",
173                 info => ""
174         );
175         output_html_with_http_headers $input, $cookie, $template->output;
176 }