Merge remote-tracking branch 'origin/new/bug_7143'
[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         DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
104                       dateformat => C4::Dates->new()->format(),
105                                        debug => $debug,
106         C4::Search::enabled_staff_search_views,
107 );
108
109 if ($do_it) {
110
111     my @data;
112     my ($results,$modules,$action);
113     if ($action[0] ne '') { $action = \@action; } # match All means no limit
114     if ($modules[0] ne '') { $modules = \@modules; } # match All means no limit
115     $results = GetLogs($datefrom,$dateto,$user,$modules,$action,$object,$info);
116     @data=@$results;
117     my $total = scalar @data;
118     foreach my $result (@data){
119         if ($result->{'info'} eq 'item'||$result->{module} eq "CIRCULATION"){
120             # get item information so we can create a working link
121         my $itemnumber=$result->{'object'};
122         $itemnumber=$result->{'info'} if ($result->{module} eq "CIRCULATION");
123             my $item=GetItem($itemnumber);
124             $result->{'biblionumber'}=$item->{'biblionumber'};
125             $result->{'biblioitemnumber'}=$item->{'biblionumber'};              
126         $result->{'barcode'}=$item->{'barcode'};
127         }
128     }
129     
130     if ( $output eq "screen" ) {
131         # Printing results to screen
132         $template->param (
133                         logview => 1,
134             total    => $total,
135             looprow  => \@data,
136             do_it    => 1,
137             datefrom => $datefrom,
138             dateto   => $dateto,
139             user     => $user,
140             object   => $object,
141             action   => \@action,
142             info     => $info,
143             src      => $src,
144         );
145             #module   => 'fix this', #this seems unused in actual code
146         foreach my $module (@modules) {
147                 $template->param($module  => 1);
148         }
149
150         output_html_with_http_headers $input, $cookie, $template->output;
151     } else {
152         # Printing to a csv file
153         print $input->header(
154             -type       => 'text/csv',
155             -attachment => "$basename.csv",
156             -filename   => "$basename.csv"
157         );
158         my $sep = C4::Context->preference("delimiter");
159         foreach my $line (@data) {
160             #next unless $modules[0] eq "catalogue";
161                 foreach (qw(timestamp firstname surname action info title author)) {
162                         print $line->{$_} . $sep;
163                 }       
164         }
165     }
166         exit;
167 } else {
168     #my @values;
169     #my %labels;
170     #my %select;
171         #initialize some paramaters that might not be used in the template - it seems to evaluate EXPR even if a false TMPL_IF
172         $template->param(
173                 total => 0,
174                 module => "",
175                 info => ""
176         );
177         output_html_with_http_headers $input, $cookie, $template->output;
178 }