dbgenerate.js
[app.Builder.js] / dbgenerate.js
1 //<script type="text/javascript">
2
3 /**
4  * This is a hacky generator to generate element definitions for the Roo version from the database
5  * 
6  * Let's see if libgda can be used to generate our Readers for roo...
7  * 
8  * Concept - conect to database..
9  * 
10  * list tables
11  * 
12  * extra schemas..
13  * 
14  * write readers..
15  * 
16  * usage: seed generate.js  
17  * 
18  */
19 Gda  = imports.gi.Gda;
20 GObject = imports.gi.GObject;
21
22 GLib = imports.gi.GLib;
23
24 console = imports.console;
25 File = imports.File.File;
26 Options = imports.Options.Options;
27
28 Gda.init();
29
30 var prov = Gda.Config.list_providers ();
31 //print(prov.dump_as_string());
32
33 var o = new Options({
34     help_description : 'Element builder for App Builder based on database schema',
35     
36     options:  [
37         { arg_long : 'DBNAME' , arg_short : 'd', description : 'Database Name' },
38         { arg_long : 'USERNAME' , arg_short : 'u', description : 'Username'},
39         { arg_long : 'PASSWORD' , arg_short : 'p', description : '' , arg_default :'' },
40         { arg_long : 'INI' , arg_short : 'I', description : 'Either base directory which has Pman/***/DataObjects/***.ini or location of ini file.' },
41     ]
42            
43 })
44
45
46
47 var cfg = o.parse(Seed.argv);
48 print(JSON.stringify(cfg, null,4));
49
50 var   cnc = Gda.Connection.open_from_string ("MySQL", "DB_NAME=" + cfg.DBNAME, 
51                                               "USERNAME=" + cfg.USERNAME + ';PASSWORD=' + cfg.PASSWORD,
52                                               Gda.ConnectionOptions.NONE, null);
53
54
55
56                                               
57
58  
59 Gda.DataSelect.prototype.fetchAll = function()
60 {
61     var cols = [];
62     
63     for (var i =0;i < this.get_n_columns(); i++) {
64         cols.push(this.get_column_name(i));
65     }
66     //print(JSON.stringify(cols, null,4));
67     var iter = this.create_iter();
68     var res = [];
69     //print(this.get_n_rows());
70     var _this = this;
71     for (var r = 0; r < this.get_n_rows(); r++) {
72         
73         // single clo..
74         //print("GOT ROW");
75         if (cols.length == 1) {
76             res.push(this.get_value_at(0,r).get_string());
77             continue;
78         }
79         var add = { };
80         
81         cols.forEach(function(n,i) {
82             var val = _this.get_value_at(i,r);
83             var type = GObject.type_name(val.g_type) ;
84             var vs = ['GdaBinary', 'GdaBlob' ].indexOf(type) > -1 ? val.value.to_string(1024) : val.value;
85             //print(n + " : TYPE: " + GObject.type_name(val.g_type) + " : " + vs);
86             //print (n + '=' + iter.get_value_at(i).value);
87             add[n] = vs;
88         });
89         
90         res.push(add);
91         
92     }
93     return res;
94
95 }
96
97 var map = {
98     'date' : 'date',
99     'datetime' : 'string',
100     'int' : 'int',
101     'bigint' : 'int',
102     
103     'tinyint' : 'int',
104     'decimal' : 'float',
105     'float' : 'float',
106     'char' : 'string',
107     'varchar' : 'string',
108     'text' : 'string',
109     'longtext' : 'string',
110     'tinytext' : 'string',
111     'mediumtext' : 'string',
112     'enum' : 'string',
113     'timestamp' : 'number',
114     'blob' : 'text'
115     
116 }
117
118 var ini = { }
119
120 function readIni(fn)
121 {
122     print('Read INI : ' + fn);
123     var key_file = new GLib.KeyFile.c_new();
124     if (!key_file.load_from_file (fn , GLib.KeyFileFlags.NONE )) {
125         return;
126     }
127    
128     var groups = key_file.get_groups();
129     groups.forEach(function(g) {
130         ini[g] = {}
131            
132         var keys = key_file.get_keys(g);
133         keys.forEach(function(k) {
134             ini[g][k] = key_file.get_value(g,k);
135         })
136     })
137     
138 }
139 if (File.isFile(cfg.INI)) {
140     if (cfg.INI.match(/links\.ini$/)) {
141         readIni(cfg.INI);
142     } else {
143         readIni(cfg.INI.replace(/\.ini$/, ".links.ini"));
144     }
145 }
146
147 if (File.isDirectory(cfg.INI)) {
148         
149
150     //--- load ini files..
151     // this is very specific.
152     
153     var dirs = File.list( cfg.INI + '/Pman').filter( 
154         function(e) { 
155             if (!File.isDirectory(cfg.INI + '/Pman/' + e + '/DataObjects')) {
156                 return false;
157             }
158             return true;
159         }
160     );
161     
162      
163     dirs.forEach(function(d) {
164         // this currently misses the web.*/Pman/XXXX/DataObjects..
165         var path = cfg.INI + '/Pman/' + d + '/DataObjects';
166          
167         if (!File.isDirectory(path)) {
168             return; //skip
169         }
170         var inis = File.list(path).filter(
171             function(e) { return e.match(/\.links\.ini$/); }
172         );
173         if (!inis.length) {
174             return;
175         }
176         
177         inis.forEach(function(i) {
178             readIni(path + '/' + i); 
179             
180         })
181  
182     });
183     // look at web.XXXX/Pman/XXX/DataObjects/*.ini
184     var inis = File.list(cfg.INI).filter(
185         function(e) { return e.match(/\.links\.ini$/); }
186     )
187     
188      inis.forEach(function(i) {
189         readIni(path + '/' + i); 
190         
191     })
192     
193     
194 }
195 //print(JSON.stringify(ini, null,4));
196  //console.dump(ini);
197
198
199  //Seed.quit();
200
201 //GLib.key_file_load_from_file (key_file, String file, KeyFileFlags flags) : Boolean
202
203
204
205  
206
207 var tables = Gda.execute_select_command(cnc, "SHOW TABLES").fetchAll();
208 var readers = [];
209 tables.forEach(function(table) {
210     //print(table);
211     var schema = Gda.execute_select_command(cnc, "DESCRIBE `" + table+'`').fetchAll();
212     var reader = []; 
213     var colmodel = []; 
214     var combofields= [ { name : 'id', type: 'int' } ]; // technically the primary key..
215          
216     var form = {}
217        
218     var firstTxtCol = '';
219     
220     //print(JSON.stringify(schema, null,4));
221     
222     schema.forEach(function(e)  {
223         var type = e.Type.match(/([^(]+)\(([^\)]+)\)/);
224         var row  = { }; 
225         if (type) {
226             e.Type = type[1];
227             e.Size = type[2];
228         }
229         
230         
231         
232         row.name = e.Field;
233         
234         
235         if (typeof(map[e.Type]) == 'undefined') {
236            console.dump(e);
237            throw {
238                 name: "ArgumentError", 
239                 message: "Unknown mapping for type : " + e.Type
240             };
241         }
242         row.type = map[e.Type];
243         
244         if (row.type == 'string' && !firstTxtCol.length) {
245             firstTxtCol = row.name;
246         }
247         
248         if (row.type == 'date') {
249             row.dateFormat = 'Y-m-d';
250         }
251         reader.push(row);
252         
253         if (combofields.length == 1 && row.type == 'string') {
254             combofields.push(row);
255         }
256         
257         
258         var title = row.name.replace(/_id/, '').replace(/_/g, ' ');
259         title  = title[0].toUpperCase() + title.substring(1);
260         
261         colmodel.push({
262             "xtype": "ColumnModel",
263             "header": title,
264             "width":  row.type == 'string' ? 200 : 75,
265             "dataIndex": row.name,
266             "|renderer": row.type != 'date' ? 
267                     "function(v) { return String.format('{0}', v); }" :
268                     "function(v) { return String.format('{0}', v ? v.format('d/M/Y') : ''); }" , // special for date
269             "|xns": "Roo.grid",
270             "*prop": "colModel[]"
271         });
272         var xtype = 'TextField';
273         if (row.type == 'number') {
274             xtype = 'NumberField';
275         }
276         if (row.type == 'date') {
277             xtype = 'DateField';
278         }
279         if (e.Type == 'text') {
280             xtype = 'TextArea';
281         }
282         if (row.name == 'id') {
283             xtype = 'Hidden';
284         } 
285         // what about booleans.. -> checkboxes..
286         
287         
288         
289         form[row.name] = {
290             fieldLabel : title,
291             name : row.name,
292             width : row.type == 'string' ? 200 : 75,
293             '|xns' : 'Roo.form',
294             xtype : xtype
295         }
296         if (xtype == 'TextArea') {
297             form[row.name].height = 100;
298         }
299         if (xtype == 'Hidden') {
300             delete form[row.name].fieldLabel;
301             delete form[row.name].width;
302         }
303         
304     });
305     
306     var combo = {
307         '|xns' : 'Roo.form',
308         xtype: 'ComboBox',
309         allowBlank : 'false',
310         editable : 'false',
311         emptyText : 'Select ' + table,
312         forceSelection : true,
313         listWidth : 400,
314         loadingText: 'Searching...',
315         minChars : 2,
316         pageSize : 20,
317         qtip: 'Select ' + table,
318         selectOnFocus: true,
319         triggerAction : 'all',
320         typeAhead: true,
321         
322         width: 300,
323         
324         
325         
326         tpl : '<div class="x-grid-cell-text x-btn button"><b>{name}</b> </div>', // SET WHEN USED
327         queryParam : '',// SET WHEN USED
328         fieldLabel : table,  // SET WHEN USED
329         valueField : 'id',
330         displayField : '', // SET WHEN USED eg. project_id_name
331         hiddenName : '', // SET WHEN USED eg. project_id
332         name : '', // SET WHEN USED eg. project_id_name
333         items : [
334             {
335                     
336                 '*prop' : 'store',
337                 'xtype' : 'Store',
338                 '|xns' : 'Roo.data',
339                 'remoteSort' : true,
340                 '|sortInfo' : '{ direction : \'ASC\', field: \'id\' }',
341                 listeners : {
342                     '|beforeload' : 'function (_self, o)' +
343                     "{\n" +
344                     "    o.params = o.params || {};\n" +
345                     "    // set more here\n" +
346                     "}\n"
347                 },
348                 items : [
349                     {
350                         '*prop' : 'proxy',
351                         'xtype' : 'HttpProxy',
352                         'method' : 'GET',
353                         '|xns' : 'Roo.data',
354                         '|url' : "baseURL + '/Roo/" + table + ".php'",
355                     },
356                     
357                     {
358                         '*prop' : 'reader',
359                         'xtype' : 'JsonReader',
360                         '|xns' : 'Roo.data',
361                         'id' : 'id',
362                         'root' : 'data',
363                         'totalProperty' : 'total',
364                         '|fields' : JSON.stringify(combofields)
365                         
366                     }
367                 ]
368             }
369         ]
370     }
371     
372     
373     
374     
375     //print(JSON.stringify(reader,null,4));
376     readers.push({
377         table : table ,
378         combo : combo,
379         combofields : combofields,
380         reader :  reader,
381         oreader : JSON.parse(JSON.stringify(reader)), // dupe it..
382         colmodel : colmodel,
383         firstTxtCol : firstTxtCol,
384         form : form
385     });
386     
387     //console.dump(schema );
388     
389      
390 });
391
392
393
394 // merge in the linked tables..
395 readers.forEach(function(reader) {
396     if (typeof(ini[reader.table]) == 'undefined') {
397      
398         return;
399     }
400     print("OVERLAY - " + reader.table);
401     // we have a map..
402     for (var col in ini[reader.table]) {
403         var kv = ini[reader.table][col].split(':');
404         
405         
406         var add = readers.filter(function(r) { return r.table == kv[0] })[0];
407         if (!add) {
408             continue;
409         }
410         // merge in data (eg. project_id => project_id_*****
411      
412         add.oreader.forEach(function(or) {
413             reader.reader.push({
414                 name : col + '_' + or.name,
415                 type : or.type
416             });
417         });
418         
419         // col is mapped to something..
420         var combofields = add.combofields;
421         if (add.combofields.length < 2) {
422             continue;
423         }
424         if (typeof(reader.form[col]) == 'undefined') {
425             print (JSON.stringify(reader.form, null,4));
426             print("missing linked column " + col);
427             continue;
428         }
429         
430         var combofields_name = add.combofields[1].name;
431         var old =   reader.form[col];
432         reader.form[col] = JSON.parse(JSON.stringify(add.combo)); // clone
433         reader.form[col].queryParam  = 'query[' + combofields_name + ']';// SET WHEN USED
434         reader.form[col].fieldLabel = old.fieldLabel;  // SET WHEN USED
435         reader.form[col].hiddenName = old.name; // SET WHEN USED eg. project_id
436         reader.form[col].displayField = combofields_name; // SET WHEN USED eg. project_id
437         reader.form[col].name  = old.name + '_' + combofields_name; // SET WHEN USED eg. project_id_name
438         reader.form[col].tpl = '<div class="x-grid-cell-text x-btn button"><b>{' + combofields_name +'}</b> </div>'; // SET WHEN USED
439         
440              
441     };
442     
443     
444 });
445
446 //readers.forEach(function(reader) {
447 //    delete reader.oreader;
448 //});
449
450  
451
452
453
454 //print(JSON.stringify(readers, null, 4));
455
456 readers.forEach(function(reader) {
457     
458
459     var dir = GLib.get_home_dir() + '/.Builder/Roo.data.JsonReader'; 
460     if (!File.isDirectory(dir)) {
461         File.mkdir(dir);
462     }
463     
464     // READERS
465     print("WRITE: " +  dir + '/' + cfg.DBNAME + '_' + reader.table + '.json');
466     
467                 
468     var jreader = {
469         '|xns' : 'Roo.data',
470         xtype : "JsonReader",
471         totalProperty : "total",
472         root : "data",
473         '*prop' : "reader",
474         id : 'id', // maybe no..
475         '|fields' :  JSON.stringify(reader.reader, null,4).replace(/"/g,"'")
476     };
477     
478     File.write(
479         dir + '/' + cfg.DBNAME + '_' + reader.table + '.json',
480         JSON.stringify(jreader, null, 4)
481     )
482     
483     
484     // GRIDS
485     dir = GLib.get_home_dir() + '/.Builder/Roo.GridPanel'; 
486     if (!File.isDirectory(dir)) {
487         File.mkdir(dir);
488     }
489     
490
491     print("WRITE: " +  dir + '/' + cfg.DBNAME + '_' + reader.table + '.json');
492     
493     File.write(
494         dir + '/' + cfg.DBNAME + '_' + reader.table + '.json',
495             
496        
497         JSON.stringify({
498             '|xns' : 'Roo',
499             xtype : "GridPanel",
500             "title": reader.table,
501             "fitToframe": true,
502             "fitContainer": true,
503             "tableName": reader.table,
504             "background": true,
505             "listeners": {
506                 "|activate": "function() {\n    _this.panel = this;\n    if (_this.grid) {\n        _this.grid.footer.onClick('first');\n    }\n}"
507             },
508             "items": [
509                 {
510                     "*prop": "grid",
511                     "xtype": "Grid",
512                     "autoExpandColumn": reader.firstTxtCol,
513                     "loadMask": true,
514                     "listeners": {
515                         "|render": "function() \n" +
516                             "{\n" +
517                             "   _this.grid = this; \n" +
518                             "    //_this.dialog = Pman.Dialog.FILL_IN\n" +
519                             "    if (_this.panel.active) {\n" +
520                             "       this.footer.onClick('first');\n" +
521                             "    }\n" +
522                             "}"
523                     },
524                     "|xns": "Roo.grid",
525
526                     "items": [
527                         {
528                             "*prop": "dataSource",
529                             "xtype": "Store",
530                             
531                             "|xns": "Roo.data",
532                             "items": [
533                                 
534                                 {
535                                     "*prop": "proxy",
536                                     "xtype": "HttpProxy",
537                                     "method": "GET",
538                                     "|url": "baseURL + '/Roo/" + reader.table + ".php'",
539                                     "|xns": "Roo.data"
540                                 },
541                                 jreader
542                             ]
543                         },
544                         {
545                             "*prop": "footer",
546                             "xtype": "PagingToolbar",
547                             "pageSize": 25,
548                             "displayInfo": true,
549                             "displayMsg": "Displaying " + reader.table + "{0} - {1} of {2}",
550                             "emptyMsg": "No " + reader.table + " found",
551                             "|xns": "Roo"
552                         },
553                         {
554                             "*prop": "toolbar",
555                             "xtype": "Toolbar",
556                             "|xns": "Roo",
557                             "items": [
558                                 {
559                                     "text": "Add",
560                                     "xtype": "Button",
561                                     "cls": "x-btn-text-icon",
562                                     "|icon": "Roo.rootURL + 'images/default/dd/drop-add.gif'",
563                                     "listeners": {
564                                         "|click": "function()\n"+
565                                             "{\n"+
566                                             "    if (!_this.dialog) return;\n" +
567                                             "    _this.dialog.show( { id : 0 } , function() {\n"+
568                                             "        _this.grid.footer.onClick('first');\n"+
569                                             "   }); \n"+
570                                             "}\n"
571                                     },
572                                     "|xns": "Roo.Toolbar"
573                                 },
574                                 {
575                                     "text": "Edit",
576                                     "xtype": "Button",
577                                     "cls": "x-btn-text-icon",
578                                     "|icon": "Roo.rootURL + 'images/default/tree/leaf.gif'",
579                                     "listeners": {
580                                         "|click": "function()\n"+
581                                             "{\n"+
582                                             "    var s = _this.grid.getSelectionModel().getSelections();\n"+
583                                             "    if (!s.length || (s.length > 1))  {\n"+
584                                             "        Roo.MessageBox.alert(\"Error\", s.length ? \"Select only one Row\" : \"Select a Row\");\n"+
585                                             "        return;\n"+
586                                             "    }\n"+
587                                             "    if (!_this.dialog) return;\n" +
588                                             "    _this.dialog.show(s[0].data, function() {\n"+
589                                             "        _this.grid.footer.onClick('first');\n"+
590                                             "    }); \n"+
591                                             "    \n"+
592                                             "}\n" 
593                                         
594                                     },
595                                     "|xns": "Roo.Toolbar"
596                                 },
597                                 {
598                                     "text": "Delete",
599                                     "cls": "x-btn-text-icon",
600                                     "|icon": "rootURL + '/Pman/templates/images/trash.gif'",
601                                     "xtype": "Button",
602                                     "listeners": {
603                                         "|click": "function()\n"+
604                                             "{\n"+
605                                             "     Pman.genericDelete(_this, '" + reader.table + "'); \n"+
606                                             "}\n"+
607                                             "        "
608                                     },
609                                     "|xns": "Roo.Toolbar"
610                                 }
611                             ]
612                         }, // end toolbar
613                     ].concat( reader.colmodel)
614                 }
615             ]
616             
617             
618         }, null, 4)
619     )
620     
621     /// FORMS..
622     
623     dir = GLib.get_home_dir() + '/.Builder/Roo.form.Form'; 
624     if (!File.isDirectory(dir)) {
625         File.mkdir(dir);
626     }
627     var formElements = [];
628     var formHeight = 50;
629     for (var k in reader.form) {
630         if (k == 'id') { // should really do primary key testing..
631             continue;
632         }
633         formHeight += reader.form[k].xtype == 'TextArea' ? 100 : 30;
634         formElements.push(reader.form[k]);
635     }
636     formElements.push(reader.form['id']);
637
638     print("WRITE: " +  dir + '/' + cfg.DBNAME + '_' + reader.table + '.json');
639     var frmCfg = 
640     {
641         '|xns' : 'Roo.form',
642         xtype : "Form",
643         listeners : {
644             "|actioncomplete" : "function(_self,action)\n"+
645                 "{\n"+
646                 "    if (action.type == 'setdata') {\n"+
647                 "       //_this.dialog.el.mask(\"Loading\");\n"+
648                 "       //this.load({ method: 'GET', params: { '_id' : _this.data.id }});\n"+
649                 "       return;\n"+
650                 "    }\n"+
651                 "    if (action.type == 'load') {\n"+
652                 "        _this.dialog.el.unmask();\n"+
653                 "        return;\n"+
654                 "    }\n"+
655                 "    if (action.type =='submit') {\n"+
656                 "    \n"+
657                 "        _this.dialog.el.unmask();\n"+
658                 "        _this.dialog.hide();\n"+
659                 "    \n"+
660                 "         if (_this.callback) {\n"+
661                 "            _this.callback.call(_this, _this.form.getValues());\n"+
662                 "         }\n"+
663                 "         _this.form.reset();\n"+
664                 "         return;\n"+
665                 "    }\n"+
666                 "}\n",
667             
668             "|rendered" : "function (form)\n"+
669                 "{\n"+
670                 "    _this.form= form;\n"+
671                 "}\n"
672         },
673         method : "POST",
674         style : "margin:10px;",
675         "|url" : "baseURL + '/Roo/" + reader.table + ".php'",
676         items : formElements
677     };
678     
679     
680     File.write(
681         dir + '/' + cfg.DBNAME + '_' + reader.table + '.json',
682             
683        
684         JSON.stringify( frmCfg, null, 4)
685     );
686             
687             
688    
689    
690    
691      /// COMBO..
692     
693     dir = GLib.get_home_dir() + '/.Builder/Roo.form.ComboBox'; 
694     if (!File.isDirectory(dir)) {
695         File.mkdir(dir);
696     }
697    
698     print("WRITE: " +  dir + '/' + cfg.DBNAME + '_' + reader.table + '.json');
699     
700     File.write(
701         dir + '/' + cfg.DBNAME + '_' + reader.table + '.json',
702             
703        
704         JSON.stringify(reader.combo, null, 4)
705     );
706             
707    
708    
709    
710    
711    
712     // DIALOG.
713    
714    
715     dir = GLib.get_home_dir() + '/.Builder/Roo.LayoutDialog'; 
716     if (!File.isDirectory(dir)) {
717         File.mkdir(dir);
718     }
719     var formElements = [];
720     for (var k in reader.form) {
721         if (k == 'id') { // should really do primary key testing..
722             continue;
723         }
724         formElements.push(reader.form[k]);
725     }
726     formElements.push(reader.form['id']);
727
728     print("WRITE: " +  dir + '/' + cfg.DBNAME + '_' + reader.table + '.json');
729     
730     File.write(
731         dir + '/' + cfg.DBNAME + '_' + reader.table + '.json',
732             
733        
734         JSON.stringify({
735        
736             "closable": false,
737             "collapsible": false,
738             "height": formHeight,
739             "resizable": false,
740             "title": "Edit / Create " + reader.table,
741             "width": 400,
742             "xtype": "LayoutDialog",
743             "|xns": "Roo",
744             "items": [
745                 {
746                     "|xns": "Roo",
747                     "xtype": "LayoutRegion",
748                     "*prop": "center"
749                 },
750                 {
751                     "region": "center",
752                     "xtype": "ContentPanel",
753                     "|xns": "Roo",
754                     "items": [
755                         frmCfg
756                     ]
757                 },
758                 
759                 {
760                     "listeners": {
761                         "click": "function (_self, e)\n{\n    _this.dialog.hide();\n}"
762                     },
763                     "*prop": "buttons[]",
764                     "text": "Cancel",
765                     "xtype": "Button",
766                     "|xns": "Roo"
767                 },
768                 {
769                     "listeners": {
770                         "click": "function (_self, e)\n{\n    // do some checks?\n     \n    \n    _this.dialog.el.mask(\"Saving\");\n    _this.form.doAction(\"submit\");\n\n}"
771                     },
772                     "*prop": "buttons[]",
773                     "text": "Save",
774                     "xtype": "Button",
775                     "|xns": "Roo"
776                 }
777             ]
778         }, null,4)
779     );
780    
781    
782    
783 });
784
785