2012-02-27 15:04:04 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Michael Gapczynski
|
|
|
|
* @copyright 2012 Michael Gapczynski GapczynskiM@gmail.com
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
abstract class OC_Filestorage_Common extends OC_Filestorage {
|
|
|
|
|
|
|
|
public function __construct($parameters){}
|
|
|
|
// abstract public function mkdir($path);
|
|
|
|
// abstract public function rmdir($path);
|
|
|
|
// abstract public function opendir($path);
|
|
|
|
public function is_dir($path){
|
|
|
|
return $this->filetype($path)=='dir';
|
|
|
|
}
|
|
|
|
public function is_file($path){
|
|
|
|
return $this->filetype($path)=='file';
|
|
|
|
}
|
|
|
|
// abstract public function stat($path);
|
|
|
|
// abstract public function filetype($path);
|
|
|
|
public function filesize($path) {
|
|
|
|
if($this->is_dir($path)){
|
|
|
|
return 0;//by definition
|
|
|
|
}else{
|
|
|
|
$stat = $this->stat($path);
|
|
|
|
return $stat['size'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// abstract public function is_readable($path);
|
|
|
|
// abstract public function is_writable($path);
|
|
|
|
// abstract public function file_exists($path);
|
|
|
|
public function filectime($path) {
|
|
|
|
$stat = $this->stat($path);
|
|
|
|
return $stat['ctime'];
|
|
|
|
}
|
|
|
|
public function filemtime($path) {
|
|
|
|
$stat = $this->stat($path);
|
|
|
|
return $stat['mtime'];
|
|
|
|
}
|
|
|
|
public function fileatime($path) {
|
|
|
|
$stat = $this->stat($path);
|
|
|
|
return $stat['atime'];
|
|
|
|
}
|
|
|
|
public function file_get_contents($path) {
|
|
|
|
$handle = $this->fopen($path, "r");
|
2012-03-03 03:55:17 +04:00
|
|
|
if(!$handle){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$size=$this->filesize($path);
|
|
|
|
if($size==0){
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
// abstract public function unlink($path);
|
|
|
|
public function rename($path1,$path2){
|
|
|
|
if($this->copy($path1,$path2)){
|
|
|
|
return $this->unlink($path1);
|
|
|
|
}else{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public function copy($path1,$path2) {
|
|
|
|
$source=$this->fopen($path1,'r');
|
|
|
|
$target=$this->fopen($path2,'w');
|
|
|
|
$count=OC_Helper::streamCopy($source,$target);
|
|
|
|
return $count>0;
|
|
|
|
}
|
|
|
|
// abstract public function fopen($path,$mode);
|
|
|
|
public function getMimeType($path){
|
|
|
|
if(!$this->file_exists($path)){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if($this->is_dir($path)){
|
|
|
|
return 'httpd/unix-directory';
|
|
|
|
}
|
|
|
|
$source=$this->fopen($path,'r');
|
|
|
|
if(!$source){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$head=fread($source,8192);//8kb should suffice to determine a mimetype
|
2012-03-03 21:24:10 +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-04-15 15:32:45 +04:00
|
|
|
$tmpFile=OC_Helper::tmpFile($extension);
|
2012-02-27 15:04:04 +04:00
|
|
|
file_put_contents($tmpFile,$head);
|
|
|
|
$mime=OC_Helper::getMimeType($tmpFile);
|
|
|
|
unlink($tmpFile);
|
|
|
|
return $mime;
|
|
|
|
}
|
|
|
|
public function hash($type,$path,$raw){
|
|
|
|
$tmpFile=$this->getLocalFile();
|
|
|
|
$hash=hash($type,$tmpFile,$raw);
|
|
|
|
unlink($tmpFile);
|
|
|
|
return $hash;
|
|
|
|
}
|
|
|
|
// abstract public function free_space($path);
|
2012-03-02 21:42:04 +04:00
|
|
|
public function search($query){
|
|
|
|
return $this->searchInDir($query);
|
|
|
|
}
|
2012-02-27 15:04:04 +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
|
|
|
}
|
|
|
|
private function toTmpFile($path){//no longer in the storage api, still usefull here
|
|
|
|
$source=$this->fopen($path,'r');
|
|
|
|
if(!$source){
|
|
|
|
return false;
|
|
|
|
}
|
2012-03-03 21:24:10 +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-04-15 15:32:45 +04:00
|
|
|
$tmpFile=OC_Helper::tmpFile($extension);
|
2012-02-28 15:06:34 +04:00
|
|
|
$target=fopen($tmpFile,'w');
|
2012-02-27 15:04:04 +04:00
|
|
|
$count=OC_Helper::streamCopy($source,$target);
|
|
|
|
return $tmpFile;
|
|
|
|
}
|
2012-03-01 02:42:40 +04:00
|
|
|
// abstract public function touch($path, $mtime=null);
|
2012-03-02 21:42:04 +04:00
|
|
|
|
|
|
|
protected function searchInDir($query,$dir=''){
|
|
|
|
$files=array();
|
|
|
|
$dh=$this->opendir($dir);
|
|
|
|
if($dh){
|
|
|
|
while($item=readdir($dh)){
|
|
|
|
if ($item == '.' || $item == '..') continue;
|
|
|
|
if(strstr(strtolower($item),strtolower($query))!==false){
|
|
|
|
$files[]=$dir.'/'.$item;
|
|
|
|
}
|
|
|
|
if($this->is_dir($dir.'/'.$item)){
|
|
|
|
$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
|
|
|
|
* @param int $time
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function hasUpdated($path,$time){
|
|
|
|
return $this->filemtime($path)>$time;
|
|
|
|
}
|
2012-02-27 15:04:04 +04:00
|
|
|
}
|