mirror of
https://github.com/nextcloud/server.git
synced 2025-02-06 01:20:16 +00:00
65 lines
1.6 KiB
PHP
65 lines
1.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
namespace OCA\DAV\CardDAV;
|
|
|
|
use OCP\Contacts\IManager;
|
|
use OCP\IL10N;
|
|
use OCP\IURLGenerator;
|
|
|
|
class ContactsManager {
|
|
/**
|
|
* ContactsManager constructor.
|
|
*
|
|
* @param CardDavBackend $backend
|
|
* @param IL10N $l10n
|
|
*/
|
|
public function __construct(
|
|
private CardDavBackend $backend,
|
|
private IL10N $l10n,
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* @param IManager $cm
|
|
* @param string $userId
|
|
* @param IURLGenerator $urlGenerator
|
|
*/
|
|
public function setupContactsProvider(IManager $cm, $userId, IURLGenerator $urlGenerator) {
|
|
$addressBooks = $this->backend->getAddressBooksForUser("principals/users/$userId");
|
|
$this->register($cm, $addressBooks, $urlGenerator);
|
|
$this->setupSystemContactsProvider($cm, $urlGenerator);
|
|
}
|
|
|
|
/**
|
|
* @param IManager $cm
|
|
* @param IURLGenerator $urlGenerator
|
|
*/
|
|
public function setupSystemContactsProvider(IManager $cm, IURLGenerator $urlGenerator) {
|
|
$addressBooks = $this->backend->getAddressBooksForUser('principals/system/system');
|
|
$this->register($cm, $addressBooks, $urlGenerator);
|
|
}
|
|
|
|
/**
|
|
* @param IManager $cm
|
|
* @param $addressBooks
|
|
* @param IURLGenerator $urlGenerator
|
|
*/
|
|
private function register(IManager $cm, $addressBooks, $urlGenerator) {
|
|
foreach ($addressBooks as $addressBookInfo) {
|
|
$addressBook = new AddressBook($this->backend, $addressBookInfo, $this->l10n);
|
|
$cm->registerAddressBook(
|
|
new AddressBookImpl(
|
|
$addressBook,
|
|
$addressBookInfo,
|
|
$this->backend,
|
|
$urlGenerator
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|