Merge pull request #3600 from coletivoEITA/master
added method needsPartFile() in Storage
This commit is contained in:
commit
6565533d3b
|
@ -510,9 +510,9 @@ class File extends Node implements IFile {
|
|||
*/
|
||||
private function needsPartFile($storage) {
|
||||
// TODO: in the future use ChunkHandler provided by storage
|
||||
// and/or add method on Storage called "needsPartFile()"
|
||||
return !$storage->instanceOfStorage('OCA\Files_Sharing\External\Storage') &&
|
||||
!$storage->instanceOfStorage('OC\Files\Storage\OwnCloud');
|
||||
!$storage->instanceOfStorage('OC\Files\Storage\OwnCloud') &&
|
||||
$storage->needsPartFile();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -795,4 +795,11 @@ abstract class Common implements Storage, ILockingStorage {
|
|||
public function setAvailability($isAvailable) {
|
||||
$this->getStorageCache()->setAvailability($isAvailable);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
public function needsPartFile() {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -610,4 +610,11 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage {
|
|||
$this->getWrapperStorage()->changeLock($path, $type, $provider);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
public function needsPartFile() {
|
||||
return $this->getWrapperStorage()->needsPartFile();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -458,4 +458,6 @@ interface Storage extends IStorage {
|
|||
* @param bool $isAvailable
|
||||
*/
|
||||
public function setAvailability($isAvailable);
|
||||
|
||||
public function needsPartFile();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue