Total Complexity | 56 |
Total Lines | 247 |
Duplicated Lines | 0 % |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
Complex classes like QueryInputTrait 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 QueryInputTrait, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
20 | trait QueryInputTrait |
||
21 | { |
||
22 | /** |
||
23 | * @param TableFieldEntity $field |
||
24 | * @param string $name |
||
25 | * @param string|null $function |
||
26 | * @param array $functions |
||
27 | * |
||
28 | * @return array |
||
29 | */ |
||
30 | private function getEntryFunctions(TableFieldEntity $field, string $name, $function, array $functions): array |
||
51 | ]; |
||
52 | } |
||
53 | |||
54 | /** |
||
55 | * @param string $val |
||
56 | * @param int $i |
||
57 | * @param mixed $value |
||
58 | * |
||
59 | * @return array |
||
60 | */ |
||
61 | private function getEnumItemValue(string $val, int $i, $value): array |
||
62 | { |
||
63 | $val = stripcslashes(str_replace("''", "'", $val)); |
||
64 | $checked = (is_int($value) ? $value == $i + 1 : |
||
65 | (is_array($value) ? in_array($i+1, $value) : $value === $val)); |
||
66 | return ['value' => $i + 1, 'checked' => $checked, 'text' => $this->util->html($val)]; |
||
67 | } |
||
68 | |||
69 | /** |
||
70 | * @param TableFieldEntity $field |
||
71 | * @param bool $select |
||
72 | * @param mixed $value |
||
73 | * |
||
74 | * @return array |
||
75 | */ |
||
76 | private function getEnumValues(TableFieldEntity $field, bool $select, $value): array |
||
77 | { |
||
78 | $values = []; |
||
79 | if (($select)) { |
||
80 | $values[] = ['value' => '-1', 'checked' => true, |
||
81 | 'text' => '<i>' . $this->trans->lang('original') . '</i>']; |
||
82 | } |
||
83 | if ($field->null) { |
||
84 | $values[] = ['value' => '', 'checked' => $value === null && !$select, 'text' => '<i>NULL</i>']; |
||
85 | } |
||
86 | |||
87 | // From functions.inc.php (function enum_input()) |
||
88 | $empty = 0; // 0 - empty |
||
89 | $values[] = ['value' => $empty, 'checked' => is_array($value) ? in_array($empty, $value) : $value === 0, |
||
90 | 'text' => '<i>' . $this->trans->lang('empty') . '</i>']; |
||
91 | |||
92 | preg_match_all("~'((?:[^']|'')*)'~", $field->fullType, $matches); |
||
93 | foreach ($matches[1] as $i => $val) { |
||
94 | $values[] = $this->getEnumItemValue($val, $i, $value); |
||
95 | } |
||
96 | |||
97 | return $values; |
||
98 | } |
||
99 | |||
100 | /** |
||
101 | * @param TableFieldEntity $field |
||
102 | * @param array $attrs |
||
103 | * @param mixed $value |
||
104 | * |
||
105 | * @return array |
||
106 | */ |
||
107 | private function getSetInput(TableFieldEntity $field, array $attrs, $value): array |
||
108 | { |
||
109 | $values = []; |
||
110 | preg_match_all("~'((?:[^']|'')*)'~", $field->length, $matches); |
||
111 | foreach ($matches[1] as $i => $val) { |
||
112 | $val = stripcslashes(str_replace("''", "'", $val)); |
||
113 | $checked = (is_int($value) ? ($value >> $i) & 1 : in_array($val, explode(',', $value), true)); |
||
114 | $values[] = ['value=' => (1 << $i), 'checked' => $checked, 'text' => $this->util->html($val)]; |
||
115 | } |
||
116 | return ['type' => 'checkbox', 'attrs' => $attrs, 'values' => $values]; |
||
117 | } |
||
118 | |||
119 | /** |
||
120 | * @param TableFieldEntity $field |
||
121 | * @param array $attrs |
||
122 | * @param mixed $value |
||
123 | * |
||
124 | * @return array |
||
125 | */ |
||
126 | private function getBlobInput(TableFieldEntity $field, array $attrs, $value): array |
||
127 | { |
||
128 | if (preg_match('~text|lob|memo~i', $field->type) && $this->driver->jush() !== 'sqlite') { |
||
129 | $attrs['cols'] = 50; |
||
130 | $attrs['rows'] = 12; |
||
131 | } else { |
||
132 | $rows = min(12, substr_count($value, "\n") + 1); |
||
133 | $attrs['cols'] = 30; |
||
134 | $attrs['rows'] = $rows; |
||
135 | if ($rows == 1) { |
||
136 | $attrs['style'] = 'height: 1.2em;'; |
||
137 | } |
||
138 | } |
||
139 | return ['type' => 'textarea', 'attrs' => $attrs, 'value' => $this->util->html($value)]; |
||
140 | } |
||
141 | |||
142 | /** |
||
143 | * @param TableFieldEntity $field |
||
144 | * |
||
145 | * @return int |
||
146 | */ |
||
147 | private function getLengthValue(TableFieldEntity $field): int |
||
161 | } |
||
162 | |||
163 | /** |
||
164 | * @param TableFieldEntity $field |
||
165 | * |
||
166 | * @return int |
||
167 | */ |
||
168 | private function getMaxLength(TableFieldEntity $field): int |
||
169 | { |
||
170 | $maxlength = $this->getLengthValue($field); |
||
171 | if ($this->driver->jush() == 'sql' && $this->driver->minVersion(5.6) && |
||
172 | preg_match('~time~', $field->type)) { |
||
173 | return $maxlength + 7; // microtime |
||
174 | } |
||
175 | return $maxlength; |
||
176 | } |
||
177 | |||
178 | /** |
||
179 | * @param TableFieldEntity $field |
||
180 | * @param array $attrs |
||
181 | * |
||
182 | * @return void |
||
183 | */ |
||
184 | private function setDataLength(TableFieldEntity $field, array &$attrs) |
||
192 | } |
||
193 | } |
||
194 | |||
195 | /** |
||
196 | * @param TableFieldEntity $field |
||
197 | * @param array $attrs |
||
198 | * |
||
199 | * @return void |
||
200 | */ |
||
201 | private function setDataType(TableFieldEntity $field, array &$attrs) |
||
207 | } |
||
208 | } |
||
209 | |||
210 | /** |
||
211 | * @param TableFieldEntity $field |
||
212 | * @param array $attrs |
||
213 | * @param mixed $value |
||
214 | * @param string|null $function |
||
215 | * @param array $functions |
||
216 | * |
||
217 | * @return array |
||
218 | */ |
||
219 | private function getDefaultInput(TableFieldEntity $field, array $attrs, $value, $function, array $functions): array |
||
220 | { |
||
221 | $this->setDataLength($field, $attrs); |
||
222 | $hasFunction = (in_array($function, $functions) || isset($functions[$function])); |
||
223 | if (!$hasFunction || $function === '') { |
||
224 | $this->setDataType($field, $attrs); |
||
225 | } |
||
226 | $attrs['value'] = $this->util->html($value); |
||
227 | return ['type' => 'input', 'attrs' => $attrs]; |
||
228 | } |
||
229 | |||
230 | /** |
||
231 | * @param TableFieldEntity $field |
||
232 | * @param string $name |
||
233 | * @param mixed $value |
||
234 | * @param string|null $function |
||
235 | * @param array $functions |
||
236 | * @param array $options |
||
237 | * |
||
238 | * @return array |
||
239 | */ |
||
240 | private function getEntryInput(TableFieldEntity $field, string $name, $value, $function, array $functions, array $options): array |
||
267 | } |
||
268 | } |
||
269 |