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