AssetTrait.php
[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                 
36                 $ar[] = $dir .'/'. $f;
37             }
38           
39         }
40          // cached version?? - how do we decide if it's expired?
41         // while scanning the directory is slow... - it's faster than serving every file...
42         if (empty($ar)) {
43             echo "<!-- skipping $path - no files found -->\n";
44             return;
45         }
46         
47         //$path = $this->rootURL ."/Pman/$mod/";
48         
49         
50         
51         $files = array();
52         $arfiles = array();
53         $maxtime = 0;
54         $mtime = 0;
55         foreach($ar as $fn) {
56             $f = basename($fn);
57             // got the 'module file..'
58             $mtime = filemtime($dir . '/'. $f);
59             $maxtime = max($mtime, $maxtime);
60             $arfiles[$fn] = $mtime;
61             $files[] = $relpath  . $f . '?ts='.$mtime;
62         }
63         
64         ksort($arfiles); // just sort by name so it's consistant for serialize..
65         
66         $ui = posix_getpwuid(posix_geteuid());
67        
68         
69         $compiledir = session_save_path() . '/' .
70                 $ui['name'] . '-' . $ff->project . '-' . $ff->version . '-jscompile';
71         
72         if (!file_exists($compiledir)) {
73             mkdir($compiledir,0700,true);
74         }
75         
76          
77         
78         $lsort = create_function('$a,$b','return strlen($a) > strlen($b) ? 1 : -1;');
79         usort($files, $lsort);
80         
81         
82         if (!empty($this->bootLoader->isDev) && !empty($_REQUEST['isDev'])) {
83             echo "<!-- Javascript compile turned off (isDev on) -->\n";
84             $this->assetArrayToHtml($files,'js');
85             return;
86         }
87         
88         
89         $smod = str_replace('/','.',$path);
90         
91         $output = date('Y-m-d-H-i-s-', $maxtime). $smod .'-'.md5(serialize($arfiles)) .'.js';
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         $ui = posix_getpwuid(posix_geteuid());
217        
218         
219         $compiledir = session_save_path() . '/' .
220                 $ui['name'] . '-' . $ff->project . '-'. $ff->version . '-csscompile';
221         
222         if (!file_exists($compiledir)) {
223             mkdir($compiledir,0700,true);
224         }
225         
226          
227         
228         
229         // yes sort... if includes are used - they have to be in the first file...
230         $lsort = create_function('$a,$b','return strlen($a) > strlen($b) ? 1 : -1;');
231         usort($files, $lsort);
232        
233         
234         if (!empty($this->bootLoader->isDev) && !empty($_REQUEST['isDev'])) {
235             echo "<!-- CSS compile turned off (isDev on) -->\n";
236             $this->assetArrayToHtml($files,'css');
237             return;
238         }
239         
240         
241         $smod = str_replace('/','.',$path);
242         
243         $output = date('Y-m-d-H-i-s-', $maxtime). $smod .'-'.md5(serialize($arfiles)) .'.css';
244          
245          $asset = $ff->project == 'Pman' ? '/Core/Asset/css/' : '/Asset/css/';
246         
247         // where are we going to write all of this..
248         // This has to be done via a 
249         if (!file_exists($compiledir.'/'.$output) || !filesize($compiledir.'/'.$output)) {
250             
251             //print_r($relfiles);
252             
253             require_once 'HTML/CSS/Minify.php';
254             $x = new HTML_CSS_Minify(substr($relpath,0,-1), $dir, $relfiles);
255             
256             file_put_contents($compiledir.'/'.$output , $x->minify( $this->baseURL.$asset));
257             clearstatcache();
258             if (!file_exists($compiledir.'/'.$output) ||
259                 !filesize($compiledir.'/'.$routput)) {
260                 echo "<!-- compile did not generate files : " . basename($compiledir) . "/{$output} -->\n";
261                 $this->assetArrayToHtml($files,'css');
262                 return;
263             } 
264             
265         } else {
266          //   echo "<!-- file already exists: {$basedir}/{$output} -->\n";
267         }
268         
269          
270         //$this->arrayToJsInclude(  $files);
271         $this->assetArrayToHtml(  array(
272             $this->baseURL.$asset. $output,
273           
274         ),'css');
275         
276     }
277     
278     
279     
280 }