From f1469e34aa8f29a8dbec8e1ae9260fb09777f82f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Thu, 5 Jul 2018 18:08:56 +0200 Subject: [PATCH] Add fopen method to ISimpleFile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- lib/private/Files/SimpleFS/SimpleFile.php | 11 +++++++++++ lib/public/Files/SimpleFS/ISimpleFile.php | 9 +++++++++ tests/lib/Files/SimpleFS/SimpleFileTest.php | 8 ++++++++ 3 files changed, 28 insertions(+) diff --git a/lib/private/Files/SimpleFS/SimpleFile.php b/lib/private/Files/SimpleFS/SimpleFile.php index e9bf0213d0..52b7819694 100644 --- a/lib/private/Files/SimpleFS/SimpleFile.php +++ b/lib/private/Files/SimpleFS/SimpleFile.php @@ -146,4 +146,15 @@ class SimpleFile implements ISimpleFile { public function getMimeType() { return $this->file->getMimeType(); } + + /** + * Open the file as stream, resulting resource can be operated as stream like the result from php's own fopen + * + * @return resource + * @throws \OCP\Files\NotPermittedException + * @since 14.0.0 + */ + public function fopen(string $mode) { + return $this->file->fopen($mode); + } } diff --git a/lib/public/Files/SimpleFS/ISimpleFile.php b/lib/public/Files/SimpleFS/ISimpleFile.php index cd092056cd..c417db6354 100644 --- a/lib/public/Files/SimpleFS/ISimpleFile.php +++ b/lib/public/Files/SimpleFS/ISimpleFile.php @@ -99,4 +99,13 @@ interface ISimpleFile { * @since 11.0.0 */ public function getMimeType(); + + /** + * Open the file as stream, resulting resource can be operated as stream like the result from php's own fopen + * + * @return resource + * @throws \OCP\Files\NotPermittedException + * @since 14.0.0 + */ + public function fopen(string $mode); } diff --git a/tests/lib/Files/SimpleFS/SimpleFileTest.php b/tests/lib/Files/SimpleFS/SimpleFileTest.php index ab4970804a..aec5052cb4 100644 --- a/tests/lib/Files/SimpleFS/SimpleFileTest.php +++ b/tests/lib/Files/SimpleFS/SimpleFileTest.php @@ -123,4 +123,12 @@ class SimpleFileTest extends \Test\TestCase { $this->simpleFile->getContent(); } + + public function testFopen() { + $this->file->expects($this->once()) + ->method('fopen') + ->with('r+'); + + $this->simpleFile->fopen('r+'); + } }