JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fix require_once paths
[wfpl.git] / metaform.php
1 <?php
2
3 #  Copyright (C) 2006 Jason Woofenden
4 #
5 #  This program is free software: you can redistribute it and/or modify
6 #  it under the terms of the GNU General Public License as published by
7 #  the Free Software Foundation, either version 3 of the License, or
8 #  (at your option) any later version.
9 #  
10 #  This program is distributed in the hope that it will be useful,
11 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #  GNU General Public License for more details.
14 #  
15 #  You should have received a copy of the GNU General Public License
16 #  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18
19 # This file writes the code for you (sql, php, html, email) to handle a form.
20
21 require_once(__DIR__ . '/template.php');
22 require_once(__DIR__ . '/http.php');
23 require_once(__DIR__ . '/tar.php');
24 require_once(__DIR__ . '/format.php');
25
26 # see code/wfpl/metaform/template.html for the html templates for these elements
27 $GLOBALS['types'] = array(
28 #    type                  input          format        sql     
29         'varname' =>    array('textbox',     'varname',    'varchar(50) binary'),
30         'name' =>       array('textbox',     'oneline',    'varchar(200) binary'),
31         'textbox' =>    array('textbox',     'oneline',    'varchar(200) binary'),
32         'int' =>        array('textbox',     'int',        'int'),
33         'decimal' =>    array('textbox',     'decimal',    'decimal(12,2)'),
34         'bigint' =>     array('textbox',     'int',        'varchar(100) binary'), # up to 100 digits, stored as a string
35         'zip' =>        array('textbox',     'zip',        'varchar(20) binary'),
36         'email' =>      array('email',       'email',      'varchar(100) binary'),
37         'search' =>     array('search',      'oneline',    'varchar(200) binary'),
38         'phone' =>      array('textbox',     'phone',      'varchar(32) binary'),
39         'state' =>      array('states',      'oneline',    'varchar(2) binary'),
40         'money' =>      array('textbox',     'money',      'varchar(32) binary'),
41         'date' =>       array('date',        'mdy_to_ymd', 'char(10) binary'),
42         'dollars' =>    array('textbox',     'dollars',    'varchar(32) binary'),
43         'url' =>        array('textbox',     'url',        'varchar(200) binary'),
44         'hidden' =>     array('hidden',      'unix',       'varchar(200) binary'),
45         'password' =>   array('password',    'oneline',    'varchar(200) binary'),
46         'textarea' =>   array('textarea',    'unix',       'text binary'),
47         'html' =>       array('html',        'unix',       'mediumtext binary'),
48         'pulldown' =>   array('pulldown',    'options',    'varchar(100) binary'),
49         'radio' =>      array('radio',       'options',    'varchar(100) binary'),
50         'checkbox' =>   array('checkbox',    'bool',       'int(1)'),
51         'yesno' =>      array('checkbox',    'yesno',      'varchar(3) binary'),
52         'delete' =>     array('checkbox',    'yesno',      'n/a'),
53         'image' =>      array('image',       'oneline',    'varchar(120) binary'),
54         'thumb' =>      array('image',       'oneline',    'varchar(240) binary'),
55         'file' =>       array('file',        'oneline',    'varchar(100) binary'),
56         'submit' =>     array('submit',      'n/a',        'n/a'),
57         '{' =>          array('fieldset',    'n/a',        'n/a'),
58         '}' =>          array('end_fieldset','n/a',        'n/a')
59 );
60
61 function list_available_types() {
62         ksort($GLOBALS['types']);
63         foreach($GLOBALS['types'] as $key => $value) {
64                 tem_set('type', $key);
65                 tem_show('types');
66                 tem_show('types_sep');
67         }
68 }
69
70
71 function tem_set_globals(&$tem) {
72         $vars = array(
73                 'file_name',
74                 'public_file_name',
75                 'table_name',
76                 'plural',
77                 'singular');
78         foreach($vars as $var) {
79                 $tem->set($var, $GLOBALS[$var]);
80         }
81
82         $bools = array(
83                 'opt_email',
84                 'opt_db',
85                 'opt_listing',
86                 'opt_display',
87                 'opt_pass',
88                 'opt_public_form',
89                 'opt_public_display',
90                 'opt_public_something');
91         foreach($bools as $bool) {
92                 if($GLOBALS[$bool]) {
93                         $tem->set($bool);
94                 }
95         }
96 }
97
98 function metaform() {
99         if(isset($_REQUEST['singular'])) {
100                 $GLOBALS['file_name'] = format_varname($_REQUEST['file_name']);
101                 $GLOBALS['table_name'] = format_varname($_REQUEST['table_name']);
102                 $GLOBALS['plural'] = format_oneline($_REQUEST['plural']);
103                 # backwards compatibility:
104                 if(isset($_REQUEST['form_name'])) {
105                         $GLOBALS['file_name'] = $GLOBALS['table_name'] = $GLOBALS['plural'] = format_varname($_REQUEST['form_name']);
106                 }
107
108                 $GLOBALS['singular'] = format_oneline($_REQUEST['singular']);
109                 $GLOBALS['opt_email'] = format_bool($_REQUEST['opt_email']);
110                 $GLOBALS['opt_db'] = format_bool($_REQUEST['opt_db']);
111                 $GLOBALS['opt_listing'] = format_bool($_REQUEST['opt_listing']);
112                 $GLOBALS['opt_display'] = format_bool($_REQUEST['opt_display']);
113                 $GLOBALS['opt_pass'] = format_bool($_REQUEST['opt_pass']);
114                 $GLOBALS['opt_public_form'] = format_bool($_REQUEST['opt_public_form']);
115                 $GLOBALS['opt_public_display'] = format_bool($_REQUEST['opt_public_display']);
116
117                 $GLOBALS['public_file_name'] = $GLOBALS['file_name'];
118                 if($GLOBALS['opt_public_form'] || $GLOBALS['opt_public_display']) {
119                         $GLOBALS['opt_public_something'] = 1;
120                         $GLOBALS['file_name'] = $GLOBALS['file_name'] . _admin;
121                 }
122
123                 tem_init();
124                 tem_set_globals($GLOBALS['wfpl_template']);
125         }
126
127         if(isset($_REQUEST['fields'])) {
128                 if(isset($_REQUEST['view_sql'])) {
129                         view_sql();
130                         exit();
131                 } elseif(isset($_REQUEST['view_php'])) {
132                         view_php();
133                         exit();
134                 } elseif(isset($_REQUEST['view_html'])) {
135                         view_html();
136                         exit();
137                 } elseif(isset($_REQUEST['view_email'])) {
138                         view_email();
139                         exit();
140                 } elseif(isset($_REQUEST['download_tar'])) {
141                         download_tar();
142                         exit();
143                 } elseif(isset($_REQUEST['preview'])) {
144                         preview();
145                         exit();
146                 } elseif(isset($_REQUEST['edit'])) {
147                         tem_set('fields', $_REQUEST['fields']);
148                         # fall through
149                 } else {
150                         die("Sorry... couldn't tell which button you pressed");
151                 }
152         }
153
154
155         set_form_action();
156         tem_load('code/wfpl/metaform/main.html');
157         list_available_types();
158         tem_output();
159 }
160
161
162 function field_input($type)  { return $GLOBALS['types'][$type][0]; }
163 function field_format($type) { return $GLOBALS['types'][$type][1]; }
164 function field_sql($type)    { return $GLOBALS['types'][$type][2]; }
165
166 function get_fields() {
167         # no sense in doing all this so many times
168         if(isset($GLOBALS['gotten_fields'])) {
169                 return $GLOBALS['gotten_fields'];
170         }
171
172         $fields_str = unix_newlines($_REQUEST['fields']);
173         $GLOBALS['gotten_fields'] = array();
174         $fields_str = rtrim($fields_str);
175         $fields = split("\n", $fields_str);
176         foreach($fields as $field) {
177                 $field = trim($field);
178                 if(substr($field, -1) == '{') {
179                         $name = trim(substr($field, 0, -1)); # FIXME: stop this from getting enc_caption()ed
180                         $type = '{';
181                         $options = null;
182                 } elseif(substr($field, -1) == '{') {
183                         $name = 'ignored';
184                         $type = '}';
185                         $options = null;
186                 } else {
187                         list($name, $type, $options) = split('  *', $field);
188                         if($options) $options = explode(',', $options);
189                         if(!$type) $type = $name;
190                 }
191                 $input = field_input($type);
192                 $format = field_format($type);
193                 $sql = field_sql($type);
194                 $GLOBALS['gotten_fields'][] = array($name, $type, $input, $format, $sql, $options);
195         }
196
197         return $GLOBALS['gotten_fields'];
198 }
199
200 # this one, that you're using to create forms
201 function set_form_action() {
202         $action = ereg_replace('.*/', '', $_SERVER['REQUEST_URI']);
203         if($action == '') $action = './';
204         tem_set('form_action', $action);
205 }
206
207 # perfect HTTP headers for viewing created files
208 function view_headers() {
209         header('Content-type: text/plain');
210 }
211         
212
213
214
215 function make_sql() {
216         $tem = new tem();
217         $tem->load('code/wfpl/metaform/template.sql');
218         tem_set_globals($tem);
219         $fields = get_fields();
220         foreach($fields as $field) {
221                 list($name, $type, $input, $format, $sql) = $field;
222                 if($sql != 'n/a') {
223                         $tem->set('name', $name);
224                         $tem->set('type', $sql);
225                         if(substr($sql, 0, 3) == 'int' || substr($sql, 0, 7) == 'decimal') {
226                                 $tem->set('default', '0');
227                         } elseif($format == 'yesno') {
228                                 $tem->set('default', '"No"');
229                         } else {
230                                 $tem->set('default', '""');
231                         }
232                         $tem->show('column');
233                 }
234         }
235         view_headers();
236         return $tem->run();
237 }
238
239 function view_sql() {
240         view_headers();
241         echo make_sql();
242 }
243
244 # always_field is a form field that always submits (unlike say, checkboxes). It's used to detect if the form has submitted or not.
245 function find_always_field($fields) {
246         foreach($fields as $field) {
247                 list($name, $type, $input, $format, $sql) = $field;
248                 if($input != 'submit' && $input != 'image' && $input != 'file' && $input != 'checkbox' && $input != 'radio' && $type != '{') {
249                         return $name;
250                 }
251         }
252
253         return false;
254 }
255         
256         
257
258 # pass false if you want to exclude the <head> and <body> tag etc.
259 function make_html($whole_file = true) {
260         $has_html_editors = false;
261         $tem = new tem();
262         $tem->load('code/wfpl/metaform/template.html');
263         tem_set_globals($tem);
264         $fields = get_fields();
265         $tem->set('always_field', find_always_field($fields));
266         $hidden_fields = array();
267         $visible_fields = array();
268         $display_fields = array();
269         $listing_headers = array();
270         $listing_fields = array();
271         foreach($fields as $field) {
272                 list($name, $type, $input, $format, $sql) = $field;
273                 if($input == 'hidden') {
274                         $hidden_fields[] = array('name' => $name);
275                 } else {
276                         $visible_fields[] = array($input => array(
277                                 'name' => $name,
278                                 'caption' => format_caption($name)));
279                 }
280
281                 if($input == 'image' || $input == 'file') {
282                         $tem->set('uploads');
283                         $tem->set('enctype_attr', '" enctype="multipart/form-data');
284                 } elseif($input == 'html') {
285                         $has_html_editors = true;
286                         $tem->set('html_field_name', $name);
287                         $tem->set('replace_textarea');
288                 }
289
290                 switch($input) {
291                         case 'image':
292                         case 'checkbox':
293                         case 'date':
294                         case 'textarea':
295                         case 'html':
296                                 $display_type = $input;
297                         break;
298                         default:
299                                 $display_type = 'short';
300                 }
301                 if($format != 'n/a') {
302                         $display_fields[] = array($display_type => array(
303                                 'name' => $name, 'caption' => format_caption($name)));
304                 }
305
306                 if(show_in_listing($type, $input, $format, $sql)) {
307                         $listing_headers[] = array('caption' => format_caption($name), 'name' => $name);
308                         $listing_field = array('name' => $name);
309                         if($format == 'bool' || $format == 'yesno') {
310                                 $listing_field['enc'] = 'yesno';
311                         } elseif($input == 'date') {
312                                 $listing_field['enc'] = 'mmddyyyy';
313                         } elseif($type == 'thumb') {
314                                 $listing_field['thumb'] = true;
315                         } else {
316                                 $listing_field['enc'] = 'html';
317                         }
318                         $listing_fields[] = $listing_field;
319                 }
320         }
321
322         # Submit/Send button
323         if($GLOBALS['opt_email'] == 'Yes' && !$GLOBALS['opt_db']) {
324                 $visible_fields[] = array('submit' => array(
325                         'name' => 'send',
326                         'caption' => 'Send'));
327         } else {
328                 $visible_fields[] = array('submit' => array(
329                         'name' => 'save',
330                         'caption' => 'Save'));
331         }
332
333         $form_fields = array();
334         $form_fields['visible_fields'] = $visible_fields;
335         if($hidden_fields) {
336                 $form_fields['hidden_fields'] = $hidden_fields;
337         }
338         $tem->set('form', $form_fields);
339
340         # opt_display and opt_listing control whether these are actually displayed
341         $tem->set('display_fields', $display_fields);
342         $tem->set('listing_headers', $listing_headers);
343         $tem->set('listing_fields', $listing_fields);
344
345
346         if($has_html_editors) {
347                 $tem->set('html_editor_headers');
348         }
349
350         if($whole_file) {
351                 return $tem->run();
352         } else {
353                 $tem2 = new tem();
354                 $tem2->load_str('<!--~form~-->');
355                 $tem2->merge($tem);
356                 return $tem2->run();
357         }
358 }
359
360 function view_html() {
361         view_headers();
362         echo make_html();
363 }
364
365 function show_in_listing($type, $input, $format, $sql) {
366         switch($input) {
367                 case 'submit':
368                 case 'hidden':
369                 case 'password':
370                 case 'textarea':
371                 case 'html':
372                 case 'fieldset':
373                 case 'end_fieldset':
374                         return false;
375         }
376         if($type == 'image') {
377                 return false;
378         }
379
380         return true;
381 }
382
383 function pulldown_options_array($options) {
384         if($options) {
385                 $pulldown_options = array();
386                 foreach($options as $option) {
387                         $option = preg_replace("/['\\\\]/", '\\\\$0', $option);
388                         $pulldown_options[] = "'$option'";
389                 }
390                 $pulldown_options = 'array(' . join(', ', $pulldown_options) . ')';
391         } else {
392                 $pulldown_options = "array(array('op1', 'Option One'), array('op2', 'Option Two'), 'n/a')";
393         }
394
395         return $pulldown_options;
396 }
397
398 function make_php() {
399         $has_html_editors = false;
400         $tem = new tem();
401         $tem->load('code/wfpl/metaform/template.php');
402         tem_set_globals($tem);
403         $fields = get_fields();
404         $db_fields = '';
405         $always_field = find_always_field($fields);
406         $image_included_yet = false;
407         foreach($fields as $field) {
408                 list($name, $type, $input, $format, $sql, $options) = $field;
409                 if($input != 'submit') {
410                         $tem->set('format', $format);
411                         $tem->set('name', $name);
412                         $tem->set('db_field', ''); # we don't want to use the value from last time
413                         if($sql != 'n/a') {
414                                 if($db_fields != '') $db_fields .= ',';
415                                 $db_fields .= $name;
416                         }
417                         if($input == 'image') {
418                                 if($type == 'thumb') {
419                                         $tem->show('thumb_settings');
420                                         $tem->show('thumb_upload_params');
421                                         $tem->show('thumb_w_h');
422                                 }
423                                 $tem->show('image_settings');
424                                 $tem->show('image_upload');
425                                 $has_uploads = true;
426                         } else if($input == 'file') {
427                                 $tem->show('file_settings');
428                                 $tem->show('file_upload');
429                                 $has_uploads = true;
430                         } else {
431                                 if($input == 'html') {
432                                         $has_html_editors = true;
433                                 } elseif($input == 'pulldown' || $input == 'radio') {
434                                         $pulldown_options = pulldown_options_array($options);
435                                         $tem->set('pulldown_options', $pulldown_options);
436                                         $tem->set('has_pulldowns');
437                                         $tem->show('pulldowns');
438                                         $tem->show('pulldown_format_extra');
439                                 }
440                                 if($format != 'n/a') {
441                                         $tem->show('formats');
442                                 }
443                         }
444                 }
445
446                 if($GLOBALS['opt_listing']) {
447                         if(show_in_listing($type, $input, $format, $sql)) {
448                                 $tem->show('listing_fields_1');
449                                 $tem->show('listing_fields_2');
450                         }
451                 }
452         }
453         if($has_uploads) {
454                 $tem->show('uploads_include');
455                 $tem->show('upload_max');
456                 $tem->show('upload_settings');
457                 $image_included_yet = true;
458         }
459
460         if($has_html_editors) {
461                 $tem->show('show_extra_headers');
462         }
463
464         $tem->set('always_field', $always_field);
465         $tem->set('db_fields', $db_fields);
466         $tem->set('metaform_url', edit_url());
467         if($GLOBALS['opt_email']) {
468                 $this_domain = $_SERVER['HTTP_HOST'];
469                 if(substr($this_domain, -2) == '.l') {
470                         $this_domain = substr($this_domain, 0, -1) . 'com';
471                 }
472                 $tem->set('this_domain', $this_domain);
473         }
474         return $tem->run();
475 }
476
477 # make a URL for the edit page with all the fields filled in
478 function edit_url() {
479         $url = this_url();
480         $url = ereg_replace('view_php=[^&]*', 'edit=yes', $url);
481         $url = ereg_replace('download_tar=[^&]*', 'edit=yes', $url);
482         $url = ereg_replace('/[a-z0-9_.]*\?', '/?', $url);
483         $url = str_replace('jasonwoof.l', 'jasonwoof.com', $url); # so that code generated on Jason's home computer will display a publically accessible link.
484         return $url;
485 }
486
487 function view_php() {
488         view_headers();
489         echo make_php();
490 }
491
492 function make_email() {
493         $tem = new tem();
494         $tem->load('code/wfpl/metaform/template.email.txt');
495         tem_set_globals($tem);
496         $fields = get_fields();
497         foreach($fields as $field) {
498                 list($name, $type, $input, $format, $sql) = $field;
499                 $tem->set('name', $name);
500                 $tem->set('caption', format_caption($name));
501                 if($type == 'textarea') {
502                         $tem->show('multi_line');
503                 } elseif($type == 'checkbox') {
504                         $tem->show('checkbox');
505                 } else {
506                         $tem->show('normal');
507                 }
508                 $tem->show('fields');
509         }
510         return $tem->run();
511 }
512
513 function make_htaccess() {
514         $tem = new tem();
515         $tem->set('form', $GLOBALS['file_name']);
516         return $tem->run('code/wfpl/metaform/htaccess');
517 }
518
519 function view_email() {
520         view_headers();
521         echo make_email();
522 }
523
524 function preview() {
525         tem_load('code/wfpl/metaform/preview.html');
526         tem_set_globals($GLOBALS['wfpl_template']);
527         tem_set('fields', $_REQUEST['fields']);
528         $preview_tem = new tem();
529         $preview_tem->load_str(make_html(false));
530         if($GLOBALS['opt_db']) {
531                 $preview_tem->show('new_msg');
532         }
533         $fields = get_fields();
534         foreach($fields as $field) {
535                 list($name, $type, $input, $format, $sql, $options) = $field;
536                 if($type == 'pulldown' || $type == 'radio') {
537                         pulldown($name, eval('return ' . pulldown_options_array($options) . ';'));
538                 }
539         }
540         $preview = $preview_tem->run();
541         unset($preview_tem);
542         $preview = ereg_replace('type="submit"', 'type="submit" disabled="disabled"', $preview);
543         tem_set('preview', $preview);
544         tem_show('hiddens');
545         set_form_action();
546         tem_output();
547 }
548
549 function download_tar() {
550         $admin_name = $GLOBALS['file_name'];
551         $nice_name = $GLOBALS['public_file_name'];
552         $files = array(
553                 "INSTALL" => read_whole_file('code/wfpl/metaform/INSTALL'),
554                 ".htaccess" => make_htaccess(),
555                 "run.php ->" => 'code/wfpl/run.php',
556                 "style.less" => read_whole_file('code/wfpl/metaform/style.less'),
557                 "template.html" => read_whole_file('code/wfpl/metaform/site-template.html'),
558                 "$admin_name.html" => make_html(),
559                 "$admin_name.php" => make_php());
560         if($GLOBALS['opt_public_something']) {
561                 $files["$nice_name.html ->"] = "$admin_name.html";
562                 $files["$nice_name.php ->"] = "$admin_name.php";
563         }
564         if($GLOBALS['opt_db']) {
565                 $files["$nice_name.sql"] = make_sql();
566         }
567         if($GLOBALS['opt_email']) {
568                 $files["$nice_name.email.txt"] = make_email();
569         }
570         make_tar($nice_name, $files);
571 }
572
573
574 metaform();
575 exit();