aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-10-07 11:58:34 +0200
committerGitHub <noreply@github.com>2024-10-07 11:58:34 +0200
commit02f3c88d73758068c9ad995b59404951df1abd92 (patch)
tree5a073cc79ceebb5864cac82393869df9853aaedc /lib
parent3095a92551e42c9436a0bfd17d51bb6d38024604 (diff)
parente0c00af3bf63b41d4c47a8d0ae8ae137b05d5fd9 (diff)
downloadnextcloud-server-02f3c88d73758068c9ad995b59404951df1abd92.tar.gz
nextcloud-server-02f3c88d73758068c9ad995b59404951df1abd92.zip
Merge pull request #48438 from nextcloud/fix/bring-back-zip-event
fix(dav): Emit `BeforeZipCreatedEvent` when creating folder zip archive
Diffstat (limited to 'lib')
-rw-r--r--lib/public/Files/Events/BeforeZipCreatedEvent.php30
1 files changed, 26 insertions, 4 deletions
diff --git a/lib/public/Files/Events/BeforeZipCreatedEvent.php b/lib/public/Files/Events/BeforeZipCreatedEvent.php
index b55b36d3968..0363d385d36 100644
--- a/lib/public/Files/Events/BeforeZipCreatedEvent.php
+++ b/lib/public/Files/Events/BeforeZipCreatedEvent.php
@@ -10,23 +10,45 @@ declare(strict_types=1);
namespace OCP\Files\Events;
use OCP\EventDispatcher\Event;
+use OCP\Files\Folder;
/**
+ * This event is triggered before a archive is created when a user requested
+ * downloading a folder or multiple files.
+ *
+ * By setting `successful` to false the tar creation can be aborted and the download denied.
+ *
* @since 25.0.0
*/
class BeforeZipCreatedEvent extends Event {
private string $directory;
- private array $files;
private bool $successful = true;
private ?string $errorMessage = null;
+ private ?Folder $folder = null;
/**
+ * @param list<string> $files
* @since 25.0.0
+ * @since 31.0.0 support `OCP\Files\Folder` as `$directory` parameter - passing a string is deprecated now
*/
- public function __construct(string $directory, array $files) {
+ public function __construct(
+ string|Folder $directory,
+ private array $files,
+ ) {
parent::__construct();
- $this->directory = $directory;
- $this->files = $files;
+ if ($directory instanceof Folder) {
+ $this->directory = $directory->getPath();
+ $this->folder = $directory;
+ } else {
+ $this->directory = $directory;
+ }
+ }
+
+ /**
+ * @since 31.0.0
+ */
+ public function getFolder(): ?Folder {
+ return $this->folder;
}
/**