Pman.Dialog.CmsBlog.bjs
[Pman.Cms] / OutputTranslations.php
1 <?php
2
3 require_once 'Pman.php'; /// needed as we might not be included from pman..
4
5 class Pman_Cms_OutputTranslations extends Pman
6 {
7     var $lang = 'en';
8     
9     function get($lang = '',  $opts = array())
10     {
11         if(!empty($lang)){
12             $this->lang = $lang;
13         }
14         $projects = array();
15         
16         foreach ($this->modules() as $m){
17             $projects[] = "Pman.{$m}";
18         }
19         
20         $this->getTranslationsCache($projects);
21         exit;
22     }
23     
24     function getTranslations($projects = array())
25     {
26         $ret = array();
27         
28         $template = DB_DataObject::factory('cms_template');
29         $template->whereAddIn('view_name', $projects, 'string');
30         $template = $template->fetchAll('id');
31         
32         $base = DB_DataObject::factory('cms_templatestr');
33         $base->setFrom(array(
34             'lang' => '',
35             'active' => 1
36         ));
37         $base->whereAddIn('template_id', $template, 'int');
38         
39         $base = $base->fetchAll('id', 'template_id');
40         
41         $translation = DB_DataObject::factory('cms_templatestr');
42         $translation->autoJoin();
43         $translation->setFrom(array(
44             'template_id' => array_values($base),
45             'lang' => $this->lang,
46             'active' => 1
47         ));
48         $translation->whereAddIn('cms_templatestr.src_id', array_keys($base), 'int');
49         
50         $translation->selectAdd();
51         $translation->selectAdd("
52             cms_templatestr.txt AS txt,
53             join_template_id_id.template AS template_id_template,
54             join_src_id_id.mdsum AS src_id_mdsum,
55             join_src_id_id.txt AS src_id_txt
56         ");
57         
58         foreach ($translation->fetchAll() as $t){
59             if(!isset($ret[$t->template_id_template])){
60                 $ret[$t->template_id_template] = array();
61             }
62
63             $ret[$t->template_id_template][$t->src_id_mdsum] = (empty($t->txt)) ? $t->src_id_txt : $t->txt;
64         }
65         
66         return $ret;
67     }
68     
69     function getTranslationsCache($projects = array())
70     {
71         if(empty($projects)){
72             return;
73         }
74         
75         $this->sessionState(0);
76         
77         $ff = HTML_FlexyFramework::get();
78         
79         $ui = posix_getpwuid(posix_geteuid());
80         
81         $this->cachePath = session_save_path() . '/' .
82                 $ui['name'] . '-' . $ff->project . '-templatestr/' . 
83                 $ff->project . '-' . $ff->version . '-' . $this->lang . '.fulloutput.json';
84         
85         $is_new = false;
86         
87         if(!$this->is_cached() ){
88             $is_new =true;
89             $translations = $this->getTranslations($projects);
90         
91             $output = "";
92
93             foreach ($translations as $file => $trans){
94                 $t = json_encode($trans);
95
96                 $cls = str_replace('.bjs', '', $file);
97                 $output .= "try { ";
98                 $output .= "Roo.apply({$cls}._strings, {$t});";
99                 $output .= " } ";
100                 $output .= "catch(e){}; ";
101             }
102
103             file_put_contents($this->cachePath, $output);
104         }
105         
106         $last_modified_time = filemtime($this->cachePath);
107         
108         if (
109             !$is_new
110             &&
111             (
112                 
113                 (
114                     isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) &&
115                     strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) == $last_modified_time
116                 )
117                 ||
118                 (
119                     isset($_SERVER['HTTP_IF_NONE_MATCH']) &&
120                     trim($_SERVER['HTTP_IF_NONE_MATCH']) == md5($this->cachePath)
121                 )
122             )
123         ) { 
124             
125             header("HTTP/1.1 304 Not Modified");
126             exit;
127         }
128         
129         header('Content-Type: text/javascript');
130         
131         // dont do the 'cachy thing' on dev servers...
132         if (!$this->is_dev()) { 
133             header("Pragma: public");
134             header('Content-Length: '. filesize($this->cachePath));
135             
136             header('Cache-Control: max-age=2592000, public');
137             header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time() + 2592000));
138             header('Last-Modified: '.gmdate('D, d M Y H:i:s \G\M\T', $last_modified_time));
139             header('Etag: '. md5($this->cachePath));
140         }
141         
142         $fh = fopen($this->cachePath,'r');
143         fpassthru($fh);
144         fclose($fh);
145     }
146     
147     function is_dev()
148     {
149         if (!empty($_SERVER['HTTP_HOST']) && preg_match('/^dev/', $_SERVER['HTTP_HOST'])) {
150             return true;
151         }
152         return false;
153     }
154     
155     function is_cached()
156     {
157         if (!empty($_GET['no_cache'])) {
158             return false;
159         }
160         if ($this->is_dev()) {
161             return false;
162         }
163         
164         
165         $dest = dirname($this->cachePath);
166         
167         if (!file_exists($dest)) {
168             mkdir($dest, 0700, true);
169         }
170         
171         if(!file_exists($this->cachePath)){
172             return false;
173         }
174       
175         $cms_templatestr = DB_DataObject::factory('cms_templatestr');
176         $cms_templatestr->active = 1;
177         $cms_templatestr->selectAdd();
178         $cms_templatestr->selectAdd("MAX(updated) AS latest");
179         $cms_templatestr->find(true);
180         
181         if(filemtime($this->cachePath) < strtotime($cms_templatestr->latest)){
182             return false;
183         }
184         
185         return true;
186     }
187 }