Bug 3186 - invalid or uninstalled SMSSendDriver (or bad number format) causes process...
[koha.git] / tools / viewlog.pl
blob9f68a8ae5ab23605553797f9f8f1ff4d5704a2a1
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 Modern::Perl;
23 use C4::Auth;
24 use CGI;
25 use Text::CSV::Encoded;
26 use C4::Context;
27 use C4::Koha;
28 use C4::Dates;
29 use C4::Output;
30 use C4::Log;
31 use C4::Items;
32 use C4::Branch;
33 use C4::Debug;
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 $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",
62 query => $input,
63 type => "intranet",
64 authnotrequired => 0,
65 flagsrequired => { tools => 'view_system_logs' },
66 debug => 1,
70 if ( $src eq 'circ' ) {
72 # if we were called from circulation, use the circulation menu and get data to populate it -fbcit
73 use C4::Members;
74 use C4::Members::Attributes qw(GetBorrowerAttributes);
75 my $borrowernumber = $object;
76 my $data = GetMember( 'borrowernumber' => $borrowernumber );
77 my ( $picture, $dberror ) = GetPatronImage( $data->{'borrowernumber'} );
78 $template->param( picture => 1 ) if $picture;
80 if ( C4::Context->preference('ExtendedPatronAttributes') ) {
81 my $attributes = GetBorrowerAttributes( $data->{'borrowernumber'} );
82 $template->param(
83 ExtendedPatronAttributes => 1,
84 extendedattributes => $attributes
88 # Computes full borrower address
89 my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $data->{streettype} );
90 my $address = $data->{'streetnumber'} . " $roadtype " . $data->{'address'};
92 $template->param(
93 menu => 1,
94 title => $data->{'title'},
95 initials => $data->{'initials'},
96 surname => $data->{'surname'},
97 othernames => $data->{'othernames'},
98 borrowernumber => $borrowernumber,
99 firstname => $data->{'firstname'},
100 cardnumber => $data->{'cardnumber'},
101 categorycode => $data->{'categorycode'},
102 category_type => $data->{'category_type'},
103 categoryname => $data->{'description'},
104 address => $address,
105 address2 => $data->{'address2'},
106 city => $data->{'city'},
107 state => $data->{'state'},
108 zipcode => $data->{'zipcode'},
109 country => $data->{'country'},
110 phone => $data->{'phone'},
111 phonepro => $data->{'phonepro'},
112 mobile => $data->{'mobile'},
113 email => $data->{'email'},
114 emailpro => $data->{'emailpro'},
115 branchcode => $data->{'branchcode'},
116 branchname => GetBranchName( $data->{'branchcode'} ),
117 RoutingSerials => C4::Context->preference('RoutingSerials'),
121 $template->param(
122 debug => $debug,
123 C4::Search::enabled_staff_search_views,
126 if ($do_it) {
128 my @data;
129 my ( $results, $modules, $action );
130 if ( $action[0] ne '' ) { $action = \@action; } # match All means no limit
131 if ( $modules[0] ne '' ) { $modules = \@modules; } # match All means no limit
132 $results = GetLogs( $datefrom, $dateto, $user, $modules, $action, $object, $info );
133 @data = @$results;
134 foreach my $result (@data) {
136 # Init additional columns for CSV export
137 $result->{'biblionumber'} = q{};
138 $result->{'biblioitemnumber'} = q{};
139 $result->{'barcode'} = q{};
140 $result->{'userfirstname'} = q{};
141 $result->{'usersurname'} = q{};
142 $result->{'borrowerfirstname'} = q{};
143 $result->{'borrowersurname'} = q{};
145 if ( substr( $result->{'info'}, 0, 4 ) eq 'item' || $result->{module} eq "CIRCULATION" ) {
147 # get item information so we can create a working link
148 my $itemnumber = $result->{'object'};
149 $itemnumber = $result->{'info'} if ( $result->{module} eq "CIRCULATION" );
150 my $item = GetItem($itemnumber);
151 if ($item) {
152 $result->{'biblionumber'} = $item->{'biblionumber'};
153 $result->{'biblioitemnumber'} = $item->{'biblionumber'};
154 $result->{'barcode'} = $item->{'barcode'};
158 #always add firstname and surname for librarian/user
159 if ( $result->{'user'} ) {
160 my $userdetails = C4::Members::GetMemberDetails( $result->{'user'} );
161 if ($userdetails) {
162 $result->{'userfirstname'} = $userdetails->{'firstname'};
163 $result->{'usersurname'} = $userdetails->{'surname'};
167 #add firstname and surname for borrower, when using the CIRCULATION, MEMBERS, FINES
168 if ( $result->{module} eq "CIRCULATION" || $result->{module} eq "MEMBERS" || $result->{module} eq "FINES" ) {
169 if ( $result->{'object'} ) {
170 my $borrowerdetails = C4::Members::GetMemberDetails( $result->{'object'} );
171 if ($borrowerdetails) {
172 $result->{'borrowerfirstname'} = $borrowerdetails->{'firstname'};
173 $result->{'borrowersurname'} = $borrowerdetails->{'surname'};
179 if ( $output eq "screen" ) {
181 # Printing results to screen
182 $template->param(
183 logview => 1,
184 total => scalar @data,
185 looprow => \@data,
186 do_it => 1,
187 datefrom => $datefrom,
188 dateto => $dateto,
189 user => $user,
190 object => $object,
191 action => \@action,
192 info => $info,
193 src => $src,
196 # Used modules
197 foreach my $module (@modules) {
198 $template->param( $module => 1 );
201 output_html_with_http_headers $input, $cookie, $template->output;
203 else {
205 # Printing to a csv file
206 my $content = q{};
207 my $delimiter = C4::Context->preference('delimiter') || ',';
208 if (@data) {
209 my $csv = Text::CSV::Encoded->new( { encoding_out => 'utf8', sep_char => $delimiter } );
210 $csv or die "Text::CSV::Encoded->new FAILED: " . Text::CSV::Encoded->error_diag();
212 # First line with heading
213 # Exporting bd id seems useless
214 my @headings = grep { $_ ne 'action_id' } sort keys $data[0];
215 if ( $csv->combine(@headings) ) {
216 $content .= $csv->string() . "\n";
219 # Lines of logs
220 foreach my $line (@data) {
221 my @cells = map { $line->{$_} } @headings;
222 if ( $csv->combine(@cells) ) {
223 $content .= $csv->string() . "\n";
228 # Output
229 print $input->header(
230 -type => 'text/csv',
231 -attachment => $basename . '.csv',
233 print $content;
235 exit;
237 else {
238 output_html_with_http_headers $input, $cookie, $template->output;