2012-05-02 14:54:31 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
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>
|
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Georg Ehrke <georg@owncloud.com>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Stefan Weil <sw@weilnetz.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2013-11-03 16:51:39 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-11-03 16:51:39 +04: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.
|
2013-11-03 16:51:39 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-11-03 16:51:39 +04: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.
|
2013-11-03 16:51:39 +04: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/>
|
2013-11-03 16:51:39 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Public interface of ownCloud for apps to use.
|
|
|
|
* Files Class
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-08-29 10:38:33 +04:00
|
|
|
// use OCP namespace for all classes that are considered public.
|
2012-05-02 14:54:31 +04:00
|
|
|
// This means that they should be used by apps instead of the internal ownCloud classes
|
|
|
|
namespace OCP;
|
|
|
|
|
2012-05-19 12:36:57 +04:00
|
|
|
/**
|
2013-02-11 20:44:02 +04:00
|
|
|
* This class provides access to the internal filesystem abstraction layer. Use
|
|
|
|
* this class exlusively if you want to access files
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-05-19 12:36:57 +04:00
|
|
|
*/
|
2012-05-02 14:54:31 +04:00
|
|
|
class Files {
|
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Recusive deletion of folders
|
2013-01-07 02:54:18 +04:00
|
|
|
* @return bool
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-05-02 14:54:31 +04:00
|
|
|
*/
|
2012-05-07 00:02:16 +04:00
|
|
|
static function rmdirr( $dir ) {
|
2013-01-07 02:54:18 +04:00
|
|
|
return \OC_Helper::rmdirr( $dir );
|
2012-05-02 14:54:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Get the mimetype form a local file
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $path
|
2012-05-02 14:54:31 +04:00
|
|
|
* @return string
|
|
|
|
* does NOT work for ownClouds filesystem, use OC_FileSystem::getMimeType instead
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-05-02 14:54:31 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
static function getMimeType( $path ) {
|
2015-11-26 12:18:32 +03:00
|
|
|
return \OC::$server->getMimeTypeDetector()->detect($path);
|
2012-05-02 14:54:31 +04:00
|
|
|
}
|
|
|
|
|
2013-03-19 17:27:02 +04:00
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Search for files by mimetype
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $mimetype
|
2013-03-19 17:27:02 +04:00
|
|
|
* @return array
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-03-19 17:27:02 +04:00
|
|
|
*/
|
2013-10-17 02:07:29 +04:00
|
|
|
static public function searchByMime( $mimetype ) {
|
2013-03-19 17:27:02 +04:00
|
|
|
return(\OC\Files\Filesystem::searchByMime( $mimetype ));
|
|
|
|
}
|
|
|
|
|
2012-05-02 14:54:31 +04:00
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Copy the contents of one stream to another
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param resource $source
|
|
|
|
* @param resource $target
|
2012-05-02 14:54:31 +04:00
|
|
|
* @return int the number of bytes copied
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-05-02 14:54:31 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function streamCopy( $source, $target ) {
|
2015-04-18 17:17:15 +03:00
|
|
|
list($count, ) = \OC_Helper::streamCopy( $source, $target );
|
2013-02-22 19:43:11 +04:00
|
|
|
return $count;
|
2012-05-02 14:54:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Create a temporary file with an unique filename
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $postfix
|
2012-05-02 14:54:31 +04:00
|
|
|
* @return string
|
|
|
|
*
|
|
|
|
* temporary files are automatically cleaned up after the script is finished
|
2015-04-19 01:20:09 +03:00
|
|
|
* @deprecated 8.1.0 use getTemporaryFile() of \OCP\ITempManager - \OC::$server->getTempManager()
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-05-02 14:54:31 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function tmpFile( $postfix='' ) {
|
2015-04-19 01:29:09 +03:00
|
|
|
return \OC::$server->getTempManager()->getTemporaryFile($postfix);
|
2012-05-02 14:54:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Create a temporary folder with an unique filename
|
2012-05-02 14:54:31 +04:00
|
|
|
* @return string
|
|
|
|
*
|
|
|
|
* temporary files are automatically cleaned up after the script is finished
|
2015-04-19 01:20:09 +03:00
|
|
|
* @deprecated 8.1.0 use getTemporaryFolder() of \OCP\ITempManager - \OC::$server->getTempManager()
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-05-02 14:54:31 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function tmpFolder() {
|
2015-04-19 01:29:09 +03:00
|
|
|
return \OC::$server->getTempManager()->getTemporaryFolder();
|
2012-05-02 14:54:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a suffix to the name in case the file exists
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $path
|
|
|
|
* @param string $filename
|
2012-05-02 14:54:31 +04:00
|
|
|
* @return string
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-05-02 14:54:31 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function buildNotExistingFileName( $path, $filename ) {
|
2012-05-07 00:02:16 +04:00
|
|
|
return(\OC_Helper::buildNotExistingFileName( $path, $filename ));
|
2012-05-02 14:54:31 +04:00
|
|
|
}
|
|
|
|
|
2012-09-08 18:02:11 +04:00
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Gets the Storage for an app - creates the needed folder if they are not
|
2016-04-07 20:51:27 +03:00
|
|
|
* existent
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param string $app
|
2012-10-10 15:18:36 +04:00
|
|
|
* @return \OC\Files\View
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-09-08 18:02:11 +04:00
|
|
|
*/
|
|
|
|
public static function getStorage( $app ) {
|
2012-05-19 12:44:08 +04:00
|
|
|
return \OC_App::getStorage( $app );
|
|
|
|
}
|
2012-05-02 14:54:31 +04:00
|
|
|
}
|