105 lines
2.5 KiB
PHP
105 lines
2.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2022 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
|
|
namespace OCA\RelatedResources\Db;
|
|
|
|
use OCA\RelatedResources\Exceptions\CalendarDataNotFoundException;
|
|
use OCA\RelatedResources\Model\Calendar;
|
|
use OCA\RelatedResources\Model\CalendarShare;
|
|
|
|
class CalendarShareRequest extends CalendarShareRequestBuilder {
|
|
/**
|
|
* @param string $principalUri
|
|
* @param string $uri
|
|
*
|
|
* @return Calendar
|
|
* @throws CalendarDataNotFoundException
|
|
*/
|
|
public function getCalendarByUri(string $principalUri, string $uri): Calendar {
|
|
$qb = $this->getCalendarSelectSql();
|
|
$qb->limit('principaluri', $principalUri);
|
|
$qb->limit('uri', $uri);
|
|
|
|
return $this->getCalendarFromRequest($qb);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param int $calendarId
|
|
*
|
|
* @return CalendarShare[]
|
|
*/
|
|
public function getSharesByCalendarId(int $calendarId): array {
|
|
$qb = $this->getCalendarShareSelectSql();
|
|
$qb->limit('type', 'calendar');
|
|
$qb->limitInt('resourceid', $calendarId);
|
|
|
|
return $this->getSharesFromRequest($qb);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param string $singleId
|
|
*
|
|
* @return Calendar[]
|
|
*/
|
|
public function getCalendarAvailableToCircle(string $singleId): array {
|
|
$qb = $this->getCalendarSelectSql();
|
|
$qb->innerJoin(
|
|
$qb->getDefaultSelectAlias(), self::TABLE_DAV_SHARE, 'ds',
|
|
$qb->expr()->eq($qb->getDefaultSelectAlias() . '.id', 'ds.resourceid')
|
|
);
|
|
|
|
$qb->limit('type', 'calendar', 'ds');
|
|
$qb->limit('principaluri', 'principals/circles/' . $singleId, 'ds');
|
|
|
|
return $this->getCalendarsFromRequest($qb);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param string $groupName
|
|
*
|
|
* @return Calendar[]
|
|
*/
|
|
public function getCalendarAvailableToGroup(string $groupName): array {
|
|
$qb = $this->getCalendarSelectSql();
|
|
$qb->innerJoin(
|
|
$qb->getDefaultSelectAlias(), self::TABLE_DAV_SHARE, 'ds',
|
|
$qb->expr()->eq($qb->getDefaultSelectAlias() . '.id', 'ds.resourceid')
|
|
);
|
|
|
|
$qb->limit('type', 'calendar', 'ds');
|
|
$qb->limit('principaluri', 'principals/groups/' . $groupName, 'ds');
|
|
|
|
return $this->getCalendarsFromRequest($qb);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param string $userName
|
|
*
|
|
* @return Calendar[]
|
|
*/
|
|
public function getCalendarAvailableToUser(string $userName): array {
|
|
$qb = $this->getCalendarSelectSql();
|
|
$qb->innerJoin(
|
|
$qb->getDefaultSelectAlias(), self::TABLE_DAV_SHARE, 'ds',
|
|
$qb->expr()->eq($qb->getDefaultSelectAlias() . '.id', 'ds.resourceid')
|
|
);
|
|
|
|
$qb->limit('type', 'calendar', 'ds');
|
|
$qb->limit('principaluri', 'principals/users/' . $userName, 'ds');
|
|
|
|
return $this->getCalendarsFromRequest($qb);
|
|
}
|
|
}
|