diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-02-25 20:53:59 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-02-25 20:53:59 +0100 |
commit | 64c333c44bfb74daf4d3bf29ef4a373e4fe52ad6 (patch) | |
tree | 1ca870b194c183c8a54b8935b7b45aa041653d83 | |
parent | e8c3e3315415699386273ce6ecf1d3137f94c0b9 (diff) | |
parent | 9ee37169a6615e06c397e3b623ca55805aebcea3 (diff) | |
download | nextcloud-server-64c333c44bfb74daf4d3bf29ef4a373e4fe52ad6.tar.gz nextcloud-server-64c333c44bfb74daf4d3bf29ef4a373e4fe52ad6.zip |
Merge pull request #14508 from owncloud/tagmanager-nouser
Return null when requesting tags for null user
-rw-r--r-- | lib/private/tagmanager.php | 5 | ||||
-rw-r--r-- | tests/lib/tags.php | 10 |
2 files changed, 15 insertions, 0 deletions
diff --git a/lib/private/tagmanager.php b/lib/private/tagmanager.php index 9bc461f25eb..1c7ace11469 100644 --- a/lib/private/tagmanager.php +++ b/lib/private/tagmanager.php @@ -65,6 +65,11 @@ class TagManager implements \OCP\ITagManager { */ public function load($type, $defaultTags = array(), $includeShared = false, $userId = null) { if (is_null($userId)) { + $user = $this->userSession->getUser(); + if ($user === null) { + // nothing we can do without a user + return null; + } $userId = $this->userSession->getUser()->getUId(); } return new Tags($this->mapper, $userId, $type, $defaultTags, $includeShared); diff --git a/tests/lib/tags.php b/tests/lib/tags.php index 547cd302d5d..a50855c88f3 100644 --- a/tests/lib/tags.php +++ b/tests/lib/tags.php @@ -62,6 +62,16 @@ class Test_Tags extends \Test\TestCase { parent::tearDown(); } + public function testTagManagerWithoutUserReturnsNull() { + $this->userSession = $this->getMock('\OCP\IUserSession'); + $this->userSession + ->expects($this->any()) + ->method('getUser') + ->will($this->returnValue(null)); + $this->tagMgr = new OC\TagManager($this->tagMapper, $this->userSession); + $this->assertNull($this->tagMgr->load($this->objectType)); + } + public function testInstantiateWithDefaults() { $defaultTags = array('Friends', 'Family', 'Work', 'Other'); |