xref: /dokuwiki/_test/rector.php (revision 26dfc2323f8f70cb69aac4c8c51bf7997809f2ca)
1077b7fe2SAndreas Gohr<?php
2077b7fe2SAndreas Gohr
3077b7fe2SAndreas Gohrdeclare(strict_types=1);
4077b7fe2SAndreas Gohr
5f9a94e78SAndreas Gohruse dokuwiki\test\rector\DokuWikiPtlnRector;
6*26dfc232SAndreas Gohruse dokuwiki\test\rector\DokuWikiRenamePrintToEcho;
7077b7fe2SAndreas Gohruse Rector\Caching\ValueObject\Storage\FileCacheStorage;
8077b7fe2SAndreas Gohruse Rector\CodeQuality\Rector\Array_\CallableThisArrayToAnonymousFunctionRector;
9e2d055f5SAndreas Gohruse Rector\CodeQuality\Rector\Concat\JoinStringConcatRector;
10077b7fe2SAndreas Gohruse Rector\CodeQuality\Rector\FunctionLike\SimplifyUselessVariableRector;
11077b7fe2SAndreas Gohruse Rector\CodeQuality\Rector\If_\CombineIfRector;
12077b7fe2SAndreas Gohruse Rector\CodeQuality\Rector\If_\ExplicitBoolCompareRector;
13077b7fe2SAndreas Gohruse Rector\CodeQuality\Rector\If_\SimplifyIfElseToTernaryRector;
141490c177SAndreas Gohruse Rector\CodeQuality\Rector\If_\SimplifyIfReturnBoolRector;
15077b7fe2SAndreas Gohruse Rector\CodeQuality\Rector\Isset_\IssetOnPropertyObjectToPropertyExistsRector;
16077b7fe2SAndreas Gohruse Rector\CodingStyle\Rector\Catch_\CatchExceptionNameMatchingTypeRector;
17104a3b7cSAndreas Gohruse Rector\CodingStyle\Rector\Class_\AddArrayDefaultToArrayPropertyRector;
18077b7fe2SAndreas Gohruse Rector\CodingStyle\Rector\Closure\StaticClosureRector;
19077b7fe2SAndreas Gohruse Rector\CodingStyle\Rector\Encapsed\EncapsedStringsToSprintfRector;
206723156fSAndreas Gohruse Rector\CodingStyle\Rector\Encapsed\WrapEncapsedVariableInCurlyBracesRector;
21a469bafbSAndreas Gohruse Rector\CodingStyle\Rector\FuncCall\StrictArraySearchRector;
22077b7fe2SAndreas Gohruse Rector\CodingStyle\Rector\PostInc\PostIncDecToPreIncDecRector;
23077b7fe2SAndreas Gohruse Rector\CodingStyle\Rector\Stmt\NewlineAfterStatementRector;
24077b7fe2SAndreas Gohruse Rector\CodingStyle\Rector\String_\SymplifyQuoteEscapeRector;
25077b7fe2SAndreas Gohruse Rector\Config\RectorConfig;
26077b7fe2SAndreas Gohruse Rector\DeadCode\Rector\ClassMethod\RemoveUselessParamTagRector;
2724870174SAndreas Gohruse Rector\DeadCode\Rector\If_\RemoveAlwaysTrueIfConditionRector;
28bcaec9f4SAndreas Gohruse Rector\DeadCode\Rector\If_\RemoveUnusedNonEmptyArrayBeforeForeachRector;
29104a3b7cSAndreas Gohruse Rector\DeadCode\Rector\Property\RemoveUselessVarTagRector;
306723156fSAndreas Gohruse Rector\DeadCode\Rector\StaticCall\RemoveParentCallWithoutParentRector;
3124870174SAndreas Gohruse Rector\DeadCode\Rector\Stmt\RemoveUnreachableStatementRector;
320603e565SAndreas Gohruse Rector\Php71\Rector\FuncCall\CountOnNullRector;
336e695190SAndreas Gohruse Rector\Php71\Rector\FuncCall\RemoveExtraParametersRector;
34a0aeafaaSAndreas Gohruse Rector\Renaming\Rector\FuncCall\RenameFunctionRector;
35a0aeafaaSAndreas Gohruse Rector\Renaming\Rector\Name\RenameClassRector;
36077b7fe2SAndreas Gohruse Rector\Set\ValueObject\LevelSetList;
37077b7fe2SAndreas Gohruse Rector\Set\ValueObject\SetList;
38077b7fe2SAndreas Gohruse Rector\Strict\Rector\Empty_\DisallowedEmptyRuleFixerRector;
39104a3b7cSAndreas Gohruse Rector\TypeDeclaration\Rector\Property\TypedPropertyFromAssignsRector;
40077b7fe2SAndreas Gohr
41077b7fe2SAndreas Gohrreturn static function (RectorConfig $rectorConfig): void {
42f9a94e78SAndreas Gohr    // FIXME we may want to autoload these later
43f9a94e78SAndreas Gohr    require_once __DIR__ . '/rector/DokuWikiPtlnRector.php';
44*26dfc232SAndreas Gohr    require_once __DIR__ . '/rector/DokuWikiRenamePrintToEcho.php';
45f9a94e78SAndreas Gohr
46077b7fe2SAndreas Gohr    $rectorConfig->paths([
47b1f206e1SAndreas Gohr        __DIR__ . '/../inc/',
48b1f206e1SAndreas Gohr        __DIR__ . '/../lib/',
49b1f206e1SAndreas Gohr        __DIR__ . '/../bin/',
50b1f206e1SAndreas Gohr        __DIR__ . '/../*.php',
51077b7fe2SAndreas Gohr    ]);
52077b7fe2SAndreas Gohr
531490c177SAndreas Gohr    $rectorConfig->bootstrapFiles([
5424870174SAndreas Gohr        __DIR__ . '/../inc/init.php',
551490c177SAndreas Gohr    ]);
561490c177SAndreas Gohr
57077b7fe2SAndreas Gohr    $rectorConfig->importNames();
58077b7fe2SAndreas Gohr    $rectorConfig->importShortClasses(false);
59077b7fe2SAndreas Gohr    $rectorConfig->cacheClass(FileCacheStorage::class);
60077b7fe2SAndreas Gohr    $rectorConfig->cacheDirectory(__DIR__ . '/.rector-cache');
61077b7fe2SAndreas Gohr
62077b7fe2SAndreas Gohr    // define sets of rules
63077b7fe2SAndreas Gohr    $rectorConfig->sets([
64077b7fe2SAndreas Gohr        LevelSetList::UP_TO_PHP_74,
65077b7fe2SAndreas Gohr        SetList::CODE_QUALITY,
66077b7fe2SAndreas Gohr        SetList::DEAD_CODE,
67077b7fe2SAndreas Gohr        SetList::CODING_STYLE,
68077b7fe2SAndreas Gohr    ]);
69077b7fe2SAndreas Gohr
70077b7fe2SAndreas Gohr    $rectorConfig->skip([
71077b7fe2SAndreas Gohr        // skip paths
72077b7fe2SAndreas Gohr        __DIR__ . '/../inc/lang/*',
73077b7fe2SAndreas Gohr        __DIR__ . '/../lib/plugins/*/_test/*',
74077b7fe2SAndreas Gohr        __DIR__ . '/../lib/tpl/*/_test/*',
75077b7fe2SAndreas Gohr        __DIR__ . '/../lib/plugins/*/lang/*',
76077b7fe2SAndreas Gohr        __DIR__ . '/../lib/tpl/*/lang/*',
77467c1427SAndreas Gohr        __DIR__ . '/../lib/plugins/*/conf/*', // maybe later
78467c1427SAndreas Gohr        __DIR__ . '/../lib/tpl/*/conf/*',  // maybe later
79077b7fe2SAndreas Gohr        __DIR__ . '/../lib/plugins/*/vendor/*',
80077b7fe2SAndreas Gohr        __DIR__ . '/../lib/tpl/*/vendor/*',
81077b7fe2SAndreas Gohr        __DIR__ . '/../lib/plugins/*/skel/*', // dev plugin
8224870174SAndreas Gohr        __DIR__ . '/../inc/deprecated.php',
8324870174SAndreas Gohr        __DIR__ . '/../inc/form.php',
84077b7fe2SAndreas Gohr
85077b7fe2SAndreas Gohr        // third party libs, not yet moved to composer
86077b7fe2SAndreas Gohr        __DIR__ . '/../inc/DifferenceEngine.php',
87077b7fe2SAndreas Gohr        __DIR__ . '/../inc/JpegMeta.php',
88077b7fe2SAndreas Gohr        __DIR__ . '/../lib/plugins/authad/adLDAP',
89077b7fe2SAndreas Gohr
90077b7fe2SAndreas Gohr        // skip rules
91077b7fe2SAndreas Gohr        SimplifyIfElseToTernaryRector::class,
92077b7fe2SAndreas Gohr        NewlineAfterStatementRector::class,
93077b7fe2SAndreas Gohr        CombineIfRector::class,
94077b7fe2SAndreas Gohr        ExplicitBoolCompareRector::class,
95077b7fe2SAndreas Gohr        IssetOnPropertyObjectToPropertyExistsRector::class, // maybe?
96077b7fe2SAndreas Gohr        SymplifyQuoteEscapeRector::class,
97077b7fe2SAndreas Gohr        CatchExceptionNameMatchingTypeRector::class,
98077b7fe2SAndreas Gohr        EncapsedStringsToSprintfRector::class,
99077b7fe2SAndreas Gohr        CallableThisArrayToAnonymousFunctionRector::class,
100077b7fe2SAndreas Gohr        StaticClosureRector::class,
101077b7fe2SAndreas Gohr        SimplifyUselessVariableRector::class, // seems to strip constructor property initializations
102077b7fe2SAndreas Gohr        PostIncDecToPreIncDecRector::class,
103077b7fe2SAndreas Gohr        RemoveUselessParamTagRector::class,
104077b7fe2SAndreas Gohr        DisallowedEmptyRuleFixerRector::class,
1050603e565SAndreas Gohr        CountOnNullRector::class, // adds unwanted is_countable checks?
1066723156fSAndreas Gohr        RemoveParentCallWithoutParentRector::class,
1076723156fSAndreas Gohr        WrapEncapsedVariableInCurlyBracesRector::class,
1081490c177SAndreas Gohr        SimplifyIfReturnBoolRector::class,
109a469bafbSAndreas Gohr        StrictArraySearchRector::class, // we cannot assume strict search is always wanted
110104a3b7cSAndreas Gohr        AddArrayDefaultToArrayPropertyRector::class, // may break code differentiating between null and empty array
111104a3b7cSAndreas Gohr        RemoveUselessVarTagRector::class,
112104a3b7cSAndreas Gohr        TypedPropertyFromAssignsRector::class, // maybe?
113e2d055f5SAndreas Gohr        JoinStringConcatRector::class, // this does not count variables, so it creates overlong lines
1146e695190SAndreas Gohr        RemoveExtraParametersRector::class, // this actually broke code
115bcaec9f4SAndreas Gohr        RemoveUnusedNonEmptyArrayBeforeForeachRector::class, // seems unreliable when checking on array keys
11624870174SAndreas Gohr        RemoveAlwaysTrueIfConditionRector::class, // fails with if(defined(...)) constructs
117ab9790caSAndreas Gohr        RemoveUnreachableStatementRector::class, // fails GOTO in authpdo -> should be rewritten with exceptions
118077b7fe2SAndreas Gohr    ]);
119a0aeafaaSAndreas Gohr
120a0aeafaaSAndreas Gohr    $rectorConfig->ruleWithConfiguration(RenameClassRector::class, [
121a0aeafaaSAndreas Gohr        // see inc/deprecated.php
122a0aeafaaSAndreas Gohr        'RemoteAccessDeniedException' => 'dokuwiki\Remote\AccessDeniedException',
123a0aeafaaSAndreas Gohr        'RemoteException' => 'dokuwiki\Remote\RemoteException',
124a0aeafaaSAndreas Gohr        'setting' => 'dokuwiki\plugin\config\core\Setting\Setting',
125a0aeafaaSAndreas Gohr        'setting_authtype' => 'dokuwiki\plugin\config\core\Setting\SettingAuthtype',
126a0aeafaaSAndreas Gohr        'setting_string' => 'dokuwiki\plugin\config\core\Setting\SettingString',
127a0aeafaaSAndreas Gohr        'PageChangelog' => 'dokuwiki\ChangeLog\PageChangeLog',
128a0aeafaaSAndreas Gohr        'MediaChangelog' => 'dokuwiki\ChangeLog\MediaChangeLog',
129a0aeafaaSAndreas Gohr        'Input' => 'dokuwiki\Input\Input',
130a0aeafaaSAndreas Gohr        'PostInput' => 'dokuwiki\Input\Post',
131a0aeafaaSAndreas Gohr        'GetInput' => 'dokuwiki\Input\Get',
132a0aeafaaSAndreas Gohr        'ServerInput' => 'dokuwiki\Input\Server',
133a0aeafaaSAndreas Gohr        'PassHash' => 'dokuwiki\PassHash',
134a0aeafaaSAndreas Gohr        'HTTPClientException' => 'dokuwiki\HTTP\HTTPClientException',
135a0aeafaaSAndreas Gohr        'HTTPClient' => 'dokuwiki\HTTP\HTTPClient',
136a0aeafaaSAndreas Gohr        'DokuHTTPClient' => 'dokuwiki\HTTP\DokuHTTPClient',
137a0aeafaaSAndreas Gohr        'Doku_Plugin_Controller' => 'dokuwiki\Extension\PluginController',
138a0aeafaaSAndreas Gohr        'Doku_Indexer' => 'dokuwiki\Search\Indexer',
139a0aeafaaSAndreas Gohr        'IXR_Client' => 'dokuwiki\Remote\IXR\Client',
140a0aeafaaSAndreas Gohr        'IXR_ClientMulticall' => 'IXR\Client\ClientMulticall',
141a0aeafaaSAndreas Gohr        'IXR_Server' => 'IXR\Server\Server',
142a0aeafaaSAndreas Gohr        'IXR_IntrospectionServer' => 'IXR\Server\IntrospectionServer',
143a0aeafaaSAndreas Gohr        'IXR_Request' => 'IXR\Request\Request',
144a0aeafaaSAndreas Gohr        'IXR_Message' => 'R\Message\Message',
145a0aeafaaSAndreas Gohr        'IXR_Error' => 'XR\Message\Error',
146a0aeafaaSAndreas Gohr        'IXR_Date' => 'IXR\DataType\Date',
147a0aeafaaSAndreas Gohr        'IXR_Base64' => 'IXR\DataType\Base64',
148a0aeafaaSAndreas Gohr        'IXR_Value' => 'IXR\DataType\Value',
149a0aeafaaSAndreas Gohr
150a0aeafaaSAndreas Gohr        // see inc/legacy.php
151a0aeafaaSAndreas Gohr        'Doku_Event_Handler' => 'dokuwiki\Extension\EventHandler',
152a0aeafaaSAndreas Gohr        'Doku_Event' => 'dokuwiki\Extension\Event',
153a0aeafaaSAndreas Gohr        'DokuWiki_Action_Plugin' => 'dokuwiki\Extension\ActionPlugin',
154a0aeafaaSAndreas Gohr        'DokuWiki_Admin_Plugin' => 'dokuwiki\Extension\AdminPlugin',
155a0aeafaaSAndreas Gohr        'DokuWiki_Auth_Plugin' => 'dokuwiki\Extension\AuthPlugin',
156a0aeafaaSAndreas Gohr        'DokuWiki_CLI_Plugin' => 'dokuwiki\Extension\CLIPlugin',
157a0aeafaaSAndreas Gohr        'DokuWiki_Plugin' => 'dokuwiki\Extension\Plugin',
158a0aeafaaSAndreas Gohr        'DokuWiki_Remote_Plugin' => 'dokuwiki\Extension\RemotePlugin',
159a0aeafaaSAndreas Gohr        'DokuWiki_Syntax_Plugin' => 'dokuwiki\Extension\SyntaxPlugin',
160a0aeafaaSAndreas Gohr    ]);
161a0aeafaaSAndreas Gohr
162a0aeafaaSAndreas Gohr    $rectorConfig->ruleWithConfiguration(RenameFunctionRector::class, [
163a0aeafaaSAndreas Gohr        // see inc/deprecated.php
164a0aeafaaSAndreas Gohr        'Doku_Lexer_Escape' => 'dokuwiki\Parsing\Lexer\Lexer::escape',
165a0aeafaaSAndreas Gohr
166a0aeafaaSAndreas Gohr        // see inc/utf8.php
167a0aeafaaSAndreas Gohr        'utf8_isASCII' => 'dokuwiki\Utf8\Clean::isASCII',
168a0aeafaaSAndreas Gohr        'utf8_strip' => 'dokuwiki\Utf8\Clean::strip',
169a0aeafaaSAndreas Gohr        'utf8_check' => 'dokuwiki\Utf8\Clean::isUtf8',
170a0aeafaaSAndreas Gohr        'utf8_basename' => 'dokuwiki\Utf8\PhpString::basename',
171a0aeafaaSAndreas Gohr        'utf8_strlen' => 'dokuwiki\Utf8\PhpString::strlen',
172a0aeafaaSAndreas Gohr        'utf8_substr' => 'dokuwiki\Utf8\PhpString::substr',
173a0aeafaaSAndreas Gohr        'utf8_substr_replace' => 'dokuwiki\Utf8\PhpString::substr_replace',
174a0aeafaaSAndreas Gohr        'utf8_ltrim' => 'dokuwiki\Utf8\PhpString::ltrim',
175a0aeafaaSAndreas Gohr        'utf8_rtrim' => 'dokuwiki\Utf8\PhpString::rtrim',
176a0aeafaaSAndreas Gohr        'utf8_trim' => 'dokuwiki\Utf8\PhpString::trim',
177a0aeafaaSAndreas Gohr        'utf8_strtolower' => 'dokuwiki\Utf8\PhpString::strtolower',
178a0aeafaaSAndreas Gohr        'utf8_strtoupper' => 'dokuwiki\Utf8\PhpString::strtoupper',
179a0aeafaaSAndreas Gohr        'utf8_ucfirst' => 'dokuwiki\Utf8\PhpString::ucfirst',
180a0aeafaaSAndreas Gohr        'utf8_ucwords' => 'dokuwiki\Utf8\PhpString::ucwords',
181a0aeafaaSAndreas Gohr        'utf8_deaccent' => 'dokuwiki\Utf8\Clean::deaccent',
182a0aeafaaSAndreas Gohr        'utf8_romanize' => 'dokuwiki\Utf8\Clean::romanize',
183a0aeafaaSAndreas Gohr        'utf8_stripspecials' => 'dokuwiki\Utf8\Clean::stripspecials',
184a0aeafaaSAndreas Gohr        'utf8_strpos' => 'dokuwiki\Utf8\PhpString::strpos',
185a0aeafaaSAndreas Gohr        'utf8_tohtml' => 'dokuwiki\Utf8\Conversion::toHtml',
186a0aeafaaSAndreas Gohr        'utf8_unhtml' => 'dokuwiki\Utf8\Conversion::fromHtml',
187a0aeafaaSAndreas Gohr        'utf8_to_unicode' => 'dokuwiki\Utf8\Conversion::fromUtf8',
188a0aeafaaSAndreas Gohr        'unicode_to_utf8' => 'dokuwiki\Utf8\Conversion::toUtf8',
189a0aeafaaSAndreas Gohr        'utf8_to_utf16be' => 'dokuwiki\Utf8\Conversion::toUtf16be',
190a0aeafaaSAndreas Gohr        'utf16be_to_utf8' => 'dokuwiki\Utf8\Conversion::fromUtf16be',
191a0aeafaaSAndreas Gohr        'utf8_bad_replace' => 'dokuwiki\Utf8\Clean::replaceBadBytes',
192a0aeafaaSAndreas Gohr        'utf8_correctIdx' => 'dokuwiki\Utf8\Clean::correctIdx',
193a0aeafaaSAndreas Gohr    ]);
194f9a94e78SAndreas Gohr
195f9a94e78SAndreas Gohr    $rectorConfig->rule(DokuWikiPtlnRector::class);
196*26dfc232SAndreas Gohr    $rectorConfig->rule(DokuWikiRenamePrintToEcho::class);
197077b7fe2SAndreas Gohr};
198