diff options
| author | ivan <ivan> | 2004-10-05 16:28:28 +0000 | 
|---|---|---|
| committer | ivan <ivan> | 2004-10-05 16:28:28 +0000 | 
| commit | 049da6c538c952f938af4544a07c688b89c26a17 (patch) | |
| tree | bfec9f211acecf0f0c0bb0922b9fcb34f910d921 /FS | |
| parent | b0511ff939fe1622503ac8e53333fabb1ad9bd37 (diff) | |
RADIUS session viewing
Diffstat (limited to 'FS')
| -rw-r--r-- | FS/FS/cust_svc.pm | 44 | ||||
| -rw-r--r-- | FS/FS/part_export/sqlradius.pm | 107 | 
2 files changed, 116 insertions, 35 deletions
| diff --git a/FS/FS/cust_svc.pm b/FS/FS/cust_svc.pm index 118ab79d2..0c17c9706 100644 --- a/FS/FS/cust_svc.pm +++ b/FS/FS/cust_svc.pm @@ -547,48 +547,22 @@ Meaningless for records where B<svcdb> is not "svc_acct".  sub get_session_history {    my($self, $start, $end, $attrib) = @_; -  my $username = $self->svc_x->username; +  #$attrib ??? -  my @part_export = $self->part_svc->part_export('sqlradius') -    or die "no sqlradius export configured for this service type"; +  my @part_export = $self->part_svc->part_export('sqlradius'); +  push @part_export, $self->part_svc->part_export('sqlradius_withdomain'); +  die "no sqlradius or sqlradius_withdomain export configured for this". +      "service type" +    unless @part_export;      #or return undef;    my @sessions = ();    foreach my $part_export ( @part_export ) { -                                             -    my $dbh = DBI->connect( map { $part_export->option($_) } -                            qw(datasrc username password)    ) -      or die "can't connect to sqlradius database: ". $DBI::errstr; - -    #select a unix time conversion function based on database type -    my $str2time;                                                  -    if ( $dbh->{Driver}->{Name} =~ /^mysql(PP)?$/ ) { -      $str2time = 'UNIX_TIMESTAMP(';           -    } elsif ( $dbh->{Driver}->{Name} eq 'Pg' ) { -      $str2time = 'EXTRACT( EPOCH FROM ';        -    } else { -      warn "warning: unknown database type ". $dbh->{Driver}->{Name}. -           "; guessing how to convert to UNIX timestamps"; -      $str2time = 'extract(epoch from ';                   -    } - -    my @fields = qw( acctstarttime acctstoptime acctsessiontime -                     acctinputoctets acctoutputoctets framedipaddress ); -      -    my $sth = $dbh->prepare('SELECT '. join(', ', @fields). -                            "  FROM radacct -                               WHERE UserName = ? -                                 AND $str2time AcctStopTime ) >= ? -                                 AND $str2time AcctStopTime ) <=  ? -                                 ORDER BY AcctStartTime DESC -    ") or die $dbh->errstr;                                  -    $sth->execute($username, $start, $end) or die $sth->errstr; - -    push @sessions, map { { %$_ } } @{ $sth->fetchall_arrayref({}) }; - +    push @sessions, $part_export->usage_sessions( $self->svc_x, $start, $end );    } -  \@sessions + +  \@sessions;  } diff --git a/FS/FS/part_export/sqlradius.pm b/FS/FS/part_export/sqlradius.pm index fd5bb89fd..85e5969fc 100644 --- a/FS/FS/part_export/sqlradius.pm +++ b/FS/FS/part_export/sqlradius.pm @@ -333,5 +333,112 @@ sub sqlradius_connect {    DBI->connect(@_) or die $DBI::errstr;  } +#-- + +=item usage_sessions TIMESTAMP_START TIMESTAMP_END [ SVC_ACCT [ IP [ SQL_SELECT ] ] ] + +TIMESTAMP_START and TIMESTAMP_END are specified as UNIX timestamps; see +L<perlfunc/"time">.  Also see L<Time::Local> and L<Date::Parse> for conversion +functions. + +SVC_ACCT, if specified, limits the results to the specified account. + +IP, if specified, limits the results to the specified IP address. + +#SQL_SELECT defaults to * if unspecified.  It can be useful to set it to  +#SUM(acctsessiontime) or SUM(AcctInputOctets), etc. + +Returns an array of hash references +Returns an arrayref of hashrefs with the following fields: + +=over 4 + +=item username + +=item framedipaddress + +=item acctstarttime + +=item acctstoptime + +=item acctsessiontime + +=item acctinputoctets + +=item acctoutputoctets + +=back + +=cut + +#some false laziness w/cust_svc::seconds_since_sqlradacct + +sub usage_sessions { +  my( $self, $start, $end ) = splice(@_, 0, 3); +  my $svc_acct = @_ ? shift : ''; +  my $ip = @_ ? shift : ''; +  #my $select = @_ ? shift : '*'; + +  $end ||= 2147483647; + +  return () if $self->option('ignore_accounting'); + +  my $dbh = sqlradius_connect( map $self->option($_), +                                   qw( datasrc username password ) ); + +  #select a unix time conversion function based on database type +  my $str2time; +  if ( $dbh->{Driver}->{Name} =~ /^mysql(PP)?$/ ) { +    $str2time = 'UNIX_TIMESTAMP('; +  } elsif ( $dbh->{Driver}->{Name} eq 'Pg' ) { +    $str2time = 'EXTRACT( EPOCH FROM '; +  } else { +    warn "warning: unknown database type ". $dbh->{Driver}->{Name}. +         "; guessing how to convert to UNIX timestamps"; +    $str2time = 'extract(epoch from '; +  } + +  my @fields = ( +                 qw( username realm framedipaddress +                     acctsessiontime acctinputoctets acctoutputoctets +                   ), +                 "$str2time acctstarttime ) as acctstarttime", +                 "$str2time acctstoptime ) as acctstoptime", +               ); + +  my @param = (); +  my $where = ''; + +  if ( $svc_acct ) { +    my $username = $self->export_username($svc_acct); +    if ( $svc_acct =~ /^([^@]+)\@([^@]+)$/ ) { +      $where = '( UserName = ? OR ( UserName = ? AND Realm = ? ) ) AND'; +      push @param, $username, $1, $2; +    } else { +      $where = 'UserName = ? AND'; +      push @param, $username; +    } +  } + +  if ( length($ip) ) { +    $where .= ' FramedIPAddress = ? AND'; +    push @param, $ip; +  } + +  push @param, $start, $end; + +  my $sth = $dbh->prepare('SELECT '. join(', ', @fields). +                          "  FROM radacct +                             WHERE $where +                                   $str2time AcctStopTime ) >= ? +                               AND $str2time AcctStopTime ) <=  ? +                               ORDER BY AcctStartTime DESC +  ") or die $dbh->errstr;                                  +  $sth->execute(@param) or die $sth->errstr; + +  [ map { { %$_ } } @{ $sth->fetchall_arrayref({}) } ]; + +} +  1; | 
