2012-05-02 06:54:31 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2020-04-29 05:57:22 -04:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
2017-11-06 14:15:27 -05:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2016-07-21 11:07:57 -04:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 12:13:36 -04:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2017-11-06 09:56:42 -05:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Stefan Weil <sw@weilnetz.de>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2013-11-03 07:51:39 -05:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @license AGPL-3.0
|
2013-11-03 07:51:39 -05: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.
|
2013-11-03 07:51:39 -05:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-11-03 07:51:39 -05: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.
|
2013-11-03 07:51:39 -05:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-11-03 07:51:39 -05:00
|
|
|
*
|
|
|
|
|
*/
|
2015-02-26 05:37:37 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Public interface of ownCloud for apps to use.
|
|
|
|
|
* Files Class
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2012-08-29 02:38:33 -04:00
|
|
|
// use OCP namespace for all classes that are considered public.
|
2012-05-02 06:54:31 -04:00
|
|
|
// This means that they should be used by apps instead of the internal ownCloud classes
|
2019-11-22 14:52:10 -05:00
|
|
|
|
2012-05-02 06:54:31 -04:00
|
|
|
namespace OCP;
|
|
|
|
|
|
2012-05-19 04:36:57 -04:00
|
|
|
/**
|
2013-02-11 11:44:02 -05:00
|
|
|
* This class provides access to the internal filesystem abstraction layer. Use
|
|
|
|
|
* this class exlusively if you want to access files
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 5.0.0
|
2018-03-21 09:24:22 -04:00
|
|
|
* @deprecated 14.0.0
|
2012-05-19 04:36:57 -04:00
|
|
|
*/
|
2012-05-02 06:54:31 -04:00
|
|
|
class Files {
|
|
|
|
|
/**
|
2013-10-16 18:07:29 -04:00
|
|
|
* Recusive deletion of folders
|
2013-01-06 17:54:18 -05:00
|
|
|
* @return bool
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 5.0.0
|
2018-03-21 09:24:22 -04:00
|
|
|
* @deprecated 14.0.0
|
2012-05-02 06:54:31 -04:00
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
public static function rmdirr($dir) {
|
2020-04-09 10:07:47 -04:00
|
|
|
return \OC_Helper::rmdirr($dir);
|
2012-05-02 06:54:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2013-10-16 18:07:29 -04:00
|
|
|
* Get the mimetype form a local file
|
2014-02-08 05:47:55 -05:00
|
|
|
* @param string $path
|
2012-05-02 06:54:31 -04:00
|
|
|
* @return string
|
|
|
|
|
* does NOT work for ownClouds filesystem, use OC_FileSystem::getMimeType instead
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 5.0.0
|
2018-03-21 09:24:22 -04:00
|
|
|
* @deprecated 14.0.0
|
2012-05-02 06:54:31 -04:00
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
public static function getMimeType($path) {
|
2015-11-26 04:18:32 -05:00
|
|
|
return \OC::$server->getMimeTypeDetector()->detect($path);
|
2012-05-02 06:54:31 -04:00
|
|
|
}
|
|
|
|
|
|
2013-03-19 09:27:02 -04:00
|
|
|
/**
|
2013-10-16 18:07:29 -04:00
|
|
|
* Search for files by mimetype
|
2014-02-08 05:47:55 -05:00
|
|
|
* @param string $mimetype
|
2013-03-19 09:27:02 -04:00
|
|
|
* @return array
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2018-03-21 09:24:22 -04:00
|
|
|
* @deprecated 14.0.0
|
2013-03-19 09:27:02 -04:00
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
public static function searchByMime($mimetype) {
|
2017-07-22 15:10:16 -04:00
|
|
|
return \OC\Files\Filesystem::searchByMime($mimetype);
|
2013-03-19 09:27:02 -04:00
|
|
|
}
|
|
|
|
|
|
2012-05-02 06:54:31 -04:00
|
|
|
/**
|
2013-10-16 18:07:29 -04:00
|
|
|
* Copy the contents of one stream to another
|
2014-02-08 05:47:55 -05:00
|
|
|
* @param resource $source
|
|
|
|
|
* @param resource $target
|
2012-05-02 06:54:31 -04:00
|
|
|
* @return int the number of bytes copied
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 5.0.0
|
2018-03-21 09:24:22 -04:00
|
|
|
* @deprecated 14.0.0
|
2012-05-02 06:54:31 -04:00
|
|
|
*/
|
2020-04-09 07:53:40 -04:00
|
|
|
public static function streamCopy($source, $target) {
|
2020-04-09 10:07:47 -04:00
|
|
|
list($count, ) = \OC_Helper::streamCopy($source, $target);
|
2013-02-22 10:43:11 -05:00
|
|
|
return $count;
|
2012-05-02 06:54:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Adds a suffix to the name in case the file exists
|
2014-02-08 05:47:55 -05:00
|
|
|
* @param string $path
|
|
|
|
|
* @param string $filename
|
2012-05-02 06:54:31 -04:00
|
|
|
* @return string
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 5.0.0
|
2018-03-21 09:24:22 -04:00
|
|
|
* @deprecated 14.0.0 use getNonExistingName of the OCP\Files\Folder object
|
2012-05-02 06:54:31 -04:00
|
|
|
*/
|
2017-07-22 15:10:16 -04:00
|
|
|
public static function buildNotExistingFileName($path, $filename) {
|
|
|
|
|
return \OC_Helper::buildNotExistingFileName($path, $filename);
|
2012-05-02 06:54:31 -04:00
|
|
|
}
|
|
|
|
|
|
2012-09-08 10:02:11 -04:00
|
|
|
/**
|
2013-10-16 18:07:29 -04:00
|
|
|
* Gets the Storage for an app - creates the needed folder if they are not
|
2016-04-07 13:51:27 -04:00
|
|
|
* existent
|
2014-02-06 10:30:58 -05:00
|
|
|
* @param string $app
|
2012-10-10 07:18:36 -04:00
|
|
|
* @return \OC\Files\View
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 5.0.0
|
2018-03-21 09:24:22 -04:00
|
|
|
* @deprecated 14.0.0 use IAppData instead
|
2012-09-08 10:02:11 -04:00
|
|
|
*/
|
2017-07-22 15:10:16 -04:00
|
|
|
public static function getStorage($app) {
|
2020-04-09 10:07:47 -04:00
|
|
|
return \OC_App::getStorage($app);
|
2012-05-19 04:44:08 -04:00
|
|
|
}
|
2012-05-02 06:54:31 -04:00
|
|
|
}
|