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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
|
<?php
/**
* Load all internal libraries and setup class autoloader
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
namespace dokuwiki;
use dokuwiki\Extension\PluginController;
return new class {
/** @var string[] Common libraries that are always loaded */
protected array $commonLibs = [
'defines.php',
'actions.php',
'changelog.php',
'common.php',
'confutils.php',
'pluginutils.php',
'form.php',
'fulltext.php',
'html.php',
'httputils.php',
'indexer.php',
'infoutils.php',
'io.php',
'mail.php',
'media.php',
'pageutils.php',
'parserutils.php',
'search.php',
'template.php',
'toolbar.php',
'utf8.php',
'auth.php',
'compatibility.php',
'deprecated.php',
'legacy.php',
];
/** @var string[] Classname to file mappings */
protected array $fixedClassNames = [
'Diff' => 'DifferenceEngine.php',
'UnifiedDiffFormatter' => 'DifferenceEngine.php',
'TableDiffFormatter' => 'DifferenceEngine.php',
'cache' => 'cache.php',
'cache_parser' => 'cache.php',
'cache_instructions' => 'cache.php',
'cache_renderer' => 'cache.php',
'Input' => 'Input.class.php',
'JpegMeta' => 'JpegMeta.php',
'SimplePie' => 'SimplePie.php',
'FeedParser' => 'FeedParser.php',
'SafeFN' => 'SafeFN.class.php',
'Mailer' => 'Mailer.class.php',
'Doku_Handler' => 'parser/handler.php',
'Doku_Renderer' => 'parser/renderer.php',
'Doku_Renderer_xhtml' => 'parser/xhtml.php',
'Doku_Renderer_code' => 'parser/code.php',
'Doku_Renderer_xhtmlsummary' => 'parser/xhtmlsummary.php',
'Doku_Renderer_metadata' => 'parser/metadata.php'
];
/**
* Load common libs and register autoloader
*/
public function __construct()
{
require_once(DOKU_INC . 'vendor/autoload.php');
spl_autoload_register([$this, 'autoload']);
$this->loadCommonLibs();
}
/**
* require all the common libraries
*
* @return true
*/
public function loadCommonLibs()
{
foreach ($this->commonLibs as $lib) {
require_once(DOKU_INC . 'inc/' . $lib);
}
return true;
}
/**
* spl_autoload_register callback
*
* @param string $className
* @return bool
*/
public function autoload($className)
{
// namespace to directory conversion
$classPath = str_replace('\\', '/', $className);
return $this->autoloadFixedClass($className)
|| $this->autoloadTestMockClass($classPath)
|| $this->autoloadTestClass($classPath)
|| $this->autoloadPluginClass($classPath)
|| $this->autoloadTemplateClass($classPath)
|| $this->autoloadCoreClass($classPath)
|| $this->autoloadNamedPluginClass($className);
}
/**
* Check if the class is one of the fixed names
*
* @param string $className
* @return bool true if the class was loaded, false otherwise
*/
protected function autoloadFixedClass($className)
{
if (isset($this->fixedClassNames[$className])) {
require($this->fixedClassNames[$className]);
return true;
}
return false;
}
/**
* Check if the class is a test mock class
*
* @param string $classPath The class name using forward slashes as namespace separators
* @return bool true if the class was loaded, false otherwise
*/
protected function autoloadTestMockClass($classPath)
{
if ($this->prefixStrip($classPath, 'dokuwiki/test/mock/')) {
$file = DOKU_INC . '_test/mock/' . $classPath . '.php';
if (file_exists($file)) {
require $file;
return true;
}
}
return false;
}
/**
* Check if the class is a test mock class
*
* @param string $classPath The class name using forward slashes as namespace separators
* @return bool true if the class was loaded, false otherwise
*/
protected function autoloadTestClass($classPath)
{
if ($this->prefixStrip($classPath, 'dokuwiki/test/')) {
$file = DOKU_INC . '_test/tests/' . $classPath . '.php';
if (file_exists($file)) {
require $file;
return true;
}
}
return false;
}
/**
* Check if the class is a namespaced plugin class
*
* @param string $classPath The class name using forward slashes as namespace separators
* @return bool true if the class was loaded, false otherwise
*/
protected function autoloadPluginClass($classPath)
{
global $plugin_controller;
if ($this->prefixStrip($classPath, 'dokuwiki/plugin/')) {
$classPath = str_replace('/test/', '/_test/', $classPath); // no underscore in test namespace
$file = DOKU_PLUGIN . $classPath . '.php';
if (file_exists($file)) {
$plugin = substr($classPath, 0, strpos($classPath, '/'));
// don't load disabled plugin classes (only if plugin controller is available)
if (!defined('DOKU_UNITTEST') && $plugin_controller && plugin_isdisabled($plugin)) return false;
try {
require $file;
} catch (\Throwable $e) {
ErrorHandler::showExceptionMsg($e, "Error loading plugin $plugin");
}
return true;
}
}
return false;
}
/**
* Check if the class is a namespaced template class
*
* @param string $classPath The class name using forward slashes as namespace separators
* @return bool true if the class was loaded, false otherwise
*/
protected function autoloadTemplateClass($classPath)
{
// template namespace
if ($this->prefixStrip($classPath, 'dokuwiki/template/')) {
$classPath = str_replace('/test/', '/_test/', $classPath); // no underscore in test namespace
$file = DOKU_INC . 'lib/tpl/' . $classPath . '.php';
if (file_exists($file)) {
$template = substr($classPath, 0, strpos($classPath, '/'));
try {
require $file;
} catch (\Throwable $e) {
ErrorHandler::showExceptionMsg($e, "Error loading template $template");
}
return true;
}
}
return false;
}
/**
* Check if the class is a namespaced DokuWiki core class
*
* @param string $classPath The class name using forward slashes as namespace separators
* @return bool true if the class was loaded, false otherwise
*/
protected function autoloadCoreClass($classPath)
{
if ($this->prefixStrip($classPath, 'dokuwiki/')) {
$file = DOKU_INC . 'inc/' . $classPath . '.php';
if (file_exists($file)) {
require $file;
return true;
}
}
return false;
}
/**
* Check if the class is a un-namespaced plugin class following our naming scheme
*
* @param string $className
* @return bool true if the class was loaded, false otherwise
*/
protected function autoloadNamedPluginClass($className)
{
global $plugin_controller;
if (
preg_match(
'/^(' . implode('|', PluginController::PLUGIN_TYPES) . ')_plugin_(' .
DOKU_PLUGIN_NAME_REGEX .
')(?:_([^_]+))?$/',
$className,
$m
)
) {
$c = ((count($m) === 4) ? "/{$m[3]}" : '');
$plg = DOKU_PLUGIN . "{$m[2]}/{$m[1]}$c.php";
if (file_exists($plg)) {
// don't load disabled plugin classes (only if plugin controller is available)
if (!defined('DOKU_UNITTEST') && $plugin_controller && plugin_isdisabled($m[2])) return false;
try {
require $plg;
} catch (\Throwable $e) {
ErrorHandler::showExceptionMsg($e, "Error loading plugin {$m[2]}");
}
}
return true;
}
return false;
}
/**
* Check if the given string starts with the given prefix and strip it
*
* @param string $string
* @param string $prefix
* @return bool true if the prefix was found and stripped, false otherwise
*/
protected function prefixStrip(&$string, $prefix)
{
if (str_starts_with($string, $prefix)) {
$string = substr($string, strlen($prefix));
return true;
}
return false;
}
};
|