fix #8131 - chinese translations
[Pman.Core] / AssetTrait.php
1 <?php
2 // a little experimental... we are going to use the same name as the class. for these..
3
4 trait Pman_Core_AssetTrait {
5     
6     
7     
8      /**
9      * usage in template
10      * {outputJavascriptDir(#Hydra#,#Hydra.js",#.......#)}
11      *
12      * call_user
13      * 
14      */
15     
16     function outputJavascriptDir($path)
17     {
18         
19         $relpath = $this->rootURL . '/' . $path .'/';
20         $ff = HTML_FlexyFramework::get();
21         $dir =   $this->rootDir.'/' . $path;
22         
23         $args = func_get_args();
24         $ar = array();
25         if (count($args) < 2) {
26             $ar = glob($dir . '/*.js');
27         } else {
28             array_shift($args);
29             foreach($args as $f) {
30                 if (strpos($f,'*') > -1) {
31  
32                     $ar = array_merge($ar ,  glob($dir . '/'. $f));
33                     continue;
34                 }
35                 if (!preg_match('/\.js$/', $f)) {
36                     $f .= ".js";
37                 }
38                 $ar[] = $dir .'/'. $f;
39             }
40           
41         }
42          // cached version?? - how do we decide if it's expired?
43         // while scanning the directory is slow... - it's faster than serving every file...
44         if (empty($ar)) {
45             echo "<!-- skipping $path - no files found -->\n";
46             return;
47         }
48         
49         //$path = $this->rootURL ."/Pman/$mod/";
50         
51         
52         
53         $files = array();
54         $arfiles = array();
55         $maxtime = 0;
56         $mtime = 0;
57         foreach($ar as $fn) {
58             $f = basename($fn);
59             if (!preg_match('/\.js$/', $f) || $fn == '.js' || !file_exists($dir . '/' . $f)) { // only javascript files... (so XXX.Dialog.YYY*  works..)
60                 continue;
61             }
62             // got the 'module file..'
63             $mtime = filemtime($dir . '/'. $f);
64             $maxtime = max($mtime, $maxtime);
65             $arfiles[$fn] = $mtime;
66             $files[] = $relpath  . $f . '?ts='.$mtime;
67         }
68         
69         ksort($arfiles); // just sort by name so it's consistant for serialize..
70         
71         require_once 'Pman/Core/Asset.php';
72         $compiledir = Pman_Core_Asset::getCompileDir('js', '', true);
73         
74          
75         
76         $lsort = function($a,$b) { return strlen($a) > strlen($b) ? 1 : -1; };
77         usort($files, $lsort);
78         
79         $ff = HTML_FlexyFramework::get();
80         
81         if (!empty($ff->Pman['isDev']) && !empty($_REQUEST['isDev'])) {
82             echo "<!-- Javascript compile turned off (isDev on) -->\n";
83             $this->assetArrayToHtml($files,'js');
84             return;
85         }
86         
87         
88         $smod = str_replace('/','.',$path);
89         
90         $output = date('Y-m-d-H-i-s-', $maxtime). $smod .'-'.md5(serialize($arfiles)) .'.js';
91          
92         
93         
94         
95         // where are we going to write all of this..
96         // This has to be done via a 
97         if (!file_exists($compiledir.'/'.$output) || !filesize($compiledir.'/'.$output)) {
98             require_once 'Pman/Core/JsCompile.php';
99             $x = new Pman_Core_JsCompile();
100             
101             $x->pack($arfiles,$compiledir.'/'.$output, false);
102             clearstatcache();
103             if (!file_exists($compiledir.'/'.$output) ||
104                 !filesize($compiledir.'/'.$output)) {
105                 echo "<!-- compile did not generate files : ". basename($compiledir)  ."/{$output} -->\n";
106                 $this->assetArrayToHtml($files,'js');
107                 return;
108             } 
109             
110         } else {
111          //   echo "<!-- file already exists: {$basedir}/{$output} -->\n";
112         }
113         
114         $asset = $ff->project == 'Pman' ? '/Core/Asset/js/' : '/Asset/js/';
115         //$this->arrayToJsInclude(  $files);
116         $this->assetArrayToHtml(  array(
117             $this->baseURL.$asset. $output,
118           
119         ), 'js');
120         
121     }
122     
123     function assetArrayToHtml($ar, $type)
124     {
125         foreach($ar as $f) {
126             switch( $type) {
127                 case 'js':
128                     echo '<script type="text/javascript" src="'. $f. '"></script>'."\n";
129                     break;
130                 case 'css':
131                     echo '<link rel="stylesheet" href="'. $f. '"/>'."\n";
132                     break;
133        
134             }
135         }
136     }
137     
138     
139     /**
140      * usage in template
141      * {outputCSSDir(#{Hydra/templates/images/css/#,#Hydra.js",#.......#)}
142      */
143     
144     function outputCSSDir($path)
145     {
146           
147         $relpath = $this->rootURL . '/' . $path .'/';
148         $ff = HTML_FlexyFramework::get();
149         $dir =   $this->rootDir.'/' . $path;
150         
151         $args = func_get_args();
152         $ar = array();
153         if (count($args) < 2) {
154             $ar = glob($dir . '/*.css');
155         } else {
156             array_shift($args);
157             foreach($args as $f) {
158                 if (strpos($f,'*') > -1) {
159  
160                     $ar = array_merge($ar ,  glob($dir . '/'. $f));
161                     continue;
162                 }
163                 // what if the fiel does not exist???
164                 $ar[] = $dir .'/'. $f;
165             }
166           
167         }
168         if (empty($ar)) {
169             echo "<!-- skipping $path - no files found -->\n";
170             return;
171         }
172         
173          // cached version?? - how do we decide if it's expired?
174         // while scanning the directory is slow... - it's faster than serving every file...
175         
176         
177         //$path = $this->rootURL ."/Pman/$mod/";
178         
179         //print_R($ar);exit;
180         $missing_files  = false;
181         $files = array();
182         $arfiles = array();
183         $relfiles = array(); // array of files without the path part...
184         $maxtime = 0;
185         $mtime = 0;
186         foreach($ar as $fn) {
187             $relfiles[] = substr($fn, strlen($dir)+1);
188             $f = basename($fn);
189             // got the 'module file..'
190             
191             if (!file_exists($dir . '/'. $f)) {
192                 echo "<!-- missing {$relpath}{$f} -->\n";
193                 $files[] = $relpath  . $f . '?ts=0';
194                 $missing_files = true;
195                 continue;
196             }
197             
198             $mtime = filemtime($dir . '/'. $f);
199             $maxtime = max($mtime, $maxtime);
200             $arfiles[$fn] = $mtime;
201             $files[] = $relpath  . $f . '?ts='.$mtime;
202             
203             
204             
205         }
206         if ($missing_files) {
207             $this->assetArrayToHtml($files, 'css');
208             return;
209             
210         }
211         
212          
213         //print_r($relfiles);
214       
215         require_once 'Pman/Core/Asset.php';
216         $compiledir = Pman_Core_Asset::getCompileDir('css', '', true);
217         
218          
219         if (!file_exists($compiledir)) {
220             mkdir($compiledir,0700,true);
221         }
222         
223          
224         
225         
226         // yes sort... if includes are used - they have to be in the first file...
227         $lsort = function($a,$b ) {
228                 return strlen($a) > strlen($b) ? 1 : -1;
229         };
230         usort($files, $lsort);
231         usort($relfiles,$lsort);
232        // print_R($relfiles);
233         
234         $ff = HTML_FlexyFramework::get();
235         
236         // isDev set
237         
238         if ((!empty($ff->Pman['isDev']) || $_SERVER['HTTP_HOST'] == 'localhost' )&& !empty($_REQUEST['isDev'])) {
239             echo "<!-- CSS compile turned off (isDev on) -->\n";
240             $this->assetArrayToHtml($files,'css');
241             return;
242         }
243         
244         
245         $smod = str_replace('/','.',$path);
246         
247         $output = date('Y-m-d-H-i-s-', $maxtime). $smod .'-'.md5(serialize(array($this->baseURL, $arfiles))) .'.css';
248          
249         $asset = $ff->project == 'Pman' ? '/Core/Asset/css/' : '/Asset/css/';
250         
251         // where are we going to write all of this..
252         // This has to be done via a 
253         if ( !file_exists($compiledir.'/'.$output) || !filesize($compiledir.'/'.$output)) {
254             
255             //print_r($relfiles);
256             
257             require_once 'HTML/CSS/Minify.php';
258             $x = new HTML_CSS_Minify(substr($relpath,0,-1), $dir, $relfiles);
259             
260             file_put_contents($compiledir.'/'.$output , $x->minify( $this->baseURL.$asset));
261             clearstatcache();
262             if (!file_exists($compiledir.'/'.$output) ||
263                 !filesize($compiledir.'/'.$routput)) {
264                 echo "<!-- compile did not generate files : " . basename($compiledir) . "/{$output} -->\n";
265                 $this->assetArrayToHtml($files,'css');
266                 return;
267             } 
268             
269         } else {
270          //   echo "<!-- file already exists: {$basedir}/{$output} -->\n";
271         }
272         
273          
274         //$this->arrayToJsInclude(  $files);
275         $this->assetArrayToHtml(  array(
276             $this->baseURL.$asset. $output,
277           
278         ),'css');
279         
280     }
281     
282     
283     
284     function outputSCSS($smod)
285     {
286         // we cant output non-cached versions of this.... 
287         $ff = HTML_FlexyFramework::get();
288         $fp =   "{$this->rootDir}/Pman/$smod/scss/{$smod}.scss";
289        // var_dump($fp);
290         if (!file_exists($fp)) {
291             return;
292         }
293         
294         $ar = glob(dirname($fp) . '/*.scss');
295         $maxtime = 0;
296         foreach($ar as $fn) {
297             $maxtime=max($maxtime, filemtime($fn));
298         }
299         
300         
301         
302         //print_r($relfiles);
303       
304         require_once 'Pman/Core/Asset.php';
305         $compiledir = Pman_Core_Asset::getCompileDir('css',  '', true);
306         
307          
308         if (!file_exists($compiledir)) {
309             mkdir($compiledir,0700,true);
310         }
311         
312         
313         
314          
315         $output = date('Y-m-d-H-i-s-', $maxtime). $smod .'-'.md5(serialize(array($this->baseURL, $ar))) .'.css';
316          
317         $asset = $ff->project == 'Pman' ? '/Core/Asset/css/' : '/Asset/css/';
318         
319         // where are we going to write all of this..
320         // This has to be done via a
321         
322         
323         
324         if ( !file_exists($compiledir.'/'.$output) || !filesize($compiledir.'/'.$output)) {
325             
326             
327             
328             require_once 'System.php';
329             static $sassc = false;
330             if ($sassc === false) {
331                 $sassc = System::which("sassc");
332             }
333             if (empty($sassc)) {
334                 die("INSTALL sassc");
335             }
336                  
337             $fd = dirname($fp);
338             
339             $ver = `$sassc --version`;
340             $bits = explode("\n", $ver);
341             foreach($bits as $b) {
342                 $lr = explode(":", $b);
343                 $vers[trim($lr[0])] = trim($lr[1]);
344             } 
345             
346             $sm = $vers['sass'] > 3.4 ? ' --sourcemap=auto ' : '--sourcemap';
347             $cmd = "{$sassc} --style=compressed  {$sm} -I {$fd} -I {$this->rootDir}/roojs1/scss/bootstrap $smod.scss {$compiledir}/{$output}";
348             //echo "$cmd\n";            echo `$cmd`;
349             `$cmd`;
350             
351              
352             clearstatcache();
353             if (!file_exists($compiledir.'/'.$output) ||
354                 !filesize($compiledir.'/'.$routput)) {
355                 echo "<!-- compile did not generate files : $cmd -->\n";
356                 echo "<script type=\"text/javascript\">alert('Failed to compile {$fp}');</script>\n";
357                 return;
358             } 
359             
360         } else {
361          //   echo "<!-- file already exists: {$basedir}/{$output} -->\n";
362         }
363         
364          
365         //$this->arrayToJsInclude(  $files);
366         $this->assetArrayToHtml(  array(
367             $this->baseURL.$asset. $output,
368           
369         ),'css');
370         
371     }
372     
373     
374 }