Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16325 | Rev 16768 | 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;
16766 efrain 8
use LeadersLinked\Cache\CacheInterface;
16248 efrain 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
     *
16766 efrain 31
     * @var CacheInterface
16248 efrain 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
16766 efrain 50
     * @param CacheInterface $cache
16248 efrain 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', []);
16766 efrain 91
                $search = empty($search['value']) ? '' :  Functions::sanitizeFilterString($search['value']);
16248 efrain 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);
16766 efrain 100
                $order_direction = empty($order[0]['dir']) ? 'ASC' : Functions::sanitizeFilterString(filter_var($order[0]['dir']));
16248 efrain 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
 
16325 efrain 130
                        case KnowledgeAreaCategory::PRIVACY_PUBLIC :
16248 efrain 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
 
16300 efrain 212
 
213
                $category->network_id = $currentCompany->network_id;
16248 efrain 214
                $category->company_id = $currentCompany->id;
215
 
216
                $myCoachCategoryMapper = KnowledgeAreaCategoryMapper::getInstance($this->adapter);
217
 
218
 
219
                if($myCoachCategoryMapper->insert($category)) {
220
 
221
                    $this->logger->info('Se agrego la categoria ' . $category->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
222
 
223
                    $data = [
224
                        'success'   => true,
225
                        'data'   => 'LABEL_RECORD_ADDED'
226
                    ];
227
                } else {
228
                    $data = [
229
                        'success'   => false,
230
                        'data'      => $myCoachCategoryMapper->getError()
231
                    ];
232
 
233
                }
234
 
235
                return new JsonModel($data);
236
 
237
            } else {
238
                $messages = [];
239
                $form_messages = (array) $form->getMessages();
240
                foreach ($form_messages as $fieldname => $field_messages) {
241
 
242
                    $messages[$fieldname] = array_values($field_messages);
243
                }
244
 
245
                return new JsonModel([
246
                    'success' => false,
247
                    'data' => $messages
248
                ]);
249
 
250
            }
251
 
252
        } else {
253
            $data = [
254
                'success' => false,
255
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
256
            ];
257
 
258
            return new JsonModel($data);
259
        }
260
 
261
        return new JsonModel($data);
262
 
263
 
264
    }
265
 
266
    public function editAction()
267
    {
268
        $request = $this->getRequest();
269
        $currentUserPlugin = $this->plugin('currentUserPlugin');
270
        $currentCompany = $currentUserPlugin->getCompany();
271
        $currentUser = $currentUserPlugin->getUser();
272
 
273
        $request = $this->getRequest();
274
        $uuid = $this->params()->fromRoute('id');
275
 
276
        if (!$uuid) {
277
            $data = [
278
                'success' => false,
279
                'data' => 'ERROR_INVALID_PARAMETER'
280
            ];
281
 
282
            return new JsonModel($data);
283
        }
284
 
285
        $myCoachCategoryMapper = KnowledgeAreaCategoryMapper::getInstance($this->adapter);
286
        $category = $myCoachCategoryMapper->fetchOneByUuid($uuid);
287
 
288
        if (!$category) {
289
            $data = [
290
                'success' => false,
291
                'data' => 'ERROR_RECORD_NOT_FOUND'
292
            ];
293
 
294
            return new JsonModel($data);
295
        }
296
 
297
        if($category->company_id != $currentCompany->id) {
298
            $response = [
299
                'success' => false,
300
                'data' =>  'ERROR_UNAUTHORIZED'
301
            ];
302
 
303
            return new JsonModel($response);
304
        }
305
 
306
 
307
        if ($request->isPost()) {
308
            $dataPost = $request->getPost()->toArray();
309
 
310
            $allowPrivacyPublic = $currentCompany->default_for_network == Company::DEFAULT_FOR_NETWORK_YES;
311
            $form = new  KnowledgeAreaCategoryForm($allowPrivacyPublic);
312
            $form->setData($dataPost);
313
 
314
 
315
 
316
            if ($form->isValid()) {
317
                $dataPost = (array) $form->getData();
318
 
319
                $hydrator = new ObjectPropertyHydrator();
320
                $hydrator->hydrate($dataPost, $category);
321
 
322
                if($myCoachCategoryMapper->update($category)) {
323
 
324
 
325
                   $this->logger->info('Se actualizo la categoria ' . $category->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
326
 
327
                   $data = [
328
                       'success'   => true,
329
                       'data'   => 'LABEL_RECORD_UPDATED'
330
                   ];
331
               } else {
332
                   $data = [
333
                       'success'   => false,
334
                       'data'      => $myCoachCategoryMapper->getError()
335
                   ];
336
 
337
               }
338
 
339
                return new JsonModel($data);
340
            } else {
341
                $messages = [];
342
                $form_messages = (array) $form->getMessages();
343
                foreach ($form_messages as $fieldname => $field_messages) {
344
                    $messages[$fieldname] = array_values($field_messages);
345
                }
346
 
347
                return new JsonModel([
348
                    'success' => false,
349
                    'data' => $messages
350
                ]);
351
            }
352
        } else if ($request->isGet()) {
353
 
354
            $hydrator = new ObjectPropertyHydrator();
355
 
356
            $data = [
357
                'success' => true,
358
                'data' => [
359
                    'name' => $category->name,
360
                    'status' => $category->status,
361
                    'privacy' => $category->privacy,
362
                ]
363
            ];
364
 
365
            return new JsonModel($data);
366
        }
367
 
368
 
369
        $data = [
370
            'success' => false,
371
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
372
        ];
373
 
374
        return new JsonModel($data);
375
 
376
    }
377
 
378
    public function deleteAction()
379
    {
380
        $request = $this->getRequest();
381
        $currentUserPlugin = $this->plugin('currentUserPlugin');
382
        $currentCompany = $currentUserPlugin->getCompany();
383
        $currentUser = $currentUserPlugin->getUser();
384
 
385
        $request = $this->getRequest();
386
        $uuid = $this->params()->fromRoute('id');
387
 
388
        $myCoachCategoryMapper = KnowledgeAreaCategoryMapper::getInstance($this->adapter);
389
        $category = $myCoachCategoryMapper->fetchOneByUuid($uuid);
390
 
391
        if (!$category) {
392
            $data = [
393
                'success' => false,
394
                'data' => 'ERROR_RECORD_NOT_FOUND'
395
            ];
396
 
397
            return new JsonModel($data);
398
        }
399
 
400
        if($category->company_id != $currentCompany->id) {
401
            $response = [
402
                'success' => false,
403
                'data' =>  'ERROR_UNAUTHORIZED'
404
            ];
405
 
406
            return new JsonModel($response);
407
        }
408
 
409
 
410
        if ($request->isPost()) {
411
 
412
            if ($myCoachCategoryMapper->delete($category->id)) {
413
                $this->logger->info('Se borro la categoria ' . $category->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
414
 
415
                $data = [
416
                    'success' => true,
417
                    'data' => 'LABEL_RECORD_DELETED'
418
                ];
419
            } else {
420
 
421
                $data = [
422
                    'success' => false,
423
                    'data' => $myCoachCategoryMapper->getError()
424
                ];
425
 
426
 
427
            }
428
        } else {
429
            $data = [
430
                'success' => false,
431
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
432
            ];
433
 
434
 
435
        }
436
 
437
 
438
        return new JsonModel($data);
439
 
440
    }
441
}