2011-03-02 16:18:22 -05:00
|
|
|
<?php
|
|
|
|
|
/**
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Arthur Schiwon <blizzz@owncloud.com>
|
|
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2015-04-02 15:37:57 -04:00
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
2016-01-12 09:02:16 -05:00
|
|
|
* @author Clark Tomlinson <fallen013@gmail.com>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Fabian Henze <flyser42@gmx.de>
|
|
|
|
|
* @author Felix Moeller <mail@felixmoeller.de>
|
|
|
|
|
* @author Frank Karlitschek <frank@owncloud.org>
|
|
|
|
|
* @author Georg Ehrke <georg@owncloud.com>
|
|
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
|
|
|
|
* @author Jan-Christoph Borchardt <hey@jancborchardt.net>
|
|
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
2015-04-02 15:37:57 -04:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
|
* @author Michael Gapczynski <GapczynskiM@gmail.com>
|
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2015-06-25 05:43:55 -04:00
|
|
|
* @author Olivier Paroz <github@oparoz.com>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Owen Winkler <a_github@midnightcircus.com>
|
|
|
|
|
* @author Pellaeon Lin <nfsmwlin@gmail.com>
|
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
2016-01-12 09:02:16 -05:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2015-10-26 08:54:55 -04:00
|
|
|
* @author Roeland Jago Douma <rullzer@owncloud.com>
|
2015-04-02 15:37:57 -04:00
|
|
|
* @author Simon Könnecke <simonkoennecke@gmail.com>
|
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Thomas Tanghus <thomas@tanghus.net>
|
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2011-03-13 12:25:34 -04:00
|
|
|
*
|
2016-01-12 09:02:16 -05:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2015-03-26 06:44:34 -04:00
|
|
|
* @license AGPL-3.0
|
2011-03-13 12:25:34 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
|
* as published by the Free Software Foundation.
|
2011-03-13 12:25:34 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2011-03-13 12:25:34 -04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 06:44:34 -04:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Affero General Public License for more details.
|
2011-03-13 12:25:34 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2011-03-13 12:25:34 -04:00
|
|
|
*
|
|
|
|
|
*/
|
2015-01-26 06:32:17 -05:00
|
|
|
use Symfony\Component\Process\ExecutableFinder;
|
2015-02-26 05:37:37 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Collection of useful functions
|
|
|
|
|
*/
|
2011-07-29 15:36:03 -04:00
|
|
|
class OC_Helper {
|
2013-08-07 10:53:09 -04:00
|
|
|
private static $templateManager;
|
2012-04-13 16:59:47 -04:00
|
|
|
|
2012-08-27 15:46:05 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* Creates an absolute url for public use
|
2012-09-22 20:39:11 -04:00
|
|
|
* @param string $service id
|
2013-01-04 17:00:51 -05:00
|
|
|
* @param bool $add_slash
|
2012-09-22 20:39:11 -04:00
|
|
|
* @return string the url
|
2012-08-27 15:46:05 -04:00
|
|
|
*
|
|
|
|
|
* Returns a absolute url to the given service.
|
|
|
|
|
*/
|
|
|
|
|
public static function linkToPublic($service, $add_slash = false) {
|
2014-09-04 13:51:38 -04:00
|
|
|
if ($service === 'files') {
|
|
|
|
|
$url = OC::$server->getURLGenerator()->getAbsoluteURL('/s');
|
|
|
|
|
} else {
|
2015-12-17 04:53:21 -05:00
|
|
|
$url = OC::$server->getURLGenerator()->getAbsoluteURL(OC::$server->getURLGenerator()->linkTo('', 'public.php').'?service='.$service);
|
2014-09-04 13:51:38 -04:00
|
|
|
}
|
|
|
|
|
return $url . (($add_slash && $service[strlen($service) - 1] != '/') ? '/' : '');
|
2012-08-27 15:46:05 -04:00
|
|
|
}
|
|
|
|
|
|
2013-06-26 12:04:18 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* get path to preview of file
|
2013-06-26 12:04:18 -04:00
|
|
|
* @param string $path path
|
|
|
|
|
* @return string the url
|
|
|
|
|
*
|
|
|
|
|
* Returns the path to the preview of the file.
|
|
|
|
|
*/
|
|
|
|
|
public static function previewIcon($path) {
|
2015-12-17 02:19:06 -05:00
|
|
|
return \OC::$server->getURLGenerator()->linkToRoute('core_ajax_preview', ['x' => 32, 'y' => 32, 'file' => $path]);
|
2013-06-26 12:04:18 -04:00
|
|
|
}
|
|
|
|
|
|
2013-07-30 06:29:12 -04:00
|
|
|
public static function publicPreviewIcon( $path, $token ) {
|
2015-12-17 02:19:06 -05:00
|
|
|
return \OC::$server->getURLGenerator()->linkToRoute('core_ajax_public_preview', ['x' => 32, 'y' => 32, 'file' => $path, 't' => $token]);
|
2013-07-11 05:58:52 -04:00
|
|
|
}
|
|
|
|
|
|
2011-03-02 16:28:32 -05:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* Make a human file size
|
2012-09-22 20:39:11 -04:00
|
|
|
* @param int $bytes file size in bytes
|
|
|
|
|
* @return string a human readable file size
|
2011-03-02 16:28:32 -05:00
|
|
|
*
|
2011-03-13 12:25:34 -04:00
|
|
|
* Makes 2048 to 2 kB.
|
2011-03-02 16:28:32 -05:00
|
|
|
*/
|
2013-08-07 10:38:57 -04:00
|
|
|
public static function humanFileSize($bytes) {
|
|
|
|
|
if ($bytes < 0) {
|
2013-08-04 10:27:17 -04:00
|
|
|
return "?";
|
2013-01-14 17:39:31 -05:00
|
|
|
}
|
2013-08-07 10:38:57 -04:00
|
|
|
if ($bytes < 1024) {
|
2011-03-02 16:28:32 -05:00
|
|
|
return "$bytes B";
|
|
|
|
|
}
|
2013-11-25 06:26:03 -05:00
|
|
|
$bytes = round($bytes / 1024, 0);
|
2013-08-07 10:38:57 -04:00
|
|
|
if ($bytes < 1024) {
|
2016-01-19 04:37:20 -05:00
|
|
|
return "$bytes KB";
|
2011-03-02 16:28:32 -05:00
|
|
|
}
|
2013-08-07 10:38:57 -04:00
|
|
|
$bytes = round($bytes / 1024, 1);
|
|
|
|
|
if ($bytes < 1024) {
|
2011-03-02 16:28:32 -05:00
|
|
|
return "$bytes MB";
|
|
|
|
|
}
|
2013-09-13 11:22:45 -04:00
|
|
|
$bytes = round($bytes / 1024, 1);
|
|
|
|
|
if ($bytes < 1024) {
|
|
|
|
|
return "$bytes GB";
|
|
|
|
|
}
|
|
|
|
|
$bytes = round($bytes / 1024, 1);
|
|
|
|
|
if ($bytes < 1024) {
|
|
|
|
|
return "$bytes TB";
|
|
|
|
|
}
|
2011-03-02 16:28:32 -05:00
|
|
|
|
2013-08-07 10:38:57 -04:00
|
|
|
$bytes = round($bytes / 1024, 1);
|
2013-09-13 11:22:45 -04:00
|
|
|
return "$bytes PB";
|
2011-03-02 16:28:32 -05:00
|
|
|
}
|
2012-04-13 16:59:47 -04:00
|
|
|
|
2014-04-02 19:17:28 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* Make a php file size
|
2014-04-02 19:17:28 -04:00
|
|
|
* @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";
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-17 06:03:23 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* Make a computer file size
|
2014-03-17 07:15:12 -04:00
|
|
|
* @param string $str file size in human readable format
|
2015-10-01 07:45:49 -04:00
|
|
|
* @return float a file size in bytes
|
2011-04-17 06:03:23 -04:00
|
|
|
*
|
|
|
|
|
* Makes 2kB to 2048.
|
|
|
|
|
*
|
|
|
|
|
* Inspired by: http://www.php.net/manual/en/function.filesize.php#92418
|
|
|
|
|
*/
|
2013-08-07 10:38:57 -04:00
|
|
|
public static function computerFileSize($str) {
|
|
|
|
|
$str = strtolower($str);
|
2015-05-08 04:54:54 -04:00
|
|
|
if (is_numeric($str)) {
|
2015-10-01 07:45:49 -04:00
|
|
|
return floatval($str);
|
2015-05-08 04:54:54 -04:00
|
|
|
}
|
2011-04-17 06:03:23 -04:00
|
|
|
|
|
|
|
|
$bytes_array = array(
|
2011-12-11 17:33:24 -05:00
|
|
|
'b' => 1,
|
|
|
|
|
'k' => 1024,
|
|
|
|
|
'kb' => 1024,
|
|
|
|
|
'mb' => 1024 * 1024,
|
2013-08-07 10:38:57 -04:00
|
|
|
'm' => 1024 * 1024,
|
2011-12-11 17:33:24 -05:00
|
|
|
'gb' => 1024 * 1024 * 1024,
|
2013-08-07 10:38:57 -04:00
|
|
|
'g' => 1024 * 1024 * 1024,
|
2011-12-11 17:33:24 -05:00
|
|
|
'tb' => 1024 * 1024 * 1024 * 1024,
|
2013-08-07 10:38:57 -04:00
|
|
|
't' => 1024 * 1024 * 1024 * 1024,
|
2011-12-11 17:33:24 -05:00
|
|
|
'pb' => 1024 * 1024 * 1024 * 1024 * 1024,
|
2013-08-07 10:38:57 -04:00
|
|
|
'p' => 1024 * 1024 * 1024 * 1024 * 1024,
|
2011-04-17 06:03:23 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$bytes = floatval($str);
|
|
|
|
|
|
2011-12-11 17:33:24 -05:00
|
|
|
if (preg_match('#([kmgtp]?b?)$#si', $str, $matches) && !empty($bytes_array[$matches[1]])) {
|
2011-04-17 06:03:23 -04:00
|
|
|
$bytes *= $bytes_array[$matches[1]];
|
2015-05-07 11:56:13 -04:00
|
|
|
} else {
|
|
|
|
|
return false;
|
2011-04-17 06:03:23 -04:00
|
|
|
}
|
|
|
|
|
|
2014-03-17 07:15:12 -04:00
|
|
|
$bytes = round($bytes);
|
2011-04-17 06:03:23 -04:00
|
|
|
|
2012-04-13 16:59:47 -04:00
|
|
|
return $bytes;
|
2011-04-17 06:03:23 -04:00
|
|
|
}
|
2012-04-13 16:59:47 -04:00
|
|
|
|
2011-05-28 11:33:25 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* Recursive copying of folders
|
2011-05-28 11:33:25 -04:00
|
|
|
* @param string $src source folder
|
|
|
|
|
* @param string $dest target folder
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static function copyr($src, $dest) {
|
2013-08-07 10:38:57 -04:00
|
|
|
if (is_dir($src)) {
|
|
|
|
|
if (!is_dir($dest)) {
|
2011-05-28 11:33:25 -04:00
|
|
|
mkdir($dest);
|
|
|
|
|
}
|
|
|
|
|
$files = scandir($src);
|
2012-09-07 09:22:01 -04:00
|
|
|
foreach ($files as $file) {
|
|
|
|
|
if ($file != "." && $file != "..") {
|
2011-05-28 11:33:25 -04:00
|
|
|
self::copyr("$src/$file", "$dest/$file");
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-08-07 10:38:57 -04:00
|
|
|
} elseif (file_exists($src) && !\OC\Files\Filesystem::isFileBlacklisted($src)) {
|
2011-05-28 11:33:25 -04:00
|
|
|
copy($src, $dest);
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-04-13 16:59:47 -04:00
|
|
|
|
2011-05-28 11:33:25 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* Recursive deletion of folders
|
2011-05-28 11:33:25 -04:00
|
|
|
* @param string $dir path to the folder
|
2014-10-06 06:38:59 -04:00
|
|
|
* @param bool $deleteSelf if set to false only the content of the folder will be deleted
|
2012-09-22 20:39:11 -04:00
|
|
|
* @return bool
|
2011-05-28 11:33:25 -04:00
|
|
|
*/
|
2014-10-06 06:38:59 -04:00
|
|
|
static function rmdirr($dir, $deleteSelf = true) {
|
2013-08-07 10:38:57 -04:00
|
|
|
if (is_dir($dir)) {
|
2014-06-23 07:33:55 -04:00
|
|
|
$files = new RecursiveIteratorIterator(
|
|
|
|
|
new RecursiveDirectoryIterator($dir, RecursiveDirectoryIterator::SKIP_DOTS),
|
|
|
|
|
RecursiveIteratorIterator::CHILD_FIRST
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
foreach ($files as $fileInfo) {
|
2014-06-23 17:15:30 -04:00
|
|
|
/** @var SplFileInfo $fileInfo */
|
2014-06-23 07:33:55 -04:00
|
|
|
if ($fileInfo->isDir()) {
|
|
|
|
|
rmdir($fileInfo->getRealPath());
|
|
|
|
|
} else {
|
|
|
|
|
unlink($fileInfo->getRealPath());
|
2011-05-28 11:33:25 -04:00
|
|
|
}
|
|
|
|
|
}
|
2014-10-06 06:38:59 -04:00
|
|
|
if ($deleteSelf) {
|
|
|
|
|
rmdir($dir);
|
|
|
|
|
}
|
2013-08-07 10:38:57 -04:00
|
|
|
} elseif (file_exists($dir)) {
|
2014-10-06 06:38:59 -04:00
|
|
|
if ($deleteSelf) {
|
|
|
|
|
unlink($dir);
|
|
|
|
|
}
|
2011-05-28 11:33:25 -04:00
|
|
|
}
|
2014-10-06 06:38:59 -04:00
|
|
|
if (!$deleteSelf) {
|
2012-09-22 20:39:11 -04:00
|
|
|
return true;
|
2012-04-13 16:59:47 -04:00
|
|
|
}
|
2014-10-06 06:38:59 -04:00
|
|
|
|
|
|
|
|
return !file_exists($dir);
|
2011-05-28 11:33:25 -04:00
|
|
|
}
|
2012-02-15 15:44:58 -05:00
|
|
|
|
2013-08-07 10:53:09 -04:00
|
|
|
/**
|
|
|
|
|
* @return \OC\Files\Type\TemplateManager
|
|
|
|
|
*/
|
|
|
|
|
static public function getFileTemplateManager() {
|
|
|
|
|
if (!self::$templateManager) {
|
|
|
|
|
self::$templateManager = new \OC\Files\Type\TemplateManager();
|
|
|
|
|
}
|
|
|
|
|
return self::$templateManager;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-28 14:10:58 -04:00
|
|
|
/**
|
2013-01-04 17:00:51 -05:00
|
|
|
* detect if a given program is found in the search PATH
|
|
|
|
|
*
|
2014-05-11 16:51:30 -04:00
|
|
|
* @param string $name
|
2013-01-04 17:00:51 -05:00
|
|
|
* @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
|
|
|
|
|
*/
|
2012-09-07 09:22:01 -04:00
|
|
|
public static function canExecute($name, $path = false) {
|
2011-07-28 14:10:58 -04:00
|
|
|
// 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 :
|
2014-09-17 10:07:32 -04:00
|
|
|
$obd = OC::$server->getIniWrapper()->getString('open_basedir');
|
2013-08-07 10:38:57 -04:00
|
|
|
if ($obd != "none") {
|
2011-07-28 14:10:58 -04:00
|
|
|
$obd_values = explode(PATH_SEPARATOR, $obd);
|
2013-08-07 10:38:57 -04:00
|
|
|
if (count($obd_values) > 0 and $obd_values[0]) {
|
2012-09-22 20:39:11 -04:00
|
|
|
// open_basedir is in effect !
|
|
|
|
|
// We need to check if the program is in one of these dirs :
|
|
|
|
|
$dirs = $obd_values;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-08-07 10:38:57 -04:00
|
|
|
foreach ($dirs as $dir) {
|
|
|
|
|
foreach ($exts as $ext) {
|
|
|
|
|
if ($check_fn("$dir/$name" . $ext))
|
2011-07-28 14:10:58 -04:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2012-04-13 16:59:47 -04:00
|
|
|
|
2012-02-27 06:04:04 -05:00
|
|
|
/**
|
|
|
|
|
* copy the contents of one stream to another
|
2013-08-07 10:38:57 -04:00
|
|
|
*
|
2012-09-22 20:39:11 -04:00
|
|
|
* @param resource $source
|
|
|
|
|
* @param resource $target
|
2013-10-14 15:33:23 -04:00
|
|
|
* @return array the number of bytes copied and result
|
2012-02-27 06:04:04 -05:00
|
|
|
*/
|
2012-11-02 14:53:02 -04:00
|
|
|
public static function streamCopy($source, $target) {
|
2013-08-07 10:38:57 -04:00
|
|
|
if (!$source or !$target) {
|
2013-10-14 15:33:23 -04:00
|
|
|
return array(0, false);
|
2012-02-27 06:04:04 -05:00
|
|
|
}
|
2015-02-23 06:31:22 -05:00
|
|
|
$bufSize = 8192;
|
2013-02-22 10:43:11 -05:00
|
|
|
$result = true;
|
|
|
|
|
$count = 0;
|
2013-08-07 10:38:57 -04:00
|
|
|
while (!feof($source)) {
|
2015-02-23 06:31:22 -05:00
|
|
|
$buf = fread($source, $bufSize);
|
|
|
|
|
$bytesWritten = fwrite($target, $buf);
|
|
|
|
|
if ($bytesWritten !== false) {
|
|
|
|
|
$count += $bytesWritten;
|
|
|
|
|
}
|
|
|
|
|
// note: strlen is expensive so only use it when necessary,
|
|
|
|
|
// on the last block
|
|
|
|
|
if ($bytesWritten === false
|
|
|
|
|
|| ($bytesWritten < $bufSize && $bytesWritten < strlen($buf))
|
|
|
|
|
) {
|
|
|
|
|
// write error, could be disk full ?
|
2013-02-22 08:56:50 -05:00
|
|
|
$result = false;
|
2015-02-23 06:31:22 -05:00
|
|
|
break;
|
2013-02-22 08:56:50 -05:00
|
|
|
}
|
2012-02-27 06:04:04 -05:00
|
|
|
}
|
2013-02-22 10:43:11 -05:00
|
|
|
return array($count, $result);
|
2012-02-27 06:04:04 -05:00
|
|
|
}
|
2012-04-13 16:59:47 -04:00
|
|
|
|
2012-06-14 06:57:30 -04:00
|
|
|
/**
|
2013-08-07 10:38:57 -04:00
|
|
|
* Adds a suffix to the name in case the file exists
|
|
|
|
|
*
|
2014-05-11 16:51:30 -04:00
|
|
|
* @param string $path
|
|
|
|
|
* @param string $filename
|
2013-08-07 10:38:57 -04:00
|
|
|
* @return string
|
|
|
|
|
*/
|
2012-09-07 09:22:01 -04:00
|
|
|
public static function buildNotExistingFileName($path, $filename) {
|
2013-03-08 08:22:04 -05:00
|
|
|
$view = \OC\Files\Filesystem::getView();
|
|
|
|
|
return self::buildNotExistingFileNameForView($path, $filename, $view);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2013-08-07 10:38:57 -04:00
|
|
|
* Adds a suffix to the name in case the file exists
|
|
|
|
|
*
|
2014-05-11 16:51:30 -04:00
|
|
|
* @param string $path
|
|
|
|
|
* @param string $filename
|
2013-08-07 10:38:57 -04:00
|
|
|
* @return string
|
|
|
|
|
*/
|
2013-03-08 08:22:04 -05:00
|
|
|
public static function buildNotExistingFileNameForView($path, $filename, \OC\Files\View $view) {
|
2013-08-07 10:38:57 -04:00
|
|
|
if ($path === '/') {
|
|
|
|
|
$path = '';
|
2012-06-14 06:57:30 -04:00
|
|
|
}
|
|
|
|
|
if ($pos = strrpos($filename, '.')) {
|
|
|
|
|
$name = substr($filename, 0, $pos);
|
|
|
|
|
$ext = substr($filename, $pos);
|
|
|
|
|
} else {
|
|
|
|
|
$name = $filename;
|
2012-09-22 20:39:11 -04:00
|
|
|
$ext = '';
|
2012-06-14 06:57:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$newpath = $path . '/' . $filename;
|
2013-07-05 09:38:09 -04:00
|
|
|
if ($view->file_exists($newpath)) {
|
2013-08-07 10:38:57 -04:00
|
|
|
if (preg_match_all('/\((\d+)\)/', $name, $matches, PREG_OFFSET_CAPTURE)) {
|
2013-09-05 05:58:57 -04:00
|
|
|
//Replace the last "(number)" with "(number+1)"
|
2013-08-07 10:38:57 -04:00
|
|
|
$last_match = count($matches[0]) - 1;
|
|
|
|
|
$counter = $matches[1][$last_match][0] + 1;
|
2013-07-05 09:38:09 -04:00
|
|
|
$offset = $matches[0][$last_match][1];
|
|
|
|
|
$match_length = strlen($matches[0][$last_match][0]);
|
|
|
|
|
} else {
|
|
|
|
|
$counter = 2;
|
2015-04-27 08:45:05 -04:00
|
|
|
$match_length = 0;
|
2013-07-05 09:38:09 -04:00
|
|
|
$offset = false;
|
|
|
|
|
}
|
|
|
|
|
do {
|
2013-08-07 10:38:57 -04:00
|
|
|
if ($offset) {
|
2013-09-05 05:58:57 -04:00
|
|
|
//Replace the last "(number)" with "(number+1)"
|
2013-08-07 10:38:57 -04:00
|
|
|
$newname = substr_replace($name, '(' . $counter . ')', $offset, $match_length);
|
2013-07-05 09:38:09 -04:00
|
|
|
} else {
|
|
|
|
|
$newname = $name . ' (' . $counter . ')';
|
|
|
|
|
}
|
|
|
|
|
$newpath = $path . '/' . $newname . $ext;
|
|
|
|
|
$counter++;
|
|
|
|
|
} while ($view->file_exists($newpath));
|
2012-06-14 06:57:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $newpath;
|
|
|
|
|
}
|
2012-07-02 14:24:26 -04:00
|
|
|
|
2013-01-13 08:54:18 -05:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* Checks if $sub is a subdirectory of $parent
|
2012-07-02 14:24:26 -04:00
|
|
|
*
|
2012-09-22 20:39:11 -04:00
|
|
|
* @param string $sub
|
|
|
|
|
* @param string $parent
|
2012-04-18 02:20:51 -04:00
|
|
|
* @return bool
|
|
|
|
|
*/
|
2014-05-11 09:50:59 -04:00
|
|
|
public static function isSubDirectory($sub, $parent) {
|
2014-05-11 09:49:19 -04:00
|
|
|
$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) {
|
2013-01-13 08:33:19 -05:00
|
|
|
return true;
|
2012-04-26 11:55:00 -04:00
|
|
|
}
|
2014-05-11 09:49:19 -04:00
|
|
|
|
2012-04-26 11:55:00 -04:00
|
|
|
return false;
|
2012-04-18 02:20:51 -04:00
|
|
|
}
|
2012-07-02 14:24:26 -04:00
|
|
|
|
|
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is.
|
2013-08-07 10:38:57 -04:00
|
|
|
*
|
|
|
|
|
* @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
|
|
|
|
|
*
|
|
|
|
|
*/
|
2012-09-07 09:22:01 -04:00
|
|
|
public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8') {
|
2012-07-02 14:24:26 -04:00
|
|
|
$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;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-24 04:54:56 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* performs a search in a nested array
|
2013-08-07 10:38:57 -04:00
|
|
|
* @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
|
|
|
|
|
*/
|
2012-07-24 04:54:56 -04:00
|
|
|
public static function recursiveArraySearch($haystack, $needle, $index = null) {
|
|
|
|
|
$aIt = new RecursiveArrayIterator($haystack);
|
|
|
|
|
$it = new RecursiveIteratorIterator($aIt);
|
|
|
|
|
|
2013-08-07 10:38:57 -04:00
|
|
|
while ($it->valid()) {
|
2012-07-24 04:54:56 -04:00
|
|
|
if (((isset($index) AND ($it->key() == $index)) OR (!isset($index))) AND ($it->current() == $needle)) {
|
|
|
|
|
return $aIt->key();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$it->next();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2012-11-12 07:56:29 -05:00
|
|
|
|
2012-11-12 08:04:23 -05:00
|
|
|
/**
|
|
|
|
|
* 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'
|
2013-08-07 10:38:57 -04:00
|
|
|
*
|
2012-11-12 08:04:23 -05:00
|
|
|
* @param string $str the string
|
|
|
|
|
* @param string $maxlen the maximum length of the result
|
|
|
|
|
* @return string with at most maxlen characters
|
|
|
|
|
*/
|
2012-11-12 07:56:29 -05:00
|
|
|
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;
|
|
|
|
|
}
|
2013-01-04 17:00:51 -05:00
|
|
|
|
2013-01-18 14:09:03 -05:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* calculates the maximum upload size respecting system settings, free space and user quota
|
2013-01-18 14:09:03 -05:00
|
|
|
*
|
2014-01-27 09:56:57 -05:00
|
|
|
* @param string $dir the current folder where the user currently operates
|
2014-02-05 07:36:55 -05:00
|
|
|
* @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
|
2013-01-18 14:09:03 -05:00
|
|
|
*/
|
2014-01-27 09:56:57 -05:00
|
|
|
public static function maxUploadFilesize($dir, $freeSpace = null) {
|
2014-03-06 07:50:53 -05:00
|
|
|
if (is_null($freeSpace) || $freeSpace < 0){
|
2014-02-05 07:36:55 -05:00
|
|
|
$freeSpace = self::freeSpace($dir);
|
2013-03-15 11:31:35 -04:00
|
|
|
}
|
2014-02-05 07:36:55 -05:00
|
|
|
return min($freeSpace, self::uploadLimit());
|
2013-12-08 09:59:46 -05:00
|
|
|
}
|
2012-12-20 11:16:01 -05:00
|
|
|
|
2013-12-08 09:59:46 -05:00
|
|
|
/**
|
|
|
|
|
* Calculate free space left within user quota
|
2014-05-19 11:50:53 -04:00
|
|
|
*
|
2014-02-05 07:36:55 -05:00
|
|
|
* @param string $dir the current folder where the user currently operates
|
|
|
|
|
* @return int number of bytes representing
|
2013-12-08 09:59:46 -05:00
|
|
|
*/
|
|
|
|
|
public static function freeSpace($dir) {
|
|
|
|
|
$freeSpace = \OC\Files\Filesystem::free_space($dir);
|
2014-08-19 08:05:08 -04:00
|
|
|
if ($freeSpace !== \OCP\Files\FileInfo::SPACE_UNKNOWN) {
|
2013-02-15 21:27:50 -05:00
|
|
|
$freeSpace = max($freeSpace, 0);
|
2013-12-08 09:59:46 -05:00
|
|
|
return $freeSpace;
|
|
|
|
|
} else {
|
2015-10-02 08:16:13 -04:00
|
|
|
return (INF > 0)? INF: PHP_INT_MAX; // work around https://bugs.php.net/bug.php?id=69188
|
2013-12-08 09:59:46 -05:00
|
|
|
}
|
|
|
|
|
}
|
2012-12-20 11:16:01 -05:00
|
|
|
|
2013-12-08 09:59:46 -05:00
|
|
|
/**
|
|
|
|
|
* Calculate PHP upload limit
|
|
|
|
|
*
|
2015-04-27 08:45:05 -04:00
|
|
|
* @return int PHP upload file size limit
|
2013-12-08 09:59:46 -05:00
|
|
|
*/
|
|
|
|
|
public static function uploadLimit() {
|
2015-10-29 04:52:13 -04:00
|
|
|
$ini = \OC::$server->getIniWrapper();
|
|
|
|
|
$upload_max_filesize = OCP\Util::computerFileSize($ini->get('upload_max_filesize'));
|
|
|
|
|
$post_max_size = OCP\Util::computerFileSize($ini->get('post_max_size'));
|
2013-12-08 09:59:46 -05:00
|
|
|
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
|
2013-02-15 21:27:50 -05:00
|
|
|
} else {
|
2013-12-08 09:59:46 -05:00
|
|
|
return min($upload_max_filesize, $post_max_size);
|
2013-02-15 21:27:50 -05:00
|
|
|
}
|
2013-01-18 14:09:03 -05:00
|
|
|
}
|
2013-01-06 16:40:35 -05:00
|
|
|
|
2013-01-04 17:00:51 -05:00
|
|
|
/**
|
|
|
|
|
* Checks if a function is available
|
2013-08-07 10:38:57 -04:00
|
|
|
*
|
2013-01-04 17:00:51 -05:00
|
|
|
* @param string $function_name
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public static function is_function_enabled($function_name) {
|
|
|
|
|
if (!function_exists($function_name)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-10-29 04:52:13 -04:00
|
|
|
$ini = \OC::$server->getIniWrapper();
|
|
|
|
|
$disabled = explode(',', $ini->get('disable_functions'));
|
2014-01-07 13:47:01 -05:00
|
|
|
$disabled = array_map('trim', $disabled);
|
2013-01-04 17:00:51 -05:00
|
|
|
if (in_array($function_name, $disabled)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-10-29 04:52:13 -04:00
|
|
|
$disabled = explode(',', $ini->get('suhosin.executor.func.blacklist'));
|
2014-01-07 13:47:01 -05:00
|
|
|
$disabled = array_map('trim', $disabled);
|
2013-01-04 17:00:51 -05:00
|
|
|
if (in_array($function_name, $disabled)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-01-06 06:18:21 -05:00
|
|
|
|
2014-11-20 06:37:59 -05:00
|
|
|
/**
|
|
|
|
|
* Try to find a program
|
|
|
|
|
* Note: currently windows is not supported
|
|
|
|
|
*
|
|
|
|
|
* @param string $program
|
|
|
|
|
* @return null|string
|
|
|
|
|
*/
|
|
|
|
|
public static function findBinaryPath($program) {
|
2015-01-09 08:13:02 -05:00
|
|
|
$memcache = \OC::$server->getMemCacheFactory()->create('findBinaryPath');
|
|
|
|
|
if ($memcache->hasKey($program)) {
|
|
|
|
|
return $memcache->get($program);
|
|
|
|
|
}
|
|
|
|
|
$result = null;
|
2014-11-20 06:37:59 -05:00
|
|
|
if (!\OC_Util::runningOnWindows() && self::is_function_enabled('exec')) {
|
2015-01-26 06:32:17 -05:00
|
|
|
$exeSniffer = new ExecutableFinder();
|
|
|
|
|
// Returns null if nothing is found
|
|
|
|
|
$result = $exeSniffer->find($program);
|
|
|
|
|
if (empty($result)) {
|
2015-04-14 08:06:58 -04:00
|
|
|
$paths = getenv('PATH');
|
|
|
|
|
if (empty($paths)) {
|
|
|
|
|
$paths = '/usr/local/bin /usr/bin /opt/bin /bin';
|
|
|
|
|
} else {
|
|
|
|
|
$paths = str_replace(':',' ',getenv('PATH'));
|
|
|
|
|
}
|
2015-03-02 16:15:07 -05:00
|
|
|
$command = 'find ' . $paths . ' -name ' . escapeshellarg($program) . ' 2> /dev/null';
|
|
|
|
|
exec($command, $output, $returnCode);
|
|
|
|
|
if (count($output) > 0) {
|
2015-01-26 06:32:17 -05:00
|
|
|
$result = escapeshellcmd($output[0]);
|
|
|
|
|
}
|
2014-11-20 06:37:59 -05:00
|
|
|
}
|
|
|
|
|
}
|
2015-01-09 08:13:02 -05:00
|
|
|
$memcache->set($program, $result, 3600);
|
|
|
|
|
return $result;
|
2014-11-20 06:37:59 -05:00
|
|
|
}
|
|
|
|
|
|
2013-01-02 08:35:45 -05:00
|
|
|
/**
|
2013-08-26 18:59:58 -04:00
|
|
|
* Calculate the disc space for the given path
|
|
|
|
|
*
|
|
|
|
|
* @param string $path
|
2014-04-02 11:10:57 -04:00
|
|
|
* @param \OCP\Files\FileInfo $rootInfo (optional)
|
2013-08-26 18:59:58 -04:00
|
|
|
* @return array
|
2015-04-27 08:45:05 -04:00
|
|
|
* @throws \OCP\Files\NotFoundException
|
2013-01-02 08:35:45 -05:00
|
|
|
*/
|
2014-04-02 11:10:57 -04:00
|
|
|
public static function getStorageInfo($path, $rootInfo = null) {
|
2013-11-18 11:29:30 -05:00
|
|
|
// return storage info without adding mount points
|
2015-12-18 05:42:09 -05:00
|
|
|
$includeExtStorage = \OC::$server->getSystemConfig()->getValue('quota_include_external_storage', false);
|
2014-03-25 11:37:46 -04:00
|
|
|
|
2014-04-29 09:14:48 -04:00
|
|
|
if (!$rootInfo) {
|
2014-04-02 11:10:57 -04:00
|
|
|
$rootInfo = \OC\Files\Filesystem::getFileInfo($path, false);
|
|
|
|
|
}
|
2015-01-06 09:56:06 -05:00
|
|
|
if (!$rootInfo instanceof \OCP\Files\FileInfo) {
|
|
|
|
|
throw new \OCP\Files\NotFoundException();
|
|
|
|
|
}
|
2014-04-02 11:10:57 -04:00
|
|
|
$used = $rootInfo->getSize();
|
2013-01-02 08:35:45 -05:00
|
|
|
if ($used < 0) {
|
|
|
|
|
$used = 0;
|
|
|
|
|
}
|
2014-03-10 10:19:18 -04:00
|
|
|
$quota = 0;
|
|
|
|
|
$storage = $rootInfo->getStorage();
|
2014-03-25 11:37:46 -04:00
|
|
|
if ($includeExtStorage && $storage->instanceOfStorage('\OC\Files\Storage\Shared')) {
|
|
|
|
|
$includeExtStorage = false;
|
|
|
|
|
}
|
|
|
|
|
if ($includeExtStorage) {
|
|
|
|
|
$quota = OC_Util::getUserQuota(\OCP\User::getUser());
|
2014-08-19 08:05:08 -04:00
|
|
|
if ($quota !== \OCP\Files\FileInfo::SPACE_UNLIMITED) {
|
2014-03-25 11:37:46 -04:00
|
|
|
// always get free space / total space from root + mount points
|
|
|
|
|
return self::getGlobalStorageInfo();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: need a better way to get total space from storage
|
2014-06-02 15:52:31 -04:00
|
|
|
if ($storage->instanceOfStorage('\OC\Files\Storage\Wrapper\Quota')) {
|
2015-04-27 08:45:05 -04:00
|
|
|
/** @var \OC\Files\Storage\Wrapper\Quota $storage */
|
2014-03-10 10:19:18 -04:00
|
|
|
$quota = $storage->getQuota();
|
|
|
|
|
}
|
|
|
|
|
$free = $storage->free_space('');
|
2013-08-07 10:38:57 -04:00
|
|
|
if ($free >= 0) {
|
2013-03-15 11:46:20 -04:00
|
|
|
$total = $free + $used;
|
|
|
|
|
} else {
|
|
|
|
|
$total = $free; //either unknown or unlimited
|
|
|
|
|
}
|
2013-08-27 04:58:17 -04:00
|
|
|
if ($total > 0) {
|
2014-03-10 10:19:18 -04:00
|
|
|
if ($quota > 0 && $total > $quota) {
|
|
|
|
|
$total = $quota;
|
|
|
|
|
}
|
2013-08-27 04:58:17 -04:00
|
|
|
// prevent division by zero or error codes (negative values)
|
2013-03-15 11:46:20 -04:00
|
|
|
$relative = round(($used / $total) * 10000) / 100;
|
|
|
|
|
} else {
|
|
|
|
|
$relative = 0;
|
|
|
|
|
}
|
2013-01-02 08:35:45 -05:00
|
|
|
|
2015-06-05 12:21:41 -04:00
|
|
|
$ownerId = $storage->getOwner($path);
|
|
|
|
|
$ownerDisplayName = '';
|
|
|
|
|
$owner = \OC::$server->getUserManager()->get($ownerId);
|
|
|
|
|
if($owner) {
|
|
|
|
|
$ownerDisplayName = $owner->getDisplayName();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'free' => $free,
|
|
|
|
|
'used' => $used,
|
|
|
|
|
'total' => $total,
|
|
|
|
|
'relative' => $relative,
|
|
|
|
|
'owner' => $ownerId,
|
|
|
|
|
'ownerDisplayName' => $ownerDisplayName,
|
|
|
|
|
];
|
2013-01-02 08:35:45 -05:00
|
|
|
}
|
2014-03-25 11:37:46 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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);
|
|
|
|
|
|
|
|
|
|
}
|
2014-11-25 10:12:12 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns whether the config file is set manually to read-only
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public static function isReadOnlyConfigEnabled() {
|
|
|
|
|
return \OC::$server->getConfig()->getSystemValue('config_is_read_only', false);
|
|
|
|
|
}
|
2011-03-02 16:18:22 -05:00
|
|
|
}
|