diff options
author | Michael Weimann <mail@michael-weimann.eu> | 2019-01-20 11:13:41 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2019-02-07 14:23:16 +0100 |
commit | bf1253cb49a4931244a6bbde4dfa44bf084f4377 (patch) | |
tree | 6faacd5110c029778ed56554e27a5d73c4e888db /lib/public/Files/SimpleFS | |
parent | b69b17f29fd518495a6495e0f90f60c70ef0fc73 (diff) | |
download | nextcloud-server-bf1253cb49a4931244a6bbde4dfa44bf084f4377.tar.gz nextcloud-server-bf1253cb49a4931244a6bbde4dfa44bf084f4377.zip |
Implement guest avatar endpoint
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
Diffstat (limited to 'lib/public/Files/SimpleFS')
-rw-r--r-- | lib/public/Files/SimpleFS/InMemoryFile.php | 137 |
1 files changed, 137 insertions, 0 deletions
diff --git a/lib/public/Files/SimpleFS/InMemoryFile.php b/lib/public/Files/SimpleFS/InMemoryFile.php new file mode 100644 index 00000000000..378fece3e94 --- /dev/null +++ b/lib/public/Files/SimpleFS/InMemoryFile.php @@ -0,0 +1,137 @@ +<?php +declare(strict_types=1); + +/** + * @copyright Copyright (c) 2018, Michael Weimann <mail@michael-weimann.eu> + * + * @author Michael Weimann <mail@michael-weimann.eu> + * + * @license AGPL-3.0 + * + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * 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, version 3, + * along with this program. If not, see <http://www.gnu.org/licenses/> + */ + +namespace OCP\Files\SimpleFS; + +use OCP\Files\NotPermittedException; + +/** + * This class represents a file that is only hold in memory. + * + * @package OC\Files\SimpleFS + */ +class InMemoryFile implements ISimpleFile { + /** + * Holds the file name. + * + * @var string + */ + private $name; + + /** + * Holds the file contents. + * + * @var string + */ + private $contents; + + /** + * InMemoryFile constructor. + * + * @param string $name The file name + * @param string $contents The file contents + */ + public function __construct(string $name, string $contents) { + $this->name = $name; + $this->contents = $contents; + } + + /** + * @inheritdoc + */ + public function getName() { + return $this->name; + } + + /** + * @inheritdoc + */ + public function getSize() { + return strlen($this->contents); + } + + /** + * @inheritdoc + */ + public function getETag() { + return ''; + } + + /** + * @inheritdoc + */ + public function getMTime() { + return time(); + } + + /** + * @inheritdoc + */ + public function getContent() { + return $this->contents; + } + + /** + * @inheritdoc + */ + public function putContent($data) { + $this->contents = $data; + } + + /** + * In memory files can't be deleted. + */ + public function delete() { + // unimplemented for in memory files + } + + /** + * @inheritdoc + */ + public function getMimeType() { + $fileInfo = new \finfo(FILEINFO_MIME_TYPE); + return $fileInfo->buffer($this->contents); + } + + /** + * Stream reading is unsupported for in memory files. + * + * @throws NotPermittedException + */ + public function read() { + throw new NotPermittedException( + 'Stream reading is unsupported for in memory files' + ); + } + + /** + * Stream writing isn't available for in memory files. + * + * @throws NotPermittedException + */ + public function write() { + throw new NotPermittedException( + 'Stream writing is unsupported for in memory files' + ); + } +} |