Skip to content

Commit

Permalink
fix: Avoid throwing errors for teams are unavailable
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <jus@bitgrid.net>
  • Loading branch information
juliusknorr committed Jun 14, 2024
1 parent 7a97e22 commit 214fa5f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions lib/private/Teams/TeamManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ public function hasTeamSupport(): bool {
}

public function getProviders(): array {
if (!$this->hasTeamSupport()) {
return [];
}

if ($this->providers !== null) {
return $this->providers;
}
Expand All @@ -62,6 +66,10 @@ public function getProvider(string $providerId): ITeamResourceProvider {
}

public function getSharedWith(string $teamId, string $userId): array {
if (!$this->hasTeamSupport()) {
return [];
}

if ($this->getTeam($teamId, $userId) === null) {
return [];
}
Expand All @@ -76,6 +84,10 @@ public function getSharedWith(string $teamId, string $userId): array {
}

public function getTeamsForResource(string $providerId, string $resourceId, string $userId): array {
if (!$this->hasTeamSupport()) {
return [];
}

$provider = $this->getProvider($providerId);
return array_values(array_filter(array_map(function ($teamId) use ($userId) {
$team = $this->getTeam($teamId, $userId);
Expand All @@ -92,6 +104,10 @@ public function getTeamsForResource(string $providerId, string $resourceId, stri
}

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);
Expand Down

0 comments on commit 214fa5f

Please sign in to comment.