aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/lib/Sabre/DAV/FS
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/sabre/dav/lib/Sabre/DAV/FS')
-rw-r--r--vendor/sabre/dav/lib/Sabre/DAV/FS/Directory.php140
-rw-r--r--vendor/sabre/dav/lib/Sabre/DAV/FS/File.php91
-rw-r--r--vendor/sabre/dav/lib/Sabre/DAV/FS/Node.php82
3 files changed, 0 insertions, 313 deletions
diff --git a/vendor/sabre/dav/lib/Sabre/DAV/FS/Directory.php b/vendor/sabre/dav/lib/Sabre/DAV/FS/Directory.php
deleted file mode 100644
index 6fdd2aecf..000000000
--- a/vendor/sabre/dav/lib/Sabre/DAV/FS/Directory.php
+++ /dev/null
@@ -1,140 +0,0 @@
-<?php
-
-namespace Sabre\DAV\FS;
-use Sabre\DAV;
-
-/**
- * Directory class
- *
- * @copyright Copyright (C) 2007-2014 fruux GmbH (https://fruux.com/).
- * @author Evert Pot (http://evertpot.com/)
- * @license http://sabre.io/license/ Modified BSD License
- */
-class Directory extends Node implements DAV\ICollection, DAV\IQuota {
-
- /**
- * Creates a new file in the directory
- *
- * Data will either be supplied as a stream resource, or in certain cases
- * as a string. Keep in mind that you may have to support either.
- *
- * After successful creation of the file, you may choose to return the ETag
- * of the new file here.
- *
- * The returned ETag must be surrounded by double-quotes (The quotes should
- * be part of the actual string).
- *
- * If you cannot accurately determine the ETag, you should not return it.
- * If you don't store the file exactly as-is (you're transforming it
- * somehow) you should also not return an ETag.
- *
- * This means that if a subsequent GET to this new file does not exactly
- * return the same contents of what was submitted here, you are strongly
- * recommended to omit the ETag.
- *
- * @param string $name Name of the file
- * @param resource|string $data Initial payload
- * @return null|string
- */
- public function createFile($name, $data = null) {
-
- $newPath = $this->path . '/' . $name;
- file_put_contents($newPath,$data);
-
- }
-
- /**
- * Creates a new subdirectory
- *
- * @param string $name
- * @return void
- */
- public function createDirectory($name) {
-
- $newPath = $this->path . '/' . $name;
- mkdir($newPath);
-
- }
-
- /**
- * Returns a specific child node, referenced by its name
- *
- * This method must throw DAV\Exception\NotFound if the node does not
- * exist.
- *
- * @param string $name
- * @throws DAV\Exception\NotFound
- * @return DAV\INode
- */
- public function getChild($name) {
-
- $path = $this->path . '/' . $name;
-
- if (!file_exists($path)) throw new DAV\Exception\NotFound('File with name ' . $path . ' could not be located');
-
- if (is_dir($path)) {
-
- return new Directory($path);
-
- } else {
-
- return new File($path);
-
- }
-
- }
-
- /**
- * Returns an array with all the child nodes
- *
- * @return DAV\INode[]
- */
- public function getChildren() {
-
- $nodes = array();
- foreach(scandir($this->path) as $node) if($node!='.' && $node!='..') $nodes[] = $this->getChild($node);
- return $nodes;
-
- }
-
- /**
- * Checks if a child exists.
- *
- * @param string $name
- * @return bool
- */
- public function childExists($name) {
-
- $path = $this->path . '/' . $name;
- return file_exists($path);
-
- }
-
- /**
- * Deletes all files in this directory, and then itself
- *
- * @return void
- */
- public function delete() {
-
- foreach($this->getChildren() as $child) $child->delete();
- rmdir($this->path);
-
- }
-
- /**
- * Returns available diskspace information
- *
- * @return array
- */
- public function getQuotaInfo() {
-
- return array(
- disk_total_space($this->path)-disk_free_space($this->path),
- disk_free_space($this->path)
- );
-
- }
-
-}
-
diff --git a/vendor/sabre/dav/lib/Sabre/DAV/FS/File.php b/vendor/sabre/dav/lib/Sabre/DAV/FS/File.php
deleted file mode 100644
index d10370fae..000000000
--- a/vendor/sabre/dav/lib/Sabre/DAV/FS/File.php
+++ /dev/null
@@ -1,91 +0,0 @@
-<?php
-
-namespace Sabre\DAV\FS;
-
-use Sabre\DAV;
-
-/**
- * File class
- *
- * @copyright Copyright (C) 2007-2014 fruux GmbH (https://fruux.com/).
- * @author Evert Pot (http://evertpot.com/)
- * @license http://sabre.io/license/ Modified BSD License
- */
-class File extends Node implements DAV\IFile {
-
- /**
- * Updates the data
- *
- * @param resource $data
- * @return void
- */
- public function put($data) {
-
- file_put_contents($this->path,$data);
-
- }
-
- /**
- * Returns the data
- *
- * @return string
- */
- public function get() {
-
- return fopen($this->path,'r');
-
- }
-
- /**
- * Delete the current file
- *
- * @return void
- */
- public function delete() {
-
- unlink($this->path);
-
- }
-
- /**
- * Returns the size of the node, in bytes
- *
- * @return int
- */
- public function getSize() {
-
- return filesize($this->path);
-
- }
-
- /**
- * Returns the ETag for a file
- *
- * An ETag is a unique identifier representing the current version of the file. If the file changes, the ETag MUST change.
- * The ETag is an arbitrary string, but MUST be surrounded by double-quotes.
- *
- * Return null if the ETag can not effectively be determined
- *
- * @return mixed
- */
- public function getETag() {
-
- return null;
-
- }
-
- /**
- * Returns the mime-type for a file
- *
- * If null is returned, we'll assume application/octet-stream
- *
- * @return mixed
- */
- public function getContentType() {
-
- return null;
-
- }
-
-}
-
diff --git a/vendor/sabre/dav/lib/Sabre/DAV/FS/Node.php b/vendor/sabre/dav/lib/Sabre/DAV/FS/Node.php
deleted file mode 100644
index 605fa3c82..000000000
--- a/vendor/sabre/dav/lib/Sabre/DAV/FS/Node.php
+++ /dev/null
@@ -1,82 +0,0 @@
-<?php
-
-namespace Sabre\DAV\FS;
-
-use Sabre\DAV;
-
-/**
- * Base node-class
- *
- * The node class implements the method used by both the File and the Directory classes
- *
- * @copyright Copyright (C) 2007-2014 fruux GmbH (https://fruux.com/).
- * @author Evert Pot (http://evertpot.com/)
- * @license http://sabre.io/license/ Modified BSD License
- */
-abstract class Node implements DAV\INode {
-
- /**
- * The path to the current node
- *
- * @var string
- */
- protected $path;
-
- /**
- * Sets up the node, expects a full path name
- *
- * @param string $path
- */
- public function __construct($path) {
-
- $this->path = $path;
-
- }
-
-
-
- /**
- * Returns the name of the node
- *
- * @return string
- */
- public function getName() {
-
- list(, $name) = DAV\URLUtil::splitPath($this->path);
- return $name;
-
- }
-
- /**
- * Renames the node
- *
- * @param string $name The new name
- * @return void
- */
- public function setName($name) {
-
- list($parentPath, ) = DAV\URLUtil::splitPath($this->path);
- list(, $newName) = DAV\URLUtil::splitPath($name);
-
- $newPath = $parentPath . '/' . $newName;
- rename($this->path,$newPath);
-
- $this->path = $newPath;
-
- }
-
-
-
- /**
- * Returns the last modification time, as a unix timestamp
- *
- * @return int
- */
- public function getLastModified() {
-
- return filemtime($this->path);
-
- }
-
-}
-