check what is being written to our log files.
[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     /**
141      * usage in template
142      * {outputCssDir(#{Hydra/templates/images/css/#,#Hydra.js",#.......#)}
143      */
144     
145     function outputCssDir($path)
146     {
147           
148         $relpath = $this->rootURL . '/' . $path .'/';
149         $ff = HTML_FlexyFramework::get();
150         $dir =   $this->rootDir.'/' . $path;
151         
152         $args = func_get_args();
153         $ar = array();
154         if (count($args) < 2) {
155             $ar = glob($dir . '/*.css');
156         } else {
157             array_shift($args);
158             foreach($args as $f) {
159                 if (strpos($f,'*') > -1) {
160  
161                     $ar = array_merge($ar ,  glob($dir . '/'. $f));
162                     continue;
163                 }
164                 // what if the fiel does not exist???
165                 $ar[] = $dir .'/'. $f;
166             }
167           
168         }
169         if (empty($ar)) {
170             echo "<!-- skipping $path - no files found -->\n";
171             return;
172         }
173         
174          // cached version?? - how do we decide if it's expired?
175         // while scanning the directory is slow... - it's faster than serving every file...
176         
177         
178         //$path = $this->rootURL ."/Pman/$mod/";
179         
180         //print_R($ar);exit;
181         $missing_files  = false;
182         $files = array();
183         $arfiles = array();
184         $relfiles = array(); // array of files without the path part...
185         $maxtime = 0;
186         $mtime = 0;
187         foreach($ar as $fn) {
188             $relfiles[] = substr($fn, strlen($dir)+1);
189             $f = basename($fn);
190             // got the 'module file..'
191             
192             if (!file_exists($dir . '/'. $f)) {
193                 echo "<!-- missing {$relpath}{$f} -->\n";
194                 $files[] = $relpath  . $f . '?ts=0';
195                 $missing_files = true;
196                 continue;
197             }
198             
199             $mtime = filemtime($dir . '/'. $f);
200             $maxtime = max($mtime, $maxtime);
201             $arfiles[$fn] = $mtime;
202             $files[] = $relpath  . $f . '?ts='.$mtime;
203             
204             
205             
206         }
207         if ($missing_files) {
208             $this->assetArrayToHtml($files, 'css');
209             return;
210             
211         }
212         
213          
214         //print_r($relfiles);
215       
216         require_once 'Pman/Core/Asset.php';
217         $compiledir = Pman_Core_Asset::getCompileDir('css', '', true);
218         
219          
220         if (!file_exists($compiledir)) {
221             mkdir($compiledir,0700,true);
222         }
223         
224          
225         
226         
227         // yes sort... if includes are used - they have to be in the first file...
228         $lsort = function($a,$b ) {
229                 return strlen($a) > strlen($b) ? 1 : -1;
230         };
231         usort($files, $lsort);
232         usort($relfiles,$lsort);
233        // print_R($relfiles);
234         
235         $ff = HTML_FlexyFramework::get();
236         
237         // isDev set
238         
239         if ((!empty($ff->Pman['isDev']) || $_SERVER['HTTP_HOST'] == 'localhost' )&& !empty($_REQUEST['isDev'])) {
240             echo "<!-- CSS compile turned off (isDev on) -->\n";
241             $this->assetArrayToHtml($files,'css');
242             return;
243         }
244         
245         
246         $smod = str_replace('/','.',$path);
247         
248         $output = date('Y-m-d-H-i-s-', $maxtime). $smod .'-'.md5(serialize(array($this->baseURL, $arfiles))) .'.css';
249          
250         $asset = $ff->project == 'Pman' ? '/Core/Asset/css/' : '/Asset/css/';
251         
252         // where are we going to write all of this..
253         // This has to be done via a 
254         if ( !file_exists($compiledir.'/'.$output) || !filesize($compiledir.'/'.$output)) {
255             
256             //print_r($relfiles);
257             
258             require_once 'HTML/CSS/Minify.php';
259             $x = new HTML_CSS_Minify(substr($relpath,0,-1), $dir, $relfiles);
260             
261             file_put_contents($compiledir.'/'.$output , $x->minify( $this->baseURL.$asset));
262             clearstatcache();
263             if (!file_exists($compiledir.'/'.$output) ||
264                 !filesize($compiledir.'/'.$routput)) {
265                 echo "<!-- compile did not generate files : " . basename($compiledir) . "/{$output} -->\n";
266                 $this->assetArrayToHtml($files,'css');
267                 return;
268             } 
269             
270         } else {
271          //   echo "<!-- file already exists: {$basedir}/{$output} -->\n";
272         }
273         
274          
275         //$this->arrayToJsInclude(  $files);
276         $this->assetArrayToHtml(  array(
277             $this->baseURL.$asset. $output,
278           
279         ),'css');
280         
281     }
282     
283     
284     
285 }