#!/usr/bin/perl -Tw use strict; use FS::UID qw(adminsuidsetup); use FS::Record qw(qsearch qsearchs); use FS::part_export; use FS::svc_acct; use FS::cust_svc; my $user = shift or die &usage; adminsuidsetup $user; #my $machine = shift or die &usage; my @exports = (); if ( @_ ) { foreach my $exportnum ( @_ ) { foreach my $exporttype (qw( sqlradius sqlradius_withdomain )) { push @exports, qsearch('part_export', { exportnum => $exportnum, exporttype => $exporttype, } ); } } } else { @exports = qsearch('part_export', { exporttype=>'sqlradius' } ); push @exports, qsearch('part_export', { exporttype=>'sqlradius_withdomain' } ); } foreach my $export ( @exports ) { my $icradius_dbh = DBI->connect( map { $export->option($_) } qw( datasrc username password ) ) or die $DBI::errstr; for my $table (qw( radcheck radreply usergroup )) { my $sth = $icradius_dbh->prepare("DELETE FROM $table"); $sth->execute or die "Can't reset $table table: ". $sth->errstr; } $icradius_dbh->disconnect; } foreach my $export ( @exports ) { #my @svcparts = map { $_->svcpart } $export->export_svc; my @svc_acct = map { qsearchs('svc_acct', { 'svcnum' => $_->svcnum } ) } map { qsearch('cust_svc', { 'svcpart' => $_->svcpart } ) } grep { qsearch('cust_svc', { 'svcpart' => $_->svcpart } ) } $export->export_svc; foreach my $svc_acct ( @svc_acct ) { #false laziness with FS::svc_acct::insert (like it matters) my $error = $export->export_insert($svc_acct); die $error if $error; } } sub usage { die "Usage:\n\n freeside-sqlradius-reset user [ exportnum, ... ]\n"; } =head1 NAME freeside-sqlradius-reset - Command line interface to reset and recreate RADIUS SQL tables =head1 SYNOPSIS freeside-sqlradius-reset username [ EXPORTNUM, ... ] =head1 DESCRIPTION Deletes the radcheck, radreply and usergroup tables and repopulates them from the Freeside database, for the specified exports, or, if no exports are specified, for all sqlradius and sqlradius_withdomain exports. B is a username added by freeside-adduser. =head1 SEE ALSO L, L, L =cut