RDBO Support.
[kivitendo-erp.git] / scripts / rose_auto_create_model.pl
1 #!/usr/bin/perl
2
3 use strict;
4
5 BEGIN {
6   unshift @INC, "modules/override"; # Use our own versions of various modules (e.g. YAML).
7   push    @INC, "modules/fallback"; # Only use our own versions of modules if there's no system version.
8 }
9
10 use CGI qw( -no_xhtml);
11 use Data::Dumper;
12 use English qw( -no_match_vars );
13 use List::MoreUtils qw(any);
14
15 use SL::Auth;
16 use SL::DBUtils;
17 use SL::DB;
18 use SL::Form;
19 use SL::Locale;
20 use SL::LXDebug;
21 use SL::DB::Helpers::ALL;
22 use SL::DB::Helpers::Mappings;
23
24 our $form;
25 our $cgi;
26 our $auth;
27
28 our $script =  __FILE__;
29 $script     =~ s:.*/::;
30
31 $OUTPUT_AUTOFLUSH       = 1;
32 $Data::Dumper::Sortkeys = 1;
33
34 our $meta_path = "SL/DB/MetaSetup";
35
36 sub setup {
37   if (@ARGV < 2) {
38     print "Usage: $PROGRAM_NAME login table1[=package1] [table2[=package2] ...]\n";
39     print "   or  $PROGRAM_NAME login [--all|-a] [--sugar|-s]\n";
40     exit 1;
41   }
42
43   my $login     = shift @ARGV;
44
45   $::userspath  = "users";
46   $::templates  = "templates";
47   $::sendmail   = "| /usr/sbin/sendmail -t";
48
49   $::lxdebug    = LXDebug->new();
50
51   require "config/lx-erp.conf";
52   require "config/lx-erp-local.conf" if -f "config/lx-erp-local.conf";
53
54   # locale messages
55   $::locale       = Locale->new("de");
56   $::form         = new Form;
57   $::cgi          = new CGI('');
58   $::auth         = SL::Auth->new();
59
60   $::user         = User->new($login);
61
62   %::myconfig     = $auth->read_user($login);
63   $form->{script} = 'rose_meta_data.pl';
64   $form->{login}  = $login;
65
66   map { $form->{$_} = $::myconfig{$_} } qw(stylesheet charset);
67
68   mkdir $meta_path unless -d $meta_path;
69 }
70
71 sub process_table {
72   my @spec       =  split(/=/, shift, 2);
73   my $table      =  $spec[0];
74   my $package    =  ucfirst($spec[1] || $spec[0]);
75   $package       =~ s/_+(.)/uc($1)/ge;
76   my $meta_file  =  "${meta_path}/${package}.pm";
77   my $file       =  "SL/DB/${package}.pm";
78
79   my $definition =  eval <<CODE;
80     package SL::DB::AUTO::$package;
81     use SL::DB::Object;
82     use base qw(SL::DB::Object);
83
84     __PACKAGE__->meta->table('$table');
85     __PACKAGE__->meta->auto_initialize;
86
87     __PACKAGE__->meta->perl_class_definition(indent => 2); # , braces => 'bsd'
88 CODE
89
90   if ($EVAL_ERROR) {
91     print STDERR "Error in execution for table '$table': $EVAL_ERROR";
92     return;
93   }
94
95   $definition =~ s/::AUTO::/::/g;
96
97   my $file_exists = -f $meta_file;
98
99   open(OUT, ">$meta_file") || die;
100   print OUT <<CODE;
101 # This file has been auto-generated. Do not modify it; it will be overwritten
102 # by $::script automatically.
103 $definition;
104 CODE
105   close OUT;
106
107   print "File '$meta_file' " . ($file_exists ? 'updated' : 'created') . " for table '$table'\n";
108
109   if (! -f $file) {
110     open(OUT, ">$file") || die;
111     print OUT <<CODE;
112 # This file has been auto-generated only because it didn't exist.
113 # Feel free to modify it at will; it will not be overwritten automatically.
114
115 package SL::DB::${package};
116
117 use strict;
118
119 use SL::DB::MetaSetup::${package};
120
121 # Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.
122 __PACKAGE__->meta->make_manager_class;
123
124 1;
125 CODE
126     close OUT;
127
128     print "File '$file' created as well.\n";
129   }
130 }
131
132 setup();
133
134 my %blacklist     = SL::DB::Helpers::Mappings->get_blacklist;
135 my %package_names = SL::DB::Helpers::Mappings->get_package_names;
136
137 my @tables = ();
138 if (($ARGV[0] eq '--all') || ($ARGV[0] eq '-a') || ($ARGV[0] eq '--sugar') || ($ARGV[0] eq '-s')) {
139   my ($type, $prefix) = ($ARGV[0] eq '--sugar') || ($ARGV[0] eq '-s') ? ('SUGAR', 'sugar_') : ('LXOFFICE', '');
140   my $db              = SL::DB::create(undef, $type);
141   @tables             = map  { $package_names{$type}->{$_} ? "${_}=" . $package_names{$type}->{$_} : $prefix ? "${_}=${prefix}${_}" : $_ }
142                         grep { my $table = $_; !any { $_ eq $table } @{ $blacklist{$type} } }
143                         $db->list_tables;
144
145 } else {
146   @tables = @ARGV;
147 }
148
149 foreach my $table (@tables) {
150   # add default model name unless model name is given or no defaults exists
151   $table .= '=' . $package_names{LXOFFICE}->{lc $table} if $table !~ /=/ && $package_names{LXOFFICE}->{lc $table};
152
153   process_table($table);
154 }