forked from ezsystems/ezpublish-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webdav.php
180 lines (150 loc) · 5.92 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<?php
/**
* @copyright Copyright (C) eZ Systems AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
* @version //autogentag//
* @package kernel
*/
// Set a default time zone if none is given. The time zone can be overriden
// in config.php or php.ini.
if ( !ini_get( "date.timezone" ) )
{
date_default_timezone_set( "UTC" );
}
require 'autoload.php';
ignore_user_abort( true );
ob_start();
ini_set( "display_errors" , "0" );
error_reporting ( E_ALL );
// Turn off session stuff, isn't needed for WebDAV operations.
$GLOBALS['eZSiteBasics']['session-required'] = false;
/*! Reads settings from site.ini and passes them to eZDebug.
*/
function eZUpdateDebugSettings()
{
$ini = eZINI::instance();
$debugSettings = array();
$debugSettings['debug-enabled'] = $ini->variable( 'DebugSettings', 'DebugOutput' ) == 'enabled';
$debugSettings['debug-by-ip'] = $ini->variable( 'DebugSettings', 'DebugByIP' ) == 'enabled';
$debugSettings['debug-ip-list'] = $ini->variable( 'DebugSettings', 'DebugIPList' );
eZDebug::updateSettings( $debugSettings );
}
/*!
Reads settings from i18n.ini and passes them to eZTextCodec.
*/
function eZUpdateTextCodecSettings()
{
$ini = eZINI::instance( 'i18n.ini' );
list( $i18nSettings['internal-charset'], $i18nSettings['http-charset'], $i18nSettings['mbstring-extension'] ) =
$ini->variableMulti( 'CharacterSettings', array( 'Charset', 'HTTPCharset', 'MBStringExtension' ), array( false, false, 'enabled' ) );
eZTextCodec::updateSettings( $i18nSettings );
}
// Initialize text codec settings
eZUpdateTextCodecSettings();
// Check for extension
eZExtension::activateExtensions( 'default' );
// Extension check end
// Now that all extensions are activated and siteaccess has been changed, reset
// all eZINI instances as they may not take into account siteaccess specific settings.
eZINI::resetAllInstances( false );
// Grab the main WebDAV setting (enable/disable) from the WebDAV ini file.
$webDavIni = eZINI::instance( 'webdav.ini' );
$enable = $webDavIni->variable( 'GeneralSettings', 'EnableWebDAV' );
function eZDBCleanup()
{
if ( class_exists( 'ezdb' )
and eZDB::hasInstance() )
{
$db = eZDB::instance();
$db->setIsSQLOutputEnabled( false );
}
}
function eZFatalError()
{
eZDebug::setHandleType( eZDebug::HANDLE_NONE );
eZWebDAVContentBackend::appendLogEntry( "****************************************" );
eZWebDAVContentBackend::appendLogEntry( "Fatal error: eZ Publish did not finish its request" );
eZWebDAVContentBackend::appendLogEntry( "The execution of eZ Publish was abruptly ended, the debug output is present below." );
eZWebDAVContentBackend::appendLogEntry( "****************************************" );
// $templateResult = null;
// eZDisplayResult( $templateResult );
}
// Check and proceed only if WebDAV functionality is enabled:
if ( $enable === 'true' )
{
eZExecution::addCleanupHandler( 'eZDBCleanup' );
eZExecution::addFatalErrorHandler( 'eZFatalError' );
eZDebug::setHandleType( eZDebug::HANDLE_FROM_PHP );
if ( !isset( $_SERVER['REQUEST_URI'] ) or
!isset( $_SERVER['REQUEST_METHOD'] ) )
{
// We stop the script if these are missing
// e.g. if run from the shell
eZExecution::cleanExit();
}
eZModule::setGlobalPathList( array( "kernel" ) );
eZWebDAVContentBackend::appendLogEntry( "========================================" );
eZWebDAVContentBackend::appendLogEntry( "Requested URI is: " . $_SERVER['REQUEST_URI'], 'webdav.php' );
$ini = eZINI::instance( 'site.ini' );
// Initialize/set the index file.
eZSys::init( 'webdav.php', $ini->variable( 'SiteAccessSettings', 'ForceVirtualHost' ) === 'true' );
// @as 2009-03-04 - added cleaning up of the REQUEST_URI and HTTP_DESTINATION
$_SERVER['REQUEST_URI'] = urldecode( $_SERVER['REQUEST_URI'] );
if ( isset( $_SERVER['HTTP_DESTINATION'] ) )
{
$_SERVER['HTTP_DESTINATION'] = urldecode( $_SERVER['HTTP_DESTINATION'] );
}
eZWebDAVContentBackend::appendLogEntry( "Used (cleaned) URI is: " . $_SERVER['REQUEST_URI'], 'webdav.php' );
// The top/root folder is publicly available (without auth):
if ( $_SERVER['REQUEST_URI'] == '' or
$_SERVER['REQUEST_URI'] == '/' or
$_SERVER['REQUEST_URI'] == '/webdav.php/' or
$_SERVER['REQUEST_URI'] == '/webdav.php' )
{
// $requestUri = $_SERVER['REQUEST_URI'];
// if ( $requestUri == '' )
// {
// $requestUri = '/';
// }
// if ( $requestUri == '/webdav.php' )
// {
// $requestUri = '/webdav.php/';
// }
$server = ezcWebdavServer::getInstance();
$backend = new eZWebDAVContentBackend();
$server->handle( $backend );
}
// Else: need to login with username/password:
else
{
// Create & initialize a new instance of the content server.
$server = ezcWebdavServer::getInstance();
$server->pluginRegistry->registerPlugin(
new ezcWebdavLockPluginConfiguration()
);
$backend = new eZWebDAVContentBackend();
$server->auth = new eZWebDAVContentBackendAuth();
// Get the name of the site that is being browsed.
$currentSite = $backend->currentSiteFromPath( $_SERVER['REQUEST_URI'] );
// Proceed only if the current site is valid:
if ( $currentSite )
{
$backend->setCurrentSite( $currentSite );
// Process the request.
$server->handle( $backend );
}
// Else: site-name is invalid (was not among available sites).
else
{
header( "HTTP/1.1 404 Not Found" );
}
}
eZExecution::cleanExit();
}
// Else: WebDAV functionality is disabled, do nothing...
else
{
header( "HTTP/1.1 404 Not Found" );
print ( "WebDAV functionality is disabled!" );
}
?>