19 declare(strict_types=1);
23 use Sabre\DAV\Auth\Plugin as AuthPlugin;
24 use Sabre\DAV\Locks\Plugin as LocksPlugin;
44 $DIC->repositoryTree(),
46 $c[
'locks.repository'],
51 $c[
'repository.helper']
55 $c[
'repository.helper'],
57 $DIC->resourceStorage(),
58 $DIC->http()->request(),
60 $DIC[
'ilias']->getClientId(),
61 (bool)
$c[
'dav_settings']->
get(
'webdav_versioning_enabled',
'true')
65 $c[
'locks.repository'],
66 $c[
'repository.helper'],
72 $this[
'mountinstructions.repository'] = fn(
76 $this[
'mountinstructions.facory'] = fn(
79 $c[
'mountinstructions.repository'],
80 $DIC->http()->request(),
85 $c[
'mountinstructions.facory']->getMountInstructionsObject(),
91 $this[
'mountinstructions.uploadgui'] = fn(
94 $DIC->ui()->mainTemplate(),
98 $DIC->rbac()->system(),
107 $c[
'mountinstructions.repository']
110 $this[
'sabre.authplugin'] =
function (
$c) use ($DIC): AuthPlugin {
113 $DIC[
'ilAuthSession'],
116 $auth_callback_class =
new BasicCallBack(
117 fn($username, $password):
bool => $webdav_auth->authenticate($username, $password)
120 return new AuthPlugin($auth_callback_class);
123 $this[
'sabre.locksplugin'] = fn(
$c): LocksPlugin =>
new LocksPlugin(
$c[
'locks.backend']);
127 $DIC->http()->request()->getUri()
133 return $this[
'dav_settings'];
138 return $this[
'davobj.factory'];
143 return $this[
'mountinstructions.gui'];
148 return $this[
'mountinstructions.uploadgui'];
153 return $this[
'sabre.authplugin'];
158 return $this[
'locks.backend'];
163 return $this[
'sabre.locksplugin'];
168 return $this[
'sabre.browserplugin'];
The only purpose for this class is to redirect a browsers WebDAV-Request to the mount-instructions pa...
static getLogger(string $a_component_id)
Get component logger.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
mountinstructions_upload()
init(ILIASContainer $DIC)