add hasUpdated to oc_filestorage
This commit is contained in:
parent
6ca87656be
commit
449760f665
|
@ -512,6 +512,15 @@ class OC_Filestorage_Shared extends OC_Filestorage {
|
|||
OC_Filesystem::mount('OC_Filestorage_Shared', array('datadir' => '/'.OCP\USER::getUser().'/files/Shared'), '/'.OCP\USER::getUser().'/files/Shared/');
|
||||
}
|
||||
|
||||
/**
|
||||
* check if a file or folder has been updated since $time
|
||||
* @param int $time
|
||||
* @return bool
|
||||
*/
|
||||
public function hasUpdated($path,$time){
|
||||
//TODO
|
||||
return $this->filemtime($path)>$time;
|
||||
}
|
||||
}
|
||||
|
||||
if (OCP\USER::isLoggedIn()) {
|
||||
|
|
|
@ -50,4 +50,13 @@ abstract class OC_Filestorage{
|
|||
abstract public function search($query);
|
||||
abstract public function touch($path, $mtime=null);
|
||||
abstract public function getLocalFile($path);// get a path to a local version of the file, whether the original file is local or remote
|
||||
/**
|
||||
* check if a file or folder has been updated since $time
|
||||
* @param int $time
|
||||
* @return bool
|
||||
*
|
||||
* hasUpdated for folders should return at least true if a file inside the folder is add, removed or renamed.
|
||||
* returning true for other changes in the folder is optional
|
||||
*/
|
||||
abstract public function hasUpdated($path,$time);
|
||||
}
|
||||
|
|
|
@ -156,4 +156,13 @@ abstract class OC_Filestorage_Common extends OC_Filestorage {
|
|||
}
|
||||
return $files;
|
||||
}
|
||||
|
||||
/**
|
||||
* check if a file or folder has been updated since $time
|
||||
* @param int $time
|
||||
* @return bool
|
||||
*/
|
||||
public function hasUpdated($path,$time){
|
||||
return $this->filemtime($path)>$time;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -194,4 +194,13 @@ class OC_Filestorage_Local extends OC_Filestorage{
|
|||
public function getFolderSize($path){
|
||||
return 0;//depricated, use OC_FileCach instead
|
||||
}
|
||||
|
||||
/**
|
||||
* check if a file or folder has been updated since $time
|
||||
* @param int $time
|
||||
* @return bool
|
||||
*/
|
||||
public function hasUpdated($path,$time){
|
||||
return $this->filemtime($path)>$time;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -149,6 +149,9 @@ abstract class Test_FileStorage extends UnitTestCase {
|
|||
$this->assertTrue(($ctimeStart-1)<=$cTime);
|
||||
$this->assertTrue($cTime<=($ctimeEnd+1));
|
||||
}
|
||||
$this->assertTrue($this->instance->hasUpdated('/lorem.txt',$ctimeStart-1));
|
||||
$this->assertTrue($this->instance->hasUpdated('/',$ctimeStart-1));
|
||||
|
||||
$this->assertTrue(($ctimeStart-1)<=$mTime);
|
||||
$this->assertTrue($mTime<=($ctimeEnd+1));
|
||||
$this->assertEqual(filesize($textFile),$this->instance->filesize('/lorem.txt'));
|
||||
|
@ -169,6 +172,8 @@ abstract class Test_FileStorage extends UnitTestCase {
|
|||
$this->assertTrue($mTime<=($mtimeEnd+1));
|
||||
$this->assertEqual($cTime,$originalCTime);
|
||||
|
||||
$this->assertTrue($this->instance->hasUpdated('/lorem.txt',$mtimeStart-1));
|
||||
|
||||
if($this->instance->touch('/lorem.txt',100)!==false){
|
||||
$mTime=$this->instance->filemtime('/lorem.txt');
|
||||
$this->assertEqual($mTime,100);
|
||||
|
@ -184,6 +189,9 @@ abstract class Test_FileStorage extends UnitTestCase {
|
|||
$mTime=$this->instance->filemtime('/lorem.txt');
|
||||
$this->assertTrue(($mtimeStart-1)<=$mTime);
|
||||
$this->assertTrue($mTime<=($mtimeEnd+1));
|
||||
|
||||
$this->instance->unlink('/lorem.txt');
|
||||
$this->assertTrue($this->instance->hasUpdated('/',$mtimeStart-1));
|
||||
}
|
||||
|
||||
public function testSearch(){
|
||||
|
|
Loading…
Reference in New Issue