Proyectos de Subversion LeadersLinked - Backend

Rev

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

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