X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_export%2Fradiator.pm;h=869c033eda8ffb70b911f667de9c8570d7fc7a93;hb=1b7404720478fe7b24da79a440d811cc70b3618e;hp=95f0a0b016b82d43a0733ea592edbe899a4b887f;hpb=673b9a458d9138523026963df6fa3b4683e09bae;p=freeside.git diff --git a/FS/FS/part_export/radiator.pm b/FS/FS/part_export/radiator.pm index 95f0a0b01..869c033ed 100644 --- a/FS/FS/part_export/radiator.pm +++ b/FS/FS/part_export/radiator.pm @@ -74,11 +74,26 @@ sub _radiator_hash { qw( framed_filter_id framed_mtu framed_netmask framed_protocol framed_routing login_host login_service login_tcp_port ) ); - $hash{timeleft} = $svc_acct->seconds + $hash{'timeleft'} = $svc_acct->seconds if $svc_acct->seconds =~ /^\d+$/; - $hash{staticaddress} = $svc_acct->slipip + $hash{'staticaddress'} = $svc_acct->slipip if $svc_acct->slipip =~ /^[\d\.]+$/; # and $self->slipip ne '0.0.0.0'; + $hash{'servicename'} = ( $svc_acct->radius_groups )[0]; + + my $cust_pkg = $self->cust_svc->cust_pkg; + $hash{validto} = $cust_pkg->bill + if $cust_pkg && $cust_pkg->part_pkg->is_prepaid && $cust_pkg->bill; + + #some other random stuff, should probably be attributes or virtual fields + #$hash{'state'} = 0; #only inserts + #$hash{'badlogins'} = 0; #only inserts + $hash{'maxlogins'} = 1; + $hash{'addeddate'} = $cust_pkg->setup + if $cust_pkg && $cust_pkg->setup; + $hash{'validfrom'} = $cust_pkg->last_bill || $cust_pkg->setup + if $cust_pkg && ( $cust_pkg->last_bill || $cust_pkg->setup ); + %hash; } @@ -99,6 +114,8 @@ sub radiator_queue { sub radiator_insert { #subroutine, not method my $dbh = radiator_connect(shift, shift, shift); my %hash = @_; + $hash{'state'} = 0; #see "random stuff" above + $hash{'badlogins'} = 0; #see "random stuff" above my $sth = $dbh->prepare( "INSERT INTO $radusers ( ". join(', ', keys %hash ). ' ) '.