Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like MultiFormStep 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 MultiFormStep, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
12 | class MultiFormStep extends DataObject { |
||
|
|||
13 | |||
14 | private static $db = array( |
||
15 | 'Data' => 'Text' // stores serialized maps with all session information |
||
16 | ); |
||
17 | |||
18 | private static $has_one = array( |
||
19 | 'Session' => 'MultiFormSession' |
||
20 | ); |
||
21 | |||
22 | /** |
||
23 | * Centerpiece of the flow control for the form. |
||
24 | * |
||
25 | * If set to a string, you have a linear form flow |
||
26 | * If set to an array, you should use {@link getNextStep()} |
||
27 | * to enact flow control and branching to different form |
||
28 | * steps, most likely based on previously set session data |
||
29 | * (e.g. a checkbox field or a dropdown). |
||
30 | * |
||
31 | * @var array|string |
||
32 | */ |
||
33 | public static $next_steps; |
||
34 | |||
35 | /** |
||
36 | * Each {@link MultiForm} subclass needs at least |
||
37 | * one step which is marked as the "final" one |
||
38 | * and triggers the {@link MultiForm->finish()} |
||
39 | * method that wraps up the whole submission. |
||
40 | * |
||
41 | * @var boolean |
||
42 | */ |
||
43 | public static $is_final_step = false; |
||
44 | |||
45 | /** |
||
46 | * This variable determines whether a user can use |
||
47 | * the "back" action from this step. |
||
48 | * |
||
49 | * @TODO This does not check if the arbitrarily chosen step |
||
50 | * using the step indicator is actually a previous step, so |
||
51 | * unless you remove the link from the indicator template, or |
||
52 | * type in StepID=23 to the address bar you can still go back |
||
53 | * using the step indicator. |
||
54 | * |
||
55 | * @var boolean |
||
56 | */ |
||
57 | protected static $can_go_back = true; |
||
58 | |||
59 | /** |
||
60 | * Title of this step. |
||
61 | * |
||
62 | * Used for the step indicator templates. |
||
63 | * |
||
64 | * @var string |
||
65 | */ |
||
66 | protected $title; |
||
67 | |||
68 | /** |
||
69 | * Form class that this step is directly related to. |
||
70 | * |
||
71 | * @var MultiForm subclass |
||
72 | */ |
||
73 | protected $form; |
||
74 | |||
75 | /** |
||
76 | * List of additional CSS classes for this step |
||
77 | * |
||
78 | * @var array $extraClasses |
||
79 | */ |
||
80 | protected $extraClasses = array(); |
||
81 | |||
82 | /** |
||
83 | * Temporary cache to increase the performance for repeated look ups. |
||
84 | * |
||
85 | * @var array $cache |
||
86 | */ |
||
87 | protected $cache = array(); |
||
88 | |||
89 | /** |
||
90 | * Form fields to be rendered with this step. |
||
91 | * (Form object is created in {@link MultiForm}. |
||
92 | * |
||
93 | * This function needs to be implemented on your |
||
94 | * subclasses of MultiFormStep. |
||
95 | * |
||
96 | * @return FieldList |
||
97 | */ |
||
98 | public function getFields() { |
||
101 | |||
102 | /** |
||
103 | * Additional form actions to be added to this step. |
||
104 | * (Form object is created in {@link MultiForm}. |
||
105 | * |
||
106 | * Note: This is optional, and is to be implemented |
||
107 | * on your subclasses of MultiFormStep. |
||
108 | * |
||
109 | * @return FieldList |
||
110 | */ |
||
111 | public function getExtraActions() { |
||
114 | |||
115 | /** |
||
116 | * Get a validator specific to this form. |
||
117 | * The form is automatically validated in {@link Form->httpSubmission()}. |
||
118 | * |
||
119 | * @return Validator |
||
120 | */ |
||
121 | public function getValidator() { |
||
124 | |||
125 | /** |
||
126 | * Accessor method for $this->title |
||
127 | * |
||
128 | * @return string Title of this step |
||
129 | */ |
||
130 | public function getTitle() { |
||
133 | |||
134 | /** |
||
135 | * Gets a direct link to this step (only works |
||
136 | * if you're allowed to skip steps, or this step |
||
137 | * has already been saved to the database |
||
138 | * for the current {@link MultiFormSession}). |
||
139 | * |
||
140 | * @return string Relative URL to this step |
||
141 | */ |
||
142 | public function Link() { |
||
146 | |||
147 | /** |
||
148 | * Unserialize stored session data and return it. |
||
149 | * This is used for loading data previously saved |
||
150 | * in session back into the form. |
||
151 | * |
||
152 | * You need to overload this method onto your own |
||
153 | * step if you require custom loading. An example |
||
154 | * would be selective loading specific fields, leaving |
||
155 | * others that are not required. |
||
156 | * |
||
157 | * @return array |
||
158 | */ |
||
159 | public function loadData() { |
||
162 | |||
163 | /** |
||
164 | * Save the data for this step into session, serializing it first. |
||
165 | * |
||
166 | * To selectively save fields, instead of it all, this |
||
167 | * method would need to be overloaded on your step class. |
||
168 | * |
||
169 | * @param array $data The processed data from save() on {@link MultiForm} |
||
170 | */ |
||
171 | public function saveData($data) { |
||
175 | |||
176 | /** |
||
177 | * Save the data on this step into an object, |
||
178 | * similiar to {@link Form->saveInto()} - by building |
||
179 | * a stub form from {@link getFields()}. This is necessary |
||
180 | * to trigger each {@link FormField->saveInto()} method |
||
181 | * individually, rather than assuming that all data |
||
182 | * serialized through {@link saveData()} can be saved |
||
183 | * as a simple value outside of the original FormField context. |
||
184 | * |
||
185 | * @param DataObject $obj |
||
186 | */ |
||
187 | public function saveInto($obj) { |
||
198 | |||
199 | /** |
||
200 | * Custom validation for a step. In most cases, it should be sufficient |
||
201 | * to have built-in validation through the {@link Validator} class |
||
202 | * on the {@link getValidator()} method. |
||
203 | * |
||
204 | * Use {@link Form->sessionMessage()} to feed back validation messages |
||
205 | * to the user. Please don't redirect from this method, |
||
206 | * this is taken care of in {@link next()}. |
||
207 | * |
||
208 | * @param array $data Request data |
||
209 | * @param Form $form |
||
210 | * @return boolean Validation success |
||
211 | */ |
||
212 | public function validateStep($data, $form) { |
||
215 | |||
216 | /** |
||
217 | * Returns the first value of $next_step |
||
218 | * |
||
219 | * @return string Classname of a {@link MultiFormStep} subclass |
||
220 | */ |
||
221 | public function getNextStep() { |
||
238 | |||
239 | /** |
||
240 | * Returns the next step to the current step in the database. |
||
241 | * |
||
242 | * This will only return something if you've previously visited |
||
243 | * the step ahead of the current step, and then gone back a step. |
||
244 | * |
||
245 | * @return MultiFormStep|boolean |
||
246 | */ |
||
247 | public function getNextStepFromDatabase() { |
||
260 | |||
261 | /** |
||
262 | * Accessor method for self::$next_steps |
||
263 | * |
||
264 | * @return string|array |
||
265 | */ |
||
266 | public function getNextSteps() { |
||
269 | |||
270 | /** |
||
271 | * Returns the previous step, if there is one. |
||
272 | * |
||
273 | * To determine if there is a previous step, we check the database to see if there's |
||
274 | * a previous step for this multi form session ID. |
||
275 | * |
||
276 | * @return string Classname of a {@link MultiFormStep} subclass |
||
277 | */ |
||
278 | public function getPreviousStep() { |
||
292 | |||
293 | /** |
||
294 | * Retrieves the previous step class record from the database. |
||
295 | * |
||
296 | * This will only return a record if you've previously been on the step. |
||
297 | * |
||
298 | * @return MultiFormStep subclass |
||
299 | */ |
||
300 | public function getPreviousStepFromDatabase() { |
||
305 | |||
306 | /** |
||
307 | * Get the text to the use on the button to the previous step. |
||
308 | * @return string |
||
309 | */ |
||
310 | public function getPrevText() { |
||
313 | |||
314 | /** |
||
315 | * Get the text to use on the button to the next step. |
||
316 | * @return string |
||
317 | */ |
||
318 | public function getNextText() { |
||
321 | |||
322 | /** |
||
323 | * Get the text to use on the button to submit the form. |
||
324 | * @return string |
||
325 | */ |
||
326 | public function getSubmitText() { |
||
329 | |||
330 | /** |
||
331 | * Sets the form that this step is directly related to. |
||
332 | * |
||
333 | * @param MultiForm subclass $form |
||
334 | */ |
||
335 | public function setForm($form) { |
||
338 | |||
339 | /** |
||
340 | * @return Form |
||
341 | */ |
||
342 | public function getForm() { |
||
345 | |||
346 | // ##################### Utility #################### |
||
347 | |||
348 | /** |
||
349 | * Determines whether the user is able to go back using the "action_back" |
||
350 | * Determines whether the user is able to go back using the "action_back" |
||
351 | * Determines whether the user is able to go back using the "action_back" |
||
352 | * form action, based on the boolean value of $can_go_back. |
||
353 | * |
||
354 | * @return boolean |
||
355 | */ |
||
356 | public function canGoBack() { |
||
359 | |||
360 | /** |
||
361 | * Determines whether this step is the final step in the multi-step process or not, |
||
362 | * based on the variable $is_final_step - which must be defined on at least one step. |
||
363 | * |
||
364 | * @return boolean |
||
365 | */ |
||
366 | public function isFinalStep() { |
||
369 | |||
370 | /** |
||
371 | * Determines whether the currently viewed step is the current step set in the session. |
||
372 | * This assumes you are checking isCurrentStep() against a data record of a MultiFormStep |
||
373 | * subclass, otherwise it doesn't work. An example of this is using a singleton instance - it won't |
||
374 | * work because there's no data. |
||
375 | * |
||
376 | * @return boolean |
||
377 | */ |
||
378 | public function isCurrentStep() { |
||
381 | |||
382 | /** |
||
383 | * Add a CSS-class to the step. If needed, multiple classes can be added by delimiting a string with spaces. |
||
384 | * |
||
385 | * @param string $class A string containing a classname or several class names delimited by a space. |
||
386 | * @return MultiFormStep |
||
387 | */ |
||
388 | View Code Duplication | public function addExtraClass($class) { |
|
397 | |||
398 | /** |
||
399 | * Remove a CSS-class from the step. Multiple classes names can be passed through as a space delimited string. |
||
400 | * |
||
401 | * @param string $class |
||
402 | * @return MultiFormStep |
||
403 | */ |
||
404 | View Code Duplication | public function removeExtraClass($class) { |
|
413 | |||
414 | /** |
||
415 | * @return string |
||
416 | */ |
||
417 | public function getExtraClasses() { |
||
420 | |||
421 | /** |
||
422 | * Returns the submitted value, if any, of any steps. |
||
423 | * |
||
424 | * @param string $fromStep (classname) |
||
425 | * @param string $key |
||
426 | * @return mixed |
||
427 | */ |
||
428 | public function getValueFromOtherStep($fromStep, $key) { |
||
442 | |||
443 | /** |
||
444 | * allows to get a value from another step copied over |
||
445 | * |
||
446 | * @param FieldList $fields |
||
447 | * @param string $formStep |
||
448 | * @param string $fieldName |
||
449 | * @param string $fieldNameTarget (optional) |
||
450 | */ |
||
451 | public function copyValueFromOtherStep(FieldList $fields, $formStep, $fieldName, $fieldNameTarget = null) { |
||
457 | } |
||
458 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.