fe08463ba31ae433a323961183404cc68f3a7c71
[Pman.Core] / DataObjects / Core_templatestr.php
1 <?php
2 /**
3  * Table Definition for core_templatestr
4  *
5  *
6  * The idea here is that it contains all the strings in the templates with a language '' (empty)
7  * , it then generates a matching set of strings
8  * 
9  */
10 class_exists('DB_DataObject') ? '' : require_once 'DB/DataObject.php';
11
12 class Pman_Core_DataObjects_Core_templatestr extends DB_DataObject 
13 {
14     ###START_AUTOCODE
15     /* the code below is auto generated do not remove the above tag */
16
17     public $__table = 'core_templatestr';         // table name
18     public $id;                              // int(11)  not_null primary_key auto_increment
19     public $template_id;                           // string(64)  not_null
20     public $txt;                    // datetime(19)  multiple_key binary
21     public $updated;                        // blob(65535)  blob
22     public $src_id;                          // int(11)  not_null
23     public $lang;    // text  NOT NULL;
24     public $mdsum;    // text  NOT NULL;
25     public $active;
26     public $on_table;
27     public $on_id;
28     public $on_col;
29  
30     /* the code above is auto generated do not remove the tag below */
31     ###END_AUTOCODE
32     
33     function beforeInsert($q,$roo)
34     {
35         if(!empty($q['_rescan'])){
36             $this->syncLang($q['_rescan']);
37             $roo->jok('OK');
38         }
39     }
40     
41     
42     function applyFilters($q, $au, $roo)
43     {
44         if (!empty($q['_tree'])) {
45             $this->applyFiltersTree($q,$roo);
46         }
47         
48         if(!empty($q['on_table']) && (empty($q['template_id']) || !is_numeric($q['template_id']))){
49             $this->template_id = 0;
50              $this->whereAdd("  join_src_id_id.txt != ''");
51         }
52         if (!empty($q['_search_txt'])) {
53             $str = $this->escape($q['_search_txt']);
54             $this->whereAdd("core_templatestr.txt like '%{$str}%' OR join_src_id_id.txt like '%{$str}%'");
55             
56         }
57     }
58     function translateTableCol($obj, $col, $lang)
59     {
60         $cts = DB_DataObject::factory('core_templatestr');
61         $cts->lang = $lang;
62         $cts->on_table = $obj->tableName();
63         $cts->on_id = $obj->pid();
64         $cc = clone($cts);
65         if(!$cts->find(true)){
66             return $obj->$col;
67         }
68         
69         
70         if(empty($cts->txt)){
71             return $obj->$col;
72         }
73             
74         return $cts->txt;
75     }
76     /**
77      *
78      * insert the origanal table text
79      * 
80      * @param type $roo
81      * @param type $obj
82      * @param type $chg
83      * @return type 
84      */
85     function onTableChange($roo, $obj, $chg)
86     {
87         
88         $ff = HTML_FlexyFramework::get()->Pman_Core;
89             
90         if(empty($ff['DataObjects_Core_templatestr']['tables'])){
91             return;
92         }
93         $tn = $obj->tableName();
94         if(empty($ff['DataObjects_Core_templatestr']['tables'][$tn])){
95             return;
96         }
97         $cols = $ff['DataObjects_Core_templatestr']['tables'][$tn];
98         
99         
100         foreach($cols as $c) {
101             $x = $this->factory($this->tableName());
102             $x->on_id = $obj->pid();
103             $x->on_table = $tn;
104             $x->on_col = $c;
105             $x->lang = ''; /// eg. base language..
106             $up = $x->find(true);
107             if ($up && $x->txt == $obj->$c) {
108                 continue; // update an no change..
109             }
110             $x->active = 1;
111             $x->src_id = 0;
112             $x->txt = $obj->$c;
113             $x->mdsum = md5($obj->$c);
114             $x->template_id = 0;
115             $x->updated = date('Y-m-d H:i:s', strtotime("NOW"));
116             $up ? $x->update() : $x->insert();
117         }
118         
119         
120     }
121     
122     
123     function applyFiltersTree($q,$roo)
124     {
125         if (empty($q['node'])) {
126             $roo->jerr("invalid node");
127         }
128         switch(true) {
129             
130             case ($q['node'] == 'transtree'):
131             case ($q['node'] == 'langlist'):
132                // DB_DataObject::debugLevel(1);
133                 $x = DB_Dataobject::Factory($this->tableName());
134                 $x->selectAdd();
135                 $x->selectAdd('distinct(lang) as lang');
136                 
137                 $x->selectAdd("i18n_translate('l', lang, 'en') as lang_name");
138                 $x->whereAdd("lang != ''");
139                 $ret= array();
140                 foreach( $x->fetchAll() as $l) {
141                     $ret[] = array(
142                         'text'=>$l->lang_name,
143                         'id' => $q['node'] == 'langlist' ? $l->lang : 'lang:'.$l->lang ,
144                         'language' => true
145                     );
146                 }
147                 if (empty($ret)) {
148                     $ret[] = array(
149                         'text'=>'English',
150                         'id' => 'lang:en',
151                         'language' => true
152                     );
153                 }
154                 $roo->jdata($ret);
155             
156             case  preg_match('/^lang:/', $q['node']):
157                 
158                 $lang = preg_replace('/^lang:/', '', $q['node']);
159                 $ret= array();  
160                 $x = DB_DataObject::factory('core_templatestr');
161                 $x->autoJoin();
162                 $x->selectAdd();
163                 $x->selectAdd('distinct(view_name) as view_name');
164                 $x->lang = $lang;
165                 $x->whereAdd('join_template_id_id.is_deleted = 0');
166                 $x->orderBy('view_name DESC');
167                 $x->find();
168                 while($x->fetch()) {
169                     $ret[] = array( 
170                         'text'=> $x->view_name,
171                         'id' => 'view:'. $lang .':'.  $x->view_name,
172                         'leaf' => false
173                     );
174                 }
175
176                 $ff = HTML_FlexyFramework::get()->Pman_Core;
177
178                 if(!empty($ff['DataObjects_Core_templatestr']['tables'])){
179                     foreach($ff['DataObjects_Core_templatestr']['tables'] as $table=>$v){
180                         $ret[] = array(
181                             'text'=> $table,
182                             'on_table' => $table,
183                             'id' => 'table:'. $lang .':'. $table,
184                             'leaf' => true
185                         );
186                     }
187                 }
188                 
189                  
190                 $roo->jdata($ret);
191                 
192                 break;
193                 
194                 
195             case  preg_match('/^view:/', $q['node']):
196                 
197                
198                 $bits= explode(":",preg_replace('/^view:/', '', $q['node']));
199                 
200                 $x = DB_DataObject::factory($this->tableName());
201                 $x->autoJoin();
202                 $x->selectAdd();
203                 $x->selectAdd('distinct(core_templatestr.template_id) as template_id');
204                 $x->whereAdd("join_template_id_id.view_name = '{$x->escape($bits[1])}'");
205                 $x->whereAdd('join_template_id_id.is_deleted = 0');
206                 $x->lang = $bits[0];
207                 $ids = $x->fetchAll('template_id');
208                 
209                 $ret= array();
210                 //add the table type lists
211                 /*
212                 $ff = HTML_FlexyFramework::get()->Pman_Core;
213                 
214                 
215 //                $x->orderBy('template ASC');
216 //                $x->whereAdd("lang != ''");
217                 */
218                 //below are old code
219                 $xx = DB_Dataobject::Factory('core_template');
220                 $xx->whereAddIn('id', $ids, 'int');
221                 $xx->selectAdd();
222                 $xx->selectAdd("
223                                
224                     id, concat(  template) as template_name
225                 ");
226                 $xx->orderBy('template_name ASC');
227                 
228                 foreach( $xx->fetchAll('id', 'template_name') as $l =>$n) {
229                     $ret[] = array(
230                         'text'=> $n,
231                         'id' => $l,
232                         'leaf' => true
233                     );
234                 }
235                 
236                 $roo->jdata($ret);
237                  break;
238         }
239                 
240         
241         
242     }
243     
244     
245     /**
246      *
247      * 
248      * @param object $tmpl core_template data object
249      * @param array $words array of words 
250      */ 
251     function syncTemplateWords($tmpl, $keyvalue = false)
252     {
253         
254         $words = $tmpl->words;
255         // mapping for template : 
256         //tablename => $n (templatename) 
257         //tableid => $k (key value)
258         //colname => $n (templatename) 
259         // mdsum => md5(sum)
260         //
261         //print_r($words);exit;
262         // grab original
263         $tt = DB_DataObject::factory($this->tableName());
264  
265         $t = clone($tt);
266         $t->template_id = $tmpl->id;
267         $t->whereAdd("lang = ''");
268         
269         
270         // we have a situation where old md sums where created..
271         
272         
273         
274         $cur = $t->fetchAll('mdsum', 'id'); 
275         
276         
277         
278         
279         
280         
281         
282         // now loop through current..
283         $cwords = array();// not in used??
284         $active = array();
285 //        echo "sync Template Words... \n";
286 //        print_r($words);
287         
288         foreach($words as $k=>$v) {
289             
290             
291             $v = trim($v);
292
293             if(empty($v)) {
294                 continue;
295             }
296             
297             $md = $keyvalue ? $k : md5($v);
298             
299             // check to see if there are more that one versions of that md5
300             
301             
302             if (!isset($cur[$md])) {
303                 // create a record for it..
304                 $t = DB_DataObject::factory($this->tableName());
305                 $t->setFrom(array(
306                     'txt' => $v,
307                     'lang' => '',// by default should a english 
308                     'updated' => date('Y-m-d H:i:s', strtotime("YESTERDAY")),
309                     'template_id'=>$tmpl->id,
310                     'mdsum' => $md,
311                     'src_id' => 0,
312                     'active' => 1,
313                 ));
314                 $active[] =  $t->insert();
315                 continue;
316             }  
317             $cur[$md] = $this->checkDupes($tmpl->id, '',  $cur[$md] , $md);
318             
319             $active[] = $cur[$md];
320             
321             // we have it already? - 
322             $tt->query("UPDATE {$this->tableName()}
323                         SET active= 1
324                         WHERE
325                         id = ".$cur[$md]);
326             unset($cur[$md]);
327             
328         }
329         // delete unused.
330         
331         
332         
333
334         $deactive = array();
335         if (count(array_values($cur))) {// de-active unused
336
337             $t = DB_DataObject::factory($this->tableName());
338 //            echo "de-active current?? \n";
339 //            print_r($cur);
340 //            echo "\n";
341             $deactive = array_values($cur);
342             $t->query("UPDATE core_templatestr
343                       SET active = 0 WHERE id in (" . implode(',' ,$deactive) . ")
344                      ");
345         }
346         
347         // delete all the items that are not relivant.
348         // clear orphaned chidren - it just blanks out the src id, so they can be used as suggestions..?
349         // this does not help - as it just puts random strings in there.. - with no reference to the original text..
350         $t = DB_DataObject::factory($this->tableName());
351     
352         // this will active the child data
353         if (empty($active)) {// set the active array to empty
354             $active = array(-1);
355         }
356         $t->query("UPDATE  core_templatestr 
357                 SET active = 1
358                   WHERE
359                      src_id IN (". implode(',' ,$active) . ")
360                     AND
361                     template_id = {$tmpl->id}
362         ");
363         //deactive the child data
364         if (empty($deactive)) {
365             $deactive = array(-1);
366         }
367         $t->query("UPDATE  core_templatestr 
368                 SET active = 0
369                   WHERE
370                     src_id IN (". implode(',' ,$deactive) . ")
371                     AND
372                     template_id = {$tmpl->id}
373                     AND
374                     lang != ''
375         ");
376     }
377     
378     function checkDupes($tid, $lang, $id, $mdsum) {
379         
380         $t = DB_DataObject::factory($this->tableName());
381         $t->template_id = $tid;
382         $t->mdsum = $mdsum;
383         $t->whereAdd("lang = '{$lang}'");
384         if ($t->count() == 1) {
385             return $id; // only got one ... no issues..
386         }
387         
388         //echo "GOT DUPES : $id, $lang, $id , $mdsum\n";
389         
390         //DB_DataObject::debugLevel(1);
391         // find out if any of them have got translations.
392         $ids = $t->fetchAll('id');
393         
394         
395         $t = DB_DataObject::factory($this->tableName());
396         $t->whereAddIn('src_id', $ids, 'int');
397         $t->whereAdd("txt != ''");
398         $t->orderBy('updated DESC');
399         if ($t->count()) {
400             $t->limit(1);
401             // do any translations exist?
402             $t->find(true);
403             $id = $t->src_id;
404         }
405         
406         
407         // delete all the others...
408         $t = DB_DataObject::factory($this->tableName());
409         $t->whereAddIn('src_id', $ids, 'int');
410         $t->whereAdd("src_id != $id");
411         $t->find();
412         while($t->fetch()) {
413             $tt = clone($t);
414             $tt->mdsum = $t->mdsum . '-bad-'. $t->id;
415             $tt->update($t);
416         }
417         $t = DB_DataObject::factory($this->tableName());
418         $t->whereAddIn('id', $ids, 'int');
419         $t->whereAdd("id != $id");
420         $t->find();
421         while($t->fetch()) {
422             $tt = clone($t);
423             $tt->mdsum = $t->mdsum . '-bad-'. $t->id;
424             $tt->update($t);
425         }
426         // this is done by calling code 
427         //$t = DB_DataObject::factory($this->tableName());
428         //$t->query("update core_templatestr set active= 1 where src_id = $id");
429         
430         
431         
432        //exit;
433         return $id;
434     
435                
436          
437     }
438     
439     function syncLang($lang)
440     {
441         // bugs with our old code...
442 //        die('in?');
443         $tn = $this->tableName();
444         $t = DB_DataObject::factory($tn);
445         $t->query("DELETE FROM {$tn} WHERE lang !='' AND src_id = 0 AND on_table  = ''");
446         
447         // find all the id's from lang that have not been generated..
448         
449         
450         static $id_tmp = false;
451         
452         if ($id_tmp == false) {
453             //find the origanal 
454             $t = DB_DataObject::factory($tn);
455             $t->whereAdd("lang = ''");
456             $t->active = 1;
457             
458             //old code, this did not support the on_table
459     //        $id_tmp = $t->fetchAll('id','template_id');
460     //        $ids = array_keys($id_tmp);
461             $id_tmp = array();
462             //new code for support the sync tables 
463             foreach($t->fetchAll() as $ori){
464                 $id_tmp[$ori->id] = $ori;
465             }
466         }
467         $ids = array_keys($id_tmp);
468         
469         // matching by language:
470         $t = DB_DataObject::factory($tn);
471         $t->whereAddIn('src_id', $ids , 'int');
472         $t->lang = $lang;
473         //$t->active = 1;
474         $got = $t->fetchAll('src_id');
475         $missing = array_diff($ids, $got);
476         
477         if (empty($missing)) {
478             return;
479         }
480         $t = DB_DataObject::factory($tn);
481         $q = "CREATE TEMPORARY TABLE core_templatestr_insert SELECT
482             id as src_id,
483             '' as txt,
484             '$lang' as lang,
485             NOW() as updated,
486             template_id,
487             on_table,
488             on_id,
489             on_col,
490             1 as active
491             FROM core_templatestr
492             WHERE
493             id IN (". implode(',', $missing) . ")
494         ";
495         //echo $q; exit;
496         DB_DataObject::factory($tn)->query($q);
497         $q = "INSERT INTO $tn (src_id, txt, lang, updated, template_id, on_table,on_id, on_col, active) SELECT * FROM core_templatestr_insert";
498         DB_DataObject::factory($tn)->query($q);
499         $q = "DROP TEMPORARY TABLE core_templatestr_insert";
500         DB_DataObject::factory($tn)->query($q);
501             
502       
503         
504     }
505     
506     // called from flexy to translate a string.
507     
508     
509     function translateFlexyString($flexy, $string)
510     {
511          $debug = false;;
512         //if (!empty($_REQUEST['_debug'])) { $debug= true; }
513         
514         // using $flexy->currentTemplate -> find the template we are looking at..
515         // then find the string for $flexy->options['locale']
516         //DB_DataObject::debugLevel(1);
517         if ($debug) { var_dump($string); }
518         
519         static $cache = array(); // cache of templates..
520         
521         $ff = HTML_FlexyFramework::get();
522         $view_name = isset($ff->Pman_Core['view_name']) ? $ff->Pman_Core['view_name'] : false;
523         if (empty($view_name)) {
524             $pg = HTML_FlexyFramework::get()->page;
525             if (isset($pg->templateViewName)) {
526                 $view_name = $pg->templateViewName;
527             }
528             
529         }
530         
531         
532         
533         if ($debug) { var_dump(array('view_name'=> $view_name)); }
534         
535         $tempdir = '';
536         foreach($flexy->options['templateDir'] as $td) {
537             if (substr($flexy->currentTemplate, 0, strlen($td)) == $td) {
538                 $tempdir = $td;
539                 break;
540             }
541         }
542         
543         
544         $tmpname = substr($flexy->currentTemplate, strlen($td) +1);
545         
546          
547         if (isset($cache[$tmpname]) && $cache[$tmpname] === false) {
548             if ($debug) { echo "from cache no match - $string\n"; }
549             return $string;
550         }
551         
552         if (!isset($cache[$tmpname])) {
553                 
554             
555             
556             $tmpl = DB_DataObject::factory('core_template');
557             if ($view_name !== false) {
558                 $tmpl->view_name = $view_name;
559             }
560             if(!$tmpl->get('template', $tmpname)){
561                 // strip of site prefix if set...
562                  
563                 $tmpl = DB_DataObject::factory('core_template');
564                 if(!$tmpl->get('template', $tmpname)){
565                     //var_dump("no template? {$tmpname} or {$relpath}" );
566                     $cache[$tmpname] = false;
567                     if ($debug) { echo "no template found - no match - $string\n"; }
568                     return $string;
569                 }
570             }
571             $cache[$tmpname] = $tmpl;
572         } else {
573             $tmpl = $cache[$tmpname] ;
574         }
575         
576         
577     
578         //get original template id
579         /*
580         $orig = DB_DataObject::factory($this->tableName());
581         $orig->lang = '';
582         $orig->template_id = $tmpl->id;
583         $orig->active = 1;
584         
585         $cache[$tmpname]->words = 
586         
587         if(!$orig->get( 'mdsum' , md5(trim($string)))){
588              //var_dump('no text? '. $string);
589             if ($debug) { echo "no original string found tplid: {$tmpl->id}\n"; }
590             return false;
591         }
592         */
593         
594         if (empty($cache[$tmpname]->translations)) {
595         
596             //find out the text by language
597             //DB_DataObject::DebugLevel(1);
598             $x = DB_DataObject::factory($this->tableName());
599             $x->lang = $flexy->options['locale'];
600             $x->template_id = $tmpl->id;
601             $x->autoJoin();
602             $cache[$tmpname]->translations = $x->fetchAll('src_id_mdsum', 'txt');
603             if (empty($cache[$tmpname]->translations)) {
604                 $cache[$tmpname]->translations = true;
605             }
606             //var_Dump($cache[$tmpname]->translations);
607         }
608         
609         
610         if ($cache[$tmpname]->translations === true) {
611             return $string;
612         }
613         //var_dump("Checking: " . md5(trim($string)));
614         
615         if (!empty($cache[$tmpname]->translations [md5(trim($string))])){
616            // var_dump("RETURNING: ". $cache[$tmpname]->translations [md5(trim($string))]);
617             return $cache[$tmpname]->translations [md5(trim($string))];
618         }
619         return $string;
620         
621     }
622     
623     
624     function translateChanged($flexy)
625     {
626         
627         $date = $this->lastUpdated($flexy);
628         if ($date === false) {
629             return false;
630         }
631         $utime = file_exists($flexy->compiledTemplate) ?  filemtime( $flexy->compiledTemplate) : 0;
632         return strtotime($date) >  $utime;
633     }
634     
635     // determine if a complied template need recompling
636     
637     function lastUpdated($flexy)
638     {
639         //return true;
640         // var_dump('check changed?');
641         //DB_DataObject::debugLevel(1);
642         //var_Dump(array($flexy->options['templateDir'][0], $flexy->currentTemplate));
643         
644         //var_dump($flexy->compiledTemplate);
645         $utime = file_exists($flexy->compiledTemplate) ?  filemtime( $flexy->compiledTemplate) : 0;
646         
647        
648         static $cache = array(); // cache of templates..
649         
650         $ff = HTML_FlexyFramework::get();
651         $view_name = isset($ff->Pman_Core['view_name']) ? $ff->Pman_Core['view_name'] : false;
652         
653         // find which of the template directories was actually used for the template.
654         
655         $tempdir = '';
656         foreach($flexy->options['templateDir'] as $td) {
657             if (substr($flexy->currentTemplate, 0, strlen($td)) == $td) {
658                 $tempdir = $td;
659                 break;
660             }
661         }
662         
663         
664         $tmpname = substr($flexy->currentTemplate, strlen($td) +1);
665         
666         // we do not have any record of this template..
667         if (isset($cache[$tmpname]) && $cache[$tmpname] === false) {
668             return false;
669         }
670         
671         if (!isset($cache[$tmpname])) {
672                 
673             
674             
675             $tmpl = DB_DataObject::factory('core_template');
676             if ($view_name !== false) {
677                 $tmpl->view_name = $view_name;
678             }
679             if(!$tmpl->get('template', $tmpname)){
680                 // strip of site prefix if set...
681                  
682                 $tmpl = DB_DataObject::factory('core_template');
683                 if(!$tmpl->get('template', $tmpname)){
684                     //var_dump("no template? {$tmpname} or {$relpath}" );
685                     $cache[$tmpname] = false;
686                     return false;
687                 }
688             }
689             $cache[$tmpname] = $tmpl;
690         } else {
691             $tmpl = $cache[$tmpname] ;
692         }
693           
694          
695         
696         $x = DB_DataObject::factory($this->tableName());
697         $x->lang = $flexy->options['locale'];
698         $x->active = 1;
699         $x->template_id = $tmpl->id;
700         //$x->whereAdd("updated > '". date('Y-m-d H:i:s', $utime)."'");
701         if ($x->count() < 1) {
702             return false; // we don't have any record of it.
703         }
704         $x->selectAdd();
705         $x->selectAdd('max(updated) as max_updated');
706         $x->find(true);
707         return $x->max_updated;
708         
709         
710     }
711     
712 }