preload all dbdefs
authorivan <ivan>
Wed, 3 Jul 2002 10:33:37 +0000 (10:33 +0000)
committerivan <ivan>
Wed, 3 Jul 2002 10:33:37 +0000 (10:33 +0000)
FS/FS/InitHandler.pm [new file with mode: 0644]
FS/MANIFEST
FS/t/InitHandler.t [new file with mode: 0644]

diff --git a/FS/FS/InitHandler.pm b/FS/FS/InitHandler.pm
new file mode 100644 (file)
index 0000000..9a2154a
--- /dev/null
@@ -0,0 +1,75 @@
+package FS::InitHandler;
+
+use strict;
+use FS::UID qw(adminsuidsetup);
+use FS::Record;
+
+sub handler {
+
+=pod
+
+  use Date::Format;
+  use Date::Parse;
+  use Tie::IxHash;
+  use HTML::Entities;
+  use IO::Handle;
+  use IO::File;
+  use String::Approx:
+  use HTML::Widgets::SelectLayers 0.02;
+  #use FS::UID;
+  #use FS::Record;
+  use FS::Conf;
+  use FS::CGI;
+  use FS::Msgcat;
+  
+  use FS::agent;
+  use FS::agent_type;
+  use FS::domain_record;
+  use FS::cust_bill;
+  use FS::cust_bill_pay;
+  use FS::cust_credit;
+  use FS::cust_credit_bill;
+  use FS::cust_main;
+  use FS::cust_main_county;
+  use FS::cust_pay;
+  use FS::cust_pkg;
+  use FS::cust_refund;
+  use FS::cust_svc;
+  use FS::nas;
+  use FS::part_bill_event;
+  use FS::part_pkg;
+  use FS::part_referral;
+  use FS::part_svc;
+  use FS::pkg_svc;
+  use FS::port;
+  use FS::queue qw(joblisting);
+  use FS::raddb;
+  use FS::session;
+  use FS::svc_acct;
+  use FS::svc_acct_pop qw(popselector);
+  use FS::svc_acct_sm;
+  use FS::svc_domain;
+  use FS::svc_forward;
+  use FS::svc_www;
+  use FS::type_pkgs;
+  use FS::part_export;
+  use FS::part_export_option;
+  use FS::export_svc;
+  use FS::msgcat;
+
+=cut
+
+  open(MAPSECRETS,"<$FS::UID::conf_dir/mapsecrets")
+    or die "can't read $FS::UID::conf_dir/mapsecrets: $!";
+
+  while (<MAPSECRETS>) {
+    /^([\w\-\.]+)\s/ or do { warn "strange line in mapsecrets: $_"; next; };
+    my $user = $1;
+    adminsuidsetup($user);
+  }
+
+  close MAPSECRETS;
+
+}
+
+1;
index d9860b1..da04b1d 100644 (file)
@@ -19,6 +19,7 @@ bin/freeside-expiration-alerter
 bin/freeside-reexport
 FS.pm
 FS/CGI.pm
+FS/InitHandler.pm
 FS/Conf.pm
 FS/ConfItem.pm
 FS/Record.pm
@@ -94,6 +95,7 @@ FS/cust_tax_exempt.pm
 t/agent.t
 t/agent_type.t
 t/CGI.t
+t/InitHandler.t
 t/Conf.t
 t/ConfItem.t
 t/Record.t
diff --git a/FS/t/InitHandler.t b/FS/t/InitHandler.t
new file mode 100644 (file)
index 0000000..0ce60c8
--- /dev/null
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n" }
+END {print "not ok 1\n" unless $loaded;}
+use FS::InitHandler;
+$loaded=1;
+print "ok 1\n";