DataObjects/Core_curr_rate.php
[Pman.Core] / UpdateDatabase.php
1 <?php
2
3 /**
4  *
5  * This applies database files from
6  * a) OLD - {MODULE}/DataObjects/XXXX.{dbtype}.sql
7  *
8  * b) NEW - {MODULE}/sql/XXX.sql (SHARED or translable)
9  *  and {MODULE}/{dbtype}/XXX.sql (SHARED or translable)
10  *
11  *
12  */
13
14 require_once 'Pman.php';
15 class Pman_Core_UpdateDatabase extends Pman
16 {
17     
18     static $cli_desc = "Update SQL - Beta (it will run updateData of all modules)";
19  
20     static $cli_opts = array(
21       
22         'prefix' => array(
23             'desc' => 'prefix for the password (eg. fred > xxx4fred - prefix is xxx4)',
24             'short' => 'p',
25             'default' => '',
26             'min' => 1,
27             'max' => 1,
28         ),
29         'data-only' => array(
30             'desc' => 'only run the updateData - do not run import the tables and procedures.',
31             'short' => 'p',
32             'default' => '',
33             'min' => 1,
34             'max' => 1,
35             
36         ),
37         'add-company' => array(
38             'desc' => 'add a company name of the company',
39             'short' => 'n',
40             'default' => '',
41             'min' => 1,
42             'max' => 1,
43         ),
44         'add-company-with-type' => array(
45             'desc' => 'the type of company (default OWNER)',
46             'short' => 't',
47             'default' => 'OWNER',
48             'min' => 1,
49             'max' => 1,
50         ),
51         'init' => array(
52             'desc' => 'Initialize the database (pg only supported)',
53             'short' => 'i',
54             'default' => '',
55             'min' => 1,
56             'max' => 1,
57         ),
58         'only-module-sql' => array(
59             'desc' => 'Only run sql import on this modules - eg. Core',
60             'default' => '',
61             'min' => 1,
62             'max' => 1,
63         ),
64         'procedures-only' => array(
65             'desc' => 'Only import procedures (not supported by most modules yet) - ignores sql directory',
66             'default' => '',
67             'min' => 1,
68             'max' => 1,
69         ),
70         
71         
72         'json-person' => array(
73             'desc' => 'Person JSON file',
74             'default' => '',
75             'min' => 1,
76             'max' => 1,
77             
78         ),
79     );
80     
81     static function cli_opts()
82     {
83         
84         $ret = self::$cli_opts;
85         $ff = HTML_FlexyFramework::get();
86         $a = new Pman();
87         $mods = $a->modulesList();
88         foreach($mods as $m) {
89             
90             $fd = $ff->rootDir. "/Pman/$m/UpdateDatabase.php";
91             if (!file_exists($fd)) {
92                 continue;
93             }
94             
95             require_once $fd;
96             
97             $cls = new ReflectionClass('Pman_'. $m . '_UpdateDatabase');
98             
99             $ret = array_merge($ret, $cls->getStaticPropertyValue('cli_opts'));
100             
101             
102         }
103         
104         return $ret;
105     }
106     
107     var $opts = false;
108     
109     
110     var $cli = false;
111     function getAuth() {
112         
113         
114         $ff = HTML_FlexyFramework::get();
115         if (!empty($ff->cli)) {
116             $this->cli = true;
117             return true;
118         }
119         
120         parent::getAuth(); // load company!
121         $au = $this->getAuthUser();
122         if (!$au || $au->company()->comptype != 'OWNER') {
123             $this->jerr("Not authenticated", array('authFailure' => true));
124         }
125         $this->authUser = $au;
126         return true;
127     }
128      
129     function get($args, $opts)
130     {
131         PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, array($this, 'onPearError'));
132    
133         
134         //$this->fixSequencesPgsql();exit;
135         $this->opts = $opts;
136         
137         // ask all the modules to verify the opts
138         
139         $this->checkOpts($opts);
140         
141         
142      
143         if (empty($opts['data-only'])) {
144             $this->importSQL();
145         }
146         if (!empty($opts['only-module-sql'])) {
147             return;
148         }
149         
150         $this->runUpdateModulesData();
151         
152         
153         if (!empty($opts['add-company'])) {
154             // make sure we have a good cache...?
155            
156             DB_DataObject::factory('companies')->initCompanies($this, $opts);
157         }
158          
159     }
160     function output() {
161         return '';
162     }
163      /**
164      * imports SQL files from all DataObjects directories....
165      * 
166      * except any matching /migrate/
167      */
168     function importSQL()
169     {
170         
171         // loop through all the modules, and see if they have a importSQL method?
172         
173         
174         $ff = HTML_Flexyframework::get();
175         
176         $dburl = parse_url($ff->DB_DataObject['database']);
177         
178         //$this->{'import' . $url['scheme']}($url);
179         
180         $dbtype = $dburl['scheme'];
181         $dirmethod = 'import' . $dburl['scheme'] . 'dir';
182         
183         
184        
185         
186         $ar = $this->modulesList();
187        
188         
189         foreach($ar as $m) {
190              echo "Importing SQL from module $m\n";
191             if (!empty($this->opts['only-module-sql']) && $m != $this->opts['only-module-sql']) {
192                 continue;
193             }
194             
195             
196             // check to see if the class has
197             
198             
199             
200             $file = $this->rootDir. "/Pman/$m/UpdateDatabase.php";
201             if($m != 'Core' && file_exists($file)){
202                 
203                 require_once $file;
204                 $class = "Pman_{$m}_UpdateDatabase";
205                 $x = new $class;
206                 if(method_exists($x, 'importModuleSQL')){
207                     echo "Importing SQL from module $m using Module::importModuleSQL\n";
208                     $x->opts = $this->opts;
209                     $x->rootDir = $this->rootDir;
210                     $x->importModuleSQL($dburl);
211                     continue;
212                 }
213             };
214
215             echo "Importing SQL from module $m\n";
216             
217             
218             // if init has been called
219             // look in pgsql.ini
220             if (!empty($this->opts['init'])) {
221                 $this->{$dirmethod}($dburl, $this->rootDir. "/Pman/$m/{$dbtype}.init");
222                 
223             }
224             
225             
226             
227             $fd = $this->rootDir. "/Pman/$m/DataObjects";
228             
229             $this->{$dirmethod}($dburl, $fd);
230             
231             // new -- sql directory..
232             // new style will not support migrate ... they have to go into mysql-migrate.... directories..
233             // new style will not support pg.sql etc.. naming - that's what the direcotries are for..
234             
235             $this->{$dirmethod}($dburl, $this->rootDir. "/Pman/$m/sql");
236             $this->{$dirmethod}($dburl, $this->rootDir. "/Pman/$m/{$dbtype}");
237             
238             
239             
240             if (!empty($this->opts['init']) && file_exists($this->rootDir. "/Pman/$m/{$dbtype}.initdata")) {
241                 HTML_FlexyFramework::get()->generateDataobjectsCache(true);
242                 
243                 $this->{$dirmethod}($dburl, $this->rootDir. "/Pman/$m/{$dbtype}.initdata");
244                 $this->{'fixSequences'. $dbtype}();
245                 
246             }
247               
248             
249         }
250         
251     }
252     
253     
254     
255      
256     /** -------------- code to handle importing a whole directory of files into the database  -------  **/
257     
258     
259     function importpgsqldir($url, $dir, $disable_triggers = false)
260     {
261         $ff = HTML_FlexyFramework::get();
262         
263         require_once 'System.php';
264         $cat = System::which('cat');
265         $psql = System::which('psql');
266         
267          
268         if (!empty($url['pass'])) { 
269             putenv("PGPASSWORD=". $url['pass']);
270         }
271            
272         $psql_cmd = $psql .
273             ' -h ' . $url['host'] .
274             ' -U' . escapeshellarg($url['user']) .
275              ' ' . basename($url['path']);
276         
277         
278         echo $psql_cmd . "\n" ;
279         echo "scan : $dir\n";
280         if (is_file($dir)) {
281             $files = array($dir);
282
283         } else {
284         
285         
286             $files = glob($dir.'/*.sql');
287             uksort($files, 'strcasecmp');
288         }
289         //$lsort = create_function('$a,$b','return strlen($a) > strlen($b) ? 1 : -1;');
290         //usort($files, $lsort);
291         
292         
293         
294         foreach($files as $bfn) {
295
296
297             if (preg_match('/migrate/i', basename($bfn))) { // skip migration scripts at present..
298                 continue;
299             }
300             if (preg_match('#\.[a-z]{2}\.sql#i', basename($bfn))
301                 && !preg_match('#\.pg\.sql#i', basename($bfn))
302             ) { // skip migration scripts at present..
303                 continue;
304             }
305             $fn = false;
306
307             if (!preg_match('/pgsql/', basename($dir) )) {
308                  if ( !preg_match('#\.pg\.sql$#', basename($bfn))) {
309                     $fn = $this->convertToPG($bfn);
310                 }
311             }
312
313             // files ending in .pg.sql are native postgres files.. ## depricated
314
315
316             $cmd = "$psql_cmd  < " . escapeshellarg($fn ? $fn : $bfn) . ' 2>&1' ;
317
318             echo "$bfn:   $cmd ". ($ff->cli ? "\n" : "<BR>\n");
319
320
321             passthru($cmd);
322
323             if ($fn) {
324                 unlink($fn);
325             }
326         }
327
328               
329              
330         
331     }
332     
333     
334     /**
335      * mysql - does not support conversions.
336      * 
337      *
338      */
339     
340     
341     function importmysqldir($dburl, $dir)
342     {
343         echo "Import MYSQL :: $dir\n";
344         
345         
346         require_once 'System.php';
347         $cat = System::which('cat');
348         $mysql = System::which('mysql');
349         
350        
351            
352         $mysql_cmd = $mysql .
353             ' -h ' . $dburl['host'] .
354             ' -u' . escapeshellarg($dburl['user']) .
355             (!empty($dburl['pass']) ? ' -p' . escapeshellarg($dburl['pass'])  :  '') .
356             ' ' . basename($dburl['path']);
357         //echo $mysql_cmd . "\n" ;
358         
359         $files = glob($dir.'/*.sql');
360         uksort($files, 'strcasecmp');
361         
362        
363         foreach($files as $fn) {
364                 
365                  
366                 if (preg_match('/migrate/i', basename($fn))) { // skip migration scripts at present..
367                     continue;
368                 }
369                 // .my.sql but not .pg.sql
370                 if (preg_match('#\.[a-z]{2}\.sql#i', basename($fn))
371                     && !preg_match('#\.my\.sql#i', basename($fn))
372                 ) { // skip migration scripts at present..
373                     continue;
374                 }
375                 if (!strlen(trim($fn))) {
376                     continue;
377                 }
378                 
379                 $cmd = "$mysql_cmd -f < " . escapeshellarg($fn) ;
380                 
381                 echo basename($dir).'/'. basename($fn) .    '::' .  $cmd. ($this->cli ? "\n" : "<BR>\n");
382                 
383                 passthru($cmd);
384             
385                 
386         }
387        
388         
389         
390     }
391     
392     
393     /**
394      * simple regex based convert mysql to pgsql...
395      */
396     function convertToPG($src)
397     {
398         //echo "Convert $src\n";
399                
400         $fn = $this->tempName('sql');
401         
402         $ret = array( ); // pad it a bit.
403         $extra = array("", "" );
404         
405         $tbl = false;
406         foreach(file($src) as $l) {
407             $l = trim($l);
408             
409             if (!strlen($l) || $l[0] == '#') {
410                 continue;
411             }
412             $m = array();
413             if (preg_match('#create\s+table\s+([a-z0-9_]+)#i',  $l, $m)) {
414                 $tbl = $m[1];
415              }
416             if (preg_match('#create\s+table\s+\`([a-z0-9_]+)\`#i',  $l, $m)) {
417                 $tbl = 'shop_' . strtolower($m[1]);
418                 $l = preg_replace('#create\s+table\s+\`([a-z0-9_]+)\`#i', "CREATE TABLE {$tbl}", $l);
419             }
420             if (preg_match('#\`([a-z0-9_]+)\`#i',  $l, $m) && !preg_match('#alter\s+table\s+#i',  $l)) {
421                 $l = preg_replace('#\`([a-z0-9_]+)\`#i', "{$m[1]}_name", $l);
422             }
423             // autoinc
424             if ($tbl && preg_match('#auto_increment#i',  $l, $m)) {
425                 $l = preg_replace('#auto_increment#i', "default nextval('{$tbl}_seq')", $l);
426                 $extra[]  =   "create sequence {$tbl}_seq;";
427               
428             }
429             
430             if (preg_match('#alter\s+table\s+(\`[a-z0-9_]+\`)#i',  $l, $m)){
431                 $l = preg_replace('#alter\s+table\s+(\`[a-z0-9_]+\`)#i', "ALTER TABLE {$tbl}", $l);
432             }
433             
434             // enum value -- use the text instead..
435             
436             if ($tbl && preg_match('#([\w]+)\s+(enum\([\w|\W]+\))#i',  $l, $m)) {
437                 $l = preg_replace('#enum\([\w|\W]+\)#i', "TEXT", $l);
438             }
439             // ignore the alter enum
440             if ($tbl && preg_match('#alter\s+table\s+([\w|\W]+)\s+enum\([\w|\W]+\)#i',  $l, $m)) {
441                 continue;
442             }
443             
444             // UNIQUE KEY .. ignore
445             if ($tbl && preg_match('#UNIQUE KEY#i',  $l, $m)) {
446                 $last = array_pop($ret);
447                 $ret[] = trim($last, ",");
448                 continue;
449             }
450             
451             if ($tbl && preg_match('#RENAME\s+TO#i',  $l, $m)) {
452                 continue;
453             }
454             
455             if ($tbl && preg_match('#change\s+column#i',  $l, $m)) {
456                 continue;
457             }
458             
459             // INDEX lookup ..ignore
460             if ($tbl && preg_match('#INDEX lookup+([\w|\W]+)#i',  $l, $m)) {
461                $last = array_pop($ret);
462                $ret[] = trim($last, ",");
463                continue;
464                
465             }
466             
467             // CREATE INDEX ..ignore
468             if (preg_match('#alter\s+table\s+([a-z0-9_]+)\s+add\s+index\s+#i',  $l, $m)) {
469 //               $l = "CREATE INDEX  {$m[1]}_{$m[2]} ON {$m[1]} {$m[3]}";
470                 continue;
471              }
472              
473             // basic types..
474             $l = preg_replace('#int\([0-9]+\)#i', 'INT', $l);
475             
476             $l = preg_replace('# datetime#i', ' TIMESTAMP WITHOUT TIME ZONE', $l);
477             $l = preg_replace('# blob#i', ' TEXT', $l);
478             $l = preg_replace('# longtext#i', ' TEXT', $l);
479             $l = preg_replace('# tinyint#i', ' INT', $l);
480             
481             $ret[] = $l;
482             
483         }
484         
485         $ret = array_merge($extra,$ret);
486 //        echo implode("\n", $ret); exit;
487         
488         file_put_contents($fn, implode("\n", $ret));
489         
490         return $fn;
491     }
492     
493     
494     function checkOpts($opts)
495     {
496         
497         
498         foreach($opts as $o=>$v) {
499             if (!preg_match('/^json-/', $o) || empty($v)) {
500                 continue;
501             }
502             if (!file_exists($v)) {
503                 die("File does not exist : OPTION --{$o} = {$v} \n");
504             }
505         }
506         
507         $modules = array_reverse($this->modulesList());
508         
509         // move 'project' one to the end...
510         
511         foreach ($modules as $module){
512             $file = $this->rootDir. "/Pman/$module/UpdateDatabase.php";
513             if($module == 'Core' || !file_exists($file)){
514                 continue;
515             }
516             require_once $file;
517             $class = "Pman_{$module}_UpdateDatabase";
518             $x = new $class;
519             if(!method_exists($x, 'checkOpts')){
520                 continue;
521             };
522             $x->checkOpts($opts);
523         }
524                 
525     }
526     static function jsonImportFromArray($opts)
527     {
528         foreach($opts as $o=>$v) {
529             if (!preg_match('/^json-/', $o) || empty($v)) {
530                 continue;
531             }
532             $type = str_replace('_', '-', substr($o,5));
533             
534             $data= json_decode(file_get_contents($v),true);
535             $pg = HTML_FlexyFramework::get()->page;
536             DB_DataObject::factory($type)->importFromArray($pg ,$data,$opts);
537             
538         }
539         
540         
541         
542     }
543     
544     
545     
546     function runUpdateModulesData()
547     {
548         
549         
550         HTML_FlexyFramework::get()->generateDataobjectsCache(true);
551         echo "Running jsonImportFromArray\n";
552         Pman_Core_UpdateDatabase::jsonImportFromArray($this->opts);
553         
554         
555         echo "Running updateData on modules\n";
556         // runs core...
557         echo "Core\n";
558         $this->updateData(); 
559         $modules = array_reverse($this->modulesList());
560         
561         // move 'project' one to the end...
562         
563         foreach ($modules as $module){
564             $file = $this->rootDir. "/Pman/$module/UpdateDatabase.php";
565             if($module == 'Core' || !file_exists($file)){
566                 continue;
567             }
568             
569             require_once $file;
570             $class = "Pman_{$module}_UpdateDatabase";
571             $x = new $class;
572             if(!method_exists($x, 'updateData')){
573                 continue;
574             };
575             echo "$module\n";
576             $x->updateData();
577         }
578                 
579     }
580     
581     
582     function updateDataEnums()
583     {
584         
585         $enum = DB_DataObject::Factory('core_enum');
586         //DB_DAtaObject::debugLevel(1);
587         $enum->initEnums(
588             array(
589                 array(
590                     'etype' => '',
591                     'name' => 'COMPTYPE',
592                     'display_name' =>  'Company Types',
593                     'is_system_enum' => 1,
594                     'cn' => array(
595                         array(
596                             'name' => 'OWNER',
597                             'display_name' => 'Owner',
598                             'seqid' => 999, // last...
599                             'is_system_enum' => 1,
600                         )
601                         
602                     )
603                 ),
604                 array(
605                     'etype' => '',
606                     'name' => 'HtmlEditor.font-family',
607                     'display_name' =>  'HTML Editor font families',
608                     'is_system_enum' => 1,
609                     'cn' => array(
610                         array(
611                             'name' => 'Helvetica,Arial,sans-serif',
612                             'display_name' => 'Helvetica',
613                             
614                         ),
615                         
616                         array(
617                             'name' => 'Courier New',
618                             'display_name' => 'Courier',
619                              
620                         ),
621                         array(
622                             'name' => 'Tahoma',
623                             'display_name' => 'Tahoma',
624                             
625                         ),
626                         array(
627                             'name' => 'Times New Roman,serif',
628                             'display_name' => 'Times',
629                            
630                         ),
631                         array(
632                             'name' => 'Verdana',
633                             'display_name' => 'Verdana',
634                             
635                         ),
636                         
637                             
638                         
639                     )
640                 ),
641             )
642         ); 
643         
644     }
645     function updateDataGroups()
646     {
647          
648         $groups = DB_DataObject::factory('groups');
649         $groups->initGroups();
650         
651         $groups->initDatabase($this,array(
652             array(
653                 'name' => 'bcc-email', // group who are bcc'ed on all requests.
654                 'type' => 0, // system
655             ),
656             array(
657                 'name' => 'system-email-from',
658                 'type' => 0, // system
659             ),
660         ));
661         
662     }
663     
664     function updateDataCompanies()
665     {
666          
667         // fix comptypes enums..
668         $c = DB_DataObject::Factory('Companies');
669         $c->selectAdd();
670         $c->selectAdd('distinct(comptype) as comptype');
671         $c->whereAdd("comptype != ''");
672         
673         $ctb = array();
674         foreach($c->fetchAll('comptype') as $cts) {
675             
676             
677             
678            $ctb[]= array( 'etype'=>'COMPTYPE', 'name' => $cts, 'display_name' => ucfirst(strtolower($cts)));
679         
680         }
681          $c = DB_DataObject::Factory('core_enum');
682          
683         $c->initEnums($ctb);
684         //DB_DataObject::debugLevel(1);
685         // fix comptypeid
686         $c = DB_DataObject::Factory('Companies');
687         $c->query("
688             UPDATE Companies 
689                 SET
690                     comptype_id = (SELECT id FROM core_enum where etype='comptype' and name=Companies.comptype LIMIT 1)
691                 WHERE
692                     comptype_id = 0
693                     AND
694                     LENGTH(comptype) > 0
695                   
696                   
697                   ");
698          
699         
700         
701     }
702     
703     function updateData()
704     {
705         // fill i18n data..
706         HTML_FlexyFramework::get()->generateDataobjectsCache(true);
707         $this->updateDataEnums();
708         $this->updateDataGroups();
709         $this->updateDataCompanies();
710         
711         $c = DB_DataObject::Factory('I18n');
712         $c->buildDB();
713          
714        
715         
716         
717     }
718     
719     /** ------------- schema fixing ... there is an issue with data imported having the wrong sequence names... --- */
720     
721     function fixSequencesMysql()
722     {
723         // not required...
724     }
725     
726     function fixSequencesPgsql()
727     {
728      
729      
730         //DB_DataObject::debugLevel(1);
731         $cs = DB_DataObject::factory('core_enum');
732         $cs->query("
733          SELECT
734                     'ALTER SEQUENCE '||
735                     CASE WHEN strpos(seq_name, '.') > 0 THEN
736                         min(seq_name)
737                     ELSE 
738                         quote_ident(min(schema_name)) ||'.'|| quote_ident(min(seq_name))
739                     END 
740                     
741                     ||' OWNED BY '|| quote_ident(min(schema_name)) || '.' ||
742                     quote_ident(min(table_name)) ||'.'|| quote_ident(min(column_name)) ||';' as cmd
743              FROM (
744                       
745                        SELECT 
746                      n.nspname AS schema_name,
747                      c.relname AS table_name,
748                      a.attname AS column_name, 
749                      regexp_replace(regexp_replace(d.adsrc, E'nextval\\\\(+[''\\\"]*', ''),E'[''\\\"]*::.*\$','') AS seq_name 
750                  FROM pg_class c 
751                  JOIN pg_attribute a ON (c.oid=a.attrelid) 
752                  JOIN pg_attrdef d ON (a.attrelid=d.adrelid AND a.attnum=d.adnum) 
753                  JOIN pg_namespace n ON (c.relnamespace=n.oid)
754                  WHERE has_schema_privilege(n.oid,'USAGE')
755                    AND n.nspname NOT LIKE 'pg!_%' escape '!'
756                    AND has_table_privilege(c.oid,'SELECT')
757                    AND (NOT a.attisdropped)
758                    AND d.adsrc ~ '^nextval'
759               
760              ) seq
761              WHERE
762                  CASE WHEN strpos(seq_name, '.') > 0 THEN
763                      substring(seq_name, 1,strpos(seq_name,'.')-1)
764                 ELSE
765                     schema_name
766                 END = schema_name
767              
768              GROUP BY seq_name HAVING count(*)=1
769              ");
770         $cmds = array();
771         while ($cs->fetch()) {
772             $cmds[] = $cs->cmd;
773         }
774         foreach($cmds as $cmd) {
775             $cs = DB_DataObject::factory('core_enum');
776             echo "$cmd\n";
777             $cs->query($cmd);
778         }
779         $cs = DB_DataObject::factory('core_enum');
780          $cs->query("
781                SELECT  'SELECT SETVAL(' ||
782                          quote_literal(quote_ident(nspname) || '.' || quote_ident(S.relname)) ||
783                         ', MAX(' || quote_ident(C.attname)|| ')::integer )  FROM ' || nspname || '.' || quote_ident(T.relname)|| ';' as cmd 
784                 FROM pg_class AS S,
785                     pg_depend AS D,
786                     pg_class AS T,
787                     pg_attribute AS C,
788                     pg_namespace AS NS
789                 WHERE S.relkind = 'S'
790                     AND S.oid = D.objid
791                     AND D.refobjid = T.oid
792                     AND D.refobjid = C.attrelid
793                     AND D.refobjsubid = C.attnum
794                     AND NS.oid = T.relnamespace
795                 ORDER BY S.relname   
796         ");
797          $cmds = array();
798         while ($cs->fetch()) {
799             $cmds[] = $cs->cmd;
800         }
801         foreach($cmds as $cmd) {
802             $cs = DB_DataObject::factory('core_enum');
803             echo "$cmd\n";
804             $cs->query($cmd);
805         }
806        
807     }
808     
809 }