123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- <?php
- declare(strict_types=1);
- /**
- * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace OC\Mail\Provider;
- use OC\AppFramework\Bootstrap\Coordinator;
- use OCP\Mail\Provider\IManager;
- use OCP\Mail\Provider\IProvider;
- use OCP\Mail\Provider\IService;
- use Psr\Container\ContainerInterface;
- use Psr\Log\LoggerInterface;
- use Throwable;
- class Manager implements IManager {
-
- protected ?array $providersCollection = null;
- public function __construct(
- private Coordinator $coordinator,
- private ContainerInterface $container,
- private LoggerInterface $logger,
- ) {
- }
- /**
- * Determine if any mail providers are registered
- *
- * @since 30.0.0
- *
- * @return bool
- */
- public function has(): bool {
- // return true if collection has any providers
- return !empty($this->providers());
- }
- /**
- * Retrieve a count of how many mail providers are registered
- *
- * @since 30.0.0
- *
- * @return int
- */
- public function count(): int {
- // return count of providers in collection
- return count($this->providers());
- }
- /**
- * Retrieve which mail providers are registered
- *
- * @since 30.0.0
- *
- * @return array<string,string> collection of provider id and label ['jmap' => 'JMap Connector']
- */
- public function types(): array {
-
- // construct types collection
- $types = [];
- // extract id and name from providers collection
- foreach ($this->providers() as $entry) {
- $types[$entry->id()] = $entry->label();
- }
- // return types collection
- return $types;
-
- }
- /**
- * Retrieve all registered mail providers
- *
- * @since 30.0.0
- *
- * @return array<string,IProvider> collection of provider id and object ['jmap' => IProviderObject]
- */
- public function providers(): array {
- // evaluate if we already have a cached collection of providers and return the collection if we do
- if (is_array($this->providersCollection)) {
- return $this->providersCollection;
- }
- // retrieve server registration context
- $context = $this->coordinator->getRegistrationContext();
- // evaluate if registration context was returned
- if ($context === null) {
- return [];
- }
- // initilize cached collection
- $this->providersCollection = [];
- // iterate through all registered mail providers
- foreach ($context->getMailProviders() as $entry) {
- try {
- /** @var IProvider $provider */
- // object provider
- $provider = $this->container->get($entry->getService());
- // add provider to cache collection
- $this->providersCollection[$provider->id()] = $provider;
- } catch (Throwable $e) {
- $this->logger->error(
- 'Could not load mail provider ' . $entry->getService() . ': ' . $e->getMessage(),
- ['exception' => $e]
- );
- }
- }
- // return mail provider collection
- return $this->providersCollection;
- }
- /**
- * Retrieve a provider with a specific id
- *
- * @since 30.0.0
- *
- * @param string $providerId provider id
- *
- * @return IProvider|null
- */
- public function findProviderById(string $providerId): ?IProvider {
- // evaluate if we already have a cached collection of providers
- if (!is_array($this->providersCollection)) {
- $this->providers();
- }
-
- if (isset($this->providersCollection[$providerId])) {
- return $this->providersCollection[$providerId];
- }
- // return null if provider was not found
- return null;
- }
- /**
- * Retrieve all services for all registered mail providers
- *
- * @since 30.0.0
- *
- * @param string $userId user id
- *
- * @return array<string,array<string,IService>> collection of provider id, service id and object ['jmap' => ['Service1' => IServiceObject]]
- */
- public function services(string $userId): array {
-
- // initilize collection
- $services = [];
- // retrieve and iterate through mail providers
- foreach ($this->providers() as $entry) {
- // retrieve collection of services
- $mailServices = $entry->listServices($userId);
- // evaluate if mail services collection is not empty and add results to services collection
- if (!empty($mailServices)) {
- $services[$entry->id()] = $mailServices;
- }
- }
- // return collection
- return $services;
-
- }
- /**
- * Retrieve a service with a specific id
- *
- * @since 30.0.0
- *
- * @param string $userId user id
- * @param string $serviceId service id
- * @param string $providerId provider id
- *
- * @return IService|null returns service object or null if none found
- */
- public function findServiceById(string $userId, string $serviceId, ?string $providerId = null): ?IService {
-
- // evaluate if provider id was specified
- if ($providerId !== null) {
- // find provider
- $provider = $this->findProviderById($providerId);
- // evaluate if provider was found
- if ($provider instanceof IProvider) {
- // find service with specific id
- $service = $provider->findServiceById($userId, $serviceId);
- // evaluate if mail service was found
- if ($service instanceof IService) {
- return $service;
- }
- }
- } else {
- // retrieve and iterate through mail providers
- foreach ($this->providers() as $provider) {
- // find service with specific id
- $service = $provider->findServiceById($userId, $serviceId);
- // evaluate if mail service was found
- if ($service instanceof IService) {
- return $service;
- }
- }
- }
-
- // return null if no match was found
- return null;
- }
- /**
- * Retrieve a service for a specific mail address
- * returns first service with specific primary address
- *
- * @since 30.0.0
- *
- * @param string $userId user id
- * @param string $address mail address (e.g. test@example.com)
- * @param string $providerId provider id
- *
- * @return IService|null returns service object or null if none found
- */
- public function findServiceByAddress(string $userId, string $address, ?string $providerId = null): ?IService {
-
- // evaluate if provider id was specified
- if ($providerId !== null) {
- // find provider
- $provider = $this->findProviderById($providerId);
- // evaluate if provider was found
- if ($provider instanceof IProvider) {
- // find service with specific mail address
- $service = $provider->findServiceByAddress($userId, $address);
- // evaluate if mail service was found
- if ($service instanceof IService) {
- return $service;
- }
- }
- } else {
- // retrieve and iterate through mail providers
- foreach ($this->providers() as $provider) {
- // find service with specific mail address
- $service = $provider->findServiceByAddress($userId, $address);
- // evaluate if mail service was found
- if ($service instanceof IService) {
- return $service;
- }
- }
- }
- // return null if no match was found
- return null;
- }
- }
|