circlesManager !== null; } public function getProviders(): array { if (!$this->hasTeamSupport()) { return []; } if ($this->providers !== null) { return $this->providers; } $this->providers = []; foreach ($this->bootContext->getRegistrationContext()->getTeamResourceProviders() as $providerRegistration) { try { /** @var ITeamResourceProvider $provider */ $provider = Server::get($providerRegistration->getService()); $this->providers[$provider->getId()] = $provider; } catch (NotFoundExceptionInterface|ContainerExceptionInterface $e) { } } return $this->providers; } public function getProvider(string $providerId): ITeamResourceProvider { $providers = $this->getProviders(); if (isset($providers[$providerId])) { return $providers[$providerId]; } throw new \RuntimeException('No provider found for id ' . $providerId); } public function getSharedWith(string $teamId, string $userId): array { if (!$this->hasTeamSupport()) { return []; } if ($this->getTeam($teamId, $userId) === null) { return []; } $resources = []; foreach ($this->getProviders() as $provider) { array_push($resources, ...$provider->getSharedWith($teamId)); } return array_values($resources); } public function getSharedWithList(array $teams, string $userId): array { if (!$this->hasTeamSupport()) { return []; } $resources = []; foreach ($this->getProviders() as $provider) { if (method_exists($provider, 'getSharedWithList')) { $resources[] = $provider->getSharedWithList($teams, $userId); } else { foreach ($teams as $team) { $resources[] = [$team->getId() => $provider->getSharedWith($team->getId())]; } } } return array_merge_recursive(...$resources); } public function getTeamsForResource(string $providerId, string $resourceId, string $userId): array { if (!$this->hasTeamSupport()) { return []; } $provider = $this->getProvider($providerId); return array_map(function (Circle $team) { return new Team( $team->getSingleId(), $team->getDisplayName(), $this->urlGenerator->linkToRouteAbsolute('contacts.contacts.directcircle', ['singleId' => $team->getSingleId()]), ); }, $this->getTeams($provider->getTeamsForResource($resourceId), $userId)); } private function getTeam(string $teamId, string $userId): ?Circle { if (!$this->hasTeamSupport()) { return null; } try { $federatedUser = $this->circlesManager->getFederatedUser($userId, Member::TYPE_USER); $this->circlesManager->startSession($federatedUser); return $this->circlesManager->getCircle($teamId); } catch (CircleNotFoundException) { return null; } } /** * @return Circle[] */ private function getTeams(array $teams, string $userId): array { if (!$this->hasTeamSupport()) { return []; } $federatedUser = $this->circlesManager->getFederatedUser($userId, Member::TYPE_USER); $this->circlesManager->startSession($federatedUser); return $this->circlesManager->getCirclesByIds($teams); } }