successfully correct the spelling of sucessful
[freeside.git] / FS / bin / freeside-setup
1 #!/usr/bin/perl -Tw
2
3 #to delay loading dbdef until we're ready
4 BEGIN { $FS::Schema::setup_hack = 1; }
5
6 use strict;
7 use vars qw($opt_s $opt_d $opt_v);
8 use Getopt::Std;
9 use FS::UID qw(adminsuidsetup datasrc checkeuid getsecrets);
10 use FS::Schema qw( dbdef_dist reload_dbdef );
11 use FS::Record;
12 #use FS::raddb;
13 use FS::Setup qw(create_initial_data);
14
15 die "Not running uid freeside!" unless checkeuid();
16
17 #my %attrib2db =
18 #  map { lc($FS::raddb::attrib{$_}) => $_ } keys %FS::raddb::attrib;
19
20 getopts("svd:");
21 my $user = shift or die &usage;
22 getsecrets($user);
23
24 #needs to match FS::Record
25 my($dbdef_file) = "/usr/local/etc/freeside/dbdef.". datasrc;
26
27 ###
28
29 #print "\nEnter the maximum username length: ";
30 #my($username_len)=&getvalue;
31 my $username_len = 32; #usernamemax config file
32
33 #print "\n\n", <<END, ":";
34 #Freeside tracks the RADIUS User-Name, check attribute Password and
35 #reply attribute Framed-IP-Address for each user.  You can specify additional
36 #check and reply attributes (or you can add them later with the
37 #fs-radius-add-check and fs-radius-add-reply programs).
38 #
39 #First enter any additional RADIUS check attributes you need to track for each 
40 #user, separated by whitespace.
41 #END
42 #my @check_attributes = map { $attrib2db{lc($_)} or die "unknown attribute $_"; }
43 #                         split(" ",&getvalue);
44 #
45 #print "\n\n", <<END, ":";
46 #Now enter any additional reply attributes you need to track for each user,
47 #separated by whitespace.
48 #END
49 #my @attributes = map { $attrib2db{lc($_)} or die "unknown attribute $_"; }
50 #                   split(" ",&getvalue);
51 #
52 #print "\n\n", <<END, ":";
53 #Do you wish to enable the tracking of a second, separate shipping/service
54 #address?
55 #END
56 #my $ship = &_yesno;
57 #
58 #sub getvalue {
59 #  my($x)=scalar(<STDIN>);
60 #  chop $x;
61 #  $x;
62 #}
63 #
64 #sub _yesno {
65 #  print " [y/N]:";
66 #  my $x = scalar(<STDIN>);
67 #  $x =~ /^y/i;
68 #}
69
70 #my @check_attributes = (); #add later
71 #my @attributes = (); #add later
72 #my $ship = $opt_s;
73
74 ###
75 # create a dbdef object from the old data structure
76 ###
77
78 my $dbdef = dbdef_dist;
79
80 #important
81 $dbdef->save($dbdef_file);
82 &FS::Schema::reload_dbdef($dbdef_file);
83
84 ###
85 # create 'em
86 ###
87
88 my $dbh = adminsuidsetup $user;
89
90 #create tables
91 $|=1;
92
93 foreach my $statement ( $dbdef->sql($dbh) ) {
94   warn $statement if $statement =~ /TABLE cdr/;
95   $dbh->do( $statement )
96     or die "CREATE error: ". $dbh->errstr. "\ndoing statement: $statement";
97 }
98
99 #now go back and reverse engineer the db
100 #so we pick up the correct column DEFAULTs for #oidless inserts
101 dbdef_create($dbh, $dbdef_file);
102 delete $FS::Schema::dbdef_cache{$dbdef_file}; #force an actual reload
103 reload_dbdef($dbdef_file);
104
105 create_initial_data('domain' => $opt_d);
106
107 warn "Freeside database initialized - commiting transaction\n" if $opt_v;
108
109 $dbh->commit or die $dbh->errstr;
110 $dbh->disconnect or die $dbh->errstr;
111
112 warn "Database initialization committed successfully\n" if $opt_v;
113
114 sub dbdef_create { # reverse engineer the schema from the DB and save to file
115   my( $dbh, $file ) = @_;
116   my $dbdef = new_native DBIx::DBSchema $dbh;
117   $dbdef->save($file);
118 }
119
120 sub usage {
121   die "Usage:\n  freeside-setup -d domain.name [ -v ] user\n"; 
122 }
123
124 1;
125