From 5f69c256e30bdebf40264166e6dd29f12904e14e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien?= Date: Thu, 28 Jan 2021 13:54:08 +0100 Subject: Add function for avoid duplicate item (share) Signed-off-by: Marco Nassabain --- lib/Service/ItemService.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'lib/Service') diff --git a/lib/Service/ItemService.php b/lib/Service/ItemService.php index 6bb09e64c..7e0743324 100644 --- a/lib/Service/ItemService.php +++ b/lib/Service/ItemService.php @@ -372,4 +372,17 @@ class ItemService extends Service { return $this->itemMapper->sharedCount($userId); } + + /** + * Check if the article is already shared between the users + * + * @param string $itemId the id article + * @param string $userId the name of the user + * @param string $shareWithId the name of the second user + * @return int 0 if not exists or > 0 + */ + public function checkSharing($itemId, $shareWithId, $userId) + { + return $this->itemMapper->checkSharing($itemId, $shareWithId, $userId); + } } -- cgit v1.2.3