Files
deck/lib/Teams/DeckTeamResourceProvider.php
Andy Scherzinger be11113d32 chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-07 15:51:49 +02:00

65 lines
1.8 KiB
PHP

<?php
declare(strict_types=1);
namespace OCA\Deck\Teams;
use OCA\Deck\AppInfo\Application;
use OCA\Deck\Db\Board;
use OCA\Deck\Db\BoardMapper;
use OCP\IURLGenerator;
use OCP\Teams\TeamResource;
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
class DeckTeamResourceProvider implements \OCP\Teams\ITeamResourceProvider {
public function __construct(
private BoardMapper $boardMapper,
private IURLGenerator $urlGenerator,
) {
}
public function getId(): string {
return Application::APP_ID;
}
public function getName(): string {
return 'Deck';
}
public function getIconSvg(): string {
return file_get_contents(__DIR__ . '/../../img/deck-current.svg');
}
public function getSharedWith($teamId): array {
$boards = $this->boardMapper->findAllByTeam($teamId);
return array_map(function (Board $board) {
return new TeamResource(
$this,
(string)$board->getId(),
$board->getTitle(),
$this->urlGenerator->linkToRouteAbsolute('deck.page.index') . '#/board/' . $board->getId(),
$this->getBoardBulletIcon($board),
$this->urlGenerator->getAbsoluteURL($this->urlGenerator->imagePath('deck', 'deck-current.svg')),
);
}, $boards);
}
public function isSharedWithTeam(string $teamId, string $resourceId): bool {
return $this->boardMapper->isSharedWithTeam((int)$resourceId, $teamId);
}
public function getTeamsForResource(string $resourceId): array {
return $this->boardMapper->findTeamsForBoard((int)$resourceId);
}
public function getBoardBulletIcon(Board $board): string {
return '<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16"><g fill="#' . $board->getColor(). '"><rect ry="15" height="14" width="14" y="1" x="1"/></g></svg>';
}
}