aboutsummaryrefslogtreecommitdiffstats
path: root/lib/filestorage/common.php
blob: 4f506a314954a230027a40bf95e69cb9b6cbfceb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<?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/>.
*/

/**
 * Storage backend class for providing common filesystem operation methods 
 * which are not storage-backend specific.
 *
 * OC_Filestorage_Common is never used directly; it is extended by all other
 * storage backends, where its methods may be overridden, and additional 
 * (backend-specific) methods are defined.
 *
 * Some OC_Filestorage_Common methods call functions which are first defined
 * in classes which extend it, e.g. $this->stat() .
 */

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");
		if(!$handle){
			return false;
		}
		$size=$this->filesize($path);
		if($size==0){
			return '';
		}
		return fread($handle, $size);
	}
	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);

	/**
	 * @brief Deletes all files and folders recursively within a directory
	 * @param $directory The directory whose contents will be deleted
	 * @param $empty Flag indicating whether directory will be emptied
	 * @returns true/false
	 *
	 * @note By default the directory specified by $directory will be 
	 * deleted together with its contents. To avoid this set $empty to true
	 */
	public function deleteAll( $directory, $empty = false ) {
	
		// strip leading slash
		if( substr( $directory, 0, 1 ) == "/" ) {
		
			$directory = substr( $directory, 1 );
			
		}
		
		// strip trailing slash
		if( substr( $directory, -1) == "/" ) {
		
			$directory = substr( $directory, 0, -1 );
			
		}
		
		if ( !$this->file_exists( \OCP\USER::getUser() . '/' . $directory ) || !$this->is_dir( \OCP\USER::getUser() . '/' . $directory ) ) {
		
			return false;
			
		} elseif( !$this->is_readable( \OCP\USER::getUser() . '/' . $directory ) ) {
		
			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 ) ) {
						
						deleteAll( $path );
					
					} 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 ) ) {
				
					return false;
					
				}
				
			}
		
			return true;
		}
		
	}
	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
		if($pos=strrpos($path,'.')){
			$extension=substr($path,$pos);
		}else{
			$extension='';
		}
		$tmpFile=OC_Helper::tmpFile($extension);
		file_put_contents($tmpFile,$head);
		$mime=OC_Helper::getMimeType($tmpFile);
		unlink($tmpFile);
		return $mime;
	}
	public function hash($type,$path,$raw = false){
		$tmpFile=$this->getLocalFile();
		$hash=hash($type,$tmpFile,$raw);
		unlink($tmpFile);
		return $hash;
	}
// 	abstract public function free_space($path);
	public function search($query){
		return $this->searchInDir($query);
	}
	public function getLocalFile($path){
		return $this->toTmpFile($path);
	}
	private function toTmpFile($path){//no longer in the storage api, still usefull here
		$source=$this->fopen($path,'r');
		if(!$source){
			return false;
		}
		if($pos=strrpos($path,'.')){
			$extension=substr($path,$pos);
		}else{
			$extension='';
		}
		$tmpFile=OC_Helper::tmpFile($extension);
		$target=fopen($tmpFile,'w');
		OC_Helper::streamCopy($source,$target);
		return $tmpFile;
	}
	public function getLocalFolder($path){
		$baseDir=OC_Helper::tmpFolder();
		$this->addLocalFolder($path,$baseDir);
		return $baseDir;
	}
	private function addLocalFolder($path,$target){
		if($dh=$this->opendir($path)){
			while($file=readdir($dh)){
				if($file!=='.' and $file!=='..'){
					if($this->is_dir($path.'/'.$file)){
						mkdir($target.'/'.$file);
						$this->addLocalFolder($path.'/'.$file,$target.'/'.$file);
					}else{
						$tmp=$this->toTmpFile($path.'/'.$file);
						rename($tmp,$target.'/'.$file);
					}
				}
			}
		}
	}
// 	abstract public function touch($path, $mtime=null);

	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;
	}

	/**
	 * 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;
	}
}