@@ -12,6 +12,8 @@ class Heuristics
12
12
protected $ def = '' ;
13
13
/** @var string the path to use */
14
14
protected $ path = '' ;
15
+ /** @var array deprecated classes and their replacements */
16
+ protected $ deprecations ;
15
17
16
18
/**
17
19
* Try to gues what the given reference means and how to best search for it
@@ -20,6 +22,9 @@ class Heuristics
20
22
*/
21
23
public function __construct ($ reference )
22
24
{
25
+ $ this ->loadDeprecations ();
26
+
27
+ if ($ reference !== '' ) $ reference = $ this ->checkDeprecation ($ reference );
23
28
if ($ reference !== '' ) $ reference = $ this ->checkHash ($ reference );
24
29
if ($ reference !== '' ) $ reference = $ this ->checkFilename ($ reference );
25
30
if ($ reference !== '' ) $ reference = $ this ->checkNamespace ($ reference );
@@ -46,6 +51,28 @@ public function getPath()
46
51
return trim (preg_replace ('/[^\w.]+/ ' , ' ' , $ this ->path ));
47
52
}
48
53
54
+ /**
55
+ * @return array
56
+ */
57
+ public function getDeprecations ()
58
+ {
59
+ return $ this ->deprecations ;
60
+ }
61
+
62
+ /**
63
+ * Replace deprecated classes
64
+ *
65
+ * @param string $reference
66
+ * @return string
67
+ */
68
+ protected function checkDeprecation ($ reference )
69
+ {
70
+ if (isset ($ this ->deprecations [$ reference ])) {
71
+ return $ this ->deprecations [$ reference ];
72
+ }
73
+ return $ reference ;
74
+ }
75
+
49
76
/**
50
77
* Handle things in the form path#symbol
51
78
*
@@ -86,7 +113,7 @@ protected function checkNamespace($reference)
86
113
if (strpos ($ reference , '\\' ) === false ) return $ reference ;
87
114
88
115
$ parts = explode ('\\' , $ reference );
89
- $ parts = array_filter ($ parts );
116
+ $ parts = array_values ( array_filter ($ parts) );
90
117
$ reference = array_pop ($ parts ); // last part may be more than a class
91
118
92
119
// our classes are in inc
@@ -166,4 +193,29 @@ protected function checkPSRClass($reference)
166
193
}
167
194
return $ reference ;
168
195
}
196
+
197
+ /**
198
+ * Load deprecated classes info
199
+ */
200
+ protected function loadDeprecations ()
201
+ {
202
+ $ this ->deprecations = [];
203
+
204
+ // class aliases
205
+ $ legacy = file_get_contents (DOKU_INC . 'inc/legacy.php ' );
206
+ if (preg_match_all ('/class_alias\( \'([^ \']+) \', * \'([^ \']+) \'\)/ ' , $ legacy , $ matches , PREG_SET_ORDER )) {
207
+ foreach ($ matches as $ match ) {
208
+ $ this ->deprecations [$ match [2 ]] = $ match [1 ];
209
+ }
210
+ }
211
+
212
+ // deprecated classes
213
+ $ deprecations = file_get_contents (DOKU_INC . 'inc/deprecated.php ' );
214
+ if (preg_match_all ('/class (.+?) extends ( \\\\dokuwiki \\\\.+?)(\s|$|{)/ ' , $ deprecations , $ matches , PREG_SET_ORDER )) {
215
+ foreach ($ matches as $ match ) {
216
+ $ this ->deprecations [$ match [1 ]] = $ match [2 ];
217
+ }
218
+ }
219
+ }
220
+
169
221
}
0 commit comments