]> ruin.nu Git - ndwebbie.git/blobdiff - scripts/stats.pl
Don't parse a groupscan if we can't fetch it
[ndwebbie.git] / scripts / stats.pl
index ad8fc0030f013edc9510f7c5b6c0e81e05ea1fed..706d7c70ff78a8c3ae4cd00adaf4f4a21238ee51 100755 (executable)
@@ -27,17 +27,13 @@ use DBD::Pg qw(:pg_types);
 
 use LWP::Simple;
 
-$0 =~ /(.*\/)[^\/]/;
-my $dir = $1;
-our $dbh;
-for my $file ("/home/whale/db.pl")
-{
-       unless (my $return = do $file){
-               warn "couldn't parse $file: $@" if $@;
-               warn "couldn't do $file: $!"    unless defined $return;
-               warn "couldn't run $file"       unless $return;
-       }
-}
+use FindBin;
+use lib "$FindBin::Bin/../lib";
+
+use ND::DB;
+
+our $dbh = ND::DB::DB();
+
 $dbh->do("SET CLIENT_ENCODING TO 'LATIN1';");
 
 my %classes = (Fighter => 'Fi', Corvette => 'Co', Frigate => 'Fr', Destroyer => 'De', Cruiser => 'Cr', Battleship => 'Bs');