Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

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