removed 'use' that was causing redefined sub warning
[koha.git] / tools / viewlog.pl
1 #!/usr/bin/perl
2
3
4 # Copyright 2000-2002 Katipo Communications
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 with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 use strict;
22 use C4::Auth;
23 use CGI;
24 use C4::Context;
25 use C4::Koha;
26 use C4::Dates;
27 use C4::Output;
28 use C4::Log;
29
30 use vars qw($debug);
31
32 BEGIN {
33         $debug = $ENV{DEBUG} || 0;
34 }
35
36 =head1 viewlog.pl
37
38 plugin that shows a stats on borrowers
39
40 =cut
41
42 my $input    = new CGI;
43 $debug or $debug = $input->param('debug') || 0;
44 my $do_it    = $input->param('do_it');
45 my $module   = $input->param("module");
46 my $user     = $input->param("user");
47 my $action   = $input->param("action");
48 my $object   = $input->param("object");
49 my $info     = $input->param("info");
50 my $datefrom = $input->param("from");
51 my $dateto   = $input->param("to");
52 my $basename = $input->param("basename");
53 my $mime     = $input->param("MIME");
54 my $del      = $input->param("sep");
55 my $output   = $input->param("output") || "screen";
56
57 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
58     {
59         template_name   => "tools/viewlog.tmpl",
60         query           => $input,
61         type            => "intranet",
62         authnotrequired => 0,
63         flagsrequired   => { tools => 1 },
64         debug           => 1,
65     }
66 );
67
68 $template->param(
69         DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
70                       dateformat => C4::Dates->new()->format(),
71                                        debug => $debug,
72 );
73
74 if ($do_it) {
75
76     my $results = GetLogs($datefrom,$dateto,$user,$module,$action,$object,$info);
77     my $total = scalar @$results;
78     
79     if ( $output eq "screen" ) {
80         # Printing results to screen
81         $template->param (
82             total    => $total,
83             $module  => 1,
84             looprow  => $results,
85             do_it    => 1,
86             datefrom => $datefrom,
87             dateto   => $dateto,
88             user     => $user,
89             module   => $module,
90             object   => $object,
91             action   => $action,
92             info     => $info,
93         );
94         output_html_with_http_headers $input, $cookie, $template->output;
95     } else {
96         # Printing to a csv file
97         print $input->header(
98             -type       => 'application/vnd.sun.xml.calc',
99             -attachment => "$basename.csv",
100             -filename   => "$basename.csv"
101         );
102         my $sep = C4::Context->preference("delimiter");
103         foreach my $line (@$results) {
104             ($module eq "catalogue") or next;
105                         foreach (qw(timestamp firstname surname action info title author)) {
106                                 print $line->{$_} . $sep;
107                         }       
108                 }
109     }
110         exit;
111 } else {
112     my @values;
113     my %labels;
114     my %select;
115     my @mime = ( C4::Context->preference("MIME") );
116     my $CGIextChoice = CGI::scrolling_list(
117         -name     => 'MIME',
118         -id       => 'MIME',
119         -values   => \@mime,
120         -size     => 1,
121         -multiple => 0
122     );
123     my @dels         = ( C4::Context->preference("delimiter") );
124     my $CGIsepChoice = CGI::scrolling_list(
125         -name     => 'sep',
126         -id       => 'sep',
127         -values   => \@dels,
128         -size     => 1,
129         -multiple => 0
130     );
131     $template->param(
132         total        => 0,
133         CGIextChoice => $CGIextChoice,
134         CGIsepChoice => $CGIsepChoice,
135     );
136     output_html_with_http_headers $input, $cookie, $template->output;
137 }