-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(UserMountCache): Emit events for added, removed and updated mounts
Signed-off-by: provokateurin <[email protected]>
- Loading branch information
1 parent
101c757
commit d8c889d
Showing
7 changed files
with
178 additions
and
23 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
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,27 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors | ||
* SPDX-License-Identifier: AGPL-3.0-or-later | ||
*/ | ||
|
||
namespace OCP\Files\Config\Event; | ||
|
||
use OCP\EventDispatcher\Event; | ||
use OCP\Files\Config\ICachedMountInfo; | ||
use OCP\Files\Mount\IMountPoint; | ||
|
||
/** | ||
* Event emitted when a user mount was added. | ||
* | ||
* @since 31.0.0 | ||
*/ | ||
class UserMountAddedEvent extends Event { | ||
public function __construct( | ||
public readonly IMountPoint|ICachedMountInfo $mountPoint, | ||
) { | ||
parent::__construct(); | ||
} | ||
} |
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,27 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors | ||
* SPDX-License-Identifier: AGPL-3.0-or-later | ||
*/ | ||
|
||
namespace OCP\Files\Config\Event; | ||
|
||
use OCP\EventDispatcher\Event; | ||
use OCP\Files\Config\ICachedMountInfo; | ||
use OCP\Files\Mount\IMountPoint; | ||
|
||
/** | ||
* Event emitted when a user mount was removed. | ||
* | ||
* @since 31.0.0 | ||
*/ | ||
class UserMountRemovedEvent extends Event { | ||
public function __construct( | ||
public readonly IMountPoint|ICachedMountInfo $mountPoint, | ||
) { | ||
parent::__construct(); | ||
} | ||
} |
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,28 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors | ||
* SPDX-License-Identifier: AGPL-3.0-or-later | ||
*/ | ||
|
||
namespace OCP\Files\Config\Event; | ||
|
||
use OCP\EventDispatcher\Event; | ||
use OCP\Files\Config\ICachedMountInfo; | ||
use OCP\Files\Mount\IMountPoint; | ||
|
||
/** | ||
* Event emitted when a user mount was moved. | ||
* | ||
* @since 31.0.0 | ||
*/ | ||
class UserMountUpdatedEvent extends Event { | ||
public function __construct( | ||
public readonly IMountPoint|ICachedMountInfo $oldMountPoint, | ||
public readonly IMountPoint|ICachedMountInfo $newMountPoint, | ||
) { | ||
parent::__construct(); | ||
} | ||
} |
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