lemonldap-ng/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Status.pm

223 lines
6.3 KiB
Perl

package Lemonldap::NG::Handler::Status;
use strict;
use POSIX;
our $status = {};
our $activity = [];
our $start = int( time / 60 );
use constant MN_COUNT => 10;
sub portalTab {
return {
-2 => 'PORTAL_REDIRECT',
-1 => 'PORTAL_ALREADY_AUTHENTICATED',
0 => 'PORTAL_OK',
1 => 'PORTAL_SESSIONEXPIRED',
2 => 'PORTAL_FORMEMPTY',
3 => 'PORTAL_WRONGMANAGERACCOUNT',
4 => 'PORTAL_USERNOTFOUND',
5 => 'PORTAL_BADCREDENTIALS',
6 => 'PORTAL_LDAPCONNECTFAILED',
7 => 'PORTAL_LDAPERROR',
8 => 'PORTAL_APACHESESSIONERROR',
9 => 'PORTAL_FIRSTACCESS',
10 => 'PORTAL_BADCERTIFICATE',
11 => 'PORTAL_LA_FAILED',
12 => 'PORTAL_LA_ARTFAILED',
13 => 'PORTAL_LA_DEFEDFAILED',
14 => 'PORTAL_LA_QUERYEMPTY',
15 => 'PORTAL_LA_SOAPFAILED',
16 => 'PORTAL_LA_SLOFAILED',
17 => 'PORTAL_LA_SSOFAILED',
18 => 'PORTAL_LA_SSOINITFAILED',
19 => 'PORTAL_LA_SESSIONERROR',
20 => 'PORTAL_LA_SEPFAILED',
21 => 'PORTAL_PP_ACCOUNT_LOCKED',
22 => 'PORTAL_PP_PASSWORD_EXPIRED',
};
}
eval {
POSIX::setgid( ( getgrnam( $ENV{APACHE_RUN_GROUP} ) )[2] );
POSIX::setuid( ( getpwnam( $ENV{APACHE_RUN_USER} ) )[2] );
};
sub run {
my ( $localStorage, $localStorageOptions ) = ( shift, shift );
my $refLocalStorage;
eval
"use $localStorage; \$refLocalStorage = new $localStorage(\$localStorageOptions);";
die($@) if ($@);
$| = 1;
my ( $lastMn, $mn );
while (<STDIN>) {
$mn = int( time / 60 ) - $start;
# Cleaning activity array
if ( $mn > $lastMn ) {
for ( my $i = 0 ; $i < $mn - $lastMn ; $i++ ) {
unshift @$activity, {};
delete $activity->[MN_COUNT];
}
}
$lastMn = $mn;
# Activity collect
if (/^(\S+)\s+=>\s+(\S+)\s+(OK|REJECT|REDIRECT|LOGOUT|\-?\d+)$/) {
my ( $user, $uri, $code ) = ( $1, $2, $3 );
# Portal error translation
$code = portalTab->{$code} if ( $code =~ /^\-?\d+$/ );
# Per user activity
$status->{user}->{$user}->{$code}++;
# Per uri activity
$uri =~ s/^(.*?)\?.*$/$1/;
$status->{uri}->{$uri}->{$code}++;
# Last 5 minutes activity
$activity->[0]->{$code}++;
}
# Status requests
# $args conatins parameters passed to url status page (a=1 for example
# if request is http://test.example.com/status?a=1). To be used
# later...
elsif (/^STATUS(?:\s+(\S+))?$/) {
my $args = $1;
my ( $c, $a, $u );
while ( my ( $user, $v ) = each( %{ $status->{user} } ) ) {
$u++ unless ( $user =~ /^\d+\.\d+\.\d+\.\d+$/ );
# Total requests
foreach ( keys %$v ) {
$c->{$_} += $v->{$_};
}
}
foreach my $mn (@$activity) {
$a->{$_} += $mn->{$_} foreach ( keys %$mn );
}
foreach ( keys %$a ) {
$a->{$_} = sprintf( "%.2f", $a->{$_} / MN_COUNT );
$a->{$_} = int( $a->{$_} ) if ( $a->{$_} > 99 );
}
# DEVEL
#use Data::Dumper;
#print '<pre>' . Dumper( $c, $a, $status ) . '</pre>';
my @t =
$refLocalStorage->get_keys( $localStorageOptions->{namespace} );
&head;
print "<h2>Total</h2><pre>\n";
print sprintf( "%-30s : %d\n", $_, $c->{$_} )
foreach ( sort keys %$c );
print "\n</pre><h2>Average</h2><pre>\n";
print sprintf( "%-30s : %s\n", $_, $a->{$_} )
foreach ( sort keys %$a );
print "\n</pre><p>\nTotal users : $u\n</p><p>\nLocal Cache : " . @t
. " objects\n</p>";
&end;
print "\nEND\n";
}
}
}
sub head {
print <<"EOF";
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">
<head>
<title>Lemonldap::NG Status</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf8" />
</head>
<body>
<h1>Lemonldap::NG Status</h1>
EOF
}
sub end {
print <<"EOF";
</body>
</html>
EOF
}
1;
__END__
=head1 NAME
Lemonldap::NG::Handler::Status - Perl extension to add a mod_status like system for L<Lemonldap::NG::Handler>
=head1 SYNOPSIS
=head2 Create your Apache module
Create your own package (example using a central configuration database):
package My::Package;
use Lemonldap::NG::Handler::SharedConf;
@ISA = qw(Lemonldap::NG::Handler::SharedConf);
__PACKAGE__->init ( {
# Activate status feature
status => 1,
# Local storage used for sessions and configuration
localStorage => "Cache::DBFile",
localStorageOptions => {...},
# How to get my configuration
configStorage => {
type => "DBI",
dbiChain => "DBI:mysql:database=lemondb;host=$hostname",
dbiUser => "lemonldap",
dbiPassword => "password",
}
# ... See Lemonldap::N::Handler
} );
=head2 Configure Apache
Call your package in /apache-dir/conf/httpd.conf:
# Load your package
PerlRequire /My/File
# Normal Protection
PerlHeaderParserHandler My::Package
# Status page
<Location /status>
Order deny,allow
Allow from 10.1.1.0/24
Deny from all
PerlHeaderParserHandler My::Package->status
</Location>
=head1 DESCRIPTION
Lemonldap::NG::Handler::Status adds a mod_status like feature to display
Lemonldap::NG::Handler activity on a protected server. It can so be used by
L<mrtg> or directly browsed by your browser.
=head1 SEE ALSO
L<Lemonldap::NG::Handler>, L<Lemonldap::NG::Portal>, L<Lemonldap::NG::Manager>,
L<http://wiki.lemonldap.objectweb.org/xwiki/bin/view/NG/Presentation>
=head1 AUTHOR
Xavier Guimard, E<lt>guimard@E<gt>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2008 by Xavier Guimard
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.8 or,
at your option, any later version of Perl 5 you may have available.
=cut