server/lib/filestorage/local.php

200 lines
4.9 KiB
PHP
Raw Normal View History

2011-07-27 17:52:24 +00:00
<?php
/**
* for local filestore, we only have to map the paths
*/
class OC_Filestorage_Local extends OC_Filestorage_Common{
protected $datadir;
2012-09-07 13:22:01 +00:00
public function __construct($arguments) {
2011-07-27 17:52:24 +00:00
$this->datadir=$arguments['datadir'];
2012-09-07 13:22:01 +00:00
if(substr($this->datadir,-1)!=='/') {
2011-07-27 17:52:24 +00:00
$this->datadir.='/';
}
}
2012-09-07 13:22:01 +00:00
public function mkdir($path) {
return @mkdir($this->datadir.$path);
2011-07-27 17:52:24 +00:00
}
2012-09-07 13:22:01 +00:00
public function rmdir($path) {
return @rmdir($this->datadir.$path);
2011-07-27 17:52:24 +00:00
}
2012-09-07 13:22:01 +00:00
public function opendir($path) {
2011-07-27 17:52:24 +00:00
return opendir($this->datadir.$path);
}
2012-09-07 13:22:01 +00:00
public function is_dir($path) {
if(substr($path,-1)=='/') {
2012-03-03 19:45:17 +00:00
$path=substr($path,0,-1);
}
return is_dir($this->datadir.$path);
2011-07-27 17:52:24 +00:00
}
2012-09-07 13:22:01 +00:00
public function is_file($path) {
2011-07-27 17:52:24 +00:00
return is_file($this->datadir.$path);
}
2012-09-07 13:22:01 +00:00
public function stat($path) {
2011-07-27 17:52:24 +00:00
return stat($this->datadir.$path);
}
2012-09-07 13:22:01 +00:00
public function filetype($path) {
2011-07-27 17:52:24 +00:00
$filetype=filetype($this->datadir.$path);
2012-09-07 13:22:01 +00:00
if($filetype=='link') {
2012-01-26 23:21:15 +00:00
$filetype=filetype(realpath($this->datadir.$path));
2011-07-27 17:52:24 +00:00
}
return $filetype;
}
2012-09-07 13:22:01 +00:00
public function filesize($path) {
if($this->is_dir($path)) {
return 0;
2011-07-27 17:52:24 +00:00
}else{
return filesize($this->datadir.$path);
}
}
2012-09-07 13:22:01 +00:00
public function isReadable($path) {
2011-07-27 17:52:24 +00:00
return is_readable($this->datadir.$path);
}
2012-09-07 13:22:01 +00:00
public function isUpdatable($path) {
2012-01-02 00:59:24 +00:00
return is_writable($this->datadir.$path);
2011-07-27 17:52:24 +00:00
}
2012-09-07 13:22:01 +00:00
public function file_exists($path) {
2011-07-27 17:52:24 +00:00
return file_exists($this->datadir.$path);
}
2012-09-07 13:22:01 +00:00
public function filectime($path) {
2011-07-27 17:52:24 +00:00
return filectime($this->datadir.$path);
}
2012-09-07 13:22:01 +00:00
public function filemtime($path) {
2011-07-27 17:52:24 +00:00
return filemtime($this->datadir.$path);
}
2012-09-07 13:22:01 +00:00
public function touch($path, $mtime=null) {
2012-08-29 06:38:33 +00:00
// sets the modification time of the file to the given value.
// If mtime is nil the current time is set.
// note that the access time of the file always changes to the current time.
2012-09-07 13:22:01 +00:00
if(!is_null($mtime)) {
$result=touch( $this->datadir.$path, $mtime );
}else{
$result=touch( $this->datadir.$path);
}
if( $result ) {
clearstatcache( true, $this->datadir.$path );
}
2012-08-29 06:38:33 +00:00
return $result;
}
2012-09-07 13:22:01 +00:00
public function file_get_contents($path) {
2011-07-27 17:52:24 +00:00
return file_get_contents($this->datadir.$path);
}
2012-09-07 13:22:01 +00:00
public function file_put_contents($path,$data) {
2012-03-03 21:12:17 +00:00
return file_put_contents($this->datadir.$path,$data);
2011-07-27 17:52:24 +00:00
}
2012-09-07 13:22:01 +00:00
public function unlink($path) {
return $this->delTree($path);
2011-07-27 17:52:24 +00:00
}
2012-09-07 13:22:01 +00:00
public function rename($path1,$path2) {
if (!$this->isUpdatable($path1)) {
OC_Log::write('core','unable to rename, file is not writable : '.$path1,OC_Log::ERROR);
return false;
}
2012-09-07 13:22:01 +00:00
if(! $this->file_exists($path1)) {
OC_Log::write('core','unable to rename, file does not exists : '.$path1,OC_Log::ERROR);
return false;
}
2012-09-07 13:22:01 +00:00
if($return=rename($this->datadir.$path1,$this->datadir.$path2)) {
2011-07-27 17:52:24 +00:00
}
return $return;
}
2012-09-07 13:22:01 +00:00
public function copy($path1,$path2) {
if($this->is_dir($path2)) {
if(!$this->file_exists($path2)) {
2011-07-27 17:52:24 +00:00
$this->mkdir($path2);
}
$source=substr($path1,strrpos($path1,'/')+1);
$path2.=$source;
}
2012-02-27 11:20:37 +00:00
return copy($this->datadir.$path1,$this->datadir.$path2);
2011-07-27 17:52:24 +00:00
}
2012-09-07 13:22:01 +00:00
public function fopen($path,$mode) {
if($return=fopen($this->datadir.$path,$mode)) {
switch($mode) {
2011-07-27 17:52:24 +00:00
case 'r':
break;
case 'r+':
case 'w+':
case 'x+':
case 'a+':
break;
case 'w':
case 'x':
case 'a':
break;
}
}
return $return;
}
2012-09-07 13:22:01 +00:00
public function getMimeType($path) {
if($this->isReadable($path)) {
2012-02-15 20:44:58 +00:00
return OC_Helper::getMimeType($this->datadir.$path);
}else{
return false;
2011-07-27 17:52:24 +00:00
}
}
2011-08-15 20:54:38 +00:00
private function delTree($dir) {
2011-07-27 17:52:24 +00:00
$dirRelative=$dir;
$dir=$this->datadir.$dir;
if (!file_exists($dir)) return true;
if (!is_dir($dir) || is_link($dir)) return unlink($dir);
foreach (scandir($dir) as $item) {
if ($item == '.' || $item == '..') continue;
2012-09-07 13:22:01 +00:00
if(is_file($dir.'/'.$item)) {
if(unlink($dir.'/'.$item)) {
2011-07-27 17:52:24 +00:00
}
2012-09-07 13:22:01 +00:00
}elseif(is_dir($dir.'/'.$item)) {
if (!$this->delTree($dirRelative. "/" . $item)) {
2011-07-27 17:52:24 +00:00
return false;
};
}
}
2012-09-07 13:22:01 +00:00
if($return=rmdir($dir)) {
2011-07-27 17:52:24 +00:00
}
return $return;
}
2012-09-07 13:22:01 +00:00
public function hash($path,$type,$raw=false) {
2011-07-27 17:52:24 +00:00
return hash_file($type,$this->datadir.$path,$raw);
}
2012-09-07 13:22:01 +00:00
public function free_space($path) {
2011-07-27 17:52:24 +00:00
return disk_free_space($this->datadir.$path);
}
2012-09-07 13:22:01 +00:00
public function search($query) {
2011-07-27 17:52:24 +00:00
return $this->searchInDir($query);
}
2012-09-07 13:22:01 +00:00
public function getLocalFile($path) {
2012-08-19 00:30:33 +00:00
return $this->datadir.$path;
}
2012-09-07 13:22:01 +00:00
public function getLocalFolder($path) {
2012-08-19 00:30:33 +00:00
return $this->datadir.$path;
2011-07-27 17:52:24 +00:00
}
2012-09-07 13:22:01 +00:00
protected function searchInDir($query,$dir='') {
2011-07-27 17:52:24 +00:00
$files=array();
foreach (scandir($this->datadir.$dir) as $item) {
if ($item == '.' || $item == '..') continue;
2012-09-07 13:22:01 +00:00
if(strstr(strtolower($item),strtolower($query))!==false) {
2011-07-27 17:52:24 +00:00
$files[]=$dir.'/'.$item;
}
2012-09-07 13:22:01 +00:00
if(is_dir($this->datadir.$dir.'/'.$item)) {
2011-07-27 17:52:24 +00:00
$files=array_merge($files,$this->searchInDir($query,$dir.'/'.$item));
}
}
return $files;
}
2012-06-15 14:43:24 +00:00
/**
* check if a file or folder has been updated since $time
* @param int $time
* @return bool
*/
2012-09-07 13:22:01 +00:00
public function hasUpdated($path,$time) {
2012-06-15 14:43:24 +00:00
return $this->filemtime($path)>$time;
}
2011-07-27 17:52:24 +00:00
}