-
Notifications
You must be signed in to change notification settings - Fork 343
/
webdav.php
66 lines (57 loc) · 2.06 KB
/
webdav.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
declare(strict_types=1);
/**
* This file is part of ILIAS, a powerful learning management system
* published by ILIAS open source e-Learning e.V.
*
* ILIAS is licensed with the GPL-3.0,
* see https://www.gnu.org/licenses/gpl-3.0.en.html
* You should have received a copy of said license along with the
* source code, too.
*
* If this is not the case or you just want to try ILIAS, you'll find
* us at:
* https://www.ilias.de
* https://github.com/ILIAS-eLearning
*
*********************************************************************/
require_once("Services/Init/classes/class.ilInitialisation.php");
$path_info_components = explode('/', $_SERVER['PATH_INFO']);
$client_id = $path_info_components[1];
$show_mount_instr = isset($_GET['mount-instructions']);
try {
ilAuthFactory::setContext(ilAuthFactory::CONTEXT_HTTP);
$_GET["client_id"] = $client_id;
$context = ilContext::CONTEXT_WEBDAV;
ilContext::init($context);
$post_array = $_POST;
ilInitialisation::initILIAS();
} catch (InvalidArgumentException $e) {
header("HTTP/1.1 400 Bad Request");
header("X-WebDAV-Status: 400 Bad Request", true);
echo '<?xml version="1.0" encoding="utf-8"?>
<d:error xmlns:d="DAV:" xmlns:s="http://sabredav.org/ns">
<s:sabredav-version>3.2.2</s:sabredav-version>
<s:exception>Sabre\DAV\Exception\BadRequest</s:exception>
<s:message/>
</d:error>';
exit;
}
if (!ilDAVActivationChecker::_isActive()) {
header("HTTP/1.1 403 Forbidden");
header("X-WebDAV-Status: 403 Forbidden", true);
echo '<html><body><h1>Sorry</h1>' .
'<p><b>Please enable the WebDAV plugin in the ILIAS Administration panel.</b></p>' .
'<p>You can only access this page, if WebDAV is enabled on this server.</p>' .
'</body></html>';
exit;
}
$webdav_dic = new ilWebDAVDIC();
$webdav_dic->init($DIC);
if ($show_mount_instr) {
$mount_gui = $webdav_dic->mountinstructions();
$mount_gui->renderMountInstructionsContent();
} else {
$server = new ilWebDAVRequestHandler($webdav_dic);
$server->handleRequest($post_array);
}