summaryrefslogtreecommitdiff
path: root/framework/Web/TAssetManager.php
diff options
context:
space:
mode:
authorxue <>2005-11-13 14:57:07 +0000
committerxue <>2005-11-13 14:57:07 +0000
commit978183c26c4c9ffc629aff05d81c69eadd04b156 (patch)
tree4279dc5e787f6359eeedd4528f0fa7563eafc815 /framework/Web/TAssetManager.php
parent5df7e651109fc9a58c62c600b373a569d8c9e090 (diff)
added timestamp checking option for publish directories and files.
Diffstat (limited to 'framework/Web/TAssetManager.php')
-rw-r--r--framework/Web/TAssetManager.php32
1 files changed, 25 insertions, 7 deletions
diff --git a/framework/Web/TAssetManager.php b/framework/Web/TAssetManager.php
index af4cfd73..5cc72f16 100644
--- a/framework/Web/TAssetManager.php
+++ b/framework/Web/TAssetManager.php
@@ -9,6 +9,7 @@ class TAssetManager extends TComponent implements IModule
* @var string module ID
*/
private $_id;
+ private $_checkTimestamp=false;
/**
* Initializes the module.
@@ -84,13 +85,26 @@ class TAssetManager extends TComponent implements IModule
$this->_baseUrl=$value;
}
- public function publishDirectory($path,$forceOverwrite=false)
+ public function getCheckTimestamp()
+ {
+ return $this->_checkTimestamp;
+ }
+
+ public function setCheckTimestamp($value)
+ {
+ if($this->_initialized)
+ throw new TInvalidOperationException('pageservice_checktimestamp_unchangeable');
+ else
+ $this->_checkTimestamp=TPropertyValue::ensureBoolean($value);
+ }
+
+ public function publishDirectory($path,$checkTimestamp=false)
{
if(($fullpath=realpath($path))!==false && is_dir($fullpath))
{
$dir=md5($fullpath);
- if(!is_dir($this->_basePath.'/'.$dir))
- $this->copyDirectory($this->_basePath.'/'.$dir);
+ if(!is_dir($this->_basePath.'/'.$dir) || $checkTimestamp || $this->_checkTimestamp)
+ $this->copyDirectory($fullpath,$this->_basePath.'/'.$dir);
return $this->_baseUrl.'/'.$dir;
}
else
@@ -99,27 +113,31 @@ class TAssetManager extends TComponent implements IModule
protected function copyDirectory($src,$dst)
{
- mkdir($dst);
+ @mkdir($dst);
$folder=opendir($src);
while($file=readdir($folder))
{
if($file==='.' || $file==='..')
continue;
else if(is_file($src.'/'.$file))
- copy($src.'/'.$file,$dst.'/'.$file);
+ {
+ if(@filemtime($dst.'/'.$file)<filemtime($src.'/'.$file))
+ copy($src.'/'.$file,$dst.'/'.$file);
+ }
else
$this->copyDirectory($src.'/'.$file,$dst.'/'.$file);
}
closedir($folder);
}
- public function publishFile($path,$forceOverwrite=false)
+ public function publishFile($path,$checkTimestamp=false)
{
if(($fullpath=realpath($path))!==false && is_file($fullpath))
{
$dir=md5(dirname($fullpath));
$file=$this->_basePath.'/'.$dir.'/'.basename($fullpath);
- if(!is_file($file))
+
+ if(!is_file($file) || (($checkTimestamp || $this->_checkTimestamp) && filemtime($file)<filemtime($path)))
{
@mkdir($this->_basePath.'/'.$dir);
copy($fullpath,$file);