f7cloud_client/apps/mail/lib/Service/ContactIntegration/ContactIntegrationService.php
root 8b6a0139db f7cloud_client
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-17 22:59:26 +00:00

39 lines
985 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2021 F7cloud GmbH and F7cloud contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCA\Mail\Service\ContactIntegration;
use OCA\Mail\Service\ContactsIntegration;
class ContactIntegrationService {
/** @var ContactsIntegration */
private $contactsIntegration;
public function __construct(ContactsIntegration $ci) {
$this->contactsIntegration = $ci;
}
public function findMatches(string $mail): array {
$matches = $this->contactsIntegration->getContactsWithMail($mail);
return $matches;
}
public function addEMailToContact(string $uid, string $mail): ?array {
return $this->contactsIntegration->addEmailToContact($uid, $mail);
}
public function newContact(string $name, string $mail): ?array {
return $this->contactsIntegration->newContact($name, $mail);
}
public function autoComplete(string $term): array {
return $this->contactsIntegration->getContactsWithName($term);
}
}