ILIAS
release_8 Revision v8.19
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
j
l
m
p
s
t
u
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
webdav.php
Go to the documentation of this file.
1
<?php declare(strict_types = 1);
2
19
require_once(
"Services/Init/classes/class.ilInitialisation.php"
);
20
21
$path_info_components
= explode(
'/'
,
$_SERVER
[
'PATH_INFO'
]);
22
$client_id
=
$path_info_components
[1];
23
$show_mount_instr
= isset(
$_GET
[
'mount-instructions'
]);
24
25
try
{
26
ilAuthFactory::setContext
(
ilAuthFactory::CONTEXT_HTTP
);
27
28
$_GET
[
"client_id"
] =
$client_id
;
29
$context
=
ilContext::CONTEXT_WEBDAV
;
30
ilContext::init
(
$context
);
31
$post_array
= $_POST;
32
ilInitialisation::initILIAS
();
33
}
catch
(
InvalidArgumentException
$e
) {
34
header(
"HTTP/1.1 400 Bad Request"
);
35
header(
"X-WebDAV-Status: 400 Bad Request"
,
true
);
36
echo
'<?xml version="1.0" encoding="utf-8"?>
37
<d:error xmlns:d="DAV:" xmlns:s="http://sabredav.org/ns">
38
<s:sabredav-version>3.2.2</s:sabredav-version>
39
<s:exception>Sabre\DAV\Exception\BadRequest</s:exception>
40
<s:message/>
41
</d:error>'
;
42
exit
;
43
}
44
45
if
(!
ilDAVActivationChecker::_isActive
()) {
46
header(
"HTTP/1.1 403 Forbidden"
);
47
header(
"X-WebDAV-Status: 403 Forbidden"
,
true
);
48
echo
'<html><body><h1>Sorry</h1>'
.
49
'<p><b>Please enable WebDAV in the ILIAS Administration panel.</b></p>'
.
50
'<p>You can only access this page, if WebDAV is enabled on this server.</p>'
.
51
'</body></html>'
;
52
exit
;
53
}
54
55
$webdav_dic
=
new
ilWebDAVDIC
();
56
$webdav_dic
->init(
$DIC
);
57
58
if
(
$show_mount_instr
) {
59
$mount_gui =
$webdav_dic
->mountinstructions();
60
$mount_gui->renderMountInstructionsContent();
61
}
else
{
62
$server
=
new
ilWebDAVRequestHandler
(
$webdav_dic
);
63
$server
->handleRequest(
$post_array
);
64
}
$_GET
$_GET["client_id"]
Definition:
webdav.php:28
exit
exit
Definition:
login.php:28
$context
$context
Definition:
webdav.php:29
$post_array
$post_array
Definition:
webdav.php:31
ilAuthFactory\CONTEXT_HTTP
const CONTEXT_HTTP
HTTP Auth used for WebDAV and CalDAV If a special handling for WebDAV or CalDAV is required overwrite...
Definition:
class.ilAuthFactory.php:39
ilWebDAVRequestHandler
Definition:
class.ilWebDAVRequestHandler.php:27
ilContext\CONTEXT_WEBDAV
const CONTEXT_WEBDAV
Definition:
class.ilContext.php:36
Vendor\Package\$e
$e
Definition:
example_cleaned.php:49
$path_info_components
$path_info_components
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
webdav.php:21
ilDAVActivationChecker\_isActive
static _isActive()
Definition:
class.ilDAVActivationChecker.php:26
$show_mount_instr
$show_mount_instr
Definition:
webdav.php:23
ilWebDAVDIC
Definition:
class.ilWebDAVDIC.php:27
$client_id
$client_id
Definition:
webdav.php:22
$DIC
global $DIC
Definition:
feed.php:28
ilInitialisation\initILIAS
static initILIAS()
ilias initialisation
Definition:
class.ilInitialisation.php:1225
$_SERVER
$_SERVER['HTTP_HOST']
Definition:
raiseError.php:10
ilAuthFactory\setContext
static setContext(int $a_context)
set context
Definition:
class.ilAuthFactory.php:87
$server
$server
Definition:
dummy_client.php:22
ilContext\init
static init(string $a_type)
Init context by type.
Definition:
class.ilContext.php:52
InvalidArgumentException
$webdav_dic
catch(InvalidArgumentException $e) if(!ilDAVActivationChecker::_isActive()) $webdav_dic
Definition:
webdav.php:55
webdav.php
Generated on Fri Apr 4 2025 22:03:22 for ILIAS by
1.8.13 (using
Doxyfile
)