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 QuizController 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 QuizController, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
9 | class QuizController extends GameController |
||
10 | { |
||
11 | /** |
||
12 | * |
||
13 | * @var gameService |
||
14 | */ |
||
15 | protected $gameService; |
||
16 | |||
17 | public function playAction() |
||
18 | { |
||
19 | $redirectFb = $this->checkFbRegistration($this->user, $this->game); |
||
20 | if ($redirectFb) { |
||
21 | return $redirectFb; |
||
22 | } |
||
23 | |||
24 | $entry = $this->getGameService()->play($this->game, $this->user); |
||
25 | View Code Duplication | if (!$entry) { |
|
|
|||
26 | // the user has already taken part of this game and the participation limit has been reached |
||
27 | $this->flashMessenger()->addMessage('Vous avez déjà participé!'); |
||
28 | |||
29 | return $this->redirect()->toUrl( |
||
30 | $this->frontendUrl()->fromRoute( |
||
31 | $this->game->getClassType() . '/result', |
||
32 | array('id' => $this->game->getIdentifier()) |
||
33 | ) |
||
34 | ); |
||
35 | } |
||
36 | |||
37 | $reply = $this->getGameService()->getQuizReplyMapper()->getLastGameReply($entry); |
||
38 | $userAnswers = array(); |
||
39 | if($reply){ |
||
40 | foreach ($reply->getAnswers() as $answer) { |
||
41 | $userAnswers[$answer->getQuestionId()][$answer->getAnswerId()] = true; |
||
42 | $userAnswers[$answer->getQuestionId()]['answer'] = $answer->getAnswer(); |
||
43 | } |
||
44 | } |
||
45 | |||
46 | $questions = $this->game->getQuestions(); |
||
47 | $totalQuestions = count($questions); |
||
48 | |||
49 | $form = new Form(); |
||
50 | |||
51 | $inputFilter = new \Zend\InputFilter\InputFilter(); |
||
52 | $factory = new InputFactory(); |
||
53 | |||
54 | $i = 0; |
||
55 | $j = 0; |
||
56 | $elementData = array(); |
||
57 | $explanations = array(); |
||
58 | |||
59 | foreach ($questions as $q) { |
||
60 | if ( |
||
61 | ($this->game->getQuestionGrouping() > 0 && $i % $this->game->getQuestionGrouping() === 0) || |
||
62 | ($i === 0 && $this->game->getQuestionGrouping() === 0) |
||
63 | ) { |
||
64 | $fieldsetName = 'questionGroup' . ++ $j; |
||
65 | $fieldset = new Fieldset($fieldsetName); |
||
66 | } |
||
67 | $name = 'q' . $q->getId(); |
||
68 | $fieldsetFilter = new \Zend\InputFilter\InputFilter(); |
||
69 | if ($q->getType() === 0) { |
||
70 | $element = new Element\Radio($name); |
||
71 | $values = array(); |
||
72 | $valuesSortedByPosition = array(); |
||
73 | foreach ($q->getAnswers() as $a) { |
||
74 | $values[$a->getPosition()] = array( |
||
75 | 'id' => $a->getId(), |
||
76 | 'position' => $a->getPosition(), |
||
77 | 'answer' => $a->getAnswer(), |
||
78 | ); |
||
79 | $explanations[$a->getAnswer()] = $a->getExplanation(); |
||
80 | } |
||
81 | ksort($values); |
||
82 | foreach ($values as $key => $value) { |
||
83 | $valuesSortedByPosition[$value['id']] = $value['answer']; |
||
84 | } |
||
85 | $element->setValueOptions($valuesSortedByPosition); |
||
86 | $element->setLabelOptions(array("disable_html_escape"=>true)); |
||
87 | $elementData[$q->getId()] = new Element\Hidden($name.'-data'); |
||
88 | } elseif ($q->getType() === 1) { |
||
89 | $element = new Element\MultiCheckbox($name); |
||
90 | $values = array(); |
||
91 | $valuesSortedByPosition = array(); |
||
92 | foreach ($q->getAnswers() as $a) { |
||
93 | $values[$a->getId()] = array( |
||
94 | 'id' => $a->getId(), |
||
95 | 'position' => $a->getPosition(), |
||
96 | 'answer' => $a->getAnswer(), |
||
97 | ); |
||
98 | $explanations[$a->getAnswer()] = $a->getExplanation(); |
||
99 | $elementData[$a->getId()] = new Element\Hidden($name.'-'.$a->getId().'-data'); |
||
100 | } |
||
101 | |||
102 | foreach ($values as $key => $value) { |
||
103 | $valuesSortedByPosition[$value['id']] = $value['answer']; |
||
104 | } |
||
105 | |||
106 | $element->setValueOptions($valuesSortedByPosition); |
||
107 | $element->setLabelOptions(array("disable_html_escape"=>true)); |
||
108 | } elseif ($q->getType() == 2) { |
||
109 | $element = new Element\Textarea($name); |
||
110 | if(isset($userAnswers[$q->getId()])) $element->setValue($userAnswers[$q->getId()]['answer']); |
||
111 | $elementData[$q->getId()] = new Element\Hidden($name.'-data'); |
||
112 | } |
||
113 | |||
114 | $element->setLabel($q->getQuestion()); |
||
115 | $fieldset->add($element); |
||
116 | if (is_array($elementData)) { |
||
117 | foreach ($elementData as $id => $e) { |
||
118 | $fieldset->add($e); |
||
119 | } |
||
120 | } else { |
||
121 | $fieldset->add($elementData); |
||
122 | } |
||
123 | |||
124 | $fieldsetFilter->add($factory->createInput(array( |
||
125 | 'name' => $name, |
||
126 | 'required' => true, |
||
127 | 'validators'=>array( |
||
128 | array( |
||
129 | 'name'=>'NotEmpty', |
||
130 | 'options'=>array( |
||
131 | 'messages'=>array( |
||
132 | 'isEmpty' => 'Merci de répondre à la question.', |
||
133 | ), |
||
134 | ), |
||
135 | ), |
||
136 | ) |
||
137 | ))); |
||
138 | |||
139 | $i ++; |
||
140 | if ( |
||
141 | ($this->game->getQuestionGrouping() > 0 && $i % $this->game->getQuestionGrouping() == 0 && $i > 0) || |
||
142 | $i == $totalQuestions |
||
143 | ) { |
||
144 | $form->add($fieldset); |
||
145 | $inputFilter->add($fieldsetFilter, $fieldsetName); |
||
146 | } |
||
147 | } |
||
148 | |||
149 | $form->setInputFilter($inputFilter); |
||
150 | |||
151 | if ($this->getRequest()->isPost()) { |
||
152 | $data = $this->getRequest()->getPost()->toArray(); |
||
153 | $form->setData($data); |
||
154 | |||
155 | // Improve it : I don't validate the form in a timer quiz as no answer is mandatory |
||
156 | if ($this->game->getTimer() || $form->isValid()) { |
||
157 | unset($data['submitForm']); |
||
158 | $entry = $this->getGameService()->createQuizReply($data, $this->game, $this->user); |
||
159 | } |
||
160 | |||
161 | return $this->redirect()->toUrl( |
||
162 | $this->frontendUrl()->fromRoute( |
||
163 | $this->game->getClassType() . '/'. $this->game->nextStep($this->params('action')), |
||
164 | array('id' => $this->game->getIdentifier()) |
||
165 | ) |
||
166 | ); |
||
167 | } |
||
168 | |||
169 | $viewModel = $this->buildView($this->game); |
||
170 | $viewModel->setVariables(array( |
||
171 | 'questions' => $questions, |
||
172 | 'form' => $form, |
||
173 | 'explanations' => $explanations, |
||
174 | 'flashMessages' => $this->flashMessenger()->getMessages(), |
||
175 | )); |
||
176 | |||
177 | return $viewModel; |
||
178 | } |
||
179 | |||
180 | public function resultAction() |
||
181 | { |
||
182 | $statusMail = null; |
||
183 | $prediction = false; |
||
184 | $userTimer = array(); |
||
185 | $secretKey = strtoupper(substr(sha1(uniqid('pg_', true).'####'.time()), 0, 15)); |
||
186 | $socialLinkUrl = $this->frontendUrl()->fromRoute( |
||
187 | 'quiz', |
||
188 | array('id' => $this->game->getIdentifier()), |
||
189 | array('force_canonical' => true) |
||
190 | ).'?key='.$secretKey; |
||
191 | |||
192 | // With core shortener helper |
||
193 | $socialLinkUrl = $this->shortenUrl()->shortenUrl($socialLinkUrl); |
||
194 | |||
195 | $lastEntry = $this->getGameService()->findLastEntry($this->game, $this->user); |
||
196 | View Code Duplication | if (!$lastEntry) { |
|
197 | return $this->redirect()->toUrl( |
||
198 | $this->frontendUrl()->fromRoute( |
||
199 | 'quiz', |
||
200 | array('id' => $this->game->getIdentifier()), |
||
201 | array('force_canonical' => true) |
||
202 | ) |
||
203 | ); |
||
204 | } |
||
205 | |||
206 | // je compte les bonnes réponses et le ratio |
||
207 | $maxCorrectAnswers = $this->game->getMaxCorrectAnswers(); |
||
208 | $winner = $lastEntry->getWinner(); |
||
209 | $reply = $this->getGameService()->getQuizReplyMapper()->getLastGameReply($lastEntry); |
||
210 | $userCorrectAnswers = 0; |
||
211 | $correctAnswers = array(); |
||
212 | $userAnswers = array(); |
||
213 | |||
214 | foreach ($reply->getAnswers() as $answer) { |
||
215 | if ($answer->getCorrect()) { |
||
216 | $correctAnswers[$answer->getQuestionId()][$answer->getAnswerId()] = true; |
||
217 | ++$userCorrectAnswers; |
||
218 | } |
||
219 | $userAnswers[$answer->getQuestionId()][$answer->getAnswerId()] = true; |
||
220 | $userAnswers[$answer->getQuestionId()]['answer'] = $answer->getAnswer(); |
||
221 | } |
||
222 | |||
223 | $ratioCorrectAnswers = 0; |
||
224 | if ($maxCorrectAnswers > 0) { |
||
225 | $ratioCorrectAnswers = ($userCorrectAnswers / $maxCorrectAnswers) * 100; |
||
226 | } else { |
||
227 | $ratioCorrectAnswers = 100; |
||
228 | } |
||
229 | |||
230 | if ($this->game->getTimer()) { |
||
231 | $timer = $this->getGameService()->getEntryMapper()->findOneBy( |
||
232 | array('game' => $this->game, 'user'=> $this->user) |
||
233 | ); |
||
234 | $start = $timer->getCreatedAt()->format('U'); |
||
235 | $end = $timer->getUpdatedAt()->format('U'); |
||
236 | $userTimer = array( |
||
237 | 'ratio' => $ratioCorrectAnswers, |
||
238 | 'timer' => $end - $start, |
||
239 | ); |
||
240 | } |
||
241 | |||
242 | // Je prépare le tableau des bonnes réponses trouvées et non trouvées |
||
243 | $ga = array(); |
||
244 | $questions = $this->game->getQuestions(); |
||
245 | foreach ($questions as $q) { |
||
246 | foreach ($q->getAnswers() as $a) { |
||
247 | if ($a->getCorrect()) { |
||
248 | $ga[$q->getId()]['question'] = $q; |
||
249 | $ga[$q->getId()]['answers'][$a->getId()]['answer'] = $a->getAnswer(); |
||
250 | $ga[$q->getId()]['answers'][$a->getId()]['explanation'] = $a->getExplanation(); |
||
251 | $ga[$q->getId()]['answers'][$a->getId()]['userAnswer'] = isset($userAnswers[$q->getId()]) ? |
||
252 | $userAnswers[$q->getId()]['answer'] : |
||
253 | false; |
||
254 | |||
255 | View Code Duplication | if (isset($correctAnswers[$q->getId()]) && isset($correctAnswers[$q->getId()][$a->getId()])) { |
|
256 | $ga[$q->getId()]['answers'][$a->getId()]['found'] = true; |
||
257 | } else { |
||
258 | $ga[$q->getId()]['answers'][$a->getId()]['found'] = false; |
||
259 | } |
||
260 | |||
261 | View Code Duplication | if (isset($userAnswers[$q->getId()]) && isset($userAnswers[$q->getId()][$a->getId()])) { |
|
262 | $ga[$q->getId()]['answers'][$a->getId()]['yourChoice'] = true; |
||
263 | } else { |
||
264 | $ga[$q->getId()]['answers'][$a->getId()]['yourChoice'] = false; |
||
265 | } |
||
266 | |||
267 | $ga[$q->getId()]['answers'][$a->getId()]['correctAnswers'] = true; |
||
268 | } else { |
||
269 | $ga[$q->getId()]['question'] = $q; |
||
270 | $ga[$q->getId()]['answers'][$a->getId()]['answer'] = $a->getAnswer(); |
||
271 | $ga[$q->getId()]['answers'][$a->getId()]['explanation'] = $a->getExplanation(); |
||
272 | $ga[$q->getId()]['answers'][$a->getId()]['correctAnswers'] = false; |
||
273 | $ga[$q->getId()]['answers'][$a->getId()]['userAnswer'] = isset($userAnswers[$q->getId()]) ? |
||
274 | $userAnswers[$q->getId()]['answer'] : |
||
275 | false; |
||
276 | |||
277 | View Code Duplication | if (isset($userAnswers[$q->getId()]) && isset($userAnswers[$q->getId()][$a->getId()])) { |
|
278 | $ga[$q->getId()]['answers'][$a->getId()]['yourChoice'] = true; |
||
279 | } else { |
||
280 | $ga[$q->getId()]['answers'][$a->getId()]['yourChoice'] = false; |
||
281 | } |
||
282 | } |
||
283 | } |
||
284 | // if only one question is a prediction, we can't determine if it's a winner or looser |
||
285 | if ($q->getPrediction()) { |
||
286 | $prediction = true; |
||
287 | } |
||
288 | } |
||
289 | |||
290 | $form = $this->getServiceLocator()->get('playgroundgame_sharemail_form'); |
||
291 | $form->setAttribute('method', 'post'); |
||
292 | |||
293 | $viewModel = $this->buildView($this->game); |
||
294 | |||
295 | $this->getGameService()->sendMail($this->game, $this->user, $lastEntry); |
||
296 | |||
297 | $viewModel->setVariables(array( |
||
298 | 'entry' => $lastEntry, |
||
299 | 'statusMail' => $statusMail, |
||
300 | 'form' => $form, |
||
301 | 'winner' => $winner, |
||
302 | 'prediction' => $prediction, |
||
303 | 'userCorrectAnswers' => $userCorrectAnswers, |
||
304 | 'maxCorrectAnswers' => $maxCorrectAnswers, |
||
305 | 'ratioCorrectAnswers' => $ratioCorrectAnswers, |
||
306 | 'gameCorrectAnswers' => $ga, |
||
307 | 'socialLinkUrl' => $socialLinkUrl, |
||
308 | 'secretKey' => $secretKey, |
||
309 | 'userTimer' => $userTimer, |
||
310 | 'userAnswers' => $userAnswers, |
||
311 | 'flashMessages' => $this->flashMessenger()->getMessages(), |
||
312 | )); |
||
313 | |||
314 | return $viewModel; |
||
315 | } |
||
316 | |||
317 | View Code Duplication | public function fbshareAction() |
|
338 | |||
339 | View Code Duplication | public function fbrequestAction() |
|
359 | |||
360 | View Code Duplication | public function tweetAction() |
|
380 | |||
381 | View Code Duplication | public function googleAction() |
|
401 | |||
402 | public function getGameService() |
||
410 | } |
||
411 |
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.