-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathws_gen_code.php
172 lines (145 loc) · 5.79 KB
/
ws_gen_code.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<?php
/**
* Copyright Alvin Alexander, http://alvinalexander.com, 2011-2014.
* All Rights Reserved.
*
* This program is distributed free of charge under the terms and
* conditions of the GNU GPL v3. See our LICENSE file, or
* http://www.gnu.org/licenses/gpl.html for more information.
*
* The MDB2 and Smarty libraries are included under their own
* licensing terms.
*/
/**
* this "web service" takes one database table, N number
* of table fields, and one template as input, and attempts
* to return one string as output; that string is the
* Smarty-processed template.
*
* if people use something besides our ui to send this
* service the data, a lot of things can go wrong, very few
* of which i have accounted for.
*/
// very simple form validation
$formIsReady = true;
if ( !isset($_POST['tables']) ||
!isset($_POST['fields']) ||
!isset($_POST['templates']) ) {
error_log("gen_code: didn't get table, fields, or template data");
$formIsReady = false;
}
if (!$formIsReady) {
echo "Please choose a Table, Fields, and a Template";
return;
}
$tablename = $_POST['tables'];
$fields = $_POST['fields'];
$template = $_POST['templates'];
#------------------------------------------------
# handle all of our "include" and "require" needs
#------------------------------------------------
# need the current directory to find the app.config file
set_include_path(get_include_path() . PATH_SEPARATOR . '.');
# get root_path, smarty_dir, template_dir
require_once 'app.cfg';
# must create a $smarty reference before reading the config file
require($smarty_dir . '/Smarty.class.php');
$smarty = new Smarty();
# need this for MDB2. also need a $smarty reference before calling this file.
require_once 'db.cfg';
require_once 'smarty.cfg';
# get the user's database configuration, smarty template config, and more.
# this file may further modify the include path, so i'm trying to bring it in
# early; for instance, i have to modify the include path for mamp and mdb2.
require_once 'MDB2.php';
# handles the logic of converting database table information into
# the various types we can use in our templates
require_once 'DatabaseTable.php';
# use Pear MDB2
# @see http://pear.php.net/package/MDB2/docs/latest/MDB2/MDB2.html
$mdb =& MDB2::connect($dsn, $dsn_options);
if (PEAR::isError($mdb)) {
die($mdb->getMessage());
}
# get the database name
$dbname = $mdb->getDatabase();
# need the Manager module to do our magic
# @see http://pear.php.net/package/MDB2/docs/latest/MDB2/MDB2_Driver_Manager_Common.html
$mdb->loadModule('Manager');
# how i used to get the database table field names for the
# command line version of cato
#$table_field_names = $mdb->listTableFields($tablename);
# now i get the field names from the form that is submitted to us
$table_field_names =& $fields;
$nfields = count($table_field_names);
# create $field_is_reqd as an array that lets us know whether the
# fields are required, or not.
# for Reverse info, see http://pear.php.net/manual/en/package.database.mdb2.intro-reverse-module.php
$mdb->loadModule('Reverse', null, true);
// lets us get to name, type, notnull
$tableFields = $mdb->tableInfo($tablename, NULL);
$field_is_reqd = array();
$count = 0;
# for each field in the table ...
foreach($tableFields as $field)
{
$curr_field_name = $field['name'];
# only examine the field if it's one of the fields the user wants
if (in_array($curr_field_name, $table_field_names)) {
foreach($field as $key => $value)
{
if ($key == 'notnull') {
if ($value == '1') {
$field_is_reqd[$count] = true;
} else {
$field_is_reqd[$count] = false;
}
}
}
}
$count = $count + 1;
#echo "\n";
}
#var_dump($field_is_reqd);
# need to issue a query against the desired table to get the metadata
$query = "SELECT * FROM $tablename";
# on success this returns an MDB2_Result handle
# TODO - deal with the failure condition here
#$result = $mdb->query($query, true, true, 'MDB2_BufferedIterator');
$result =& $mdb->query($query, true, true);
# now that we have a result set, we can get the field types
# as an array:
$dt = new DatabaseTable();
$dt->set_raw_table_name($tablename);
$dt->set_tablename_prefix($tablename_prefix);
$dt->set_raw_field_names($table_field_names);
$dt->set_db_field_types($result->types);
$dt->set_field_is_reqd($field_is_reqd); # this is needed, esp. for the play_field_types
# assign all the smarty variables we support
$smarty->assign('classname', $dt->get_camelcase_table_name());
$smarty->assign('objectname', $dt->get_java_object_name());
$smarty->assign('tablename', $tablename);
$smarty->assign('tablename_clean', $dt->get_clean_table_name());
$smarty->assign('tablename_clean_singular', $dt->get_clean_table_name_singular());
$smarty->assign('fields', $table_field_names);
# NEW
$smarty->assign('field_is_reqd', $dt->get_field_is_reqd());
$smarty->assign('camelcase_fields', $dt->get_camelcase_field_names());
$smarty->assign('fields_as_insert_csv_string', $dt->get_fields_as_insert_stmt_csv_list());
$smarty->assign('prep_stmt_as_insert_csv_string', $dt->get_prep_stmt_insert_csv_string());
$smarty->assign('prep_stmt_as_update_csv_string', $dt->get_fields_as_update_stmt_csv_list());
$smarty->assign('types', $dt->get_java_field_types());
$smarty->assign('scala_field_types', $dt->get_scala_field_types());
$smarty->assign('play_field_types', $dt->get_play_field_types());
$smarty->assign('play_json_field_types', $dt->get_play_json_field_types());
$smarty->assign('db_types', $dt->get_db_field_types());
$smarty->assign('dt', $dt);
# try to disable caching so template changes are picked up immediately
#$smarty->force_compile = 1;
#$smarty->clear_compiled_tpl("$template");
$smarty->clear_cache("$template");
# read and process the template with fetch(), then echo it out
$out = $smarty->fetch("$template");
echo $out;
$mdb->disconnect();
?>