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