2020-02-06 11:09:09 -05:00
|
|
|
<?php
|
2020-03-31 04:49:10 -04:00
|
|
|
|
2020-02-06 11:09:09 -05:00
|
|
|
declare(strict_types=1);
|
2020-03-31 04:49:10 -04:00
|
|
|
|
2020-02-06 11:09:09 -05:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2020-02-06 11:09:09 -05:00
|
|
|
*/
|
|
|
|
|
namespace OCP\Share\Events;
|
|
|
|
|
|
|
|
|
|
use OC\Files\View;
|
|
|
|
|
use OCP\EventDispatcher\Event;
|
2026-02-09 12:33:22 -05:00
|
|
|
use OCP\IUser;
|
2020-02-06 11:09:09 -05:00
|
|
|
use OCP\Share\IShare;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @since 19.0.0
|
|
|
|
|
*/
|
|
|
|
|
class VerifyMountPointEvent extends Event {
|
2026-02-09 12:33:22 -05:00
|
|
|
private bool $createParent = false;
|
2020-02-06 11:09:09 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @since 19.0.0
|
|
|
|
|
*/
|
2026-02-09 12:33:22 -05:00
|
|
|
public function __construct(
|
|
|
|
|
private readonly IShare $share,
|
|
|
|
|
private readonly View $view,
|
|
|
|
|
private string $parent,
|
|
|
|
|
private readonly IUser $user,
|
|
|
|
|
) {
|
2020-02-06 11:09:09 -05:00
|
|
|
parent::__construct();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @since 19.0.0
|
|
|
|
|
*/
|
|
|
|
|
public function getShare(): IShare {
|
|
|
|
|
return $this->share;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @since 19.0.0
|
2026-02-09 12:33:22 -05:00
|
|
|
* @depecated 34.0.0 Get the user folder for `$this->getUser()` instead
|
2020-02-06 11:09:09 -05:00
|
|
|
*/
|
|
|
|
|
public function getView(): View {
|
|
|
|
|
return $this->view;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2026-02-09 12:33:22 -05:00
|
|
|
* The parent folder where the share is placed, as relative path to the users home directory.
|
|
|
|
|
*
|
2020-02-06 11:09:09 -05:00
|
|
|
* @since 19.0.0
|
|
|
|
|
*/
|
|
|
|
|
public function getParent(): string {
|
|
|
|
|
return $this->parent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @since 19.0.0
|
|
|
|
|
*/
|
|
|
|
|
public function setParent(string $parent): void {
|
|
|
|
|
$this->parent = $parent;
|
|
|
|
|
}
|
2026-02-09 12:33:22 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @since 34.0.0
|
|
|
|
|
*/
|
|
|
|
|
public function setCreateParent(bool $create): void {
|
|
|
|
|
$this->createParent = $create;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Whether the parent folder should be created if missing.
|
|
|
|
|
*
|
|
|
|
|
* If set for `false` (the default), and the parent folder doesn't exist already,
|
|
|
|
|
* the share will be moved to the default share folder instead.
|
|
|
|
|
*
|
|
|
|
|
* @since 34.0.0
|
|
|
|
|
*/
|
|
|
|
|
public function createParent(): bool {
|
|
|
|
|
return $this->createParent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @since 34.0.0
|
|
|
|
|
*/
|
|
|
|
|
public function getUser(): IUser {
|
|
|
|
|
return $this->user;
|
|
|
|
|
}
|
2020-02-06 11:09:09 -05:00
|
|
|
}
|