Blame view

sources/lib/private/helper.php 30.1 KB
03e52840d   Kload   Init
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
  <?php
  /**
   * ownCloud
   *
   * @author Frank Karlitschek
   * @author Jakob Sack
   * @copyright 2012 Frank Karlitschek frank@owncloud.org
   *
   * 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/>.
   *
   */
  
  /**
   * Collection of useful functions
   */
  class OC_Helper {
31b7f2792   Kload   Upgrade to ownclo...
28
  	private static $tmpFiles = array();
03e52840d   Kload   Init
29
  	private static $mimetypeIcons = array();
31b7f2792   Kload   Upgrade to ownclo...
30
31
  	private static $mimetypeDetector;
  	private static $templateManager;
03e52840d   Kload   Init
32
33
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
34
35
  	 * Creates an url using a defined route
  	 * @param string $route
03e52840d   Kload   Init
36
37
38
  	 * @param array $parameters
  	 * @return
  	 * @internal param array $args with param=>value, will be appended to the returned url
6d9380f96   Cédric Dupont   Update sources OC...
39
  	 * @return string the url
03e52840d   Kload   Init
40
41
42
  	 *
  	 * Returns a url to the given app and file.
  	 */
31b7f2792   Kload   Upgrade to ownclo...
43
44
  	public static function linkToRoute($route, $parameters = array()) {
  		return OC::$server->getURLGenerator()->linkToRoute($route, $parameters);
03e52840d   Kload   Init
45
46
47
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
48
  	 * Creates an url
03e52840d   Kload   Init
49
50
51
  	 * @param string $app app
  	 * @param string $file file
  	 * @param array $args array with param=>value, will be appended to the returned url
31b7f2792   Kload   Upgrade to ownclo...
52
  	 *    The value of $args will be urlencoded
03e52840d   Kload   Init
53
54
55
56
57
  	 * @return string the url
  	 *
  	 * Returns a url to the given app and file.
  	 */
  	public static function linkTo( $app, $file, $args = array() ) {
31b7f2792   Kload   Upgrade to ownclo...
58
59
  		return OC::$server->getURLGenerator()->linkTo($app, $file, $args);
  	}
03e52840d   Kload   Init
60

31b7f2792   Kload   Upgrade to ownclo...
61
62
63
64
65
66
  	/**
  	 * @param $key
  	 * @return string url to the online documentation
  	 */
  	public static function linkToDocs($key) {
  		$theme = new OC_Defaults();
a293d369c   Kload   Update sources to...
67
  		return $theme->buildDocLinkToKey($key);
03e52840d   Kload   Init
68
69
70
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
71
  	 * Creates an absolute url
03e52840d   Kload   Init
72
73
74
  	 * @param string $app app
  	 * @param string $file file
  	 * @param array $args array with param=>value, will be appended to the returned url
31b7f2792   Kload   Upgrade to ownclo...
75
  	 *    The value of $args will be urlencoded
03e52840d   Kload   Init
76
77
78
79
  	 * @return string the url
  	 *
  	 * Returns a absolute url to the given app and file.
  	 */
31b7f2792   Kload   Upgrade to ownclo...
80
  	public static function linkToAbsolute($app, $file, $args = array()) {
6d9380f96   Cédric Dupont   Update sources OC...
81
82
83
  		return OC::$server->getURLGenerator()->getAbsoluteURL(
  			self::linkTo($app, $file, $args)
  		);
03e52840d   Kload   Init
84
85
86
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
87
  	 * Makes an $url absolute
03e52840d   Kload   Init
88
89
90
91
92
  	 * @param string $url the url
  	 * @return string the absolute url
  	 *
  	 * Returns a absolute url to the given app and file.
  	 */
31b7f2792   Kload   Upgrade to ownclo...
93
94
  	public static function makeURLAbsolute($url) {
  		return OC::$server->getURLGenerator()->getAbsoluteURL($url);
03e52840d   Kload   Init
95
96
97
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
98
  	 * Creates an url for remote use
03e52840d   Kload   Init
99
100
101
102
103
  	 * @param string $service id
  	 * @return string the url
  	 *
  	 * Returns a url to the given service.
  	 */
31b7f2792   Kload   Upgrade to ownclo...
104
105
  	public static function linkToRemoteBase($service) {
  		return self::linkTo('', 'remote.php') . '/' . $service;
03e52840d   Kload   Init
106
107
108
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
109
  	 * Creates an absolute url for remote use
03e52840d   Kload   Init
110
111
112
113
114
115
  	 * @param string $service id
  	 * @param bool $add_slash
  	 * @return string the url
  	 *
  	 * Returns a absolute url to the given service.
  	 */
31b7f2792   Kload   Upgrade to ownclo...
116
  	public static function linkToRemote($service, $add_slash = true) {
6d9380f96   Cédric Dupont   Update sources OC...
117
118
119
120
  		return OC::$server->getURLGenerator()->getAbsoluteURL(
  			self::linkToRemoteBase($service)
  				. (($add_slash && $service[strlen($service) - 1] != '/') ? '/' : '')
  		);
03e52840d   Kload   Init
121
122
123
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
124
  	 * Creates an absolute url for public use
03e52840d   Kload   Init
125
126
127
128
129
130
131
  	 * @param string $service id
  	 * @param bool $add_slash
  	 * @return string the url
  	 *
  	 * Returns a absolute url to the given service.
  	 */
  	public static function linkToPublic($service, $add_slash = false) {
6d9380f96   Cédric Dupont   Update sources OC...
132
133
134
135
136
137
  		return OC::$server->getURLGenerator()->getAbsoluteURL(
  			self::linkTo(
  				'', 'public.php') . '?service=' . $service
  				. (($add_slash && $service[strlen($service) - 1] != '/') ? '/' : ''
  			)
  		);
03e52840d   Kload   Init
138
139
140
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
141
  	 * Creates path to an image
03e52840d   Kload   Init
142
143
144
145
146
147
  	 * @param string $app app
  	 * @param string $image image name
  	 * @return string the url
  	 *
  	 * Returns the path to the image.
  	 */
31b7f2792   Kload   Upgrade to ownclo...
148
149
  	public static function imagePath($app, $image) {
  		return OC::$server->getURLGenerator()->imagePath($app, $image);
03e52840d   Kload   Init
150
151
152
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
153
  	 * get path to icon of file type
03e52840d   Kload   Init
154
155
156
157
158
159
  	 * @param string $mimetype mimetype
  	 * @return string the url
  	 *
  	 * Returns the path to the image of this file type.
  	 */
  	public static function mimetypeIcon($mimetype) {
31b7f2792   Kload   Upgrade to ownclo...
160
  		$alias = array(
6d9380f96   Cédric Dupont   Update sources OC...
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
  			'application/octet-stream' => 'file', // use file icon as fallback
  
  			'application/illustrator' => 'image',
  			'application/coreldraw' => 'image',
  			'application/x-gimp' => 'image',
  			'application/x-photoshop' => 'image',
  
  			'application/x-font-ttf' => 'font',
  			'application/font-woff' => 'font',
  			'application/vnd.ms-fontobject' => 'font',
  
  			'application/json' => 'text/code',
  			'application/x-perl' => 'text/code',
  			'application/x-php' => 'text/code',
  			'text/x-shellscript' => 'text/code',
  			'application/xml' => 'text/html',
  			'text/css' => 'text/code',
  			'application/x-tex' => 'text',
  
  			'application/x-compressed' => 'package/x-generic',
  			'application/x-7z-compressed' => 'package/x-generic',
  			'application/x-deb' => 'package/x-generic',
  			'application/x-gzip' => 'package/x-generic',
  			'application/x-rar-compressed' => 'package/x-generic',
  			'application/x-tar' => 'package/x-generic',
  			'application/zip' => 'package/x-generic',
31b7f2792   Kload   Upgrade to ownclo...
187
188
189
190
191
192
193
194
195
  			'application/msword' => 'x-office/document',
  			'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => 'x-office/document',
  			'application/vnd.openxmlformats-officedocument.wordprocessingml.template' => 'x-office/document',
  			'application/vnd.ms-word.document.macroEnabled.12' => 'x-office/document',
  			'application/vnd.ms-word.template.macroEnabled.12' => 'x-office/document',
  			'application/vnd.oasis.opendocument.text' => 'x-office/document',
  			'application/vnd.oasis.opendocument.text-template' => 'x-office/document',
  			'application/vnd.oasis.opendocument.text-web' => 'x-office/document',
  			'application/vnd.oasis.opendocument.text-master' => 'x-office/document',
6d9380f96   Cédric Dupont   Update sources OC...
196
197
  
  			'application/mspowerpoint' => 'x-office/presentation',
31b7f2792   Kload   Upgrade to ownclo...
198
199
200
201
202
203
204
205
206
207
  			'application/vnd.ms-powerpoint' => 'x-office/presentation',
  			'application/vnd.openxmlformats-officedocument.presentationml.presentation' => 'x-office/presentation',
  			'application/vnd.openxmlformats-officedocument.presentationml.template' => 'x-office/presentation',
  			'application/vnd.openxmlformats-officedocument.presentationml.slideshow' => 'x-office/presentation',
  			'application/vnd.ms-powerpoint.addin.macroEnabled.12' => 'x-office/presentation',
  			'application/vnd.ms-powerpoint.presentation.macroEnabled.12' => 'x-office/presentation',
  			'application/vnd.ms-powerpoint.template.macroEnabled.12' => 'x-office/presentation',
  			'application/vnd.ms-powerpoint.slideshow.macroEnabled.12' => 'x-office/presentation',
  			'application/vnd.oasis.opendocument.presentation' => 'x-office/presentation',
  			'application/vnd.oasis.opendocument.presentation-template' => 'x-office/presentation',
6d9380f96   Cédric Dupont   Update sources OC...
208
209
  
  			'application/msexcel' => 'x-office/spreadsheet',
31b7f2792   Kload   Upgrade to ownclo...
210
211
212
213
214
215
216
217
218
  			'application/vnd.ms-excel' => 'x-office/spreadsheet',
  			'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => 'x-office/spreadsheet',
  			'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => 'x-office/spreadsheet',
  			'application/vnd.ms-excel.sheet.macroEnabled.12' => 'x-office/spreadsheet',
  			'application/vnd.ms-excel.template.macroEnabled.12' => 'x-office/spreadsheet',
  			'application/vnd.ms-excel.addin.macroEnabled.12' => 'x-office/spreadsheet',
  			'application/vnd.ms-excel.sheet.binary.macroEnabled.12' => 'x-office/spreadsheet',
  			'application/vnd.oasis.opendocument.spreadsheet' => 'x-office/spreadsheet',
  			'application/vnd.oasis.opendocument.spreadsheet-template' => 'x-office/spreadsheet',
6d9380f96   Cédric Dupont   Update sources OC...
219
220
221
  			'text/csv' => 'x-office/spreadsheet',
  
  			'application/msaccess' => 'database',
31b7f2792   Kload   Upgrade to ownclo...
222
  		);
03e52840d   Kload   Init
223
224
225
226
227
228
229
230
  		if (isset($alias[$mimetype])) {
  			$mimetype = $alias[$mimetype];
  		}
  		if (isset(self::$mimetypeIcons[$mimetype])) {
  			return self::$mimetypeIcons[$mimetype];
  		}
  		// Replace slash and backslash with a minus
  		$icon = str_replace('/', '-', $mimetype);
31b7f2792   Kload   Upgrade to ownclo...
231
  		$icon = str_replace('\\', '-', $icon);
03e52840d   Kload   Init
232
233
234
  
  		// Is it a dir?
  		if ($mimetype === 'dir') {
31b7f2792   Kload   Upgrade to ownclo...
235
236
237
238
239
240
241
242
243
244
  			self::$mimetypeIcons[$mimetype] = OC::$WEBROOT . '/core/img/filetypes/folder.png';
  			return OC::$WEBROOT . '/core/img/filetypes/folder.png';
  		}
  		if ($mimetype === 'dir-shared') {
  			self::$mimetypeIcons[$mimetype] = OC::$WEBROOT . '/core/img/filetypes/folder-shared.png';
  			return OC::$WEBROOT . '/core/img/filetypes/folder-shared.png';
  		}
  		if ($mimetype === 'dir-external') {
  			self::$mimetypeIcons[$mimetype] = OC::$WEBROOT . '/core/img/filetypes/folder-external.png';
  			return OC::$WEBROOT . '/core/img/filetypes/folder-external.png';
03e52840d   Kload   Init
245
246
247
  		}
  
  		// Icon exists?
31b7f2792   Kload   Upgrade to ownclo...
248
249
250
  		if (file_exists(OC::$SERVERROOT . '/core/img/filetypes/' . $icon . '.png')) {
  			self::$mimetypeIcons[$mimetype] = OC::$WEBROOT . '/core/img/filetypes/' . $icon . '.png';
  			return OC::$WEBROOT . '/core/img/filetypes/' . $icon . '.png';
03e52840d   Kload   Init
251
252
253
254
  		}
  
  		// Try only the first part of the filetype
  		$mimePart = substr($icon, 0, strpos($icon, '-'));
31b7f2792   Kload   Upgrade to ownclo...
255
256
257
  		if (file_exists(OC::$SERVERROOT . '/core/img/filetypes/' . $mimePart . '.png')) {
  			self::$mimetypeIcons[$mimetype] = OC::$WEBROOT . '/core/img/filetypes/' . $mimePart . '.png';
  			return OC::$WEBROOT . '/core/img/filetypes/' . $mimePart . '.png';
03e52840d   Kload   Init
258
  		} else {
31b7f2792   Kload   Upgrade to ownclo...
259
260
  			self::$mimetypeIcons[$mimetype] = OC::$WEBROOT . '/core/img/filetypes/file.png';
  			return OC::$WEBROOT . '/core/img/filetypes/file.png';
03e52840d   Kload   Init
261
262
263
264
  		}
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
265
  	 * get path to preview of file
31b7f2792   Kload   Upgrade to ownclo...
266
267
268
269
270
271
272
273
274
275
276
277
278
279
  	 * @param string $path path
  	 * @return string the url
  	 *
  	 * Returns the path to the preview of the file.
  	 */
  	public static function previewIcon($path) {
  		return self::linkToRoute( 'core_ajax_preview', array('x' => 36, 'y' => 36, 'file' => $path ));
  	}
  
  	public static function publicPreviewIcon( $path, $token ) {
  		return self::linkToRoute( 'core_ajax_public_preview', array('x' => 36, 'y' => 36, 'file' => $path, 't' => $token));
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
280
  	 * Make a human file size
03e52840d   Kload   Init
281
282
283
284
285
  	 * @param int $bytes file size in bytes
  	 * @return string a human readable file size
  	 *
  	 * Makes 2048 to 2 kB.
  	 */
31b7f2792   Kload   Upgrade to ownclo...
286
287
288
  	public static function humanFileSize($bytes) {
  		if ($bytes < 0) {
  			return "?";
03e52840d   Kload   Init
289
  		}
31b7f2792   Kload   Upgrade to ownclo...
290
  		if ($bytes < 1024) {
03e52840d   Kload   Init
291
292
  			return "$bytes B";
  		}
6d9380f96   Cédric Dupont   Update sources OC...
293
  		$bytes = round($bytes / 1024, 0);
31b7f2792   Kload   Upgrade to ownclo...
294
  		if ($bytes < 1024) {
03e52840d   Kload   Init
295
296
  			return "$bytes kB";
  		}
31b7f2792   Kload   Upgrade to ownclo...
297
298
  		$bytes = round($bytes / 1024, 1);
  		if ($bytes < 1024) {
03e52840d   Kload   Init
299
300
  			return "$bytes MB";
  		}
31b7f2792   Kload   Upgrade to ownclo...
301
302
303
304
305
306
307
308
  		$bytes = round($bytes / 1024, 1);
  		if ($bytes < 1024) {
  			return "$bytes GB";
  		}
  		$bytes = round($bytes / 1024, 1);
  		if ($bytes < 1024) {
  			return "$bytes TB";
  		}
03e52840d   Kload   Init
309

31b7f2792   Kload   Upgrade to ownclo...
310
311
  		$bytes = round($bytes / 1024, 1);
  		return "$bytes PB";
03e52840d   Kload   Init
312
313
314
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
  	 * Make a php file size
  	 * @param int $bytes file size in bytes
  	 * @return string a php parseable file size
  	 *
  	 * Makes 2048 to 2k and 2^41 to 2048G
  	 */
  	public static function phpFileSize($bytes) {
  		if ($bytes < 0) {
  			return "?";
  		}
  		if ($bytes < 1024) {
  			return $bytes . "B";
  		}
  		$bytes = round($bytes / 1024, 1);
  		if ($bytes < 1024) {
  			return $bytes . "K";
  		}
  		$bytes = round($bytes / 1024, 1);
  		if ($bytes < 1024) {
  			return $bytes . "M";
  		}
  		$bytes = round($bytes / 1024, 1);
  		return $bytes . "G";
  	}
  
  	/**
  	 * Make a computer file size
  	 * @param string $str file size in human readable format
03e52840d   Kload   Init
343
344
345
346
347
348
  	 * @return int a file size in bytes
  	 *
  	 * Makes 2kB to 2048.
  	 *
  	 * Inspired by: http://www.php.net/manual/en/function.filesize.php#92418
  	 */
31b7f2792   Kload   Upgrade to ownclo...
349
350
  	public static function computerFileSize($str) {
  		$str = strtolower($str);
03e52840d   Kload   Init
351
352
353
354
355
356
  
  		$bytes_array = array(
  			'b' => 1,
  			'k' => 1024,
  			'kb' => 1024,
  			'mb' => 1024 * 1024,
31b7f2792   Kload   Upgrade to ownclo...
357
  			'm' => 1024 * 1024,
03e52840d   Kload   Init
358
  			'gb' => 1024 * 1024 * 1024,
31b7f2792   Kload   Upgrade to ownclo...
359
  			'g' => 1024 * 1024 * 1024,
03e52840d   Kload   Init
360
  			'tb' => 1024 * 1024 * 1024 * 1024,
31b7f2792   Kload   Upgrade to ownclo...
361
  			't' => 1024 * 1024 * 1024 * 1024,
03e52840d   Kload   Init
362
  			'pb' => 1024 * 1024 * 1024 * 1024 * 1024,
31b7f2792   Kload   Upgrade to ownclo...
363
  			'p' => 1024 * 1024 * 1024 * 1024 * 1024,
03e52840d   Kload   Init
364
365
366
367
368
369
370
  		);
  
  		$bytes = floatval($str);
  
  		if (preg_match('#([kmgtp]?b?)$#si', $str, $matches) && !empty($bytes_array[$matches[1]])) {
  			$bytes *= $bytes_array[$matches[1]];
  		}
6d9380f96   Cédric Dupont   Update sources OC...
371
  		$bytes = round($bytes);
03e52840d   Kload   Init
372
373
374
375
376
  
  		return $bytes;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
377
  	 * Recursive copying of folders
03e52840d   Kload   Init
378
379
380
381
382
  	 * @param string $src source folder
  	 * @param string $dest target folder
  	 *
  	 */
  	static function copyr($src, $dest) {
31b7f2792   Kload   Upgrade to ownclo...
383
384
  		if (is_dir($src)) {
  			if (!is_dir($dest)) {
03e52840d   Kload   Init
385
386
387
388
389
390
391
392
  				mkdir($dest);
  			}
  			$files = scandir($src);
  			foreach ($files as $file) {
  				if ($file != "." && $file != "..") {
  					self::copyr("$src/$file", "$dest/$file");
  				}
  			}
31b7f2792   Kload   Upgrade to ownclo...
393
  		} elseif (file_exists($src) && !\OC\Files\Filesystem::isFileBlacklisted($src)) {
03e52840d   Kload   Init
394
395
396
397
398
  			copy($src, $dest);
  		}
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
399
  	 * Recursive deletion of folders
03e52840d   Kload   Init
400
401
402
403
  	 * @param string $dir path to the folder
  	 * @return bool
  	 */
  	static function rmdirr($dir) {
31b7f2792   Kload   Upgrade to ownclo...
404
  		if (is_dir($dir)) {
6d9380f96   Cédric Dupont   Update sources OC...
405
406
407
408
409
410
411
412
413
414
415
  			$files = new RecursiveIteratorIterator(
  				new RecursiveDirectoryIterator($dir, RecursiveDirectoryIterator::SKIP_DOTS),
  				RecursiveIteratorIterator::CHILD_FIRST
  			);
  
  			foreach ($files as $fileInfo) {
  				/** @var SplFileInfo $fileInfo */
  				if ($fileInfo->isDir()) {
  					rmdir($fileInfo->getRealPath());
  				} else {
  					unlink($fileInfo->getRealPath());
03e52840d   Kload   Init
416
417
418
  				}
  			}
  			rmdir($dir);
31b7f2792   Kload   Upgrade to ownclo...
419
  		} elseif (file_exists($dir)) {
03e52840d   Kload   Init
420
421
  			unlink($dir);
  		}
31b7f2792   Kload   Upgrade to ownclo...
422
  		if (file_exists($dir)) {
03e52840d   Kload   Init
423
  			return false;
31b7f2792   Kload   Upgrade to ownclo...
424
  		} else {
03e52840d   Kload   Init
425
426
427
428
429
  			return true;
  		}
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
430
  	 * @return \OC\Files\Type\Detection
03e52840d   Kload   Init
431
  	 */
31b7f2792   Kload   Upgrade to ownclo...
432
433
434
435
  	static public function getMimetypeDetector() {
  		if (!self::$mimetypeDetector) {
  			self::$mimetypeDetector = new \OC\Files\Type\Detection();
  			self::$mimetypeDetector->registerTypeArray(include 'mimetypes.list.php');
03e52840d   Kload   Init
436
  		}
31b7f2792   Kload   Upgrade to ownclo...
437
438
  		return self::$mimetypeDetector;
  	}
03e52840d   Kload   Init
439

31b7f2792   Kload   Upgrade to ownclo...
440
441
442
443
444
445
  	/**
  	 * @return \OC\Files\Type\TemplateManager
  	 */
  	static public function getFileTemplateManager() {
  		if (!self::$templateManager) {
  			self::$templateManager = new \OC\Files\Type\TemplateManager();
03e52840d   Kload   Init
446
  		}
31b7f2792   Kload   Upgrade to ownclo...
447
448
  		return self::$templateManager;
  	}
03e52840d   Kload   Init
449

31b7f2792   Kload   Upgrade to ownclo...
450
451
452
453
454
455
456
457
458
  	/**
  	 * Try to guess the mimetype based on filename
  	 *
  	 * @param string $path
  	 * @return string
  	 */
  	static public function getFileNameMimeType($path) {
  		return self::getMimetypeDetector()->detectPath($path);
  	}
03e52840d   Kload   Init
459

31b7f2792   Kload   Upgrade to ownclo...
460
461
462
463
464
465
466
467
468
  	/**
  	 * get the mimetype form a local file
  	 *
  	 * @param string $path
  	 * @return string
  	 * does NOT work for ownClouds filesystem, use OC_FileSystem::getMimeType instead
  	 */
  	static function getMimeType($path) {
  		return self::getMimetypeDetector()->detect($path);
03e52840d   Kload   Init
469
470
471
  	}
  
  	/**
837968727   Kload   [enh] Upgrade to ...
472
473
474
475
476
477
478
479
  	 * Get a secure mimetype that won't expose potential XSS.
  	 *
  	 * @param string $mimeType
  	 * @return string
  	 */
  	static function getSecureMimeType($mimeType) {
  		return self::getMimetypeDetector()->getSecureMimeType($mimeType);
  	}
6d9380f96   Cédric Dupont   Update sources OC...
480

837968727   Kload   [enh] Upgrade to ...
481
  	/**
03e52840d   Kload   Init
482
  	 * get the mimetype form a data string
31b7f2792   Kload   Upgrade to ownclo...
483
  	 *
03e52840d   Kload   Init
484
485
486
487
  	 * @param string $data
  	 * @return string
  	 */
  	static function getStringMimeType($data) {
31b7f2792   Kload   Upgrade to ownclo...
488
  		return self::getMimetypeDetector()->detectString($data);
03e52840d   Kload   Init
489
490
491
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
492
  	 * Checks $_REQUEST contains a var for the $s key. If so, returns the html-escaped value of this var; otherwise returns the default value provided by $d.
03e52840d   Kload   Init
493
494
495
496
497
  	 * @param string $s name of the var to escape, if set.
  	 * @param string $d default value.
  	 * @return string the print-safe value.
  	 *
  	 */
03e52840d   Kload   Init
498
499
500
  	/**
  	 * detect if a given program is found in the search PATH
  	 *
6d9380f96   Cédric Dupont   Update sources OC...
501
  	 * @param string $name
03e52840d   Kload   Init
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
  	 * @param bool $path
  	 * @internal param string $program name
  	 * @internal param string $optional search path, defaults to $PATH
  	 * @return bool    true if executable program found in path
  	 */
  	public static function canExecute($name, $path = false) {
  		// path defaults to PATH from environment if not set
  		if ($path === false) {
  			$path = getenv("PATH");
  		}
  		// check method depends on operating system
  		if (!strncmp(PHP_OS, "WIN", 3)) {
  			// on Windows an appropriate COM or EXE file needs to exist
  			$exts = array(".exe", ".com");
  			$check_fn = "file_exists";
  		} else {
  			// anywhere else we look for an executable file of that name
  			$exts = array("");
  			$check_fn = "is_executable";
  		}
  		// Default check will be done with $path directories :
  		$dirs = explode(PATH_SEPARATOR, $path);
  		// WARNING : We have to check if open_basedir is enabled :
  		$obd = ini_get('open_basedir');
31b7f2792   Kload   Upgrade to ownclo...
526
  		if ($obd != "none") {
03e52840d   Kload   Init
527
  			$obd_values = explode(PATH_SEPARATOR, $obd);
31b7f2792   Kload   Upgrade to ownclo...
528
  			if (count($obd_values) > 0 and $obd_values[0]) {
03e52840d   Kload   Init
529
530
531
532
533
  				// open_basedir is in effect !
  				// We need to check if the program is in one of these dirs :
  				$dirs = $obd_values;
  			}
  		}
31b7f2792   Kload   Upgrade to ownclo...
534
535
536
  		foreach ($dirs as $dir) {
  			foreach ($exts as $ext) {
  				if ($check_fn("$dir/$name" . $ext))
03e52840d   Kload   Init
537
538
539
540
541
542
543
544
  					return true;
  			}
  		}
  		return false;
  	}
  
  	/**
  	 * copy the contents of one stream to another
31b7f2792   Kload   Upgrade to ownclo...
545
  	 *
03e52840d   Kload   Init
546
547
548
549
550
551
552
553
554
555
  	 * @param resource $source
  	 * @param resource $target
  	 * @return array the number of bytes copied and result
  	 */
  	public static function streamCopy($source, $target) {
  		if (!$source or !$target) {
  			return array(0, false);
  		}
  		$result = true;
  		$count = 0;
31b7f2792   Kload   Upgrade to ownclo...
556
557
  		while (!feof($source)) {
  			if (($c = fwrite($target, fread($source, 8192))) === false) {
03e52840d   Kload   Init
558
559
560
561
562
563
564
565
566
567
  				$result = false;
  			} else {
  				$count += $c;
  			}
  		}
  		return array($count, $result);
  	}
  
  	/**
  	 * create a temporary file with an unique filename
31b7f2792   Kload   Upgrade to ownclo...
568
  	 *
03e52840d   Kload   Init
569
570
571
572
573
  	 * @param string $postfix
  	 * @return string
  	 *
  	 * temporary files are automatically cleaned up after the script is finished
  	 */
31b7f2792   Kload   Upgrade to ownclo...
574
575
576
  	public static function tmpFile($postfix = '') {
  		$file = get_temp_dir() . '/' . md5(time() . rand()) . $postfix;
  		$fh = fopen($file, 'w');
03e52840d   Kload   Init
577
  		fclose($fh);
31b7f2792   Kload   Upgrade to ownclo...
578
  		self::$tmpFiles[] = $file;
03e52840d   Kload   Init
579
580
581
582
  		return $file;
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
583
584
585
586
  	 * move a file to oc-noclean temp dir
  	 *
  	 * @param string $filename
  	 * @return mixed
03e52840d   Kload   Init
587
588
  	 *
  	 */
31b7f2792   Kload   Upgrade to ownclo...
589
590
591
592
593
  	public static function moveToNoClean($filename = '') {
  		if ($filename == '') {
  			return false;
  		}
  		$tmpDirNoClean = get_temp_dir() . '/oc-noclean/';
03e52840d   Kload   Init
594
595
596
597
598
599
  		if (!file_exists($tmpDirNoClean) || !is_dir($tmpDirNoClean)) {
  			if (file_exists($tmpDirNoClean)) {
  				unlink($tmpDirNoClean);
  			}
  			mkdir($tmpDirNoClean);
  		}
31b7f2792   Kload   Upgrade to ownclo...
600
601
602
603
604
605
  		$newname = $tmpDirNoClean . basename($filename);
  		if (rename($filename, $newname)) {
  			return $newname;
  		} else {
  			return false;
  		}
03e52840d   Kload   Init
606
607
608
609
  	}
  
  	/**
  	 * create a temporary folder with an unique filename
31b7f2792   Kload   Upgrade to ownclo...
610
  	 *
03e52840d   Kload   Init
611
612
613
614
615
  	 * @return string
  	 *
  	 * temporary files are automatically cleaned up after the script is finished
  	 */
  	public static function tmpFolder() {
31b7f2792   Kload   Upgrade to ownclo...
616
  		$path = get_temp_dir() . '/' . md5(time() . rand());
03e52840d   Kload   Init
617
  		mkdir($path);
31b7f2792   Kload   Upgrade to ownclo...
618
619
  		self::$tmpFiles[] = $path;
  		return $path . '/';
03e52840d   Kload   Init
620
621
622
623
624
625
  	}
  
  	/**
  	 * remove all files created by self::tmpFile
  	 */
  	public static function cleanTmp() {
31b7f2792   Kload   Upgrade to ownclo...
626
627
628
629
  		$leftoversFile = get_temp_dir() . '/oc-not-deleted';
  		if (file_exists($leftoversFile)) {
  			$leftovers = file($leftoversFile);
  			foreach ($leftovers as $file) {
03e52840d   Kload   Init
630
631
632
633
  				self::rmdirr($file);
  			}
  			unlink($leftoversFile);
  		}
31b7f2792   Kload   Upgrade to ownclo...
634
635
636
637
638
  		foreach (self::$tmpFiles as $file) {
  			if (file_exists($file)) {
  				if (!self::rmdirr($file)) {
  					file_put_contents($leftoversFile, $file . "
  ", FILE_APPEND);
03e52840d   Kload   Init
639
640
641
642
643
644
  				}
  			}
  		}
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
645
  	 * remove all files in PHP /oc-noclean temp dir
03e52840d   Kload   Init
646
647
  	 */
  	public static function cleanTmpNoClean() {
31b7f2792   Kload   Upgrade to ownclo...
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
  		$tmpDirNoCleanName=get_temp_dir() . '/oc-noclean/';
  		if(file_exists($tmpDirNoCleanName) && is_dir($tmpDirNoCleanName)) {
  			$files=scandir($tmpDirNoCleanName);
  			foreach($files as $file) {
  				$fileName = $tmpDirNoCleanName . $file;
  				if (!\OC\Files\Filesystem::isIgnoredDir($file) && filemtime($fileName) + 600 < time()) {
  					unlink($fileName);
  				}
  			}
  			// if oc-noclean is empty delete it
  			$isTmpDirNoCleanEmpty = true;
  			$tmpDirNoClean = opendir($tmpDirNoCleanName);
  			if(is_resource($tmpDirNoClean)) {
  				while (false !== ($file = readdir($tmpDirNoClean))) {
  					if (!\OC\Files\Filesystem::isIgnoredDir($file)) {
  						$isTmpDirNoCleanEmpty = false;
  					}
  				}
  			}
  			if ($isTmpDirNoCleanEmpty) {
  				rmdir($tmpDirNoCleanName);
  			}
03e52840d   Kload   Init
670
671
672
673
  		}
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
674
675
  	 * Adds a suffix to the name in case the file exists
  	 *
6d9380f96   Cédric Dupont   Update sources OC...
676
677
  	 * @param string $path
  	 * @param string $filename
31b7f2792   Kload   Upgrade to ownclo...
678
679
  	 * @return string
  	 */
03e52840d   Kload   Init
680
  	public static function buildNotExistingFileName($path, $filename) {
31b7f2792   Kload   Upgrade to ownclo...
681
682
683
684
685
686
687
  		$view = \OC\Files\Filesystem::getView();
  		return self::buildNotExistingFileNameForView($path, $filename, $view);
  	}
  
  	/**
  	 * Adds a suffix to the name in case the file exists
  	 *
6d9380f96   Cédric Dupont   Update sources OC...
688
689
  	 * @param string $path
  	 * @param string $filename
31b7f2792   Kload   Upgrade to ownclo...
690
691
692
693
694
  	 * @return string
  	 */
  	public static function buildNotExistingFileNameForView($path, $filename, \OC\Files\View $view) {
  		if ($path === '/') {
  			$path = '';
03e52840d   Kload   Init
695
696
697
698
699
700
701
702
703
704
  		}
  		if ($pos = strrpos($filename, '.')) {
  			$name = substr($filename, 0, $pos);
  			$ext = substr($filename, $pos);
  		} else {
  			$name = $filename;
  			$ext = '';
  		}
  
  		$newpath = $path . '/' . $filename;
31b7f2792   Kload   Upgrade to ownclo...
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
  		if ($view->file_exists($newpath)) {
  			if (preg_match_all('/\((\d+)\)/', $name, $matches, PREG_OFFSET_CAPTURE)) {
  				//Replace the last "(number)" with "(number+1)"
  				$last_match = count($matches[0]) - 1;
  				$counter = $matches[1][$last_match][0] + 1;
  				$offset = $matches[0][$last_match][1];
  				$match_length = strlen($matches[0][$last_match][0]);
  			} else {
  				$counter = 2;
  				$offset = false;
  			}
  			do {
  				if ($offset) {
  					//Replace the last "(number)" with "(number+1)"
  					$newname = substr_replace($name, '(' . $counter . ')', $offset, $match_length);
  				} else {
  					$newname = $name . ' (' . $counter . ')';
  				}
  				$newpath = $path . '/' . $newname . $ext;
  				$counter++;
  			} while ($view->file_exists($newpath));
03e52840d   Kload   Init
726
727
728
729
730
731
  		}
  
  		return $newpath;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
732
  	 * Checks if $sub is a subdirectory of $parent
03e52840d   Kload   Init
733
734
735
736
737
  	 *
  	 * @param string $sub
  	 * @param string $parent
  	 * @return bool
  	 */
6d9380f96   Cédric Dupont   Update sources OC...
738
739
740
741
742
743
744
745
746
747
748
749
750
  	public static function isSubDirectory($sub, $parent) {
  		$realpathSub = realpath($sub);
  		$realpathParent = realpath($parent);
  
  		// realpath() may return false in case the directory does not exist
  		// since we can not be sure how different PHP versions may behave here
  		// we do an additional check whether realpath returned false
  		if($realpathSub === false ||  $realpathParent === false) {
  			return false;
  		}
  
  		// Check whether $sub is a subdirectory of $parent
  		if (strpos($realpathSub, $realpathParent) === 0) {
03e52840d   Kload   Init
751
752
  			return true;
  		}
6d9380f96   Cédric Dupont   Update sources OC...
753

03e52840d   Kload   Init
754
755
756
757
  		return false;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
758
  	 * Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is.
31b7f2792   Kload   Upgrade to ownclo...
759
760
761
762
763
764
765
766
767
768
  	 *
  	 * @param array $input The array to work on
  	 * @param int $case Either MB_CASE_UPPER or MB_CASE_LOWER (default)
  	 * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8
  	 * @return array
  	 *
  	 * Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is.
  	 * based on http://www.php.net/manual/en/function.array-change-key-case.php#107715
  	 *
  	 */
03e52840d   Kload   Init
769
770
771
772
773
774
775
776
777
778
  	public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8') {
  		$case = ($case != MB_CASE_UPPER) ? MB_CASE_LOWER : MB_CASE_UPPER;
  		$ret = array();
  		foreach ($input as $k => $v) {
  			$ret[mb_convert_case($k, $case, $encoding)] = $v;
  		}
  		return $ret;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
779
  	 * replaces a copy of string delimited by the start and (optionally) length parameters with the string given in replacement.
03e52840d   Kload   Init
780
  	 *
6d9380f96   Cédric Dupont   Update sources OC...
781
  	 * @param string $string
03e52840d   Kload   Init
782
783
784
785
786
787
788
789
790
791
792
793
  	 * @param string $replacement The replacement string.
  	 * @param int $start If start is positive, the replacing will begin at the start'th offset into string. If start is negative, the replacing will begin at the start'th character from the end of string.
  	 * @param int $length Length of the part to be replaced
  	 * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8
  	 * @internal param string $input The input string. .Opposite to the PHP build-in function does not accept an array.
  	 * @return string
  	 */
  	public static function mb_substr_replace($string, $replacement, $start, $length = null, $encoding = 'UTF-8') {
  		$start = intval($start);
  		$length = intval($length);
  		$string = mb_substr($string, 0, $start, $encoding) .
  			$replacement .
31b7f2792   Kload   Upgrade to ownclo...
794
  			mb_substr($string, $start + $length, mb_strlen($string, 'UTF-8') - $start, $encoding);
03e52840d   Kload   Init
795
796
797
798
799
  
  		return $string;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
800
  	 * Replace all occurrences of the search string with the replacement string
31b7f2792   Kload   Upgrade to ownclo...
801
802
803
804
805
806
807
808
809
  	 *
  	 * @param string $search The value being searched for, otherwise known as the needle.
  	 * @param string $replace The replacement
  	 * @param string $subject The string or array being searched and replaced on, otherwise known as the haystack.
  	 * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8
  	 * @param int $count If passed, this will be set to the number of replacements performed.
  	 * @return string
  	 *
  	 */
03e52840d   Kload   Init
810
811
812
  	public static function mb_str_replace($search, $replace, $subject, $encoding = 'UTF-8', &$count = null) {
  		$offset = -1;
  		$length = mb_strlen($search, $encoding);
31b7f2792   Kload   Upgrade to ownclo...
813
  		while (($i = mb_strrpos($subject, $search, $offset, $encoding)) !== false) {
03e52840d   Kload   Init
814
815
816
817
818
819
820
821
  			$subject = OC_Helper::mb_substr_replace($subject, $replace, $i, $length);
  			$offset = $i - mb_strlen($subject, $encoding);
  			$count++;
  		}
  		return $subject;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
822
  	 * performs a search in a nested array
31b7f2792   Kload   Upgrade to ownclo...
823
824
825
826
827
828
829
830
831
  	 * @param array $haystack the array to be searched
  	 * @param string $needle the search string
  	 * @param string $index optional, only search this key name
  	 * @return mixed the key of the matching field, otherwise false
  	 *
  	 * performs a search in a nested array
  	 *
  	 * taken from http://www.php.net/manual/en/function.array-search.php#97645
  	 */
03e52840d   Kload   Init
832
833
834
  	public static function recursiveArraySearch($haystack, $needle, $index = null) {
  		$aIt = new RecursiveArrayIterator($haystack);
  		$it = new RecursiveIteratorIterator($aIt);
31b7f2792   Kload   Upgrade to ownclo...
835
  		while ($it->valid()) {
03e52840d   Kload   Init
836
837
838
839
840
841
842
843
844
845
846
847
848
  			if (((isset($index) AND ($it->key() == $index)) OR (!isset($index))) AND ($it->current() == $needle)) {
  				return $aIt->key();
  			}
  
  			$it->next();
  		}
  
  		return false;
  	}
  
  	/**
  	 * Shortens str to maxlen by replacing characters in the middle with '...', eg.
  	 * ellipsis('a very long string with lots of useless info to make a better example', 14) becomes 'a very ...example'
31b7f2792   Kload   Upgrade to ownclo...
849
  	 *
03e52840d   Kload   Init
850
851
852
853
854
855
856
857
858
859
860
861
862
  	 * @param string $str the string
  	 * @param string $maxlen the maximum length of the result
  	 * @return string with at most maxlen characters
  	 */
  	public static function ellipsis($str, $maxlen) {
  		if (strlen($str) > $maxlen) {
  			$characters = floor($maxlen / 2);
  			return substr($str, 0, $characters) . '...' . substr($str, -1 * $characters);
  		}
  		return $str;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
863
  	 * calculates the maximum upload size respecting system settings, free space and user quota
03e52840d   Kload   Init
864
  	 *
6d9380f96   Cédric Dupont   Update sources OC...
865
866
867
  	 * @param string $dir the current folder where the user currently operates
  	 * @param int $freeSpace the number of bytes free on the storage holding $dir, if not set this will be received from the storage directly
  	 * @return int number of bytes representing
03e52840d   Kload   Init
868
  	 */
6d9380f96   Cédric Dupont   Update sources OC...
869
870
871
  	public static function maxUploadFilesize($dir, $freeSpace = null) {
  		if (is_null($freeSpace) || $freeSpace < 0){
  			$freeSpace = self::freeSpace($dir);
31b7f2792   Kload   Upgrade to ownclo...
872
  		}
6d9380f96   Cédric Dupont   Update sources OC...
873
874
  		return min($freeSpace, self::uploadLimit());
  	}
31b7f2792   Kload   Upgrade to ownclo...
875

6d9380f96   Cédric Dupont   Update sources OC...
876
877
878
879
880
881
882
883
  	/**
  	 * Calculate free space left within user quota
  	 *
  	 * @param string $dir the current folder where the user currently operates
  	 * @return int number of bytes representing
  	 */
  	public static function freeSpace($dir) {
  		$freeSpace = \OC\Files\Filesystem::free_space($dir);
31b7f2792   Kload   Upgrade to ownclo...
884
  		if ($freeSpace !== \OC\Files\SPACE_UNKNOWN) {
03e52840d   Kload   Init
885
  			$freeSpace = max($freeSpace, 0);
6d9380f96   Cédric Dupont   Update sources OC...
886
887
888
889
890
  			return $freeSpace;
  		} else {
  			return INF;
  		}
  	}
03e52840d   Kload   Init
891

6d9380f96   Cédric Dupont   Update sources OC...
892
893
894
895
896
897
898
899
900
901
902
903
  	/**
  	 * Calculate PHP upload limit
  	 *
  	 * @return PHP upload file size limit
  	 */
  	public static function uploadLimit() {
  		$upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize'));
  		$post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size'));
  		if ((int)$upload_max_filesize === 0 and (int)$post_max_size === 0) {
  			return INF;
  		} elseif ((int)$upload_max_filesize === 0 or (int)$post_max_size === 0) {
  			return max($upload_max_filesize, $post_max_size); //only the non 0 value counts
03e52840d   Kload   Init
904
  		} else {
6d9380f96   Cédric Dupont   Update sources OC...
905
  			return min($upload_max_filesize, $post_max_size);
03e52840d   Kload   Init
906
907
908
909
910
  		}
  	}
  
  	/**
  	 * Checks if a function is available
31b7f2792   Kload   Upgrade to ownclo...
911
  	 *
03e52840d   Kload   Init
912
913
914
915
916
917
918
  	 * @param string $function_name
  	 * @return bool
  	 */
  	public static function is_function_enabled($function_name) {
  		if (!function_exists($function_name)) {
  			return false;
  		}
a293d369c   Kload   Update sources to...
919
920
  		$disabled = explode(',', ini_get('disable_functions'));
  		$disabled = array_map('trim', $disabled);
03e52840d   Kload   Init
921
922
923
  		if (in_array($function_name, $disabled)) {
  			return false;
  		}
a293d369c   Kload   Update sources to...
924
925
  		$disabled = explode(',', ini_get('suhosin.executor.func.blacklist'));
  		$disabled = array_map('trim', $disabled);
03e52840d   Kload   Init
926
927
928
929
930
931
932
933
934
935
  		if (in_array($function_name, $disabled)) {
  			return false;
  		}
  		return true;
  	}
  
  	/**
  	 * Calculate the disc space for the given path
  	 *
  	 * @param string $path
6d9380f96   Cédric Dupont   Update sources OC...
936
  	 * @param \OCP\Files\FileInfo $rootInfo (optional)
03e52840d   Kload   Init
937
938
  	 * @return array
  	 */
6d9380f96   Cédric Dupont   Update sources OC...
939
  	public static function getStorageInfo($path, $rootInfo = null) {
31b7f2792   Kload   Upgrade to ownclo...
940
  		// return storage info without adding mount points
6d9380f96   Cédric Dupont   Update sources OC...
941
942
943
944
945
946
  		$includeExtStorage = \OC_Config::getValue('quota_include_external_storage', false);
  
  		if (!$rootInfo) {
  			$rootInfo = \OC\Files\Filesystem::getFileInfo($path, false);
  		}
  		$used = $rootInfo->getSize();
03e52840d   Kload   Init
947
948
949
  		if ($used < 0) {
  			$used = 0;
  		}
6d9380f96   Cédric Dupont   Update sources OC...
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
  		$quota = 0;
  		$storage = $rootInfo->getStorage();
  		if ($includeExtStorage && $storage->instanceOfStorage('\OC\Files\Storage\Shared')) {
  			$includeExtStorage = false;
  		}
  		if ($includeExtStorage) {
  			$quota = OC_Util::getUserQuota(\OCP\User::getUser());
  			if ($quota !== \OC\Files\SPACE_UNLIMITED) {
  				// always get free space / total space from root + mount points
  				$path = '';
  				return self::getGlobalStorageInfo();
  			}
  		}
  
  		// TODO: need a better way to get total space from storage
  		if ($storage->instanceOfStorage('\OC\Files\Storage\Wrapper\Quota')) {
  			$quota = $storage->getQuota();
  		}
  		$free = $storage->free_space('');
03e52840d   Kload   Init
969
970
971
972
973
  		if ($free >= 0) {
  			$total = $free + $used;
  		} else {
  			$total = $free; //either unknown or unlimited
  		}
31b7f2792   Kload   Upgrade to ownclo...
974
  		if ($total > 0) {
6d9380f96   Cédric Dupont   Update sources OC...
975
976
977
  			if ($quota > 0 && $total > $quota) {
  				$total = $quota;
  			}
31b7f2792   Kload   Upgrade to ownclo...
978
  			// prevent division by zero or error codes (negative values)
03e52840d   Kload   Init
979
980
981
982
983
984
985
  			$relative = round(($used / $total) * 10000) / 100;
  		} else {
  			$relative = 0;
  		}
  
  		return array('free' => $free, 'used' => $used, 'total' => $total, 'relative' => $relative);
  	}
6d9380f96   Cédric Dupont   Update sources OC...
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
  
  	/**
  	 * Get storage info including all mount points and quota
  	 *
  	 * @return array
  	 */
  	private static function getGlobalStorageInfo() {
  		$quota = OC_Util::getUserQuota(\OCP\User::getUser());
  
  		$rootInfo = \OC\Files\Filesystem::getFileInfo('', 'ext');
  		$used = $rootInfo['size'];
  		if ($used < 0) {
  			$used = 0;
  		}
  
  		$total = $quota;
  		$free = $quota - $used;
  
  		if ($total > 0) {
  			if ($quota > 0 && $total > $quota) {
  				$total = $quota;
  			}
  			// prevent division by zero or error codes (negative values)
  			$relative = round(($used / $total) * 10000) / 100;
  		} else {
  			$relative = 0;
  		}
  
  		return array('free' => $free, 'used' => $used, 'total' => $total, 'relative' => $relative);
  
  	}
03e52840d   Kload   Init
1017
  }