Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16769 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
15397 efrain 1
<?php
2
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Controller;
5
 
6
use Laminas\Db\Adapter\AdapterInterface;
7
 
16768 efrain 8
 
15397 efrain 9
use Laminas\Mvc\Controller\AbstractActionController;
10
use Laminas\Log\LoggerInterface;
11
 
12
use Laminas\View\Model\ViewModel;
13
use Laminas\View\Model\JsonModel;
14
use LeadersLinked\Library\Functions;
15
use LeadersLinked\Mapper\DiscoveryContactInteractionTypeMapper;
16
 
17
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
18
use LeadersLinked\Form\DiscoveryContact\InteractionTypeForm;
19
use LeadersLinked\Model\DiscoveryContactInteractionType;
20
use Laminas\Mvc\I18n\Translator;
21
 
22
 
23
class DiscoveryContactInteractionTypeController extends AbstractActionController
24
{
25
    /**
26
     *
16769 efrain 27
     * @var \Laminas\Db\Adapter\AdapterInterface
15397 efrain 28
     */
29
    private $adapter;
30
 
16769 efrain 31
    /**
32
     *
33
     * @var \LeadersLinked\Cache\CacheInterface
34
     */
35
    private $cache;
15397 efrain 36
 
16769 efrain 37
 
15397 efrain 38
    /**
39
     *
16769 efrain 40
     * @var \Laminas\Log\LoggerInterface
15397 efrain 41
     */
42
    private $logger;
43
 
44
    /**
45
     *
46
     * @var array
47
     */
48
    private $config;
49
 
16769 efrain 50
 
15397 efrain 51
    /**
16769 efrain 52
     *
53
     * @var \Laminas\Mvc\I18n\Translator
15397 efrain 54
     */
55
    private $translator;
56
 
16769 efrain 57
 
15397 efrain 58
    /**
59
     *
16769 efrain 60
     * @param \Laminas\Db\Adapter\AdapterInterface $adapter
61
     * @param \LeadersLinked\Cache\CacheInterface $cache
62
     * @param \Laminas\Log\LoggerInterface LoggerInterface $logger
15397 efrain 63
     * @param array $config
16769 efrain 64
     * @param \Laminas\Mvc\I18n\Translator $translator
15397 efrain 65
     */
16769 efrain 66
    public function __construct($adapter, $cache, $logger, $config, $translator)
15397 efrain 67
    {
68
        $this->adapter      = $adapter;
16769 efrain 69
        $this->cache        = $cache;
15397 efrain 70
        $this->logger       = $logger;
71
        $this->config       = $config;
72
        $this->translator   = $translator;
73
    }
74
 
75
    public function indexAction()
76
    {
77
        $request = $this->getRequest();
78
 
79
        $request = $this->getRequest();
80
        if($request->isGet()) {
81
            $currentUserPlugin = $this->plugin('currentUserPlugin');
82
            $currentUser = $currentUserPlugin->getUser();
83
            $currentCompany = $currentUserPlugin->getCompany();
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');
16778 efrain 105
                $search = empty($search['value']) ? '' : Functions::sanitizeFilterString($search['value']);
15397 efrain 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);
16766 efrain 111
                $order_direction    = empty($order[0]['dir']) ? 'ASC' : strtoupper(Functions::sanitizeFilterString($order[0]['dir']));
15397 efrain 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
                $discoveryContactInteractionTypeMapper = DiscoveryContactInteractionTypeMapper::getInstance($this->adapter);
121
                $paginator = $discoveryContactInteractionTypeMapper->fetchAllDataTableForCompanyId($search, $currentCompany->id, $page, $records_x_page, $order_field, $order_direction);
122
 
123
                $items = [];
124
                $records = $paginator->getCurrentItems();
125
                foreach($records as $record)
126
                {
127
 
16643 efrain 128
 
129
 
130
 
15397 efrain 131
                    $item = [
132
                        'name' => $record->name,
133
                        'status' => $record->status,
134
                        'actions' => [
135
                            'link_edit' => $this->url()->fromRoute('discovery-contacts/interaction-types/edit', ['id' => $record->uuid ]),
136
                            'link_delete' =>  $this->url()->fromRoute('discovery-contacts/interaction-types/delete', ['id' => $record->uuid ]),
137
                        ],
138
                    ];
139
 
140
                    array_push($items, $item);
141
                }
142
 
143
                return new JsonModel([
144
                    'success' => true,
145
                    'data' => [
146
                        'items' => $items,
147
                        'total' => $paginator->getTotalItemCount(),
148
                    ]
149
                ]);
150
 
151
 
152
            } else {
153
 
154
 
155
 
156
                $form = new InteractionTypeForm();
157
 
158
                $this->layout()->setTemplate('layout/layout-backend');
159
                $viewModel = new ViewModel();
160
                $viewModel->setTemplate('leaders-linked/discovery-contact-interaction-types/index.phtml');
161
                $viewModel->setVariable('form', $form);
162
                return $viewModel ;
163
            }
164
        } else {
165
            return new JsonModel([
166
                'success' => false,
167
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
168
            ]);;
169
        }
170
    }
171
 
172
    public function addAction()
173
    {
174
        $currentUserPlugin = $this->plugin('currentUserPlugin');
175
        $currentUser = $currentUserPlugin->getUser();
176
        $currentCompany = $currentUserPlugin->getCompany();
177
 
178
        $request = $this->getRequest();
179
        if($request->isPost()) {
180
            $form = new InteractionTypeForm();
181
            $dataPost = $request->getPost()->toArray();
182
 
183
            $form->setData($dataPost);
184
 
185
            if($form->isValid()) {
186
                $dataPost = (array) $form->getData();
187
                $dataPost['status'] =  isset($dataPost['status']) ? $dataPost['status'] : DiscoveryContactInteractionType::STATUS_INACTIVE;
188
 
16643 efrain 189
                $discoveryContactInteractionTypeMapper = DiscoveryContactInteractionTypeMapper::getInstance($this->adapter);
190
                $discoveryContactInteractionTypeDefault = $discoveryContactInteractionTypeMapper->fetchOneDefaultByCompanyId($currentCompany->id);
191
 
192
 
193
 
15397 efrain 194
                $hydrator = new ObjectPropertyHydrator();
195
                $discoveryContactInteractionType = new DiscoveryContactInteractionType();
196
                $hydrator->hydrate($dataPost, $discoveryContactInteractionType);
16643 efrain 197
 
15397 efrain 198
                $discoveryContactInteractionType->company_id  = $currentCompany->id;
16643 efrain 199
                $discoveryContactInteractionType->default = $discoveryContactInteractionTypeDefault ? DiscoveryContactInteractionType::DEFAULT_NO : DiscoveryContactInteractionType::DEFAULT_YES;
15397 efrain 200
 
16643 efrain 201
 
15397 efrain 202
                $result = $discoveryContactInteractionTypeMapper->insert($discoveryContactInteractionType);
203
 
204
                if($result) {
205
                    $this->logger->info('Se agrego el tipo de interacción del relevamiento de contacto : ' . $discoveryContactInteractionType->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
206
 
207
                    $data = [
208
                        'success'   => true,
209
                        'data'   => 'LABEL_RECORD_ADDED'
210
                    ];
211
                } else {
212
                    $data = [
213
                        'success'   => false,
214
                        'data'      => $discoveryContactInteractionTypeMapper->getError()
215
                    ];
216
 
217
                }
218
 
219
                return new JsonModel($data);
220
 
221
            } else {
222
                $messages = [];
223
                $form_messages = (array) $form->getMessages();
224
                foreach($form_messages  as $fieldname => $field_messages)
225
                {
226
 
227
                    $messages[$fieldname] = array_values($field_messages);
228
                }
229
 
230
                return new JsonModel([
231
                    'success'   => false,
232
                    'data'   => $messages
233
                ]);
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
    {
250
        $currentUserPlugin = $this->plugin('currentUserPlugin');
251
        $currentUser = $currentUserPlugin->getUser();
252
        $currentCompany = $currentUserPlugin->getCompany();
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
 
268
        $discoveryContactInteractionTypeMapper = DiscoveryContactInteractionTypeMapper::getInstance($this->adapter);
269
        $discoveryContactInteractionType = $discoveryContactInteractionTypeMapper->fetchOneByUuid($uuid);
270
        if(!$discoveryContactInteractionType) {
271
            $data = [
272
                'success'   => false,
273
                'data'   => 'ERROR_RECORD_NOT_FOUND'
274
            ];
275
 
276
            return new JsonModel($data);
277
        }
278
 
279
 
280
        if($discoveryContactInteractionType->company_id != $currentCompany->id) {
281
            return new JsonModel([
282
                'success'   => false,
283
                'data'   => 'ERROR_UNAUTHORIZED'
284
            ]);
285
        }
286
 
287
        if($request->isPost()) {
288
            $form = new InteractionTypeForm();
289
            $dataPost = $request->getPost()->toArray();
290
            $dataPost['status'] =  isset($dataPost['status']) ? $dataPost['status'] : DiscoveryContactInteractionType::STATUS_INACTIVE;
291
 
292
 
293
            $form->setData($dataPost);
294
 
295
            if($form->isValid()) {
296
                $dataPost = (array) $form->getData();
297
 
298
                $hydrator = new ObjectPropertyHydrator();
299
                $hydrator->hydrate($dataPost, $discoveryContactInteractionType);
300
                $result = $discoveryContactInteractionTypeMapper->update($discoveryContactInteractionType);
301
 
302
                if($result) {
303
                    $this->logger->info('Se actualizo el tipo de interacción del relevamiento de contacto ' . $discoveryContactInteractionType->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
304
 
305
                    $data = [
306
                        'success' => true,
307
                        'data' => 'LABEL_RECORD_UPDATED'
308
                    ];
309
                } else {
310
                    $data = [
311
                        'success'   => false,
312
                        'data'      => $discoveryContactInteractionTypeMapper->getError()
313
                    ];
314
                }
315
 
316
                return new JsonModel($data);
317
 
318
            } else {
319
                $messages = [];
320
                $form_messages = (array) $form->getMessages();
321
                foreach($form_messages  as $fieldname => $field_messages)
322
                {
323
                    $messages[$fieldname] = array_values($field_messages);
324
                }
325
 
326
                return new JsonModel([
327
                    'success'   => false,
328
                    'data'   => $messages
329
                ]);
330
            }
331
        } else if ($request->isGet()) {
332
            $hydrator = new ObjectPropertyHydrator();
333
 
334
            $data = [
335
                'success' => true,
336
                'data' => $hydrator->extract($discoveryContactInteractionType)
337
            ];
338
 
339
            return new JsonModel($data);
340
        } else {
341
            $data = [
342
                'success' => false,
343
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
344
            ];
345
 
346
            return new JsonModel($data);
347
        }
348
 
349
        return new JsonModel($data);
350
    }
351
 
352
    public function deleteAction()
353
    {
354
        $currentUserPlugin = $this->plugin('currentUserPlugin');
355
        $currentUser = $currentUserPlugin->getUser();
356
        $currentCompany = $currentUserPlugin->getCompany();
357
 
358
        $request = $this->getRequest();
359
        $uuid = $this->params()->fromRoute('id');
360
 
361
        if(!$uuid) {
362
            $data = [
363
                'success'   => false,
364
                'data'   => 'ERROR_INVALID_PARAMETER'
365
            ];
366
 
367
            return new JsonModel($data);
368
        }
369
 
370
        $discoveryContactInteractionTypeMapper = DiscoveryContactInteractionTypeMapper::getInstance($this->adapter);
371
        $discoveryContactInteractionType = $discoveryContactInteractionTypeMapper->fetchOneByUuid($uuid);
372
        if(!$discoveryContactInteractionType) {
373
            $data = [
374
                'success'   => false,
375
                'data'   => 'ERROR_RECORD_NOT_FOUND'
376
            ];
377
 
378
            return new JsonModel($data);
379
        }
380
 
381
        if($discoveryContactInteractionType->company_id != $currentCompany->id) {
382
            return new JsonModel([
383
                'success'   => false,
384
                'data'   => 'ERROR_UNAUTHORIZED'
385
            ]);
386
        }
387
 
388
        if($request->isPost()) {
389
            $result = $discoveryContactInteractionTypeMapper->delete($discoveryContactInteractionType);
390
            if($result) {
391
                $this->logger->info('Se borro el tipo de interacción del relevamiento de contacto ' . $discoveryContactInteractionType->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
392
 
393
                $data = [
394
                    'success' => true,
395
                    'data' => 'LABEL_RECORD_DELETED'
396
                ];
397
            } else {
398
 
399
                $data = [
400
                    'success'   => false,
401
                    'data'      => $discoveryContactInteractionTypeMapper->getError()
402
                ];
403
 
404
                return new JsonModel($data);
405
            }
406
 
407
        } else {
408
            $data = [
409
                'success' => false,
410
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
411
            ];
412
 
413
            return new JsonModel($data);
414
        }
415
 
416
        return new JsonModel($data);
417
    }
418
}