Proyectos de Subversion LeadersLinked - Backend

Rev

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