Total Complexity | 40 |
Total Lines | 124 |
Duplicated Lines | 0 % |
Changes | 0 |
Complex classes like complexCommonTextSimilarities 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.
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 complexCommonTextSimilarities, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
15 | class complexCommonTextSimilarities extends simpleCommonTextSimilarities |
||
16 | { |
||
17 | const URL_FORMAT_EXTENDED_PATTERN = '/^((https?|ftps?|file):\/\/){0,1}'.// protocol |
||
18 | '(([a-z0-9$_\.\+!\*\'\(\),;\?&=-]|%[0-9a-f]{2})+'.// username |
||
19 | '(:([a-z0-9$_\.\+!\*\'\(\),;\?&=-]|%[0-9a-f]{2})+)?'.// password |
||
20 | '@)?(?#'.// auth requires @ |
||
21 | ')((([a-z0-9]\.|[a-z0-9][a-z0-9-]*[a-z0-9]\.)*'.// domain segments AND |
||
22 | '[a-z][a-z0-9-]*[a-z0-9]'.// top level domain OR |
||
23 | '|((\d|[1-9]\d|1\d{2}|2[0-4][0-9]|25[0-5])\.){3}'. |
||
24 | '(\d|[1-9]\d|1\d{2}|2[0-4][0-9]|25[0-5])'.// IP address |
||
25 | ')(:\d+)?'.// port |
||
26 | ')(((\/+([a-z0-9$_\.\+!\*\'\(\),;:@&=-]|%[0-9a-f]{2})*)*'.// path |
||
27 | '(\?([a-z0-9$_\.\+!\*\'\(\),;:@&=-]|%[0-9a-f]{2})*)'.// query string |
||
28 | '?)?)?'.// path and query string optional |
||
29 | '(#([a-z0-9$_\.\+!\*\'\(\),;:@&=-]|%[0-9a-f]{2})*)?'.// fragment |
||
30 | '$/i'; |
||
31 | |||
32 | |||
33 | |||
34 | |||
35 | const URL_POSIX_FORMAT = '"^(\b(https?|ftps?|file):\/\/)?[-A-Za-z0-9+&@#/%?=~_|!:,.;]+[-A-Za-z0-9+&@#\/%=~_|]$"i'; |
||
36 | |||
37 | protected static function isUrl($url, &$getDomain = '') |
||
38 | { |
||
39 | $matches = array(); |
||
40 | $bool = is_string($url) && preg_match('/\./', $url) && preg_match(self::URL_POSIX_FORMAT, $url) && preg_match(self::URL_FORMAT_EXTENDED_PATTERN, $url, $matches); |
||
41 | $getDomain = $bool ? self::getDomain($url, $matches[1]) : ''; |
||
42 | return $bool; |
||
43 | } |
||
44 | |||
45 | protected static function getDomain($url, $match) |
||
46 | { |
||
47 | return ($getDomain = explode('.', parse_url($url, $match ? PHP_URL_HOST : PHP_URL_PATH))) ? (($c = count($getDomain)) > 1 ? ($getDomain[$c - 2]) : '') : ''; |
||
48 | } |
||
49 | |||
50 | public static function strippedUrl($a, $b) |
||
51 | { |
||
52 | if (self::isUrl($a, $domain) && is_string($b)) { |
||
53 | return $domain === trim($b); |
||
54 | } elseif (self::isUrl($b, $domain) && is_string($a)) { |
||
55 | return $domain === trim($a); |
||
56 | } else { |
||
57 | return false; |
||
58 | } |
||
59 | } |
||
60 | public static function areStems($a, $b) |
||
74 | } |
||
75 | |||
76 | public static function wordsAddedOrRemoved($a, $b) |
||
77 | { |
||
78 | if (!is_string($a) || !is_string($b)) { |
||
79 | return false; |
||
80 | } |
||
81 | $filter = function($v) { |
||
82 | return !(ctype_space($v)); |
||
83 | }; |
||
84 | self::filter($a, $b, $filter, true); |
||
85 | return self::waorDiff($a, $b, count($a), count($b)); |
||
86 | } |
||
87 | |||
88 | private static function filter(&$a, &$b, $filter, $insensitive = true) |
||
89 | { |
||
90 | if ($insensitive) { |
||
91 | $a = array_filter(self::getParts(self::strtolower($a)), $filter); |
||
92 | $b = array_filter(self::getParts(self::strtolower($b)), $filter); |
||
93 | } else { |
||
94 | $a = array_filter(self::getParts(self::split($a)), $filter); |
||
95 | $b = array_filter(self::getParts(self::split($b)), $filter); |
||
96 | } |
||
97 | } |
||
98 | |||
99 | private static function waorDiff($a, $b, $ca, $cb) |
||
100 | { |
||
101 | return (bool) (($ca > $cb) ?array_diff_assoc(array_values($a), array_values($b)) : array_diff_assoc(array_values($b), array_values($a))); |
||
102 | } |
||
103 | |||
104 | |||
105 | public static function punctuactionChangesOccured($a, $b, $insensitive = true, $considerSpace = true) |
||
106 | { |
||
107 | $filter = function($v) use ($considerSpace) { |
||
108 | return $considerSpace ? !(ctype_space($v) || ctype_punct($v)) : !ctype_punct($v); |
||
109 | }; |
||
110 | if (!is_string($a) || !is_string($b)) { |
||
111 | return false; |
||
112 | } |
||
113 | self::filter($a, $b, $filter, $insensitive); |
||
114 | return empty(array_diff($a, $b)); |
||
115 | } |
||
116 | |||
117 | |||
118 | public static function acronymOrExpanded($a, $b) |
||
119 | { |
||
120 | if (!is_string($a) || !is_string($b)) { |
||
121 | return false; |
||
122 | } |
||
123 | $filter = function($v) { |
||
124 | return !(ctype_space($v) || ctype_punct($v)); |
||
125 | }; |
||
126 | |||
127 | self::filter($a, $b, $filter, true); |
||
128 | return self::aoeStemming($a, $b); |
||
129 | } |
||
130 | |||
131 | private static function aoeStemming($a, $b) |
||
139 | } |
||
140 | } |
||
141 | } |
||
142 |