2016-08-24 13:03:22 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2016 Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
*
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
namespace OCP\Files\SimpleFS;
|
|
|
|
|
2018-02-09 22:15:29 +03:00
|
|
|
use OCP\Files\NotFoundException;
|
2016-08-24 13:03:22 +03:00
|
|
|
use OCP\Files\NotPermittedException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface ISimpleFile
|
|
|
|
*
|
|
|
|
* @package OCP\Files\SimpleFS
|
2016-11-15 20:51:52 +03:00
|
|
|
* @since 11.0.0
|
2016-08-24 13:03:22 +03:00
|
|
|
*/
|
|
|
|
interface ISimpleFile {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the name
|
|
|
|
*
|
|
|
|
* @return string
|
2016-11-15 20:51:52 +03:00
|
|
|
* @since 11.0.0
|
2016-08-24 13:03:22 +03:00
|
|
|
*/
|
|
|
|
public function getName();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the size in bytes
|
|
|
|
*
|
|
|
|
* @return int
|
2016-11-15 20:51:52 +03:00
|
|
|
* @since 11.0.0
|
2016-08-24 13:03:22 +03:00
|
|
|
*/
|
|
|
|
public function getSize();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the ETag
|
|
|
|
*
|
|
|
|
* @return string
|
2016-11-15 20:51:52 +03:00
|
|
|
* @since 11.0.0
|
2016-08-24 13:03:22 +03:00
|
|
|
*/
|
|
|
|
public function getETag();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the last modification time
|
|
|
|
*
|
|
|
|
* @return int
|
2016-11-15 20:51:52 +03:00
|
|
|
* @since 11.0.0
|
2016-08-24 13:03:22 +03:00
|
|
|
*/
|
|
|
|
public function getMTime();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the content
|
|
|
|
*
|
2018-02-09 22:15:29 +03:00
|
|
|
* @throws NotPermittedException
|
|
|
|
* @throws NotFoundException
|
2016-08-24 13:03:22 +03:00
|
|
|
* @return string
|
2016-11-15 20:51:52 +03:00
|
|
|
* @since 11.0.0
|
2016-08-24 13:03:22 +03:00
|
|
|
*/
|
|
|
|
public function getContent();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Overwrite the file
|
|
|
|
*
|
2018-06-26 12:07:41 +03:00
|
|
|
* @param string|resource $data
|
2016-08-24 13:03:22 +03:00
|
|
|
* @throws NotPermittedException
|
2019-04-08 14:21:46 +03:00
|
|
|
* @throws NotFoundException
|
2016-11-15 20:51:52 +03:00
|
|
|
* @since 11.0.0
|
2016-08-24 13:03:22 +03:00
|
|
|
*/
|
|
|
|
public function putContent($data);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete the file
|
|
|
|
*
|
|
|
|
* @throws NotPermittedException
|
2016-11-15 20:51:52 +03:00
|
|
|
* @since 11.0.0
|
2016-08-24 13:03:22 +03:00
|
|
|
*/
|
|
|
|
public function delete();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the MimeType
|
|
|
|
*
|
|
|
|
* @return string
|
2016-11-15 20:51:52 +03:00
|
|
|
* @since 11.0.0
|
2016-08-24 13:03:22 +03:00
|
|
|
*/
|
|
|
|
public function getMimeType();
|
2018-07-05 19:08:56 +03:00
|
|
|
|
|
|
|
/**
|
2018-07-10 15:27:47 +03:00
|
|
|
* Open the file as stream for reading, resulting resource can be operated as stream like the result from php's own fopen
|
2018-07-05 19:08:56 +03:00
|
|
|
*
|
|
|
|
* @return resource
|
|
|
|
* @throws \OCP\Files\NotPermittedException
|
|
|
|
* @since 14.0.0
|
|
|
|
*/
|
2018-07-10 15:27:47 +03:00
|
|
|
public function read();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open the file as stream for writing, resulting resource can be operated as stream like the result from php's own fopen
|
|
|
|
*
|
|
|
|
* @return resource
|
|
|
|
* @throws \OCP\Files\NotPermittedException
|
|
|
|
* @since 14.0.0
|
|
|
|
*/
|
|
|
|
public function write();
|
2016-08-24 13:03:22 +03:00
|
|
|
}
|