summaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/smb.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-05-24 19:39:14 +0200
committerRobin Appelman <icewind@owncloud.com>2012-05-24 19:41:32 +0200
commita1539dace78207076edc4ea42619e9a81dd41fe2 (patch)
tree2270a1a398903e218e27da2ae685a2ad685e6e67 /apps/files_external/lib/smb.php
parentf00a50c76a76f6613ac9c9fcdef57f109e79f003 (diff)
downloadnextcloud-server-a1539dace78207076edc4ea42619e9a81dd41fe2.tar.gz
nextcloud-server-a1539dace78207076edc4ea42619e9a81dd41fe2.zip
share code between smb and ftp filestorage backends
Diffstat (limited to 'apps/files_external/lib/smb.php')
-rw-r--r--apps/files_external/lib/smb.php86
1 files changed, 1 insertions, 85 deletions
diff --git a/apps/files_external/lib/smb.php b/apps/files_external/lib/smb.php
index c769d29032d..f5e6d78e776 100644
--- a/apps/files_external/lib/smb.php
+++ b/apps/files_external/lib/smb.php
@@ -8,7 +8,7 @@
require_once('smb4php/smb.php');
-class OC_FileStorage_SMB extends OC_Filestorage_Common{
+class OC_FileStorage_SMB extends OC_FileStorage_StreamWrapper{
private $password;
private $user;
private $host;
@@ -33,88 +33,4 @@ class OC_FileStorage_SMB extends OC_Filestorage_Common{
return 'smb://'.$this->user.':'.$this->password.'@'.$this->host.$this->root.$path;
}
-
- public function mkdir($path){
- return mkdir($this->constructUrl($path));
- }
-
- public function rmdir($path){
- if($this->file_exists($path)){
- $succes=rmdir($this->constructUrl($path));
- clearstatcache();
- return $succes;
- }else{
- return false;
- }
- }
-
- public function opendir($path){
- return opendir($this->constructUrl($path));
- }
-
- public function filetype($path){
- return filetype($this->constructUrl($path));
- }
-
- public function is_readable($path){
- return true;//not properly supported
- }
-
- public function is_writable($path){
- return true;//not properly supported
- }
-
- public function file_exists($path){
- return file_exists($this->constructUrl($path));
- }
-
- public function unlink($path){
- $succes=unlink($this->constructUrl($path));
- clearstatcache();
- return $succes;
- }
-
- public function fopen($path,$mode){
- return fopen($this->constructUrl($path),$mode);
- }
-
- public function writeBack($tmpFile){
- if(isset(self::$tempFiles[$tmpFile])){
- $this->uploadFile($tmpFile,self::$tempFiles[$tmpFile]);
- unlink($tmpFile);
- }
- }
-
- public function free_space($path){
- return 0;
- }
-
- public function touch($path,$mtime=null){
- if(is_null($mtime)){
- $fh=$this->fopen($path,'a');
- fwrite($fh,'');
- fclose($fh);
- }else{
- return false;//not supported
- }
- }
-
- public function getFile($path,$target){
- return copy($this->constructUrl($path),$target);
- }
-
- public function uploadFile($path,$target){
- return copy($path,$this->constructUrl($target));
- }
-
- public function rename($path1,$path2){
- return rename($this->constructUrl($path1),$this->constructUrl($path2));
- }
-
- public function stat($path){
- return stat($this->constructUrl($path));
- }
-
-
-
}