Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16758 | Ir a la última revisión | | 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
use Laminas\Cache\Storage\Adapter\AbstractAdapter;
8
 
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\Hydrator\ObjectPropertyHydrator;
16
 
17
use Laminas\Mvc\I18n\Translator;
18
use LeadersLinked\Mapper\DiscoveryContactInteractionMapper;
19
use LeadersLinked\Form\DiscoveryContact\InteractionTypeForm;
20
use LeadersLinked\Model\DiscoveryContactInteractionType;
21
use LeadersLinked\Mapper\DiscoveryContactInteractionTypeMapper;
22
use LeadersLinked\Model\DiscoveryContactLog;
23
use LeadersLinked\Mapper\DiscoveryContactMapper;
24
use LeadersLinked\Mapper\QueryMapper;
25
use LeadersLinked\Mapper\UserMapper;
26
use Laminas\Paginator\Adapter\DbSelect;
27
use Laminas\Paginator\Paginator;
28
use LeadersLinked\Form\DiscoveryContact\InteractionForm;
29
use LeadersLinked\Model\DiscoveryContactInteraction;
30
use LeadersLinked\Mapper\DiscoveryContactLogMapper;
31
 
32
 
33
class DiscoveryContactInteractionController extends AbstractActionController
34
{
35
    /**
36
     *
37
     * @var AdapterInterface
38
     */
39
    private $adapter;
40
 
41
 
42
    /**
43
     *
44
     * @var AbstractAdapter
45
     */
46
    private $cache;
47
 
48
    /**
49
     *
50
     * @var  LoggerInterface
51
     */
52
    private $logger;
53
 
54
    /**
55
     *
56
     * @var array
57
     */
58
    private $config;
59
 
60
    /**
61
     *
62
     * @var Translator
63
     */
64
    private $translator;
65
 
66
    /**
67
     *
68
     * @param AdapterInterface $adapter
69
     * @param AbstractAdapter $cache
70
     * @param LoggerInterface $logger
71
     * @param array $config
72
     * @param Translator $translator;
73
     */
74
    public function __construct($adapter, $cache , $logger, $config, $translator)
75
    {
76
        $this->adapter      = $adapter;
77
        $this->cache        = $cache;
78
        $this->logger       = $logger;
79
        $this->config       = $config;
80
        $this->translator   = $translator;
81
 
82
    }
83
 
84
    public function indexAction()
85
    {
86
 
87
        $request = $this->getRequest();
88
        if($request->isGet()) {
89
 
90
            $request = $this->getRequest();
91
            $uuid = $this->params()->fromRoute('id');
92
 
93
 
94
            if(!$uuid) {
95
                $data = [
96
                    'success'   => false,
97
                    'data'   => 'ERROR_INVALID_PARAMETER'
98
                ];
99
 
100
                return new JsonModel($data);
101
            }
102
 
103
            $discoveryContactMapper = DiscoveryContactMapper::getInstance($this->adapter);
104
            $discoveryContact = $discoveryContactMapper->fetchOneByUuid($uuid);
105
            if(!$discoveryContact) {
106
                $data = [
107
                    'success'   => false,
108
                    'data'   => 'ERROR_RECORD_NOT_FOUND'
109
                ];
110
 
111
                return new JsonModel($data);
112
            }
113
 
114
            $search = $this->params()->fromQuery('search');
115
            $search = empty($search) ? '' : filter_var($search, FILTER_SANITIZE_STRING);
116
 
117
            $page               = intval($this->params()->fromQuery('start', 1), 10);
118
            $records_x_page     = intval($this->params()->fromQuery('length', 10), 10);
119
 
120
 
121
            $queryMapper = QueryMapper::getInstance($this->adapter);
122
            $select = $queryMapper->getSql()->select();
123
            $select->from([ 'tb1' => DiscoveryContactInteractionMapper::_TABLE ]);
124
            $select->columns(['uuid', 'notes', 'added_on']);
125
            $select->join(['tb2' => DiscoveryContactInteractionTypeMapper::_TABLE], 'tb2.id = tb1.interaction_type_id', ['name']);
126
            $select->join(['tb3' => UserMapper::_TABLE], 'tb1.user_id = tb3.id', ['first_name' , 'last_name', 'email']);
127
            $select->where->equalTo('tb1.company_id', $discoveryContact->company_id);
128
            $select->where->equalTo('tb1.contact_id', $discoveryContact->id);
129
            if($search) {
130
                $select->where->nest()
131
                ->like('first_name', '%' . $search . '%')
132
                ->or->like('last_name', '%' . $search . '%')
133
                ->or->like('email', '%' . $search . '%')
134
                ->or->like('name', '%' . $search . '%')
135
                ->unnest();
136
            }
137
 
138
            $select->order('added_on DESC');
139
 
140
            $page               = intval($this->params()->fromQuery('start', 1), 10);
141
 
142
            $adapter = new DbSelect($select, $queryMapper->getSql());
143
            $paginator = new Paginator($adapter);
144
            $paginator->setItemCountPerPage($records_x_page);
145
            $paginator->setCurrentPageNumber($page);
146
 
147
 
148
            $items = [];
149
            $records = $paginator->getCurrentItems();
150
            foreach($records as $record)
151
            {
152
                $dt = \DateTime::createFromFormat('Y-m-d H:i:s', $record['added_on'] );
153
 
154
                $item = [
155
                    'first_name' => $record['first_name'],
156
                    'last_name' => $record['last_name'],
157
                    'email' => $record['email'],
158
                    'name' => $record['name'],
159
                    'notes' => $record['notes'],
160
                    'added_on' => $dt->format('d/m/Y H:i a'),
161
                    'link_delete' => $this->url()->fromRoute('discovery-contacts/interactions/delete', ['id' => $discoveryContact->uuid, 'interaction' => $record['uuid'] ]),
162
                ];
163
 
164
                array_push($items, $item);
165
            }
166
 
167
            $total_items = $paginator->getTotalItemCount();
168
            if($total_items <= 10) {
169
                $total_pages = 1;
170
            } else {
171
 
172
                $total_pages = (  $total_items / 10);
173
 
174
 
175
                if(($total_pages * 10) <  $total_items) {
176
                    $total_pages++;
177
                }
178
            }
179
 
180
 
181
            return new JsonModel([
182
                'success' => true,
183
                'data' => [
184
                    'current' => [
185
                        'items' => $items,
186
                        'page' => $paginator->getCurrentPageNumber()
187
 
188
                    ],
189
                    'total' => [
190
 
191
                        'items' => $total_items,
192
                        'pages' => $total_pages
193
                    ],
194
                ]
195
            ]);
196
 
197
        } else {
198
            return new JsonModel([
199
                'success' => false,
200
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
201
            ]);;
202
        }
203
    }
204
 
205
    public function addAction()
206
    {
207
        $currentUserPlugin = $this->plugin('currentUserPlugin');
208
        $currentUser = $currentUserPlugin->getUser();
209
        $currentCompany = $currentUserPlugin->getCompany();
210
 
211
        $request = $this->getRequest();
212
        $uuid = $this->params()->fromRoute('id');
213
 
214
 
215
        if(!$uuid) {
216
            $data = [
217
                'success'   => false,
218
                'data'   => 'ERROR_INVALID_PARAMETER'
219
            ];
220
 
221
            return new JsonModel($data);
222
        }
223
 
224
        $discoveryContactMapper = DiscoveryContactMapper::getInstance($this->adapter);
225
        $discoveryContact = $discoveryContactMapper->fetchOneByUuid($uuid);
226
        if(!$discoveryContact) {
227
            $data = [
228
                'success'   => false,
229
                'data'   => 'ERROR_RECORD_NOT_FOUND'
230
            ];
231
 
232
            return new JsonModel($data);
233
        }
234
 
235
 
236
 
237
        if($discoveryContact->company_id != $currentCompany->id) {
238
            return new JsonModel([
239
                'success'   => false,
240
                'data'   => 'ERROR_UNAUTHORIZED'
241
            ]);
242
        }
243
 
244
 
245
        $request = $this->getRequest();
246
        if($request->isPost()) {
247
            $form = new InteractionForm($this->adapter, $currentCompany->id);
248
            $dataPost = $request->getPost()->toArray();
249
 
250
 
251
            $form->setData($dataPost);
252
 
253
 
254
            if($form->isValid()) {
255
 
256
 
257
                $dataPost = (array) $form->getData();
258
                $notes = $dataPost['notes'];
259
                $interaction_type_id = $dataPost['interaction_type_id'];
260
 
261
 
262
 
263
                $discoveryContactInteractionTypeMapper = DiscoveryContactInteractionTypeMapper::getInstance($this->adapter);
264
                $discoveryContactInteractionType = $discoveryContactInteractionTypeMapper->fetchOneByUuid($interaction_type_id);
265
 
266
 
267
                $discoveryContactInteraction = new DiscoveryContactInteraction();
268
                $discoveryContactInteraction->user_id = $currentUser->id;
269
                $discoveryContactInteraction->company_id  = $discoveryContact->company_id;
270
                $discoveryContactInteraction->contact_id  = $discoveryContact->id;
271
                $discoveryContactInteraction->interaction_type_id =  $discoveryContactInteractionType->id;
272
                $discoveryContactInteraction->notes = $notes;
273
 
274
 
275
                $discoveryContactInteractionMapper = DiscoveryContactInteractionMapper::getInstance($this->adapter);
276
                $result = $discoveryContactInteractionMapper->insert($discoveryContactInteraction);
277
 
278
                if($result) {
279
 
280
                    $this->logger->info('Se agrego la interacción del relevamiento de contacto : ' . $discoveryContact->first_name . ' ' . $discoveryContact->last_name . '(' . $discoveryContact->corporate_email . ')', ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
281
 
282
 
283
                    $discoveryContactLog = new DiscoveryContactLog();
284
                    $discoveryContactLog->company_id    = $discoveryContact->company_id;
285
                    $discoveryContactLog->contact_id    = $discoveryContact->id;
286
                    $discoveryContactLog->user_id       = $currentUser->id;
287
                    $discoveryContactLog->activity      = 'LABEL_RECORD_INTERACTION_ADDED';
288
                    $discoveryContactLog->details       = 'LABEL_TYPE : ' . $discoveryContactInteractionType->name  . PHP_EOL .
289
                        'LABEL_NOTES : ' . $notes . PHP_EOL;
290
 
291
 
292
                    $discoveryContactLogMapper = DiscoveryContactLogMapper::getInstance($this->adapter);
293
                    $discoveryContactLogMapper->insert($discoveryContactLog);
294
 
295
                    $data = [
296
                        'success'   => true,
297
                        'data'   => 'LABEL_RECORD_ADDED'
298
                    ];
299
                } else {
300
                    $data = [
301
                        'success'   => false,
302
                        'data'      => $discoveryContactInteractionMapper->getError()
303
                    ];
304
 
305
                }
306
 
307
                return new JsonModel($data);
308
 
309
            } else {
310
                $messages = [];
311
                $form_messages = (array) $form->getMessages();
312
                foreach($form_messages  as $fieldname => $field_messages)
313
                {
314
 
315
                    $messages[$fieldname] = array_values($field_messages);
316
                }
317
 
318
                return new JsonModel([
319
                    'success'   => false,
320
                    'data'   => $messages
321
                ]);
322
            }
323
 
324
        } else {
325
            $data = [
326
                'success' => false,
327
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
328
            ];
329
 
330
            return new JsonModel($data);
331
        }
332
 
333
        return new JsonModel($data);
334
    }
335
 
336
 
337
    public function deleteAction()
338
    {
339
        $currentUserPlugin = $this->plugin('currentUserPlugin');
340
        $currentUser = $currentUserPlugin->getUser();
341
        $currentCompany = $currentUserPlugin->getCompany();
342
 
343
        $request = $this->getRequest();
344
        $uuid = $this->params()->fromRoute('id');
345
 
346
 
347
        if(!$uuid) {
348
            $data = [
349
                'success'   => false,
350
                'data'   => 'ERROR_INVALID_PARAMETER'
351
            ];
352
 
353
            return new JsonModel($data);
354
        }
355
 
356
        $discoveryContactMapper = DiscoveryContactMapper::getInstance($this->adapter);
357
        $discoveryContact = $discoveryContactMapper->fetchOneByUuid($uuid);
358
        if(!$discoveryContact) {
359
            $data = [
360
                'success'   => false,
361
                'data'   => 'ERROR_RECORD_NOT_FOUND'
362
            ];
363
 
364
            return new JsonModel($data);
365
        }
366
 
367
 
368
        if($discoveryContact->company_id != $currentCompany->id) {
369
            return new JsonModel([
370
                'success'   => false,
371
                'data'   => 'ERROR_UNAUTHORIZED'
372
            ]);
373
        }
374
 
375
        $uuid = $this->params()->fromRoute('interaction');
376
        $discoveryContactInteractionMapper = DiscoveryContactInteractionMapper::getInstance($this->adapter);
377
        $discoveryContactInteraction = $discoveryContactInteractionMapper->fetchOneByUuid($uuid);
378
        if(!$discoveryContactInteraction) {
379
            $data = [
380
                'success'   => false,
381
                'data'   => 'ERROR_RECORD_NOT_FOUND'
382
            ];
383
 
384
            return new JsonModel($data);
385
        }
386
 
387
 
388
 
389
        if($discoveryContact->id != $discoveryContactInteraction->contact_id) {
390
            return new JsonModel([
391
                'success'   => false,
392
                'data'   => 'ERROR_UNAUTHORIZED'
393
            ]);
394
        }
395
 
396
 
397
        if($request->isPost()) {
398
            $discoveryContactInteractionTypeMapper = DiscoveryContactInteractionTypeMapper::getInstance($this->adapter);
399
            $discoveryContactInteractionType = $discoveryContactInteractionTypeMapper->fetchOne($discoveryContactInteraction->interaction_type_id);
400
 
401
 
402
            $result = $discoveryContactInteractionMapper->delete($discoveryContactInteraction);
403
            if($result) {
404
                $this->logger->info('Se borro la interacción del relevamiento de contacto ' . $discoveryContact->first_name . ' ' . $discoveryContact->last_name . '(' . $discoveryContact->corporate_email . ')', ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
405
 
406
                $discoveryContactLog = new DiscoveryContactLog();
407
                $discoveryContactLog->company_id    = $discoveryContact->company_id;
408
                $discoveryContactLog->contact_id    = $discoveryContact->id;
409
                $discoveryContactLog->user_id       = $currentUser->id;
410
                $discoveryContactLog->activity      = 'LABEL_RECORD_INTERACTION_DELETED';
411
                $discoveryContactLog->details       = 'LABEL_TYPE : ' . $discoveryContactInteractionType->name  . PHP_EOL .
412
                'LABEL_NOTES : ' . $discoveryContactInteraction->notes . PHP_EOL;
413
 
414
 
415
                $discoveryContactLogMapper = DiscoveryContactLogMapper::getInstance($this->adapter);
416
                $discoveryContactLogMapper->insert($discoveryContactLog);
417
 
418
                $data = [
419
                    'success' => true,
420
                    'data' => 'LABEL_RECORD_DELETED'
421
                ];
422
            } else {
423
 
424
                $data = [
425
                    'success'   => false,
426
                    'data'      => $discoveryContactInteractionMapper->getError()
427
                ];
428
 
429
                return new JsonModel($data);
430
            }
431
 
432
        } else {
433
            $data = [
434
                'success' => false,
435
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
436
            ];
437
 
438
            return new JsonModel($data);
439
        }
440
 
441
        return new JsonModel($data);
442
    }
443
}