nextcloud/lib/connector/sabre/file.php

104 lines
2.1 KiB
PHP
Raw Normal View History

2011-07-20 17:53:34 +04:00
<?php
2012-05-05 20:13:40 +04:00
2011-07-20 17:53:34 +04:00
/**
2012-05-05 20:13:40 +04:00
* ownCloud
*
* @author Jakob Sack
* @copyright 2011 Jakob Sack kde@jakobsack.de
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library 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 library. If not, see <http://www.gnu.org/licenses/>.
*
2011-07-20 17:53:34 +04:00
*/
2012-05-05 20:13:40 +04:00
2011-07-22 16:38:42 +04:00
class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_DAV_IFile {
2011-07-20 17:53:34 +04:00
/**
* Updates the data
*
* @param resource $data
* @return void
*/
public function put($data) {
2011-07-29 23:36:03 +04:00
OC_Filesystem::file_put_contents($this->path,$data);
2011-07-20 17:53:34 +04:00
}
/**
* Returns the data
*
* @return string
*/
public function get() {
return OC_Filesystem::fopen($this->path,'rb');
2011-07-20 17:53:34 +04:00
}
/**
* Delete the current file
*
* @return void
*/
public function delete() {
2011-07-29 23:36:03 +04:00
OC_Filesystem::unlink($this->path);
2011-07-20 17:53:34 +04:00
}
/**
* Returns the size of the node, in bytes
*
* @return int
*/
public function getSize() {
$this->getFileinfoCache();
return $this->fileinfo_cache['size'];
2011-07-20 17:53:34 +04:00
}
/**
* 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 arbritrary 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() {
if (isset($this->fileinfo_cache['mimetype'])) {
return $this->fileinfo_cache['mimetype'];
}
2011-07-20 17:53:34 +04:00
2011-07-29 23:36:03 +04:00
return OC_Filesystem::getMimeType($this->path);
2011-07-20 17:53:34 +04:00
}
}