Proyectos de Subversion LeadersLinked - Backend

Rev

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

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