Complex classes like Route often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Route, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
25 | trait Route { |
||
26 | use |
||
27 | Static_files; |
||
28 | /** |
||
29 | * Current mirror according to configuration |
||
30 | * |
||
31 | * @var int |
||
32 | */ |
||
33 | public $mirror_index; |
||
34 | /** |
||
35 | * Normalized processed representation of relative address, may differ from raw, should be used in most cases |
||
36 | * |
||
37 | * @var string |
||
38 | */ |
||
39 | public $path_normalized; |
||
40 | /** |
||
41 | * Contains parsed route of current page url in form of array without module name and prefixes `admin|api` |
||
42 | * |
||
43 | * @var array |
||
44 | */ |
||
45 | public $route; |
||
46 | /** |
||
47 | * Like `$route` property, but excludes numerical items |
||
48 | * |
||
49 | * @var string[] |
||
50 | */ |
||
51 | public $route_path; |
||
52 | /** |
||
53 | * Like `$route` property, but only includes numerical items (opposite to route_path property) |
||
54 | * |
||
55 | * @var int[] |
||
56 | */ |
||
57 | public $route_ids; |
||
58 | /** |
||
59 | * Request to administration section |
||
60 | * |
||
61 | * @var bool |
||
62 | */ |
||
63 | public $admin_path; |
||
64 | /** |
||
65 | * Request to CLI interface |
||
66 | * |
||
67 | * @var bool |
||
68 | */ |
||
69 | public $cli_path; |
||
70 | /** |
||
71 | * Request to api section |
||
72 | * |
||
73 | * @var bool |
||
74 | */ |
||
75 | public $api_path; |
||
76 | /** |
||
77 | * Current module |
||
78 | * |
||
79 | * @var string |
||
80 | */ |
||
81 | public $current_module; |
||
82 | /** |
||
83 | * Home page |
||
84 | * |
||
85 | * @var bool |
||
86 | */ |
||
87 | public $home_page; |
||
88 | /** |
||
89 | * Initialize route based on system configuration, requires `::init_server()` being called first since uses its data |
||
90 | * |
||
91 | * @throws ExitException |
||
92 | */ |
||
93 | 30 | public function init_route () { |
|
132 | /** |
||
133 | * @param Config $Config |
||
134 | * |
||
135 | * @return int |
||
136 | */ |
||
137 | 28 | protected function determine_current_mirror_index ($Config) { |
|
153 | /** |
||
154 | * Process raw relative route. |
||
155 | * |
||
156 | * As result returns current route in system in form of array, normalized path, detects module path points to, whether this is API call, administration |
||
157 | * page, or home page whether this is API call, admin page, or home page |
||
158 | * |
||
159 | * @param string $path |
||
160 | * |
||
161 | * @return array Array contains next elements: `route`, `path_normalized`, `cli_path`, `admin_path`, `api_path`, `current_module`, `home_page` |
||
162 | */ |
||
163 | 30 | public function analyze_route_path ($path) { |
|
244 | /** |
||
245 | * @param array $route |
||
246 | * |
||
247 | * @return array[] Key `0` contains array of paths, key `1` contains array of identifiers |
||
248 | */ |
||
249 | 28 | protected function split_route ($route) { |
|
264 | /** |
||
265 | * @param Config $Config |
||
266 | * @param string $path_normalized |
||
267 | * |
||
268 | * @throws ExitException |
||
269 | */ |
||
270 | 28 | protected function handle_redirect ($Config, $path_normalized) { |
|
286 | /** |
||
287 | * Check whether referer is local |
||
288 | * |
||
289 | * @param Config $Config |
||
290 | * |
||
291 | * @return bool |
||
292 | */ |
||
293 | 2 | protected function is_referer_local ($Config) { |
|
312 | /** |
||
313 | * Determine module of current page based on page path and system configuration |
||
314 | * |
||
315 | * @param array $rc |
||
316 | * @param bool $home_page |
||
317 | * @param string $cli_path |
||
318 | * @param string $admin_path |
||
319 | * @param string $api_path |
||
320 | * |
||
321 | * @return string |
||
322 | */ |
||
323 | 28 | protected function determine_page_module (&$rc, &$home_page, $cli_path, $admin_path, $api_path) { |
|
347 | /** |
||
348 | * Get array of modules |
||
349 | * |
||
350 | * @param Config $Config |
||
351 | * @param bool $admin_path |
||
352 | * |
||
353 | * @return string[] |
||
354 | */ |
||
355 | 28 | protected function get_modules ($Config, $admin_path) { |
|
372 | /** |
||
373 | * Get route part by index |
||
374 | * |
||
375 | * @param int $index |
||
376 | * |
||
377 | * @return int|null|string |
||
378 | */ |
||
379 | 2 | public function route ($index) { |
|
382 | /** |
||
383 | * Get route path part by index |
||
384 | * |
||
385 | * @param int $index |
||
386 | * |
||
387 | * @return null|string |
||
388 | */ |
||
389 | 2 | public function route_path ($index) { |
|
392 | /** |
||
393 | * Get route ids part by index |
||
394 | * |
||
395 | * @param int $index |
||
396 | * |
||
397 | * @return int|null |
||
398 | */ |
||
399 | 2 | public function route_ids ($index) { |
|
402 | } |
||
403 |