Skip to content

Commit 22e7f22

Browse files
committed
Automatically use the right class for deprecated ones
1 parent 42925e7 commit 22e7f22

File tree

2 files changed

+65
-1
lines changed

2 files changed

+65
-1
lines changed

Heuristics.php

+53-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ class Heuristics
1212
protected $def = '';
1313
/** @var string the path to use */
1414
protected $path = '';
15+
/** @var array deprecated classes and their replacements */
16+
protected $deprecations;
1517

1618
/**
1719
* Try to gues what the given reference means and how to best search for it
@@ -20,6 +22,9 @@ class Heuristics
2022
*/
2123
public function __construct($reference)
2224
{
25+
$this->loadDeprecations();
26+
27+
if ($reference !== '') $reference = $this->checkDeprecation($reference);
2328
if ($reference !== '') $reference = $this->checkHash($reference);
2429
if ($reference !== '') $reference = $this->checkFilename($reference);
2530
if ($reference !== '') $reference = $this->checkNamespace($reference);
@@ -46,6 +51,28 @@ public function getPath()
4651
return trim(preg_replace('/[^\w.]+/', ' ', $this->path));
4752
}
4853

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+
4976
/**
5077
* Handle things in the form path#symbol
5178
*
@@ -86,7 +113,7 @@ protected function checkNamespace($reference)
86113
if (strpos($reference, '\\') === false) return $reference;
87114

88115
$parts = explode('\\', $reference);
89-
$parts = array_filter($parts);
116+
$parts = array_values(array_filter($parts));
90117
$reference = array_pop($parts); // last part may be more than a class
91118

92119
// our classes are in inc
@@ -166,4 +193,29 @@ protected function checkPSRClass($reference)
166193
}
167194
return $reference;
168195
}
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+
169221
}

_test/HeuristicsTest.php

+12
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public function provideData()
3636
['FooBar($test, $more)', 'FooBar', ''],
3737
['AbstractItem', 'AbstractItem', 'AbstractItem'],
3838
['abstractItem', 'abstractItem', ''],
39+
['Doku_Event', 'Event', 'inc Extension Event' ],
3940
];
4041
}
4142

@@ -52,4 +53,15 @@ public function testHeuristics($reference, $expDef, $expPath)
5253
$this->assertEquals($expDef, $heur->getDef(), 'definition is wrong');
5354
$this->assertEquals($expPath, $heur->getPath(), 'path is wrong');
5455
}
56+
57+
public function testDeprecations() {
58+
$heur = new Heuristics('foo');
59+
$deprecations = $heur->getDeprecations();
60+
61+
$this->assertArrayHasKey('Doku_Event', $deprecations);
62+
$this->assertEquals('\dokuwiki\Extension\Event', $deprecations['Doku_Event']);
63+
64+
$this->assertArrayHasKey('RemoteException', $deprecations);
65+
$this->assertEquals('\dokuwiki\Remote\RemoteException', $deprecations['RemoteException']);
66+
}
5567
}

0 commit comments

Comments
 (0)