# -- # Kernel/Modules/SystemStatsGeneric.pm - generic pure SQL stats module # Copyright (C) 2001-2009 OTRS AG, http://otrs.org/ # -- # $Id: SystemStatsGeneric.pm,v 1.16 2009/02/16 12:50:17 tr Exp $ # -- # This software comes with ABSOLUTELY NO WARRANTY. For details, see # the enclosed file COPYING for license information (AGPL). If you # did not receive this file, see http://www.gnu.org/licenses/agpl.txt. # -- # # Description: copy this file into Kernel/Modules/ and change the # config options ($Title, $DetailText, $SQL, ...) below. # # Add a html link to your OTRS agent frontend, e. g. # Your Stats # and you will get your printable pure SQL stats. # # If you want a CSV file add the param CSV=1 to your html link e. g. # Your CVS Stats File # # -- package Kernel::Modules::SystemStatsGeneric; use strict; use warnings; use vars qw($VERSION); $VERSION = qw($Revision: 1.16 $) [1]; sub new { my ( $Type, %Param ) = @_; # allocate new hash for object my $Self = {%Param}; bless( $Self, $Type ); # check all needed objects for (qw(ParamObject DBObject QueueObject LayoutObject ConfigObject LogObject TimeObject)) { die "Got no $_" if !$Self->{$_}; } $Self->{CSV} = $Self->{ParamObject}->GetParam( Param => 'CSV' ) || 0; return $Self; } sub Run { my ( $Self, %Param ) = @_; # ------------------------------------------------------------------------------ # # Config options! # ------------------------------------------------------------------------------ # my $Title = 'Name of Stats'; my $DetailText = 'Some text about the content! $Data{"Records"} database records - ($Text{"Stand"}: $Env{"Time"})'; my $CSVFile = 'csv-file'; my $SQLLimit = 5000; my $SQL = qq|SELECT * FROM users|; my $Group = 'stats'; # ------------------------------------------------------------------------------ # # permission check (user need to be rw in group stats) if ( !$Self->{"UserIsGroup[$Group]"} || $Self->{"UserIsGroup[$Group]"} ne 'Yes' ) { return $Self->{LayoutObject}->NoPermission( Message => "You have to be in the $Group group!" ); } # starting with page ... my $CSVBody = ''; my $OutputBody = ''; my $Records = 0; my @HeadData = (); my @GlobalData = (); # get table columns names my $sth = $Self->{DBObject}->{dbh}->prepare($SQL); $sth->execute; my $names = $sth->{NAME}; @HeadData = @{$names}; # get table columns data $Self->{DBObject}->Prepare( SQL => $SQL, Limit => $SQLLimit ); while ( my @Row = $Self->{DBObject}->FetchrowArray() ) { push( @GlobalData, \@Row ); } # fillup colomn names if ( !$Self->{CSV} ) { $OutputBody .= ''; $OutputBody .= "\n"; } for my $col (@HeadData) { if ( $Self->{CSV} ) { $CSVBody .= "$col;"; } else { $OutputBody .= "\n"; } } if ( $Self->{CSV} ) { $CSVBody .= "\n"; } else { $OutputBody .= "\n"; } # fillup columns data for my $RowTmp (@GlobalData) { $Records++; my @Row = @{$RowTmp}; if ( !$Self->{CSV} ) { $OutputBody .= "\n"; } for (@Row) { if ( $Self->{CSV} ) { $CSVBody .= "$_;"; } else { $OutputBody .= "\n"; } } if ( $Self->{CSV} ) { $CSVBody .= "\n"; } else { $OutputBody .= "\n"; } } # return HTML or CSV page if ( $Self->{CSV} ) { my $CSV = $Self->{LayoutObject}->Output( Data => { Title => $Title, DetailText => $DetailText, Records => $Records }, Template => '$Data{"Title"};$Text{"generated by"} $Env{"UserFirstname"} $Env{"UserLastname"} ($Env{"UserEmail"}) - $Env{"Time"}' ) . ";\n"; $CSV .= $Self->{LayoutObject}->Output( Data => { Title => $Title, DetailText => $DetailText, Records => $Records }, Template => $DetailText, ) . ";\n"; # return csv to download my ( $s, $m, $h, $D, $M, $Y ) = $Self->{TimeObject}->SystemTime2Date( SystemTime => $Self->{TimeObject}->SystemTime(), ); return $Self->{LayoutObject}->Attachment( Filename => "$CSVFile" . "_" . "$Y-$M-$D" . "_" . "$h-$m.csv", ContentType => "text/csv", Content => "\n" . $CSV . $CSVBody, ); } else { my $Output = $Self->{LayoutObject}->PrintHeader( Title => $Title, Width => 900 ); $Output .= $Self->{LayoutObject}->Output( Data => { Title => $Title, DetailText => $DetailText, Records => $Records }, Template => '
$col
$_
$Data{"Title"}

$Data{"DetailText"}

' ); # return html $Output .= $OutputBody . $Self->{LayoutObject}->Output( Template => '
' ); $Output .= $Self->{LayoutObject}->PrintFooter(); return $Output; } } 1;