2021-03-09 15:22:59 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2021-06-04 15:52:51 -04:00
|
|
|
|
2021-03-09 15:22:59 -05:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2021-03-09 15:22:59 -05:00
|
|
|
*/
|
|
|
|
|
namespace OC\KnownUser;
|
|
|
|
|
|
|
|
|
|
class KnownUserService {
|
|
|
|
|
/** @var KnownUserMapper */
|
|
|
|
|
protected $mapper;
|
|
|
|
|
/** @var array */
|
|
|
|
|
protected $knownUsers = [];
|
|
|
|
|
|
|
|
|
|
public function __construct(KnownUserMapper $mapper) {
|
|
|
|
|
$this->mapper = $mapper;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-10 14:30:29 -05:00
|
|
|
/**
|
|
|
|
|
* Delete all matches where the given user is the owner of the phonebook
|
|
|
|
|
*
|
|
|
|
|
* @param string $knownTo
|
|
|
|
|
* @return int Number of deleted matches
|
|
|
|
|
*/
|
2021-03-09 15:22:59 -05:00
|
|
|
public function deleteKnownTo(string $knownTo): int {
|
|
|
|
|
return $this->mapper->deleteKnownTo($knownTo);
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-10 14:30:29 -05:00
|
|
|
/**
|
|
|
|
|
* Delete all matches where the given user is the one in the phonebook
|
|
|
|
|
*
|
|
|
|
|
* @param string $contactUserId
|
|
|
|
|
* @return int Number of deleted matches
|
|
|
|
|
*/
|
|
|
|
|
public function deleteByContactUserId(string $contactUserId): int {
|
|
|
|
|
return $this->mapper->deleteKnownUser($contactUserId);
|
2021-03-09 15:22:59 -05:00
|
|
|
}
|
|
|
|
|
|
2021-03-10 14:30:29 -05:00
|
|
|
/**
|
2024-10-14 06:09:35 -04:00
|
|
|
* Store a match because $knownTo has $contactUserId in their phonebook
|
2021-03-10 14:30:29 -05:00
|
|
|
*
|
|
|
|
|
* @param string $knownTo User id of the owner of the phonebook
|
|
|
|
|
* @param string $contactUserId User id of the contact in the phonebook
|
|
|
|
|
*/
|
|
|
|
|
public function storeIsKnownToUser(string $knownTo, string $contactUserId): void {
|
2021-03-09 15:22:59 -05:00
|
|
|
$entity = new KnownUser();
|
|
|
|
|
$entity->setKnownTo($knownTo);
|
2021-03-10 14:30:29 -05:00
|
|
|
$entity->setKnownUser($contactUserId);
|
2021-03-09 15:22:59 -05:00
|
|
|
$this->mapper->insert($entity);
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-10 14:30:29 -05:00
|
|
|
/**
|
|
|
|
|
* Check if $contactUserId is in the phonebook of $knownTo
|
|
|
|
|
*
|
|
|
|
|
* @param string $knownTo User id of the owner of the phonebook
|
|
|
|
|
* @param string $contactUserId User id of the contact in the phonebook
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function isKnownToUser(string $knownTo, string $contactUserId): bool {
|
2021-03-25 09:14:14 -04:00
|
|
|
if ($knownTo === $contactUserId) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-09 15:22:59 -05:00
|
|
|
if (!isset($this->knownUsers[$knownTo])) {
|
2021-03-10 14:30:29 -05:00
|
|
|
$entities = $this->mapper->getKnownUsers($knownTo);
|
2021-03-09 15:22:59 -05:00
|
|
|
$this->knownUsers[$knownTo] = [];
|
|
|
|
|
foreach ($entities as $entity) {
|
|
|
|
|
$this->knownUsers[$knownTo][$entity->getKnownUser()] = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-10 14:30:29 -05:00
|
|
|
return isset($this->knownUsers[$knownTo][$contactUserId]);
|
2021-03-09 15:22:59 -05:00
|
|
|
}
|
|
|
|
|
}
|