2023-10-25 12:04:34 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2023-10-25 12:04:34 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace OC\Files\Mount;
|
|
|
|
|
|
|
|
|
|
use OCP\Files\Storage\IStorageFactory;
|
|
|
|
|
use OCP\IUser;
|
|
|
|
|
|
|
|
|
|
class HomeMountPoint extends MountPoint {
|
|
|
|
|
private IUser $user;
|
|
|
|
|
|
|
|
|
|
public function __construct(
|
|
|
|
|
IUser $user,
|
|
|
|
|
$storage,
|
|
|
|
|
string $mountpoint,
|
2024-03-28 11:13:19 -04:00
|
|
|
?array $arguments = null,
|
|
|
|
|
?IStorageFactory $loader = null,
|
|
|
|
|
?array $mountOptions = null,
|
|
|
|
|
?int $mountId = null,
|
|
|
|
|
?string $mountProvider = null,
|
2023-10-25 12:04:34 -04:00
|
|
|
) {
|
|
|
|
|
parent::__construct($storage, $mountpoint, $arguments, $loader, $mountOptions, $mountId, $mountProvider);
|
|
|
|
|
$this->user = $user;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getUser(): IUser {
|
|
|
|
|
return $this->user;
|
|
|
|
|
}
|
|
|
|
|
}
|