Asset.php
[Pman.Core] / Asset.php
1 <?php
2  
3  /**
4   * Generic cached assset server... -- No security om this.. should only return compressed CSS/JS
5   *
6   * Does a few tricks with headers to improve caching...
7   *
8   *
9   * Also includes code to generate assets...
10   *
11   * methods outputJavascriptDir / outputCssDir generate links to 
12   *    BASEURL/Asset/css/xxxx.yyy.zzz
13   *    BASEURL/Asset/js/xxxx.yyy.zzz
14   *
15   *   then
16   *   we deliver the file from
17   *       SESSION-DIR/{$www-user}-{$ff->project}-$ff->version}-{js|css}-compile/{filename}/PATH';
18   *
19   *   
20   */
21  
22 require_once 'Pman.php';
23
24 class Pman_Core_Asset extends Pman {
25      
26     var $types = array(
27         'css' => 'text/css',
28         'js' => 'text/javascript',
29     );
30     
31     function getAuth()
32     {
33         return true;
34     }
35     
36     
37     function get($s='', $opts = Array())
38     {
39         
40         $this->sessionState(0);
41         
42         $bits = explode('/', $s);
43         
44         if (empty($bits[0]) || empty($bits[1])  || !isset($this->types[$bits[0]])) {
45             $this->jerr("invalid url");
46         }
47        
48         $s = str_replace('/', '-', $bits[1]);
49         
50         $ui = posix_getpwuid(posix_geteuid());
51         $ff = HTML_FlexyFramework::get();
52         
53         $compile = session_save_path() . '/' .
54                 $ui['name'] . '-' . $ff->project . '-' . $ff->version .  '-'. $bits[0] . 'compile';
55      
56         $fn = $compile . '/'. $s .'.'. $bits[0];
57         
58         
59         
60         
61         if (!file_exists($fn)) {
62             header('Content-Type: '. $this->types[$bits[0]]);
63         
64             echo "// compiled file not found = $fn";
65             exit;
66         }
67         
68         
69         $supportsGzip = !empty($_SERVER['HTTP_ACCEPT_ENCODING']) && strpos( $_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip' ) !== false;
70
71         
72         $last_modified_time = filemtime($fn);
73         
74         
75         if (
76             (
77                 isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) &&
78                 strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) == $last_modified_time
79             )
80             ||
81             (
82                  isset($_SERVER['HTTP_IF_NONE_MATCH']) &&
83                 trim($_SERVER['HTTP_IF_NONE_MATCH']) == md5($fn)
84             )) { 
85             header("HTTP/1.1 304 Not Modified");
86             exit;
87         }
88         
89         header('Content-Type: '. $this->types[$bits[0]]);
90         
91         
92         header("Pragma: public");
93         
94         header('Cache-Control: max-age=2592000, public');
95         header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time() + 2592000));
96         header('Last-Modified: '.gmdate('D, d M Y H:i:s \G\M\T', $last_modified_time));
97         header('Etag: '. md5($fn)); 
98         
99          if ( $supportsGzip ) {
100             $content = gzencode( file_get_contents($fn) , 9);
101             
102             header('Content-Encoding: gzip');
103             header('Vary: Accept-Encoding');
104             header('Content-Length: '. strlen($content));
105             
106             echo $content;
107             
108         } else {
109             
110             
111             $fh = fopen($fn,'r');
112             fpassthru($fh);
113             fclose($fh);
114             $content = $data;
115         }
116         
117         
118         
119         exit;
120         
121     }
122     function post($s='') {
123         die('invalid');
124     }
125      
126     static function getCompileDir($type)
127     {
128         if(empty($type)) {
129             return false;
130         }
131         
132         $ui = posix_getpwuid(posix_geteuid());
133         
134         $ff = HTML_FlexyFramework::get();
135         
136         $compile_dir = session_save_path() . '/' . implode("-", array(
137             $ui['name'],
138             $ff->project,
139             $ff->version,
140             "{$type}compile"
141         ));
142         
143         if (!file_exists($compile_dir)) {
144             mkdir($compile_dir, 0700, true);
145         }
146     }
147 }