X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=Asset.php;h=eb5c0538de30ffc395121bf6ff6c9b9fe56b6250;hp=f47a10d2d7494b5166caec600b4633ab8f598a5d;hb=HEAD;hpb=b9effbc12c008a2752b13818da20050d60aa28bc diff --git a/Asset.php b/Asset.php index f47a10d2..3e49f8eb 100644 --- a/Asset.php +++ b/Asset.php @@ -26,6 +26,7 @@ class Pman_Core_Asset extends Pman { var $types = array( 'css' => 'text/css', 'js' => 'text/javascript', + 'map' => 'application/json' ); function getAuth() @@ -36,7 +37,6 @@ class Pman_Core_Asset extends Pman { function get($s='', $opts = Array()) { - $this->sessionState(0); $bits = explode('/', $s); @@ -45,27 +45,28 @@ class Pman_Core_Asset extends Pman { $this->jerr("invalid url"); } + $ext = $bits[0]; + if (preg_match('/\.map$/',$_SERVER['REQUEST_URI'])) { + $ext = 'map'; + } + $s = str_replace('/', '-', $bits[1]); + $ui = posix_getpwuid(posix_geteuid()); $ff = HTML_FlexyFramework::get(); - $compile = session_save_path() . '/' . - $ui['name'] . '-' . $ff->project . '-' . $ff->version . '-'. $bits[0] . 'compile'; - - $fn = $compile . '/'. $s .'.'. $bits[0]; - - + $compile = self::getCompileDir($bits[0], '', false); + $fn = $compile . '/'. $s .'.'. $ext; if (!file_exists($fn)) { - header('Content-Type: '. $this->types[$bits[0]]); + header('Content-Type: '. $this->types[$ext]); echo "// compiled file not found = $fn"; exit; } - $supportsGzip = !empty($_SERVER['HTTP_ACCEPT_ENCODING']) && strpos( $_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip' ) !== false; @@ -111,7 +112,7 @@ class Pman_Core_Asset extends Pman { $fh = fopen($fn,'r'); fpassthru($fh); fclose($fh); - $content = $data; + } @@ -119,49 +120,87 @@ class Pman_Core_Asset extends Pman { exit; } + function post($s='') { + if(!empty($_REQUEST['_clear_cache'])) { + $this->clearCompiledFilesCache(); + } + die('invalid'); } - static function getCompileDir($type) + static function getCompileDir($type, $module = '', $is_mkdir = true) { - $ui = posix_getpwuid(posix_geteuid()); - $ff = HTML_FlexyFramework::get(); + $ui = posix_getpwuid(posix_geteuid()); + $compile_dir = session_save_path() . "/"; + if (empty($module)) { + $module = $ff->project . (isset($ff->appNameShort) ? '_' . $ff->appNameShort : ''); + } + + switch($type) { case 'js': case 'css': + case 'scss': $compile_dir .= implode("-", array( $ui['name'], - $ff->project, + $module, $ff->version, "{$type}compile" )); break; - case 'template': - - break; + // template config? default: return false; } - exit; - - - - if (file_exists($compile_dir)) { return $compile_dir; } + if(!$is_mkdir) { + return false; + } + if(mkdir($compile_dir, 0700, true)) { return $compile_dir; } return false; } + + function clearCompiledFilesCache() + { + $au = $this->getAuthUser(); + if (!$au && !in_array($_SERVER['REMOTE_ADDR'] , array('127.0.0.1','::1'))) { + $this->jerr("Cache can only be cleared by authenticated users"); + } + + require_once 'System.php'; + $ff = HTML_FlexyFramework::get(); + + $mods = $this->modulesList(); + $mods[] = $ff->project; // Pman - this was the old format... + $mods[] = ''; // Pman + appshortname.. + + foreach ($mods as $module) { + $compile_dir = $this->getCompileDir('js', $module, false); + + if(!empty($compile_dir)) { + System::rm(array('-r', $compile_dir)); + } + $compile_dir = $this->getCompileDir('css', $module, false); + + if(!empty($compile_dir)) { + System::rm(array('-r', $compile_dir)); + } + } + + $this->jok('DONE'); + } }