AssetTrait.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='')
38     {
39        
40         $bits = explode('/', $s);
41         
42         if (empty($bits[0]) || empty($bits[1])  || !isset($this->types[$bits[0]])) {
43             $this->jerr("invalid url");
44         }
45        
46         $s = str_replace('/', '-', $bits[1]);
47         
48         $ui = posix_getpwuid(posix_geteuid());
49         $ff = HTML_FlexyFramework::get();
50         
51         $compile = session_save_path() . '/' .
52                 $ui['name'] . '-' . $ff->project . '-' . $ff->version .  '-'. $bits[0] . 'compile';
53      
54         $fn = $compile . '/'. $s .'.'. $bits[0];
55         
56         
57         
58         
59         if (!file_exists($fn)) {
60             header('Content-Type: '. $this->types[$bits[0]]);
61         
62             echo "// compiled file not found = $fn";
63             exit;
64         }
65         
66         $last_modified_time = filemtime($fn);
67         
68         
69         if (
70             (
71                 isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) &&
72                 strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) == $last_modified_time
73             )
74             ||
75             (
76                  isset($_SERVER['HTTP_IF_NONE_MATCH']) &&
77                 trim($_SERVER['HTTP_IF_NONE_MATCH']) == md5($fn)
78             )) { 
79             header("HTTP/1.1 304 Not Modified");
80             exit;
81         }
82         
83         header('Content-Type: '. $this->types[$bits[0]]);
84         
85         
86         header("Pragma: public");
87         header('Content-Length: '. filesize($fn));
88         header('Cache-Control: max-age=2592000, public');
89         header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time() + 2592000));
90         header('Last-Modified: '.gmdate('D, d M Y H:i:s \G\M\T', $last_modified_time));
91         header('Etag: '. md5($fn)); 
92         
93         $fh = fopen($fn,'r');
94         fpassthru($fh);
95         fclose($fh);
96         exit;
97         
98     }
99     function post($s='') {
100         die('invalid');
101     }
102      
103     
104 }