2014-01-13 17:28:49 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Created by PhpStorm.
|
|
|
|
* User: robin
|
|
|
|
* Date: 1/13/14
|
|
|
|
* Time: 1:45 PM
|
|
|
|
*/
|
|
|
|
namespace OCP\Files;
|
|
|
|
|
|
|
|
interface FileInfo extends \ArrayAccess, \JsonSerializable {
|
|
|
|
const TYPE_FILE = 'file';
|
|
|
|
const TYPE_FOLDER = 'folder';
|
|
|
|
|
|
|
|
public function offsetSet($offset, $value);
|
|
|
|
|
|
|
|
public function offsetGet($offset);
|
|
|
|
|
|
|
|
public function offsetUnset($offset);
|
|
|
|
|
|
|
|
public function offsetExists($offset);
|
|
|
|
|
|
|
|
public function jsonSerialize();
|
|
|
|
|
|
|
|
/**
|
2014-01-13 17:42:14 +04:00
|
|
|
* Get the Etag of the file or folder
|
|
|
|
*
|
2014-01-13 17:28:49 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getEtag();
|
|
|
|
|
|
|
|
/**
|
2014-01-13 17:42:14 +04:00
|
|
|
* Get the size in bytes for the file or folder
|
|
|
|
*
|
2014-01-13 17:28:49 +04:00
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getSize();
|
|
|
|
|
|
|
|
/**
|
2014-01-13 17:42:14 +04:00
|
|
|
* Get the last modified date as timestamp for the file or folder
|
|
|
|
*
|
2014-01-13 17:28:49 +04:00
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getMtime();
|
|
|
|
|
|
|
|
/**
|
2014-01-13 17:42:14 +04:00
|
|
|
* Get the name of the file or folder
|
|
|
|
*
|
2014-01-13 17:28:49 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getName();
|
|
|
|
|
|
|
|
/**
|
2014-01-13 17:42:14 +04:00
|
|
|
* Get the path relative to the storage
|
|
|
|
*
|
2014-01-13 17:28:49 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getInternalPath();
|
|
|
|
|
|
|
|
/**
|
2014-01-13 17:42:14 +04:00
|
|
|
* Get the absolute path
|
|
|
|
*
|
2014-01-13 17:28:49 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getPath();
|
|
|
|
|
|
|
|
/**
|
2014-01-13 17:42:14 +04:00
|
|
|
* Get the full mimetype of the file or folder i.e. 'image/png'
|
|
|
|
*
|
2014-01-13 17:28:49 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getMimetype();
|
|
|
|
|
|
|
|
/**
|
2014-01-13 17:42:14 +04:00
|
|
|
* Get the first part of the mimetype of the file or folder i.e. 'image'
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getMimePart();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the storage the file or folder is storage on
|
|
|
|
*
|
2014-01-13 17:28:49 +04:00
|
|
|
* @return \OCP\Files\Storage
|
|
|
|
*/
|
|
|
|
public function getStorage();
|
|
|
|
|
|
|
|
/**
|
2014-01-13 17:42:14 +04:00
|
|
|
* Get the file id of the file or folder
|
|
|
|
*
|
2014-01-13 17:28:49 +04:00
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getId();
|
|
|
|
|
|
|
|
/**
|
2014-01-13 17:42:14 +04:00
|
|
|
* Check whether the file is encrypted
|
|
|
|
*
|
2014-01-13 17:28:49 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isEncrypted();
|
|
|
|
|
|
|
|
/**
|
2014-01-13 17:42:14 +04:00
|
|
|
* Get the permissions of the file or folder as bitmasked combination of the following constants
|
|
|
|
* \OCP\PERMISSION_CREATE
|
|
|
|
* \OCP\PERMISSION_READ
|
|
|
|
* \OCP\PERMISSION_UPDATE
|
|
|
|
* \OCP\PERMISSION_DELETE
|
|
|
|
* \OCP\PERMISSION_SHARE
|
|
|
|
* \OCP\PERMISSION_ALL
|
|
|
|
*
|
2014-01-13 17:28:49 +04:00
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getPermissions();
|
|
|
|
|
|
|
|
/**
|
2014-01-13 17:42:14 +04:00
|
|
|
* Check whether this is a file or a folder
|
|
|
|
*
|
2014-01-13 17:28:49 +04:00
|
|
|
* @return \OCP\Files\FileInfo::TYPE_FILE | \OCP\Files\FileInfo::TYPE_FOLDER
|
|
|
|
*/
|
|
|
|
public function getType();
|
|
|
|
}
|