2014-01-13 17:28:49 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2014-01-13 18:13:45 +04:00
|
|
|
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
|
2014-01-13 17:28:49 +04:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Files;
|
|
|
|
|
2014-02-14 22:24:12 +04:00
|
|
|
class FileInfo implements \OCP\Files\FileInfo, \ArrayAccess {
|
2014-01-13 17:28:49 +04:00
|
|
|
/**
|
|
|
|
* @var array $data
|
|
|
|
*/
|
|
|
|
private $data;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string $path
|
|
|
|
*/
|
|
|
|
private $path;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OC\Files\Storage\Storage $storage
|
|
|
|
*/
|
|
|
|
private $storage;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string $internalPath
|
|
|
|
*/
|
|
|
|
private $internalPath;
|
|
|
|
|
2014-02-19 12:31:54 +04:00
|
|
|
/**
|
|
|
|
* @param string|boolean $path
|
|
|
|
* @param Storage\Storage $storage
|
|
|
|
*/
|
2014-01-13 17:28:49 +04:00
|
|
|
public function __construct($path, $storage, $internalPath, $data) {
|
|
|
|
$this->path = $path;
|
|
|
|
$this->storage = $storage;
|
|
|
|
$this->internalPath = $internalPath;
|
|
|
|
$this->data = $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function offsetSet($offset, $value) {
|
|
|
|
$this->data[$offset] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function offsetExists($offset) {
|
|
|
|
return isset($this->data[$offset]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function offsetUnset($offset) {
|
|
|
|
unset($this->data[$offset]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function offsetGet($offset) {
|
2014-03-07 17:52:44 +04:00
|
|
|
if ($offset === 'type') {
|
|
|
|
return $this->getType();
|
2014-03-07 18:16:35 +04:00
|
|
|
} elseif (isset($this->data[$offset])) {
|
|
|
|
return $this->data[$offset];
|
|
|
|
} else {
|
|
|
|
return null;
|
2014-03-07 17:52:44 +04:00
|
|
|
}
|
2014-01-13 17:28:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getPath() {
|
|
|
|
return $this->path;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \OCP\Files\Storage
|
|
|
|
*/
|
|
|
|
public function getStorage() {
|
|
|
|
return $this->storage;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getInternalPath() {
|
|
|
|
return $this->internalPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getId() {
|
|
|
|
return $this->data['fileid'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getMimetype() {
|
|
|
|
return $this->data['mimetype'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getMimePart() {
|
|
|
|
return $this->data['mimepart'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getName() {
|
|
|
|
return $this->data['name'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getEtag() {
|
|
|
|
return $this->data['etag'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getSize() {
|
|
|
|
return $this->data['size'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
2014-01-24 18:54:40 +04:00
|
|
|
public function getMTime() {
|
2014-01-13 17:28:49 +04:00
|
|
|
return $this->data['mtime'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isEncrypted() {
|
|
|
|
return $this->data['encrypted'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getPermissions() {
|
|
|
|
return $this->data['permissions'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-11 21:28:45 +04:00
|
|
|
* @return \OCP\Files\FileInfo::TYPE_FILE|\OCP\Files\FileInfo::TYPE_FOLDER
|
2014-01-13 17:28:49 +04:00
|
|
|
*/
|
|
|
|
public function getType() {
|
2014-03-07 17:52:44 +04:00
|
|
|
if (isset($this->data['type'])) {
|
|
|
|
return $this->data['type'];
|
|
|
|
} else {
|
|
|
|
return $this->getMimetype() === 'httpd/unix-directory' ? self::TYPE_FOLDER : self::TYPE_FILE;
|
|
|
|
}
|
2014-01-13 17:28:49 +04:00
|
|
|
}
|
2014-01-13 18:57:49 +04:00
|
|
|
|
2014-03-07 18:16:35 +04:00
|
|
|
public function getData() {
|
2014-01-13 18:57:49 +04:00
|
|
|
return $this->data;
|
|
|
|
}
|
2014-01-24 18:54:40 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $permissions
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
protected function checkPermissions($permissions) {
|
|
|
|
return ($this->getPermissions() & $permissions) === $permissions;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isReadable() {
|
|
|
|
return $this->checkPermissions(\OCP\PERMISSION_READ);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isUpdateable() {
|
|
|
|
return $this->checkPermissions(\OCP\PERMISSION_UPDATE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isDeletable() {
|
|
|
|
return $this->checkPermissions(\OCP\PERMISSION_DELETE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isShareable() {
|
|
|
|
return $this->checkPermissions(\OCP\PERMISSION_SHARE);
|
|
|
|
}
|
2014-05-02 19:37:16 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if a file or folder is shared
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isShared() {
|
|
|
|
$sid = $this->getStorage()->getId();
|
|
|
|
if (!is_null($sid)) {
|
|
|
|
$sid = explode(':', $sid);
|
|
|
|
return ($sid[0] === 'shared');
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isMounted() {
|
|
|
|
$sid = $this->getStorage()->getId();
|
|
|
|
if (!is_null($sid)) {
|
|
|
|
$sid = explode(':', $sid);
|
|
|
|
return ($sid[0] !== 'local' and $sid[0] !== 'home');
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2014-01-13 17:28:49 +04:00
|
|
|
}
|