Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15371 | Rev 16768 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
4384 eleazar 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Controller;
6
 
7
use Laminas\Db\Adapter\AdapterInterface;
16766 efrain 8
use LeadersLinked\Cache\CacheInterface;
4384 eleazar 9
use Laminas\Mvc\Controller\AbstractActionController;
10
use Laminas\Log\LoggerInterface;
11
use Laminas\View\Model\ViewModel;
12
use Laminas\View\Model\JsonModel;
13
use LeadersLinked\Library\Functions;
14
use LeadersLinked\Mapper\SurveyFormMapper;
15
use LeadersLinked\Form\SurveyFormForm;
16
use LeadersLinked\Model\SurveyForm;
17
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
18
 
19
class SurveyFormController extends AbstractActionController {
20
 
21
    /**
22
     *
23
     * @var AdapterInterface
24
     */
25
    private $adapter;
26
 
27
    /**
28
     *
16766 efrain 29
     * @var CacheInterface
4384 eleazar 30
     */
31
    private $cache;
32
 
33
    /**
34
     *
35
     * @var  LoggerInterface
36
     */
37
    private $logger;
38
 
39
    /**
40
     *
41
     * @var array
42
     */
43
    private $config;
44
 
45
    /**
46
     *
47
     * @param AdapterInterface $adapter
16766 efrain 48
     *@param CacheInterface $cache
4384 eleazar 49
     * @param LoggerInterface $logger
50
     * @param array $config
51
     */
52
    public function __construct($adapter, $cache, $logger, $config) {
53
        $this->adapter = $adapter;
54
        $this->cache = $cache;
55
        $this->logger = $logger;
56
        $this->config = $config;
57
    }
58
 
59
    public function indexAction() {
60
        $request = $this->getRequest();
61
        $currentUserPlugin = $this->plugin('currentUserPlugin');
62
        $currentCompany = $currentUserPlugin->getCompany();
63
        $currentUser = $currentUserPlugin->getUser();
64
 
65
 
66
        $request = $this->getRequest();
67
        if ($request->isGet()) {
68
 
69
            $headers = $request->getHeaders();
70
 
71
            $isJson = false;
72
            if ($headers->has('Accept')) {
73
                $accept = $headers->get('Accept');
74
 
75
                $prioritized = $accept->getPrioritized();
76
 
77
                foreach ($prioritized as $key => $value) {
78
                    $raw = trim($value->getRaw());
79
 
80
                    if (!$isJson) {
81
                        $isJson = strpos($raw, 'json');
82
                    }
83
                }
84
            }
85
 
86
            if ($isJson) {
87
                $search = $this->params()->fromQuery('search', []);
16766 efrain 88
                $search = empty($search['value']) ? '' :  Functions::sanitizeFilterString($search['value']);
4384 eleazar 89
 
15371 efrain 90
                $start = intval($this->params()->fromQuery('start', 0), 10);
4384 eleazar 91
                $records_x_page = intval($this->params()->fromQuery('length', 10), 10);
15371 efrain 92
                $page =  intval($start / $records_x_page);
93
                $page++;
94
 
4384 eleazar 95
                $order = $this->params()->fromQuery('order', []);
96
                $order_field = empty($order[0]['column']) ? 99 : intval($order[0]['column'], 10);
16766 efrain 97
                $order_direction = empty($order[0]['dir']) ? 'ASC' : Functions::sanitizeFilterString(filter_var($order[0]['dir']));
4384 eleazar 98
 
99
                $fields = ['name'];
100
                $order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'name';
101
 
102
                if (!in_array($order_direction, ['ASC', 'DESC'])) {
103
                    $order_direction = 'ASC';
104
                }
105
 
106
                $surveyMapper = SurveyFormMapper::getInstance($this->adapter);
107
                $paginator = $surveyMapper->fetchAllDataTableByCompanyId($currentCompany->id, $search, $page, $records_x_page, $order_field, $order_direction);
108
 
109
                $items = [];
110
                $records = $paginator->getCurrentItems();
15150 efrain 111
 
112
                $acl = $this->getEvent()->getViewModel()->getVariable('acl');
113
                $allowEdit = $acl->isAllowed($currentUser->usertype_id, 'survey/form/edit');
114
                $allowDelete = $acl->isAllowed($currentUser->usertype_id, 'survey/form/delete');
115
 
4500 eleazar 116
 
4384 eleazar 117
                foreach ($records as $record) {
4503 eleazar 118
 
4384 eleazar 119
                    $item = [
120
                        'id' => $record->id,
121
                        'name' => $record->name,
122
                        'status' => $record->status,
123
                        'actions' => [
15150 efrain 124
                            'link_edit' => $allowEdit ? $this->url()->fromRoute('survey/form/edit', ['id' => $record->uuid]) : '',
125
                            'link_delete' => $allowDelete ? $this->url()->fromRoute('survey/form/delete', ['id' => $record->uuid]) : '',
4384 eleazar 126
                        ]
127
                    ];
128
 
129
                    array_push($items, $item);
130
                }
131
 
132
                return new JsonModel([
133
                    'success' => true,
134
                    'data' => [
135
                        'items' => $items,
136
                        'total' => $paginator->getTotalItemCount(),
137
                    ]
138
                ]);
139
            } else {
140
 
4398 eleazar 141
                $form = new SurveyFormForm($this->adapter, $currentCompany->id);
4384 eleazar 142
 
143
                $this->layout()->setTemplate('layout/layout-backend');
144
                $viewModel = new ViewModel();
4393 eleazar 145
                $viewModel->setTemplate('leaders-linked/survey-form/index.phtml');
4384 eleazar 146
                $viewModel->setVariable('form', $form);
147
                return $viewModel;
148
            }
149
        } else {
150
            return new JsonModel([
151
                'success' => false,
152
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
153
            ]);
154
            ;
155
        }
156
    }
157
 
158
    public function addAction() {
159
        $request = $this->getRequest();
160
        $currentUserPlugin = $this->plugin('currentUserPlugin');
161
        $currentCompany = $currentUserPlugin->getCompany();
162
        $currentUser = $currentUserPlugin->getUser();
163
 
164
        $request = $this->getRequest();
165
 
166
        if ($request->isPost()) {
4492 eleazar 167
 
4495 eleazar 168
            $form = new SurveyFormForm($this->adapter, $currentCompany->id);
4496 eleazar 169
 
4384 eleazar 170
            $dataPost = $request->getPost()->toArray();
171
            $dataPost['status'] = isset($dataPost['status']) ? $dataPost['status'] : SurveyForm::STATUS_INACTIVE;
172
 
4491 eleazar 173
 
4423 eleazar 174
 
4422 eleazar 175
 
4384 eleazar 176
            $form->setData($dataPost);
177
 
178
            if ($form->isValid()) {
179
                $dataPost = (array) $form->getData();
180
 
181
                $hydrator = new ObjectPropertyHydrator();
182
                $survey = new SurveyForm();
183
                $hydrator->hydrate($dataPost, $survey);
184
 
185
                if (!$survey->status) {
186
                    $survey->status = SurveyForm::STATUS_INACTIVE;
187
                }
188
                $survey->company_id = $currentCompany->id;
189
 
190
 
191
                $surveyMapper = SurveyFormMapper::getInstance($this->adapter);
192
                $result = $surveyMapper->insert($survey);
193
 
194
                if ($result) {
4579 eleazar 195
                    $this->logger->info('Se agrego el formulario' . $survey->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
4384 eleazar 196
 
197
                    // Get record by id
198
                    $record = $surveyMapper->fetchOne($survey->id);
199
 
200
                    if ($record) {
201
 
202
                        $data = [
203
                            'success' => true,
204
                            'id' => $record->id,
8365 eleazar 205
                            'action_edit' => $this->url()->fromRoute('survey/form/edit', ['id' => $record->uuid]),
4384 eleazar 206
                            'data' => 'LABEL_RECORD_ADDED'
207
                        ];
208
                    } else {
209
 
210
                        $data = [
211
                            'success' => false,
212
                            'data' => 'ERROR_RECORD_NOT_FOUND'
213
                        ];
214
                    }
215
                } else {
216
                    $data = [
217
                        'success' => false,
218
                        'data' => $surveyMapper->getError()
219
                    ];
220
                }
221
 
222
                return new JsonModel($data);
223
            } else {
224
                $messages = [];
225
                $form_messages = (array) $form->getMessages();
226
                foreach ($form_messages as $fieldname => $field_messages) {
227
 
228
                    $messages[$fieldname] = array_values($field_messages);
229
                }
230
 
231
                return new JsonModel([
232
                    'success' => false,
233
                    'data' => $messages
234
                ]);
235
            }
236
        } else {
237
            $data = [
238
                'success' => false,
239
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
240
            ];
241
 
242
            return new JsonModel($data);
243
        }
244
 
245
        return new JsonModel($data);
246
    }
247
 
248
    public function editAction() {
249
        $request = $this->getRequest();
250
        $currentUserPlugin = $this->plugin('currentUserPlugin');
251
        $currentCompany = $currentUserPlugin->getCompany();
252
        $currentUser = $currentUserPlugin->getUser();
253
 
254
        $request = $this->getRequest();
255
        $uuid = $this->params()->fromRoute('id');
256
 
257
 
258
        if (!$uuid) {
259
            $data = [
260
                'success' => false,
261
                'data' => 'ERROR_INVALID_PARAMETER'
262
            ];
263
 
264
            return new JsonModel($data);
265
        }
266
 
267
        $surveyMapper = SurveyFormMapper::getInstance($this->adapter);
268
        $survey = $surveyMapper->fetchOneByUuid($uuid);
4506 eleazar 269
 
4384 eleazar 270
        if (!$survey) {
271
            $data = [
272
                'success' => false,
273
                'data' => 'ERROR_RECORD_NOT_FOUND'
274
            ];
275
 
276
            return new JsonModel($data);
277
        }
278
 
279
        if ($survey->company_id != $currentCompany->id) {
280
            return new JsonModel([
281
                'success' => false,
282
                'data' => 'ERROR_UNAUTHORIZED'
283
            ]);
284
        }
285
 
286
 
287
        if ($request->isPost()) {
5384 eleazar 288
            $form = new SurveyFormForm($this->adapter, $currentCompany->id);
4384 eleazar 289
            $dataPost = $request->getPost()->toArray();
290
            $dataPost['status'] = isset($dataPost['status']) ? $dataPost['status'] : SurveyForm::STATUS_INACTIVE;
291
 
292
            $form->setData($dataPost);
293
 
294
            if ($form->isValid()) {
295
                $dataPost = (array) $form->getData();
296
 
297
                $hydrator = new ObjectPropertyHydrator();
298
                $hydrator->hydrate($dataPost, $survey);
299
 
300
                if (!$survey->status) {
301
                    $survey->status = SurveyForm::STATUS_INACTIVE;
302
                }
303
 
304
                $result = $surveyMapper->update($survey);
305
 
306
                if ($result) {
4579 eleazar 307
                    $this->logger->info('Se edito el formulario ' . $survey->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
4384 eleazar 308
                    $data = [
309
                        'success' => true,
310
                        'id' => $survey->id,
5386 eleazar 311
                        'action_edit' => $this->url()->fromRoute('survey/form/edit', ['id' => $survey->uuid]),
4384 eleazar 312
                        'data' => 'LABEL_RECORD_UPDATED'
313
                    ];
314
                } else {
315
                    $data = [
316
                        'success' => false,
317
                        'data' => $surveyMapper->getError()
318
                    ];
319
                }
320
 
321
                return new JsonModel($data);
322
            } else {
323
                $messages = [];
324
                $form_messages = (array) $form->getMessages();
325
                foreach ($form_messages as $fieldname => $field_messages) {
326
                    $messages[$fieldname] = array_values($field_messages);
327
                }
328
 
329
                return new JsonModel([
330
                    'success' => false,
331
                    'data' => $messages
332
                ]);
333
            }
334
        } else if ($request->isGet()) {
335
            $hydrator = new ObjectPropertyHydrator();
336
 
337
            $data = [
338
                'success' => true,
339
                'data' => [
340
                    'id' => $survey->uuid,
341
                    'name' => $survey->name,
342
                    'description' => $survey->description,
343
                    'text' => $survey->text,
344
                    'status' => $survey->status,
345
                    'content' => $survey->content ? json_decode($survey->content) : [],
346
                ]
347
            ];
348
 
349
            return new JsonModel($data);
350
        } else {
351
            $data = [
352
                'success' => false,
353
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
354
            ];
355
 
356
            return new JsonModel($data);
357
        }
358
 
359
        return new JsonModel($data);
360
    }
361
 
362
    public function deleteAction() {
363
        $request = $this->getRequest();
364
        $currentUserPlugin = $this->plugin('currentUserPlugin');
365
        $currentCompany = $currentUserPlugin->getCompany();
366
        $currentUser = $currentUserPlugin->getUser();
367
 
368
        $request = $this->getRequest();
369
        $uuid = $this->params()->fromRoute('id');
370
 
371
        if (!$uuid) {
372
            $data = [
373
                'success' => false,
374
                'data' => 'ERROR_INVALID_PARAMETER'
375
            ];
376
 
377
            return new JsonModel($data);
378
        }
379
 
380
        $surveyMapper = SurveyFormMapper::getInstance($this->adapter);
381
        $survey = $surveyMapper->fetchOneByUuid($uuid);
382
        if (!$survey) {
383
            $data = [
384
                'success' => false,
385
                'data' => 'ERROR_RECORD_NOT_FOUND'
386
            ];
387
 
388
            return new JsonModel($data);
389
        }
390
 
391
        if ($survey->company_id != $currentCompany->id) {
392
            return new JsonModel([
393
                'success' => false,
394
                'data' => 'ERROR_UNAUTHORIZED'
395
            ]);
396
        }
397
 
398
        if ($request->isPost()) {
399
 
400
            $result = $surveyMapper->delete($survey->id);
401
            if ($result) {
4579 eleazar 402
                $this->logger->info('Se borro el formulario ' . $survey->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
4384 eleazar 403
 
404
                $data = [
405
                    'success' => true,
406
                    'data' => 'LABEL_RECORD_DELETED'
407
                ];
408
            } else {
409
 
410
                $data = [
411
                    'success' => false,
412
                    'data' => $surveyMapper->getError()
413
                ];
414
 
415
                return new JsonModel($data);
416
            }
417
        } else {
418
            $data = [
419
                'success' => false,
420
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
421
            ];
422
 
423
            return new JsonModel($data);
424
        }
425
 
426
        return new JsonModel($data);
427
    }
428
 
429
}