-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add webhook compatible object creation event for calendar objects
Signed-off-by: Edward Ly <[email protected]>
- Loading branch information
Showing
5 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
lib/public/Calendar/Events/AbstractCalendarObjectEvent.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors | ||
* SPDX-License-Identifier: AGPL-3.0-or-later | ||
*/ | ||
namespace OCP\Calendar\Events; | ||
|
||
use OCP\EventDispatcher\Event; | ||
use OCP\EventDispatcher\IWebhookCompatibleEvent; | ||
|
||
/** | ||
* @since 32.0.0 | ||
*/ | ||
abstract class AbstractCalendarObjectEvent extends Event implements IWebhookCompatibleEvent { | ||
|
||
/** | ||
* @param int $calendarId | ||
* @param array $calendarData | ||
* @param array $shares | ||
* @param array $objectData | ||
* @since 32.0.0 | ||
*/ | ||
public function __construct( | ||
private int $calendarId, | ||
private array $calendarData, | ||
private array $shares, | ||
private array $objectData, | ||
) { | ||
parent::__construct(); | ||
} | ||
|
||
/** | ||
* @return int | ||
* @since 32.0.0 | ||
*/ | ||
public function getCalendarId(): int { | ||
return $this->calendarId; | ||
} | ||
|
||
/** | ||
* @return array | ||
* @since 32.0.0 | ||
*/ | ||
public function getCalendarData(): array { | ||
return $this->calendarData; | ||
} | ||
|
||
/** | ||
* @return array | ||
* @since 32.0.0 | ||
*/ | ||
public function getShares(): array { | ||
return $this->shares; | ||
} | ||
|
||
/** | ||
* @return array | ||
* @since 32.0.0 | ||
*/ | ||
public function getObjectData(): array { | ||
return $this->objectData; | ||
} | ||
|
||
/** | ||
* @return array | ||
* @since 32.0.0 | ||
*/ | ||
public function getWebhookSerializable(): array { | ||
return [ | ||
'calendarId' => $this->getCalendarId(), | ||
'calendarData' => $this->getCalendarData(), | ||
'shares' => $this->getShares(), | ||
'objectData' => $this->getObjectData(), | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors | ||
* SPDX-License-Identifier: AGPL-3.0-or-later | ||
*/ | ||
namespace OCP\Calendar\Events; | ||
|
||
/** | ||
* @since 32.0.0 | ||
*/ | ||
class CalendarObjectCreatedEvent extends AbstractCalendarObjectEvent { | ||
} |