|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace PlaygroundGame\Controller\Admin; |
|
4
|
|
|
|
|
5
|
|
|
use PlaygroundGame\Service\Game as AdminGameService; |
|
6
|
|
|
use PlaygroundGame\Entity\PostVote; |
|
7
|
|
|
use Zend\View\Model\ViewModel; |
|
8
|
|
|
|
|
9
|
|
|
class PostVoteController extends GameController |
|
10
|
|
|
{ |
|
11
|
|
|
/** |
|
12
|
|
|
* @var GameService |
|
13
|
|
|
*/ |
|
14
|
|
|
protected $adminGameService; |
|
15
|
|
|
|
|
16
|
|
View Code Duplication |
public function formAction() |
|
|
|
|
|
|
17
|
|
|
{ |
|
18
|
|
|
$service = $this->getAdminGameService(); |
|
19
|
|
|
$gameId = $this->getEvent()->getRouteMatch()->getParam('gameId'); |
|
20
|
|
|
if (!$gameId) { |
|
21
|
|
|
return $this->redirect()->toRoute('admin/playgroundgame/list'); |
|
22
|
|
|
} |
|
23
|
|
|
$game = $service->getGameMapper()->findById($gameId); |
|
24
|
|
|
$form = $service->getPostVoteFormMapper()->findByGame($game); |
|
25
|
|
|
|
|
26
|
|
|
// I use the wonderful Form Generator to create the Post & Vote form |
|
27
|
|
|
$this->forward()->dispatch( |
|
28
|
|
|
'PlaygroundCore\Controller\Formgen', |
|
29
|
|
|
array( |
|
30
|
|
|
'controller' => 'PlaygroundCore\Controller\Formgen', |
|
31
|
|
|
'action' => 'create' |
|
32
|
|
|
) |
|
33
|
|
|
); |
|
34
|
|
|
|
|
35
|
|
|
if ($this->getRequest()->isPost()) { |
|
|
|
|
|
|
36
|
|
|
$data = $this->getRequest()->getPost()->toArray(); |
|
|
|
|
|
|
37
|
|
|
$form = $service->createForm($data, $game, $form); |
|
38
|
|
|
if ($form) { |
|
39
|
|
|
$this->flashMessenger()->setNamespace('playgroundgame')->addMessage('The form was created'); |
|
40
|
|
|
} |
|
41
|
|
|
} |
|
42
|
|
|
$formTemplate=''; |
|
43
|
|
|
if ($form) { |
|
44
|
|
|
$formTemplate = $form->getFormTemplate(); |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
|
|
return array( |
|
48
|
|
|
'form' => $form, |
|
49
|
|
|
'formTemplate' => $formTemplate, |
|
50
|
|
|
'gameId' => $gameId, |
|
51
|
|
|
'game' => $game, |
|
52
|
|
|
); |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
|
View Code Duplication |
public function createPostVoteAction() |
|
|
|
|
|
|
56
|
|
|
{ |
|
57
|
|
|
$service = $this->getAdminGameService(); |
|
58
|
|
|
$viewModel = new ViewModel(); |
|
59
|
|
|
$viewModel->setTemplate('playground-game/post-vote/postvote'); |
|
60
|
|
|
|
|
61
|
|
|
$gameForm = new ViewModel(); |
|
62
|
|
|
$gameForm->setTemplate('playground-game/game/game-form'); |
|
63
|
|
|
|
|
64
|
|
|
$postVote = new PostVote(); |
|
65
|
|
|
|
|
66
|
|
|
$form = $this->getServiceLocator()->get('playgroundgame_postvote_form'); |
|
67
|
|
|
$form->bind($postVote); |
|
68
|
|
|
$form->get('submit')->setAttribute('label', 'Add'); |
|
69
|
|
|
$form->setAttribute( |
|
70
|
|
|
'action', |
|
71
|
|
|
$this->url()->fromRoute( |
|
72
|
|
|
'admin/playgroundgame/create-postvote', |
|
73
|
|
|
array('gameId' => 0) |
|
74
|
|
|
) |
|
75
|
|
|
); |
|
76
|
|
|
$form->setAttribute('method', 'post'); |
|
77
|
|
|
|
|
78
|
|
|
$request = $this->getRequest(); |
|
79
|
|
|
if ($request->isPost()) { |
|
80
|
|
|
$data = array_replace_recursive( |
|
81
|
|
|
$this->getRequest()->getPost()->toArray(), |
|
|
|
|
|
|
82
|
|
|
$this->getRequest()->getFiles()->toArray() |
|
|
|
|
|
|
83
|
|
|
); |
|
84
|
|
|
if (empty($data['prizes'])) { |
|
85
|
|
|
$data['prizes'] = array(); |
|
86
|
|
|
} |
|
87
|
|
|
$game = $service->create($data, $postVote, 'playgroundgame_postvote_form'); |
|
88
|
|
|
if ($game) { |
|
89
|
|
|
$this->flashMessenger()->setNamespace('playgroundgame')->addMessage('The game was created'); |
|
90
|
|
|
|
|
91
|
|
|
return $this->redirect()->toRoute('admin/playgroundgame/list'); |
|
92
|
|
|
} |
|
93
|
|
|
} |
|
94
|
|
|
$gameForm->setVariables(array('form' => $form, 'game' => $postVote)); |
|
95
|
|
|
$viewModel->addChild($gameForm, 'game_form'); |
|
96
|
|
|
|
|
97
|
|
|
return $viewModel->setVariables(array('form' => $form, 'title' => 'Create Post & Vote')); |
|
98
|
|
|
} |
|
99
|
|
|
|
|
100
|
|
View Code Duplication |
public function editPostVoteAction() |
|
|
|
|
|
|
101
|
|
|
{ |
|
102
|
|
|
$service = $this->getAdminGameService(); |
|
103
|
|
|
$gameId = $this->getEvent()->getRouteMatch()->getParam('gameId'); |
|
104
|
|
|
|
|
105
|
|
|
if (!$gameId) { |
|
106
|
|
|
return $this->redirect()->toRoute('admin/playgroundgame/create-postvote'); |
|
107
|
|
|
} |
|
108
|
|
|
|
|
109
|
|
|
$game = $service->getGameMapper()->findById($gameId); |
|
110
|
|
|
$viewModel = new ViewModel(); |
|
111
|
|
|
$viewModel->setTemplate('playground-game/post-vote/postvote'); |
|
112
|
|
|
|
|
113
|
|
|
$gameForm = new ViewModel(); |
|
114
|
|
|
$gameForm->setTemplate('playground-game/game/game-form'); |
|
115
|
|
|
|
|
116
|
|
|
$form = $this->getServiceLocator()->get('playgroundgame_postvote_form'); |
|
117
|
|
|
$form->setAttribute( |
|
118
|
|
|
'action', |
|
119
|
|
|
$this->url()->fromRoute( |
|
120
|
|
|
'admin/playgroundgame/edit-postvote', |
|
121
|
|
|
array('gameId' => $gameId) |
|
122
|
|
|
) |
|
123
|
|
|
); |
|
124
|
|
|
$form->setAttribute('method', 'post'); |
|
125
|
|
|
|
|
126
|
|
|
if ($game->getFbAppId()) { |
|
127
|
|
|
$appIds = $form->get('fbAppId')->getOption('value_options'); |
|
128
|
|
|
$appIds[$game->getFbAppId()] = $game->getFbAppId(); |
|
129
|
|
|
$form->get('fbAppId')->setAttribute('options', $appIds); |
|
130
|
|
|
} |
|
131
|
|
|
|
|
132
|
|
|
$gameOptions = $this->getAdminGameService()->getOptions(); |
|
133
|
|
|
$gameStylesheet = $gameOptions->getMediaPath() . '/' . 'stylesheet_'. $game->getId(). '.css'; |
|
134
|
|
|
if (is_file($gameStylesheet)) { |
|
135
|
|
|
$values = $form->get('stylesheet')->getValueOptions(); |
|
136
|
|
|
$values[$gameStylesheet] = 'Style personnalisé de ce jeu'; |
|
137
|
|
|
|
|
138
|
|
|
$form->get('stylesheet')->setAttribute('options', $values); |
|
139
|
|
|
} |
|
140
|
|
|
|
|
141
|
|
|
$form->bind($game); |
|
142
|
|
|
|
|
143
|
|
|
if ($this->getRequest()->isPost()) { |
|
|
|
|
|
|
144
|
|
|
$data = array_replace_recursive( |
|
145
|
|
|
$this->getRequest()->getPost()->toArray(), |
|
|
|
|
|
|
146
|
|
|
$this->getRequest()->getFiles()->toArray() |
|
|
|
|
|
|
147
|
|
|
); |
|
148
|
|
|
if (empty($data['prizes'])) { |
|
149
|
|
|
$data['prizes'] = array(); |
|
150
|
|
|
} |
|
151
|
|
|
$result = $service->edit($data, $game, 'playgroundgame_postvote_form'); |
|
152
|
|
|
|
|
153
|
|
|
if ($result) { |
|
154
|
|
|
return $this->redirect()->toRoute('admin/playgroundgame/list'); |
|
155
|
|
|
} |
|
156
|
|
|
} |
|
157
|
|
|
|
|
158
|
|
|
$gameForm->setVariables(array('form' => $form, 'game' => $game)); |
|
159
|
|
|
$viewModel->addChild($gameForm, 'game_form'); |
|
160
|
|
|
|
|
161
|
|
|
return $viewModel->setVariables(array('form' => $form, 'title' => 'Edit Post & Vote')); |
|
162
|
|
|
} |
|
163
|
|
|
|
|
164
|
|
View Code Duplication |
public function modListAction() |
|
|
|
|
|
|
165
|
|
|
{ |
|
166
|
|
|
$service = $this->getAdminGameService(); |
|
167
|
|
|
$posts = $service->getPostVotePostMapper()->findBy(array('status' => 1)); |
|
168
|
|
|
|
|
169
|
|
|
if (is_array($posts)) { |
|
170
|
|
|
$paginator = new \Zend\Paginator\Paginator(new \Zend\Paginator\Adapter\ArrayAdapter($posts)); |
|
171
|
|
|
$paginator->setItemCountPerPage(10); |
|
172
|
|
|
$paginator->setCurrentPageNumber($this->getEvent()->getRouteMatch()->getParam('p')); |
|
173
|
|
|
} else { |
|
174
|
|
|
$paginator = $posts; |
|
175
|
|
|
} |
|
176
|
|
|
|
|
177
|
|
|
return array('posts' => $paginator); |
|
178
|
|
|
} |
|
179
|
|
|
|
|
180
|
|
|
public function moderationEditAction() |
|
181
|
|
|
{ |
|
182
|
|
|
$service = $this->getAdminGameService(); |
|
183
|
|
|
$postId = $this->getEvent()->getRouteMatch()->getParam('postId'); |
|
184
|
|
|
$status = $this->getEvent()->getRouteMatch()->getParam('status'); |
|
185
|
|
|
|
|
186
|
|
|
if (!$postId) { |
|
187
|
|
|
return $this->redirect()->toUrl($this->url()->fromRoute('admin/postvote/entry', array('gameId' => 0))); |
|
188
|
|
|
} |
|
189
|
|
|
$post = $service->getPostVotePostMapper()->findById($postId); |
|
190
|
|
|
|
|
191
|
|
|
if (! $post) { |
|
192
|
|
|
return $this->redirect()->toUrl($this->url()->fromRoute('admin/postvote/entry', array('gameId' => 0))); |
|
193
|
|
|
} |
|
194
|
|
|
$game = $post->getPostvote(); |
|
195
|
|
|
|
|
196
|
|
|
if ($status && $status=='validation') { |
|
197
|
|
|
$post->setStatus(2); |
|
198
|
|
|
$service->getPostVotePostMapper()->update($post); |
|
199
|
|
|
|
|
200
|
|
|
return $this->redirect()->toUrl( |
|
201
|
|
|
$this->url()->fromRoute( |
|
202
|
|
|
'admin/postvote/entry', |
|
203
|
|
|
array('gameId' => $game->getId()) |
|
204
|
|
|
) |
|
205
|
|
|
); |
|
206
|
|
|
} elseif ($status && $status=='rejection') { |
|
207
|
|
|
$post->setStatus(9); |
|
208
|
|
|
$service->getPostVotePostMapper()->update($post); |
|
209
|
|
|
|
|
210
|
|
|
return $this->redirect()->toUrl( |
|
211
|
|
|
$this->url()->fromRoute( |
|
212
|
|
|
'admin/postvote/entry', |
|
213
|
|
|
array('gameId' => $game->getId()) |
|
214
|
|
|
) |
|
215
|
|
|
); |
|
216
|
|
|
} |
|
217
|
|
|
|
|
218
|
|
|
return array('game' => $game, 'post' => $post); |
|
219
|
|
|
} |
|
220
|
|
|
|
|
221
|
|
|
public function pushAction() |
|
222
|
|
|
{ |
|
223
|
|
|
$service = $this->getAdminGameService(); |
|
224
|
|
|
$postId = $this->getEvent()->getRouteMatch()->getParam('postId'); |
|
225
|
|
|
$pushed = $this->getEvent()->getRouteMatch()->getParam('pushed'); |
|
226
|
|
|
|
|
227
|
|
|
if (!$postId) { |
|
228
|
|
|
return $this->redirect()->toUrl($this->url()->fromRoute('admin/postvote/entry', array('gameId' => 0))); |
|
229
|
|
|
} |
|
230
|
|
|
$post = $service->getPostVotePostMapper()->findById($postId); |
|
231
|
|
|
|
|
232
|
|
|
if (! $post) { |
|
233
|
|
|
return $this->redirect()->toUrl($this->url()->fromRoute('admin/postvote/entry', array('gameId' => 0))); |
|
234
|
|
|
} |
|
235
|
|
|
$game = $post->getPostvote(); |
|
236
|
|
|
|
|
237
|
|
|
$post->setPushed($pushed); |
|
238
|
|
|
$service->getPostVotePostMapper()->update($post); |
|
239
|
|
|
|
|
240
|
|
|
return $this->redirect()->toUrl( |
|
241
|
|
|
$this->url()->fromRoute( |
|
242
|
|
|
'admin/postvote/entry', |
|
243
|
|
|
array('gameId' => $game->getId()) |
|
244
|
|
|
) |
|
245
|
|
|
); |
|
246
|
|
|
} |
|
247
|
|
|
|
|
248
|
|
|
public function getAdminGameService() |
|
249
|
|
|
{ |
|
250
|
|
|
if (!$this->adminGameService) { |
|
251
|
|
|
$this->adminGameService = $this->getServiceLocator()->get('playgroundgame_postvote_service'); |
|
|
|
|
|
|
252
|
|
|
} |
|
253
|
|
|
|
|
254
|
|
|
return $this->adminGameService; |
|
255
|
|
|
} |
|
256
|
|
|
|
|
257
|
|
|
public function setAdminGameService(AdminGameService $adminGameService) |
|
258
|
|
|
{ |
|
259
|
|
|
$this->adminGameService = $adminGameService; |
|
|
|
|
|
|
260
|
|
|
|
|
261
|
|
|
return $this; |
|
262
|
|
|
} |
|
263
|
|
|
} |
|
264
|
|
|
|
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.