2012-02-27 15:04:04 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2012-09-07 20:30:48 +04:00
|
|
|
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Files\Storage;
|
2012-02-27 15:04:04 +04:00
|
|
|
|
2012-06-21 21:07:21 +04:00
|
|
|
/**
|
2012-08-29 10:38:33 +04:00
|
|
|
* Storage backend class for providing common filesystem operation methods
|
2012-06-21 21:07:21 +04:00
|
|
|
* which are not storage-backend specific.
|
|
|
|
*
|
2012-09-07 20:30:48 +04:00
|
|
|
* \OC\Files\Storage\Common is never used directly; it is extended by all other
|
2012-08-29 10:38:33 +04:00
|
|
|
* storage backends, where its methods may be overridden, and additional
|
2012-06-21 21:07:21 +04:00
|
|
|
* (backend-specific) methods are defined.
|
|
|
|
*
|
2012-09-07 20:30:48 +04:00
|
|
|
* Some \OC\Files\Storage\Common methods call functions which are first defined
|
2012-06-21 21:07:21 +04:00
|
|
|
* in classes which extend it, e.g. $this->stat() .
|
|
|
|
*/
|
|
|
|
|
2012-10-21 02:31:32 +04:00
|
|
|
abstract class Common implements \OC\Files\Storage\Storage {
|
2012-02-27 15:04:04 +04:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function __construct($parameters) {}
|
|
|
|
public function is_dir($path) {
|
2012-02-27 15:04:04 +04:00
|
|
|
return $this->filetype($path)=='dir';
|
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
public function is_file($path) {
|
2012-02-27 15:04:04 +04:00
|
|
|
return $this->filetype($path)=='file';
|
|
|
|
}
|
|
|
|
public function filesize($path) {
|
2012-09-07 17:22:01 +04:00
|
|
|
if($this->is_dir($path)) {
|
2012-02-27 15:04:04 +04:00
|
|
|
return 0;//by definition
|
|
|
|
}else{
|
|
|
|
$stat = $this->stat($path);
|
|
|
|
return $stat['size'];
|
|
|
|
}
|
|
|
|
}
|
2012-07-25 01:42:07 +04:00
|
|
|
public function isCreatable($path) {
|
2012-12-27 00:36:50 +04:00
|
|
|
if ($this->is_dir($path) && $this->isUpdatable($path)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2012-07-25 01:42:07 +04:00
|
|
|
}
|
|
|
|
public function isDeletable($path) {
|
|
|
|
return $this->isUpdatable($path);
|
|
|
|
}
|
|
|
|
public function isSharable($path) {
|
|
|
|
return $this->isReadable($path);
|
|
|
|
}
|
2012-09-13 01:25:57 +04:00
|
|
|
public function getPermissions($path){
|
|
|
|
$permissions = 0;
|
|
|
|
if($this->isCreatable($path)){
|
2012-11-15 03:57:30 +04:00
|
|
|
$permissions |= \OCP\PERMISSION_CREATE;
|
2012-09-13 01:25:57 +04:00
|
|
|
}
|
|
|
|
if($this->isReadable($path)){
|
2012-11-15 03:57:30 +04:00
|
|
|
$permissions |= \OCP\PERMISSION_READ;
|
2012-09-13 01:25:57 +04:00
|
|
|
}
|
|
|
|
if($this->isUpdatable($path)){
|
2012-11-15 03:57:30 +04:00
|
|
|
$permissions |= \OCP\PERMISSION_UPDATE;
|
2012-09-13 01:25:57 +04:00
|
|
|
}
|
|
|
|
if($this->isDeletable($path)){
|
2012-11-15 03:57:30 +04:00
|
|
|
$permissions |= \OCP\PERMISSION_DELETE;
|
2012-09-13 01:25:57 +04:00
|
|
|
}
|
|
|
|
if($this->isSharable($path)){
|
2012-11-15 03:57:30 +04:00
|
|
|
$permissions |= \OCP\PERMISSION_SHARE;
|
2012-09-13 01:25:57 +04:00
|
|
|
}
|
|
|
|
return $permissions;
|
|
|
|
}
|
2012-02-27 15:04:04 +04:00
|
|
|
public function filemtime($path) {
|
|
|
|
$stat = $this->stat($path);
|
|
|
|
return $stat['mtime'];
|
|
|
|
}
|
|
|
|
public function file_get_contents($path) {
|
|
|
|
$handle = $this->fopen($path, "r");
|
2012-09-07 17:22:01 +04:00
|
|
|
if(!$handle) {
|
2012-03-03 03:55:17 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$size=$this->filesize($path);
|
2012-09-07 17:22:01 +04:00
|
|
|
if($size==0) {
|
2012-03-03 03:55:17 +04:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
return fread($handle, $size);
|
2012-02-27 15:04:04 +04:00
|
|
|
}
|
|
|
|
public function file_put_contents($path,$data) {
|
|
|
|
$handle = $this->fopen($path, "w");
|
|
|
|
return fwrite($handle, $data);
|
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
public function rename($path1,$path2) {
|
|
|
|
if($this->copy($path1,$path2)) {
|
2012-02-27 15:04:04 +04:00
|
|
|
return $this->unlink($path1);
|
|
|
|
}else{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public function copy($path1,$path2) {
|
|
|
|
$source=$this->fopen($path1,'r');
|
|
|
|
$target=$this->fopen($path2,'w');
|
2012-09-07 20:30:48 +04:00
|
|
|
$count=\OC_Helper::streamCopy($source,$target);
|
2012-02-27 15:04:04 +04:00
|
|
|
return $count>0;
|
|
|
|
}
|
2012-06-21 21:07:21 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Deletes all files and folders recursively within a directory
|
2012-10-23 18:16:46 +04:00
|
|
|
* @param string $directory The directory whose contents will be deleted
|
|
|
|
* @param bool $empty Flag indicating whether directory will be emptied
|
|
|
|
* @returns bool
|
2012-06-21 21:07:21 +04:00
|
|
|
*
|
2012-08-29 10:38:33 +04:00
|
|
|
* @note By default the directory specified by $directory will be
|
2012-06-21 21:07:21 +04:00
|
|
|
* deleted together with its contents. To avoid this set $empty to true
|
|
|
|
*/
|
|
|
|
public function deleteAll( $directory, $empty = false ) {
|
2012-10-21 02:31:32 +04:00
|
|
|
$directory = trim($directory,'/');
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-06-21 21:07:21 +04:00
|
|
|
if ( !$this->file_exists( \OCP\USER::getUser() . '/' . $directory ) || !$this->is_dir( \OCP\USER::getUser() . '/' . $directory ) ) {
|
|
|
|
return false;
|
2012-10-23 18:16:46 +04:00
|
|
|
} elseif( !$this->isReadable( \OCP\USER::getUser() . '/' . $directory ) ) {
|
2012-06-21 21:07:21 +04:00
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
$directoryHandle = $this->opendir( \OCP\USER::getUser() . '/' . $directory );
|
|
|
|
while ( $contents = readdir( $directoryHandle ) ) {
|
|
|
|
if ( $contents != '.' && $contents != '..') {
|
|
|
|
$path = $directory . "/" . $contents;
|
|
|
|
if ( $this->is_dir( $path ) ) {
|
2012-10-23 18:16:46 +04:00
|
|
|
$this->deleteAll( $path );
|
2012-06-21 21:07:21 +04:00
|
|
|
} else {
|
|
|
|
$this->unlink( \OCP\USER::getUser() .'/' . $path ); // TODO: make unlink use same system path as is_dir
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//$this->closedir( $directoryHandle ); // TODO: implement closedir in OC_FSV
|
|
|
|
if ( $empty == false ) {
|
|
|
|
if ( !$this->rmdir( $directory ) ) {
|
2012-10-21 02:31:32 +04:00
|
|
|
return false;
|
2012-06-21 21:07:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-06-21 21:07:21 +04:00
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
public function getMimeType($path) {
|
|
|
|
if(!$this->file_exists($path)) {
|
2012-02-27 15:04:04 +04:00
|
|
|
return false;
|
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
if($this->is_dir($path)) {
|
2012-02-27 15:04:04 +04:00
|
|
|
return 'httpd/unix-directory';
|
|
|
|
}
|
|
|
|
$source=$this->fopen($path,'r');
|
2012-09-07 17:22:01 +04:00
|
|
|
if(!$source) {
|
2012-02-27 15:04:04 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$head=fread($source,8192);//8kb should suffice to determine a mimetype
|
2012-09-07 17:22:01 +04:00
|
|
|
if($pos=strrpos($path,'.')) {
|
2012-04-15 15:32:45 +04:00
|
|
|
$extension=substr($path,$pos);
|
2012-03-03 21:24:10 +04:00
|
|
|
}else{
|
2012-04-15 15:32:45 +04:00
|
|
|
$extension='';
|
2012-03-03 21:24:10 +04:00
|
|
|
}
|
2012-09-07 20:30:48 +04:00
|
|
|
$tmpFile=\OC_Helper::tmpFile($extension);
|
2012-02-27 15:04:04 +04:00
|
|
|
file_put_contents($tmpFile,$head);
|
2012-09-07 20:30:48 +04:00
|
|
|
$mime=\OC_Helper::getMimeType($tmpFile);
|
2012-02-27 15:04:04 +04:00
|
|
|
unlink($tmpFile);
|
|
|
|
return $mime;
|
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
public function hash($type,$path,$raw = false) {
|
2012-10-21 02:31:32 +04:00
|
|
|
$tmpFile=$this->getLocalFile($path);
|
2012-02-27 15:04:04 +04:00
|
|
|
$hash=hash($type,$tmpFile,$raw);
|
|
|
|
unlink($tmpFile);
|
|
|
|
return $hash;
|
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
public function search($query) {
|
2012-03-02 21:42:04 +04:00
|
|
|
return $this->searchInDir($query);
|
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
public function getLocalFile($path) {
|
2012-02-28 15:06:34 +04:00
|
|
|
return $this->toTmpFile($path);
|
2012-02-27 15:04:04 +04:00
|
|
|
}
|
2012-10-23 18:16:46 +04:00
|
|
|
private function toTmpFile($path) {//no longer in the storage api, still useful here
|
2012-02-27 15:04:04 +04:00
|
|
|
$source=$this->fopen($path,'r');
|
2012-09-07 17:22:01 +04:00
|
|
|
if(!$source) {
|
2012-02-27 15:04:04 +04:00
|
|
|
return false;
|
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
if($pos=strrpos($path,'.')) {
|
2012-04-15 15:32:45 +04:00
|
|
|
$extension=substr($path,$pos);
|
2012-03-03 21:24:10 +04:00
|
|
|
}else{
|
2012-04-15 15:32:45 +04:00
|
|
|
$extension='';
|
2012-03-03 21:24:10 +04:00
|
|
|
}
|
2012-09-07 20:30:48 +04:00
|
|
|
$tmpFile=\OC_Helper::tmpFile($extension);
|
2012-02-28 15:06:34 +04:00
|
|
|
$target=fopen($tmpFile,'w');
|
2012-09-07 20:30:48 +04:00
|
|
|
\OC_Helper::streamCopy($source,$target);
|
2012-02-27 15:04:04 +04:00
|
|
|
return $tmpFile;
|
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
public function getLocalFolder($path) {
|
2012-09-07 20:30:48 +04:00
|
|
|
$baseDir=\OC_Helper::tmpFolder();
|
2012-08-19 04:30:33 +04:00
|
|
|
$this->addLocalFolder($path,$baseDir);
|
|
|
|
return $baseDir;
|
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
private function addLocalFolder($path,$target) {
|
|
|
|
if($dh=$this->opendir($path)) {
|
|
|
|
while($file=readdir($dh)) {
|
|
|
|
if($file!=='.' and $file!=='..') {
|
|
|
|
if($this->is_dir($path.'/'.$file)) {
|
2012-08-19 04:30:33 +04:00
|
|
|
mkdir($target.'/'.$file);
|
|
|
|
$this->addLocalFolder($path.'/'.$file,$target.'/'.$file);
|
|
|
|
}else{
|
|
|
|
$tmp=$this->toTmpFile($path.'/'.$file);
|
|
|
|
rename($tmp,$target.'/'.$file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-03-02 21:42:04 +04:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
protected function searchInDir($query,$dir='') {
|
2012-03-02 21:42:04 +04:00
|
|
|
$files=array();
|
|
|
|
$dh=$this->opendir($dir);
|
2012-09-07 17:22:01 +04:00
|
|
|
if($dh) {
|
|
|
|
while($item=readdir($dh)) {
|
2012-03-02 21:42:04 +04:00
|
|
|
if ($item == '.' || $item == '..') continue;
|
2012-10-24 00:53:54 +04:00
|
|
|
if(strstr(strtolower($item), strtolower($query))!==false) {
|
2012-03-02 21:42:04 +04:00
|
|
|
$files[]=$dir.'/'.$item;
|
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
if($this->is_dir($dir.'/'.$item)) {
|
2012-03-02 21:42:04 +04:00
|
|
|
$files=array_merge($files,$this->searchInDir($query,$dir.'/'.$item));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $files;
|
|
|
|
}
|
2012-06-15 18:43:24 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* check if a file or folder has been updated since $time
|
2012-10-23 18:16:46 +04:00
|
|
|
* @param string $path
|
2012-06-15 18:43:24 +04:00
|
|
|
* @param int $time
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function hasUpdated($path,$time) {
|
2012-06-15 18:43:24 +04:00
|
|
|
return $this->filemtime($path)>$time;
|
|
|
|
}
|
2012-10-21 02:31:32 +04:00
|
|
|
|
2013-01-01 23:11:39 +04:00
|
|
|
public function getCache($path=''){
|
2012-10-21 02:31:32 +04:00
|
|
|
return new \OC\Files\Cache\Cache($this);
|
|
|
|
}
|
|
|
|
|
2013-01-01 23:11:39 +04:00
|
|
|
public function getScanner($path=''){
|
2012-10-21 02:31:32 +04:00
|
|
|
return new \OC\Files\Cache\Scanner($this);
|
|
|
|
}
|
2012-10-23 18:16:46 +04:00
|
|
|
|
2013-01-01 23:11:39 +04:00
|
|
|
public function getPermissionsCache($path=''){
|
2012-11-15 03:57:30 +04:00
|
|
|
return new \OC\Files\Cache\Permissions($this);
|
|
|
|
}
|
|
|
|
|
2013-01-01 23:11:39 +04:00
|
|
|
public function getWatcher($path=''){
|
2013-01-01 21:04:29 +04:00
|
|
|
return new \OC\Files\Cache\Watcher($this);
|
|
|
|
}
|
|
|
|
|
2012-07-06 14:22:21 +04:00
|
|
|
/**
|
|
|
|
* get the owner of a path
|
2012-10-23 18:16:46 +04:00
|
|
|
* @param string $path The path to get the owner
|
2012-07-06 14:22:21 +04:00
|
|
|
* @return string uid or false
|
|
|
|
*/
|
|
|
|
public function getOwner($path) {
|
2012-10-23 18:16:46 +04:00
|
|
|
return \OC_User::getUser();
|
2012-07-06 14:22:21 +04:00
|
|
|
}
|
2012-11-08 20:47:00 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* get the ETag for a file or folder
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getETag($path){
|
|
|
|
$ETagFunction = \OC_Connector_Sabre_Node::$ETagFunction;
|
|
|
|
if($ETagFunction) {
|
|
|
|
$hash = call_user_func($ETagFunction, $path);
|
|
|
|
return $hash;
|
|
|
|
}else{
|
|
|
|
return uniqid('', true);
|
|
|
|
}
|
|
|
|
}
|
2012-02-27 15:04:04 +04:00
|
|
|
}
|