Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16768 | Rev 16971 | 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
15623 anderson 2
 
15397 efrain 3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Controller;
6
 
7
use Laminas\Db\Adapter\AdapterInterface;
8
 
16768 efrain 9
 
15397 efrain 10
use Laminas\Mvc\Controller\AbstractActionController;
11
use Laminas\Log\LoggerInterface;
12
 
13
use Laminas\View\Model\ViewModel;
14
use Laminas\View\Model\JsonModel;
15
use LeadersLinked\Library\Functions;
16
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
17
use LeadersLinked\Model\DiscoveryContact;
18
use LeadersLinked\Mapper\DiscoveryContactMapper;
19
use LeadersLinked\Form\DiscoveryContact\ContactForm;
20
use LeadersLinked\Model\DiscoveryContactLog;
21
use LeadersLinked\Mapper\DiscoveryContactLogMapper;
22
use LeadersLinked\Form\DiscoveryContact\InteractionForm;
15546 efrain 23
use PhpOffice\PhpSpreadsheet\IOFactory;
24
use LeadersLinked\Form\DiscoveryContact\ContactUploadForm;
25
use LeadersLinked\Mapper\DiscoveryContactInteractionMapper;
26
use LeadersLinked\Mapper\DiscoveryContactInteractionTypeMapper;
27
use LeadersLinked\Model\DiscoveryContactInteraction;
16643 efrain 28
use LeadersLinked\Model\DiscoveryContactInteractionType;
16768 efrain 29
use LeadersLinked\Cache\CacheInterface;
30
use LeadersLinked\Cache\CacheImpl;
15397 efrain 31
 
32
 
33
class DiscoveryContactController extends AbstractActionController
34
{
35
    /**
36
     *
16769 efrain 37
     * @var \Laminas\Db\Adapter\AdapterInterface
15397 efrain 38
     */
39
    private $adapter;
16768 efrain 40
 
15397 efrain 41
    /**
42
     *
16769 efrain 43
     * @var \LeadersLinked\Cache\CacheInterface
15397 efrain 44
     */
16769 efrain 45
    private $cache;
46
 
47
 
48
    /**
49
     *
50
     * @var \Laminas\Log\LoggerInterface
51
     */
15397 efrain 52
    private $logger;
16768 efrain 53
 
15397 efrain 54
    /**
55
     *
56
     * @var array
57
     */
58
    private $config;
16768 efrain 59
 
16769 efrain 60
 
15397 efrain 61
    /**
16769 efrain 62
     *
63
     * @var \Laminas\Mvc\I18n\Translator
16768 efrain 64
     */
16769 efrain 65
    private $translator;
16768 efrain 66
 
16769 efrain 67
 
16768 efrain 68
    /**
15397 efrain 69
     *
16769 efrain 70
     * @param \Laminas\Db\Adapter\AdapterInterface $adapter
71
     * @param \LeadersLinked\Cache\CacheInterface $cache
72
     * @param \Laminas\Log\LoggerInterface LoggerInterface $logger
15397 efrain 73
     * @param array $config
16769 efrain 74
     * @param \Laminas\Mvc\I18n\Translator $translator
15397 efrain 75
     */
16769 efrain 76
    public function __construct($adapter, $cache, $logger, $config, $translator)
15397 efrain 77
    {
16769 efrain 78
        $this->adapter      = $adapter;
79
        $this->cache        = $cache;
80
        $this->logger       = $logger;
81
        $this->config       = $config;
82
        $this->translator   = $translator;
15397 efrain 83
    }
15623 anderson 84
 
15397 efrain 85
    public function indexAction()
86
    {
87
        $currentUserPlugin = $this->plugin('currentUserPlugin');
88
        $currentUser = $currentUserPlugin->getUser();
89
        $currentCompany = $currentUserPlugin->getCompany();
15623 anderson 90
 
15397 efrain 91
        $request = $this->getRequest();
15623 anderson 92
        if ($request->isGet()) {
93
 
94
 
15397 efrain 95
            $headers  = $request->getHeaders();
15623 anderson 96
 
15397 efrain 97
            $isJson = false;
15623 anderson 98
            if ($headers->has('Accept')) {
15397 efrain 99
                $accept = $headers->get('Accept');
15623 anderson 100
 
15397 efrain 101
                $prioritized = $accept->getPrioritized();
15623 anderson 102
 
103
                foreach ($prioritized as $key => $value) {
15397 efrain 104
                    $raw = trim($value->getRaw());
15623 anderson 105
 
106
                    if (!$isJson) {
15397 efrain 107
                        $isJson = strpos($raw, 'json');
108
                    }
109
                }
110
            }
15623 anderson 111
 
112
            if ($isJson) {
15397 efrain 113
                $search = $this->params()->fromQuery('search');
16766 efrain 114
                $search = empty($search['value']) ? '' :  Functions::sanitizeFilterString($search['value']);
15546 efrain 115
 
15623 anderson 116
 
117
 
15397 efrain 118
                $page               = intval($this->params()->fromQuery('start', 1), 10);
119
                $records_x_page     = intval($this->params()->fromQuery('length', 10), 10);
120
                $order =  $this->params()->fromQuery('order', []);
121
                $order_field        = empty($order[0]['column']) ? 99 :  intval($order[0]['column'], 10);
16766 efrain 122
                $order_direction    = empty($order[0]['dir']) ? 'ASC' : Functions::sanitizeFilterString(filter_var($order[0]['dir']));
15623 anderson 123
 
16766 efrain 124
                $fields =  ['first_name', 'last_name', 'corporate_email', 'company', 'country', 'sector', 'scholarship'];
15397 efrain 125
                $order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'first_name';
15623 anderson 126
 
127
                if (!in_array($order_direction, ['ASC', 'DESC'])) {
15397 efrain 128
                    $order_direction = 'ASC';
129
                }
130
 
15623 anderson 131
 
132
 
15397 efrain 133
                $discoveryContactMapper = DiscoveryContactMapper::getInstance($this->adapter);
134
                $paginator = $discoveryContactMapper->fetchAllDataTableForCompanyId($search, $currentCompany->id, $page, $records_x_page, $order_field, $order_direction);
15623 anderson 135
 
15397 efrain 136
                $items = [];
137
                $records = $paginator->getCurrentItems();
15623 anderson 138
                foreach ($records as $record) {
15397 efrain 139
 
16766 efrain 140
                    switch($record->scholarship)
141
                    {
142
                        case DiscoveryContact::SCHOLARSHIP_YES :
143
                            $scholarship = 'LABEL_YES';
144
                            break;
145
 
146
                        case DiscoveryContact::SCHOLARSHIP_NO :
147
                            $scholarship = 'LABEL_NO';
148
                            break;
149
 
150
                        default :
151
                            $scholarship = 'LABEL_UNKNOW';
152
                            break;
153
                    }
154
 
15623 anderson 155
 
15397 efrain 156
                    $item = [
157
                        'first_name' => $record->first_name,
158
                        'last_name' => $record->last_name,
159
                        'corporate_email' => $record->corporate_email,
15623 anderson 160
                        'company' => $record->company,
161
                        'country' => $record->country,
15628 anderson 162
                        'sector' => $record->sector,
16766 efrain 163
                        'scholarship' => $scholarship,
15397 efrain 164
                        'actions' => [
15623 anderson 165
                            'link_edit' => $this->url()->fromRoute('discovery-contacts/edit', ['id' => $record->uuid]),
166
                            'link_delete' => $this->url()->fromRoute('discovery-contacts/delete', ['id' => $record->uuid]),
167
                            'link_view' => $this->url()->fromRoute('discovery-contacts/view', ['id' => $record->uuid]),
168
                        ],
15397 efrain 169
                    ];
15623 anderson 170
 
15397 efrain 171
                    array_push($items, $item);
172
                }
15623 anderson 173
 
15397 efrain 174
                return new JsonModel([
175
                    'success' => true,
176
                    'data' => [
177
                        'items' => $items,
178
                        'total' => $paginator->getTotalItemCount(),
179
                    ]
180
                ]);
181
            } else {
15750 anderson 182
                $exclude_id = 0;
183
                $form = new ContactForm($this->adapter, $currentCompany->id, $exclude_id);
184
                $formInteraction = new InteractionForm($this->adapter, $currentCompany->id);
185
                $contactUploadForm = new ContactUploadForm();
15623 anderson 186
 
187
 
15750 anderson 188
                $this->layout()->setTemplate('layout/layout-backend');
189
                $viewModel = new ViewModel();
190
                $viewModel->setTemplate('leaders-linked/discovery-contacts/index.phtml');
191
                $viewModel->setVariables([
192
                    'form' => $form,
193
                    'formInteraction' => $formInteraction,
194
                    'contactUploadForm' => $contactUploadForm,
195
                ]);
196
                return $viewModel;
15623 anderson 197
            }
15397 efrain 198
        } else {
199
            return new JsonModel([
200
                'success' => false,
201
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
202
            ]);;
203
        }
204
    }
15623 anderson 205
 
15397 efrain 206
    public function addAction()
207
    {
208
        $currentUserPlugin = $this->plugin('currentUserPlugin');
209
        $currentUser = $currentUserPlugin->getUser();
210
        $currentCompany = $currentUserPlugin->getCompany();
15623 anderson 211
 
15397 efrain 212
        $request = $this->getRequest();
15623 anderson 213
        if ($request->isPost()) {
15397 efrain 214
            $exclude_id = 0;
215
            $form = new ContactForm($this->adapter, $currentCompany->id, $exclude_id);
216
            $dataPost = $request->getPost()->toArray();
15623 anderson 217
 
15397 efrain 218
            $form->setData($dataPost);
15623 anderson 219
 
220
            if ($form->isValid()) {
15397 efrain 221
                $dataPost = (array) $form->getData();
222
 
223
                $hydrator = new ObjectPropertyHydrator();
224
                $discoveryContact = new DiscoveryContact();
225
                $hydrator->hydrate($dataPost, $discoveryContact);
15623 anderson 226
 
227
 
15397 efrain 228
                $discoveryContact->company_id = $currentCompany->id;
229
 
230
 
16643 efrain 231
                $discoveryContactInteractionTypeMapper = DiscoveryContactInteractionTypeMapper::getInstance($this->adapter);
232
                $discoveryContactInteractionTypeDefault = $discoveryContactInteractionTypeMapper->fetchOneDefaultByCompanyId($currentCompany->id);
233
                if(!$discoveryContactInteractionTypeDefault) {
234
                    $discoveryContactInteractionTypeDefault = $discoveryContactInteractionTypeMapper->fetchOneFirstActiveByCompanyId($currentCompany->id);
235
                    $discoveryContactInteractionTypeDefault->default = DiscoveryContactInteractionType::DEFAULT_YES;
236
                    $discoveryContactInteractionTypeMapper->update($discoveryContactInteractionTypeDefault);
237
                }
238
 
239
 
15397 efrain 240
                $discoveryContactMapper = DiscoveryContactMapper::getInstance($this->adapter);
241
                $result = $discoveryContactMapper->insert($discoveryContact);
15623 anderson 242
 
243
                if ($result) {
244
                    $this->logger->info('Se agrego el Contacto : ' . $discoveryContact->first_name . ' ' . $discoveryContact->last_name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
245
 
16643 efrain 246
                    if($discoveryContactInteractionTypeDefault) {
247
                        $discoveryContactInteraction = new DiscoveryContactInteraction();
248
                        $discoveryContactInteraction->company_id  = $currentCompany->id;
249
                        $discoveryContactInteraction->user_id = $currentUser->id;
250
                        $discoveryContactInteraction->interaction_type_id = $discoveryContactInteractionTypeDefault->id;
251
 
252
                        $discoveryContactInteractionMapper = DiscoveryContactInteractionMapper::getInstance($this->adapter);
253
                        $discoveryContactInteractionMapper->insert($discoveryContactInteraction);
254
                    }
255
 
15397 efrain 256
                    $discoveryContactLog = new DiscoveryContactLog();
257
                    $discoveryContactLog->company_id = $currentCompany->id;
258
                    $discoveryContactLog->contact_id = $discoveryContact->id;
259
                    $discoveryContactLog->user_id = $currentUser->id;
260
                    $discoveryContactLog->activity =  'LABEL_RECORD_CONTACT_ADDED';
15623 anderson 261
                    $discoveryContactLog->details = 'LABEL_FIRST_NAME : ' . $discoveryContact->first_name  . PHP_EOL .
262
                        'LABEL_LAST_NAME : ' . $discoveryContact->last_name  . PHP_EOL .
263
                        'LABEL_CORPORATE_EMAIL : ' . $discoveryContact->corporate_email  . PHP_EOL .
264
                        'LABEL_COMPANY : ' . $discoveryContact->company  . PHP_EOL .
265
                        'LABEL_POSITION : ' . $discoveryContact->position  . PHP_EOL .
266
                        'LABEL_COUNTRY : ' . $discoveryContact->country  . PHP_EOL;
267
 
268
 
269
                    if ($discoveryContact->state) {
15397 efrain 270
                        $discoveryContactLog->details .= 'LABEL_STATE : ' . $discoveryContact->state  . PHP_EOL;
271
                    }
15623 anderson 272
                    if ($discoveryContact->city) {
15397 efrain 273
                        $discoveryContactLog->details .= 'LABEL_CITY : ' . $discoveryContact->city  . PHP_EOL;
274
                    }
15623 anderson 275
                    if ($discoveryContact->phone) {
15397 efrain 276
                        $discoveryContactLog->details .= 'LABEL_PHONE : ' . $discoveryContact->phone  . PHP_EOL;
277
                    }
15623 anderson 278
                    if ($discoveryContact->phone_extension) {
15397 efrain 279
                        $discoveryContactLog->details .= 'LABEL_PHONE_EXTENSION : ' . $discoveryContact->phone_extension  . PHP_EOL;
280
                    }
15623 anderson 281
                    if ($discoveryContact->personal_email) {
15397 efrain 282
                        $discoveryContactLog->details .= 'LABEL_PERSONAL_EMAIL : ' . $discoveryContact->personal_email  . PHP_EOL;
283
                    }
15623 anderson 284
                    if ($discoveryContact->celular) {
15397 efrain 285
                        $discoveryContactLog->details .= 'LABEL_CELULAR : ' . $discoveryContact->celular  . PHP_EOL;
286
                    }
15623 anderson 287
                    if ($discoveryContact->whatsapp) {
15397 efrain 288
                        $discoveryContactLog->details .= 'LABEL_WHATSAPP : ' . $discoveryContact->whatsapp  . PHP_EOL;
289
                    }
15623 anderson 290
                    if ($discoveryContact->linkedin) {
15397 efrain 291
                        $discoveryContactLog->details .= 'LABEL_LINKEDIN : ' . $discoveryContact->linkedin  . PHP_EOL;
292
                    }
16766 efrain 293
                    if ($discoveryContact->scholarship) {
294
                        $discoveryContactLog->details .= 'LABEL_SCHOLARSHIP : ' . $discoveryContact->scholarship  . PHP_EOL;
295
                    }
296
 
297
 
15623 anderson 298
 
15397 efrain 299
                    $discoveryContactLogMapper = DiscoveryContactLogMapper::getInstance($this->adapter);
300
                    $discoveryContactLogMapper->insert($discoveryContactLog);
15623 anderson 301
 
15397 efrain 302
                    $data = [
303
                        'success'   => true,
304
                        'data'   => 'LABEL_RECORD_ADDED'
305
                    ];
306
                } else {
307
                    $data = [
308
                        'success'   => false,
309
                        'data'      => $discoveryContactMapper->getError()
310
                    ];
311
                }
15623 anderson 312
 
15397 efrain 313
                return new JsonModel($data);
314
            } else {
315
                $messages = [];
316
                $form_messages = (array) $form->getMessages();
15623 anderson 317
                foreach ($form_messages  as $fieldname => $field_messages) {
318
 
15397 efrain 319
                    $messages[$fieldname] = array_values($field_messages);
320
                }
15623 anderson 321
 
15397 efrain 322
                return new JsonModel([
323
                    'success'   => false,
324
                    'data'   => $messages
325
                ]);
326
            }
327
        } else {
328
            $data = [
329
                'success' => false,
330
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
331
            ];
15623 anderson 332
 
15397 efrain 333
            return new JsonModel($data);
334
        }
15623 anderson 335
 
15397 efrain 336
        return new JsonModel($data);
337
    }
15623 anderson 338
 
15397 efrain 339
    public function editAction()
340
    {
341
        $currentUserPlugin = $this->plugin('currentUserPlugin');
342
        $currentUser = $currentUserPlugin->getUser();
343
        $currentCompany = $currentUserPlugin->getCompany();
15623 anderson 344
 
15397 efrain 345
        $request = $this->getRequest();
346
        $uuid = $this->params()->fromRoute('id');
347
 
15623 anderson 348
 
349
        if (!$uuid) {
15397 efrain 350
            $data = [
351
                'success'   => false,
352
                'data'   => 'ERROR_INVALID_PARAMETER'
353
            ];
15623 anderson 354
 
15397 efrain 355
            return new JsonModel($data);
356
        }
357
 
358
        $discoveryContactMapper = DiscoveryContactMapper::getInstance($this->adapter);
359
        $discoveryContact = $discoveryContactMapper->fetchOneByUuid($uuid);
15623 anderson 360
        if (!$discoveryContact) {
15397 efrain 361
            $data = [
362
                'success'   => false,
363
                'data'   => 'ERROR_RECORD_NOT_FOUND'
364
            ];
15623 anderson 365
 
15397 efrain 366
            return new JsonModel($data);
367
        }
15623 anderson 368
 
15397 efrain 369
        $discoveryContactOld =  clone $discoveryContact;
370
 
15623 anderson 371
        if ($request->isPost()) {
372
 
15397 efrain 373
            $form = new ContactForm($this->adapter, $currentCompany->id, $discoveryContact->id);
374
            $dataPost = $request->getPost()->toArray();
375
 
376
            $form->setData($dataPost);
15623 anderson 377
 
378
            if ($form->isValid()) {
15397 efrain 379
                $dataPost = (array) $form->getData();
15623 anderson 380
 
15397 efrain 381
                $hydrator = new ObjectPropertyHydrator();
382
                $hydrator->hydrate($dataPost, $discoveryContact);
383
                $result = $discoveryContactMapper->update($discoveryContact);
15623 anderson 384
 
385
                if ($result) {
15397 efrain 386
                    $this->logger->info('Se actualizo el Contacto ' . $discoveryContact->first_name . ' ' . $discoveryContact->last_name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
15623 anderson 387
 
388
 
15397 efrain 389
                    $discoveryContactLog = new DiscoveryContactLog();
390
                    $discoveryContactLog->company_id = $currentCompany->id;
391
                    $discoveryContactLog->contact_id = $discoveryContact->id;
392
                    $discoveryContactLog->user_id = $currentUser->id;
393
                    $discoveryContactLog->activity =  'LABEL_RECORD_CONTACT_UPDATED';
394
                    $discoveryContactLog->details = '';
15623 anderson 395
 
396
                    if ($discoveryContactOld->first_name  != $discoveryContact->first_name) {
15397 efrain 397
                        $discoveryContactLog->details .= 'LABEL_FIRST_NAME : ' . $discoveryContactOld->first_name . ' / ' . $discoveryContact->first_name  . PHP_EOL;
398
                    }
15623 anderson 399
                    if ($discoveryContactOld->last_name  !=  $discoveryContact->last_name) {
400
                        $discoveryContactLog->details .= 'LABEL_LAST_NAME : ' . $discoveryContactOld->last_name . ' / ' . $discoveryContact->last_name  . PHP_EOL;
15397 efrain 401
                    }
15623 anderson 402
                    if ($discoveryContactOld->corporate_email != $discoveryContact->corporate_email) {
403
                        $discoveryContactLog->details .= 'LABEL_CORPORATE_EMAIL : ' . $discoveryContactOld->corporate_email . ' / ' . $discoveryContact->corporate_email  . PHP_EOL;
15397 efrain 404
                    }
15623 anderson 405
                    if ($discoveryContactOld->company != $discoveryContact->company) {
406
                        $discoveryContactLog->details .= 'LABEL_COMPANY : ' . $discoveryContactOld->company . ' / ' . $discoveryContact->company  . PHP_EOL;
15397 efrain 407
                    }
15623 anderson 408
                    if ($discoveryContactOld->position != $discoveryContact->position) {
409
                        $discoveryContactLog->details .= 'LABEL_POSITION : ' . $discoveryContactOld->position . ' / ' . $discoveryContact->position  . PHP_EOL;
15397 efrain 410
                    }
15623 anderson 411
                    if ($discoveryContactOld->country != $discoveryContact->country) {
15397 efrain 412
                        $discoveryContactLog->details .= 'LABEL_COUNTRY : ' . $discoveryContactOld->country . ' / ' . $discoveryContact->country  . PHP_EOL;
413
                    }
15623 anderson 414
                    if ($discoveryContactOld->state != $discoveryContact->state) {
15397 efrain 415
                        $discoveryContactLog->details .= 'LABEL_STATE : ' . $discoveryContactOld->state . ' / ' . $discoveryContact->state  . PHP_EOL;
416
                    }
15623 anderson 417
                    if ($discoveryContactOld->city != $discoveryContact->city) {
15397 efrain 418
                        $discoveryContactLog->details .= 'LABEL_CITY : ' . $discoveryContactOld->city . ' / ' . $discoveryContact->city  . PHP_EOL;
419
                    }
15623 anderson 420
                    if ($discoveryContactOld->phone != $discoveryContact->phone) {
421
                        $discoveryContactLog->details .= 'LABEL_PHONE : ' . $discoveryContactOld->phone . ' / ' . $discoveryContact->phone  . PHP_EOL;
15397 efrain 422
                    }
15623 anderson 423
 
424
                    if ($discoveryContactOld->phone_extension != $discoveryContact->phone_extension) {
15397 efrain 425
                        $discoveryContactLog->details .= 'LABEL_PHONE_EXTENSION : ' . $discoveryContactOld->phone_extension . ' / ' . $discoveryContact->phone_extension  . PHP_EOL;
426
                    }
15623 anderson 427
                    if ($discoveryContactOld->personal_email != $discoveryContact->personal_email) {
15397 efrain 428
                        $discoveryContactLog->details .= 'LABEL_PERSONAL_EMAIL : ' . $discoveryContactOld->personal_email . ' / ' . $discoveryContact->personal_email  . PHP_EOL;
429
                    }
15623 anderson 430
                    if ($discoveryContactOld->celular  !=  $discoveryContact->celular) {
15397 efrain 431
                        $discoveryContactLog->details .= 'LABEL_CELULAR : ' . $discoveryContactOld->celular . ' / ' . $discoveryContact->celular  . PHP_EOL;
432
                    }
15623 anderson 433
                    if ($discoveryContactOld->whatsapp != $discoveryContact->whatsapp) {
434
                        $discoveryContactLog->details .= 'LABEL_WHATSAPP : ' . $discoveryContactOld->whatsapp . ' / ' . $discoveryContact->whatsapp  . PHP_EOL;
15397 efrain 435
                    }
15623 anderson 436
                    if ($discoveryContactOld->linkedin != $discoveryContact->linkedin) {
15397 efrain 437
                        $discoveryContactLog->details .= 'LABEL_LINKEDIN : ' . $discoveryContactOld->linkedin . ' / ' . $discoveryContact->linkedin  . PHP_EOL;
438
                    }
16766 efrain 439
                    if ($discoveryContactOld->scholarship != $discoveryContact->scholarship) {
440
                        $discoveryContactLog->details .= 'LABEL_SCHOLARSHIP: ' . $discoveryContactOld->scholarship . ' / ' . $discoveryContact->scholarship  . PHP_EOL;
441
                    }
15397 efrain 442
                    $discoveryContactLogMapper = DiscoveryContactLogMapper::getInstance($this->adapter);
443
                    $discoveryContactLogMapper->insert($discoveryContactLog);
15623 anderson 444
 
445
 
15397 efrain 446
                    $data = [
447
                        'success' => true,
448
                        'data' => 'LABEL_RECORD_UPDATED'
449
                    ];
450
                } else {
451
                    $data = [
452
                        'success'   => false,
453
                        'data'      => $discoveryContactMapper->getError()
454
                    ];
455
                }
15623 anderson 456
 
15397 efrain 457
                return new JsonModel($data);
458
            } else {
459
                $messages = [];
460
                $form_messages = (array) $form->getMessages();
15623 anderson 461
                foreach ($form_messages  as $fieldname => $field_messages) {
15397 efrain 462
                    $messages[$fieldname] = array_values($field_messages);
463
                }
15623 anderson 464
 
15397 efrain 465
                return new JsonModel([
466
                    'success'   => false,
467
                    'data'   => $messages
468
                ]);
469
            }
470
        } else if ($request->isGet()) {
471
 
15623 anderson 472
 
15397 efrain 473
            $hydrator = new ObjectPropertyHydrator();
474
            $data = $hydrator->extract($discoveryContact);
15623 anderson 475
 
15397 efrain 476
            $data['first_name'] = $data['first_name'] ? trim($data['first_name']) : '';
477
            $data['last_name'] = $data['last_name'] ? trim($data['last_name']) : '';
478
            $data['corporate_email'] = $data['corporate_email'] ? trim($data['corporate_email']) : '';
479
            $data['company'] = $data['company'] ? trim($data['company']) : '';
480
            $data['position'] = $data['position'] ? trim($data['position']) : '';
481
            $data['country'] = $data['country'] ? trim($data['country']) : '';
482
            $data['state'] = $data['state'] ? trim($data['state']) : '';
483
            $data['city'] = $data['city'] ? trim($data['city']) : '';
484
            $data['phone'] = $data['phone'] ? trim($data['phone']) : '';
485
            $data['phone_extension'] = $data['phone_extension'] ? trim($data['phone_extension']) : '';
486
            $data['personal_email'] = $data['personal_email'] ? trim($data['personal_email']) : '';
487
            $data['celular'] = $data['celular'] ? trim($data['celular']) : '';
488
            $data['whatsapp'] = $data['whatsapp'] ? trim($data['whatsapp']) : '';
489
            $data['linkedin'] = $data['linkedin'] ? trim($data['linkedin']) : '';
16766 efrain 490
            $data['scholarship'] = $data['scholarship'] ? trim($data['scholarship']) : '';
15623 anderson 491
 
492
 
493
 
494
 
15397 efrain 495
            $result = [
496
                'success' => true,
497
                'data' =>  $data
498
            ];
15623 anderson 499
 
15397 efrain 500
            return new JsonModel($result);
501
        } else {
502
            $data = [
503
                'success' => false,
504
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
505
            ];
15623 anderson 506
 
15397 efrain 507
            return new JsonModel($data);
508
        }
15623 anderson 509
 
15397 efrain 510
        return new JsonModel($data);
511
    }
15623 anderson 512
 
15397 efrain 513
    public function deleteAction()
514
    {
515
        $currentUserPlugin = $this->plugin('currentUserPlugin');
516
        $currentUser = $currentUserPlugin->getUser();
15623 anderson 517
 
15397 efrain 518
        $request = $this->getRequest();
519
        $uuid = $this->params()->fromRoute('id');
15623 anderson 520
 
521
        if (!$uuid) {
15397 efrain 522
            $data = [
523
                'success'   => false,
524
                'data'   => 'ERROR_INVALID_PARAMETER'
525
            ];
15623 anderson 526
 
15397 efrain 527
            return new JsonModel($data);
528
        }
529
 
530
        $discoveryContactMapper = DiscoveryContactMapper::getInstance($this->adapter);
531
        $discoveryContact = $discoveryContactMapper->fetchOneByUuid($uuid);
15623 anderson 532
        if (!$discoveryContact) {
15397 efrain 533
            $data = [
534
                'success'   => false,
535
                'data'   => 'ERROR_RECORD_NOT_FOUND'
536
            ];
15623 anderson 537
 
15397 efrain 538
            return new JsonModel($data);
539
        }
15623 anderson 540
 
541
        if ($request->isPost()) {
15397 efrain 542
            $result = $discoveryContactMapper->delete($discoveryContact);
15623 anderson 543
            if ($result) {
15397 efrain 544
                $this->logger->info('Se borro el Contacto : ' . $discoveryContact->first_name . ' ' . $discoveryContact->last_name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
15623 anderson 545
 
15397 efrain 546
                $data = [
547
                    'success' => true,
548
                    'data' => 'LABEL_RECORD_DELETED'
549
                ];
550
            } else {
551
 
552
                $data = [
553
                    'success'   => false,
554
                    'data'      => $discoveryContactMapper->getError()
555
                ];
556
 
557
                return new JsonModel($data);
558
            }
559
        } else {
560
            $data = [
561
                'success' => false,
562
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
563
            ];
15623 anderson 564
 
15397 efrain 565
            return new JsonModel($data);
566
        }
15623 anderson 567
 
15397 efrain 568
        return new JsonModel($data);
569
    }
15623 anderson 570
 
15397 efrain 571
    public function viewAction()
572
    {
573
        $currentUserPlugin = $this->plugin('currentUserPlugin');
574
        $currentUser = $currentUserPlugin->getUser();
575
        $currentCompany = $currentUserPlugin->getCompany();
15623 anderson 576
 
15397 efrain 577
        $request = $this->getRequest();
578
        $uuid = $this->params()->fromRoute('id');
15623 anderson 579
 
580
 
581
        if (!$uuid) {
15397 efrain 582
            $data = [
583
                'success'   => false,
584
                'data'   => 'ERROR_INVALID_PARAMETER'
585
            ];
15623 anderson 586
 
15397 efrain 587
            return new JsonModel($data);
588
        }
15623 anderson 589
 
15397 efrain 590
        $discoveryContactMapper = DiscoveryContactMapper::getInstance($this->adapter);
591
        $discoveryContact = $discoveryContactMapper->fetchOneByUuid($uuid);
15623 anderson 592
        if (!$discoveryContact) {
15397 efrain 593
            $data = [
594
                'success'   => false,
595
                'data'   => 'ERROR_RECORD_NOT_FOUND'
596
            ];
15623 anderson 597
 
15397 efrain 598
            return new JsonModel($data);
599
        }
600
 
15623 anderson 601
 
602
 
15397 efrain 603
        if ($request->isGet()) {
15623 anderson 604
 
605
 
15397 efrain 606
            $hydrator = new ObjectPropertyHydrator();
607
            $data = $hydrator->extract($discoveryContact);
15623 anderson 608
 
15397 efrain 609
            $data['first_name'] = $data['first_name'] ? trim($data['first_name']) : '';
610
            $data['last_name'] = $data['last_name'] ? trim($data['last_name']) : '';
611
            $data['corporate_email'] = $data['corporate_email'] ? trim($data['corporate_email']) : '';
612
            $data['company'] = $data['company'] ? trim($data['company']) : '';
613
            $data['position'] = $data['position'] ? trim($data['position']) : '';
614
            $data['country'] = $data['country'] ? trim($data['country']) : '';
615
            $data['state'] = $data['state'] ? trim($data['state']) : '';
616
            $data['city'] = $data['city'] ? trim($data['city']) : '';
617
            $data['phone'] = $data['phone'] ? trim($data['phone']) : '';
618
            $data['phone_extension'] = $data['phone_extension'] ? trim($data['phone_extension']) : '';
619
            $data['personal_email'] = $data['personal_email'] ? trim($data['personal_email']) : '';
620
            $data['celular'] = $data['celular'] ? trim($data['celular']) : '';
621
            $data['whatsapp'] = $data['whatsapp'] ? trim($data['whatsapp']) : '';
622
            $data['linkedin'] = $data['linkedin'] ? trim($data['linkedin']) : '';
16766 efrain 623
            $data['scholarship'] = $data['scholarship'] ? trim($data['scholarship']) : '';
15623 anderson 624
 
625
 
15397 efrain 626
            $data['link_interactions'] = $this->url()->fromRoute('discovery-contacts/interactions', ['id' => $discoveryContact->uuid]);
627
            $data['link_interactions_add'] = $this->url()->fromRoute('discovery-contacts/interactions/add', ['id' => $discoveryContact->uuid]);
628
            $data['link_logs'] = $this->url()->fromRoute('discovery-contacts/logs', ['id' => $discoveryContact->uuid]);
629
 
15623 anderson 630
 
631
 
15397 efrain 632
            $result = [
633
                'success' => true,
634
                'data' =>  $data
635
            ];
15623 anderson 636
 
15397 efrain 637
            return new JsonModel($result);
638
        } else {
639
            $data = [
640
                'success' => false,
641
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
642
            ];
15623 anderson 643
 
15397 efrain 644
            return new JsonModel($data);
645
        }
15623 anderson 646
 
15397 efrain 647
        return new JsonModel($data);
648
    }
15623 anderson 649
 
650
 
15546 efrain 651
    public function uploadAction()
652
    {
653
        $request = $this->getRequest();
15623 anderson 654
 
15546 efrain 655
        $currentUserPlugin = $this->plugin('currentUserPlugin');
656
        $currentUser    = $currentUserPlugin->getUser();
657
        $currentCompany = $currentUserPlugin->getCompany();
15623 anderson 658
 
15546 efrain 659
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
660
        $currentNetwork = $currentNetworkPlugin->getNetwork();
15623 anderson 661
 
15546 efrain 662
        $request    = $this->getRequest();
663
 
15623 anderson 664
 
665
 
666
 
667
        if ($request->isPost()) {
668
 
16766 efrain 669
            $step = Functions::sanitizeFilterString($$this->params()->fromPost('step'));
15623 anderson 670
            if ($step == 'validation') {
671
 
672
 
673
 
15546 efrain 674
                $form = new  ContactUploadForm();
675
                $dataPost = array_merge($request->getPost()->toArray(), $request->getFiles()->toArray());
15623 anderson 676
 
15546 efrain 677
                $form->setData($dataPost);
15623 anderson 678
 
679
                if ($form->isValid()) {
680
 
15546 efrain 681
                    $file = $_FILES['file'];
682
                    $tmp_filename = $file['tmp_name'];
683
                    $final_filename =  'data/' . $file['name'];
15623 anderson 684
 
685
                    if (!move_uploaded_file($tmp_filename, $final_filename)) {
15546 efrain 686
                        return new JsonModel([
687
                            'success' => false,
688
                            'data' => 'ERROR_UPLOAD_FILE'
689
                        ]);
690
                    }
15623 anderson 691
 
692
 
15546 efrain 693
                    $emails = [];
694
                    $contacts = [];
695
                    $spreadsheet = IOFactory::load($final_filename);
696
                    $records = $spreadsheet->getActiveSheet()->toArray(null, true, true, true);
15623 anderson 697
 
698
                    foreach ($records as $record) {
15546 efrain 699
                        /*
700
                        A = Nombre
701
                        B = Apellido
702
                        C = Correo Personal
703
                        D = Correo Trabajo
704
                        E = Empresa
705
                        F = Puesto
706
                        G = Pais
707
                        H = Estado
708
                        I = Ciudad
709
                        J = Telefono
710
                        K = Extensión
711
                        L = Celular
712
                        M = Whatsapp
713
                        N = Linkedin
15831 efrain 714
                        O = Sector
15546 efrain 715
 
716
                         */
15623 anderson 717
 
718
 
16766 efrain 719
                        $first_name = Functions::sanitizeFilterString($record['A']);
720
                        $last_name = Functions::sanitizeFilterString($record['B']);
721
                        $email_personal = strtolower(Functions::sanitizeFilterString($record['C']));
722
                        $email_company = strtolower(Functions::sanitizeFilterString($record['D']));
15623 anderson 723
 
16766 efrain 724
                        $company =  isset($record['E']) ? Functions::sanitizeFilterString($record['E']) : '';
725
                        $position = isset($record['F']) ? Functions::sanitizeFilterString($record['F']) : '';
726
                        $country = isset($record['G']) ? Functions::sanitizeFilterString($record['G']) : '';
727
                        $state = isset($record['H']) ? Functions::sanitizeFilterString($record['H']) : '';
728
                        $city = isset($record['I']) ? Functions::sanitizeFilterString($record['I']) : '';
15623 anderson 729
 
730
 
16766 efrain 731
                        $phone = isset($record['J']) ? Functions::sanitizeFilterString(filter_var($record['J'])) : '';
15623 anderson 732
                        $phone = preg_replace('/[^0-9]/', '', $phone);
733
 
16766 efrain 734
                        $extension = isset($record['K']) ? Functions::sanitizeFilterString($record['K']) : '';
15623 anderson 735
                        $extension = preg_replace('/[^0-9]/', '', $extension);
736
 
16766 efrain 737
                        $movil = isset($record['L']) ? Functions::sanitizeFilterString($record['L']) : '';
15623 anderson 738
                        $movil = preg_replace('/[^0-9]/', '', $movil);
739
 
16766 efrain 740
                        $whatsapp = isset($record['M']) ? Functions::sanitizeFilterString($record['M']) : '';
15623 anderson 741
                        $whatsapp = preg_replace('/[^0-9]/', '', $whatsapp);
742
 
743
 
15546 efrain 744
                        $linkedin = isset($record['N']) ? trim(filter_var($record['N'], FILTER_SANITIZE_URL)) : '';
16766 efrain 745
                        $sector = isset($record['O']) ? Functions::sanitizeFilterString($record['O']) : '';
746
                        $scholarship = isset($record['P']) ? strtolower(Functions::sanitizeFilterString($record['P'])) : '';
747
 
748
                        if($scholarship == 'yes' || $scholarship == 'si') {
749
                            $scholarship = DiscoveryContact::SCHOLARSHIP_YES;
750
                        } else {
751
                            $scholarship = DiscoveryContact::SCHOLARSHIP_NO;
752
                        }
753
 
754
 
755
 
756
 
15546 efrain 757
                        //||  empty($password)
15623 anderson 758
                        if (empty($first_name) || empty($last_name) || !filter_var($email_company, FILTER_VALIDATE_EMAIL)) {
15546 efrain 759
                            continue;
760
                        }
15623 anderson 761
 
762
                        if (!in_array($email_company, $emails)) {
763
 
15546 efrain 764
                            array_push($emails, $email_company);
15623 anderson 765
 
15546 efrain 766
                            array_push($contacts, [
15623 anderson 767
                                'first_name' =>   $first_name,
15546 efrain 768
                                'last_name' => $last_name,
769
                                'email_personal' => $email_personal,
770
                                'email_company' => $email_company,
15623 anderson 771
                                'company' => $company,
15546 efrain 772
                                'position' => $position,
773
                                'country' => $country,
774
                                'state' => $state,
775
                                'city' => $city,
776
                                'phone' => $phone,
777
                                'extension' => $extension,
778
                                'movil' => $movil,
779
                                'whatsapp' =>  $whatsapp,
780
                                'linkedin' => $linkedin,
15831 efrain 781
                                'sector' => $sector,
16766 efrain 782
                                'scholarship' => $scholarship,
15546 efrain 783
                            ]);
784
                        }
785
                    }
15623 anderson 786
 
787
 
788
                    $key = md5($currentUser->id . '-discovery-contacts-' . uniqid());
15546 efrain 789
                    $this->cache->setItem($key, serialize($contacts));
15623 anderson 790
 
15546 efrain 791
                    return new JsonModel([
792
                        'success' => true,
793
                        'data' => [
794
                            'key' => $key,
795
                            'items' => $contacts,
796
                        ]
797
                    ]);
798
                } else {
799
                    $messages = [];
800
                    $form_messages = (array) $form->getMessages();
15623 anderson 801
                    foreach ($form_messages  as $fieldname => $field_messages) {
802
 
15546 efrain 803
                        $messages[$fieldname] = array_values($field_messages);
804
                    }
15623 anderson 805
 
15546 efrain 806
                    return new JsonModel([
807
                        'success'   => false,
808
                        'data'   => $messages
809
                    ]);
810
                }
15623 anderson 811
            } else if ($step == 'process') {
812
 
16766 efrain 813
                $key = Functions::sanitizeFilterString($this->params()->fromPost('key'));
15623 anderson 814
                if (!$key) {
15546 efrain 815
                    return new JsonModel([
816
                        'success' => false,
817
                        'data' => 'ERROR_CACHE_KEY_EMPTY'
818
                    ]);
819
                }
15623 anderson 820
 
15546 efrain 821
                $value = $this->cache->getItem($key);
15623 anderson 822
                if (!$value) {
823
 
15546 efrain 824
                    return new JsonModel([
825
                        'success' => false,
826
                        'data' => 'ERROR_CACHE_NOT_FOUND'
827
                    ]);
828
                }
15623 anderson 829
 
15546 efrain 830
                $records = unserialize($value);
15623 anderson 831
                if (!$records) {
15546 efrain 832
                    return new JsonModel([
833
                        'success' => false,
834
                        'data' => 'ERROR_CACHE_INVALID'
835
                    ]);
836
                }
15623 anderson 837
 
838
 
839
                $discoveryContactMapper = DiscoveryContactMapper::getInstance($this->adapter);
840
                $discoveryContactInteractionTypeMapper = DiscoveryContactInteractionTypeMapper::getInstance($this->adapter);
841
 
16643 efrain 842
                $discoveryContactInteractionTypeMapper = DiscoveryContactInteractionTypeMapper::getInstance($this->adapter);
843
                $discoveryContactInteractionTypeDefault = $discoveryContactInteractionTypeMapper->fetchOneDefaultByCompanyId($currentCompany->id);
844
                if(!$discoveryContactInteractionTypeDefault) {
845
                    $discoveryContactInteractionTypeDefault = $discoveryContactInteractionTypeMapper->fetchOneFirstActiveByCompanyId($currentCompany->id);
846
                    $discoveryContactInteractionTypeDefault->default = DiscoveryContactInteractionType::DEFAULT_YES;
847
                    $discoveryContactInteractionTypeMapper->update($discoveryContactInteractionTypeDefault);
848
                }
849
 
850
 
851
 
15623 anderson 852
                $discoveryContactInteractionMapper = DiscoveryContactInteractionMapper::getInstance($this->adapter);
16643 efrain 853
                $discoveryContactLogMapper = DiscoveryContactLogMapper::getInstance($this->adapter);
15623 anderson 854
 
855
 
15546 efrain 856
                $new_contacts  = 0;
857
                $duplicate_contacts = 0;
858
                $error_contacts = 0;
15623 anderson 859
                foreach ($records as $record) {
15546 efrain 860
                    $first_name =   $record['first_name'];
861
                    $last_name = $record['last_name'];
862
                    $email_personal = $record['email_personal'];
863
                    $email_company = $record['email_company'];
864
                    $company = $record['company'];
865
                    $position = $record['position'];
866
                    $country = $record['country'];
867
                    $state = $record['state'];
868
                    $city = $record['city'];
869
                    $phone = $record['phone'];
870
                    $extension = $record['extension'];
871
                    $movil = $record['movil'];
872
                    $whatsapp =  $record['whatsapp'];
873
                    $linkedin = $record['linkedin'];
15831 efrain 874
                    $sector = $record['sector'];
16766 efrain 875
                    $scholarship = $record['scholarship'];
15831 efrain 876
 
877
 
15546 efrain 878
                    $discoveryContact = $discoveryContactMapper->fetchOneByCorporateEmail($email_company);
15623 anderson 879
                    if ($discoveryContact) {
15546 efrain 880
                        $duplicate_contacts++;
881
                    } else {
15623 anderson 882
 
15546 efrain 883
                        $discoveryContact = new DiscoveryContact();
884
                        $discoveryContact->company_id = $currentCompany->id;
885
                        $discoveryContact->first_name = $first_name;
886
                        $discoveryContact->last_name = $last_name;
887
                        $discoveryContact->corporate_email = $email_company;
888
                        $discoveryContact->personal_email = $email_personal;
889
                        $discoveryContact->company = $company;
890
                        $discoveryContact->position = $position;
15831 efrain 891
                        $discoveryContact->sector = $sector;
15546 efrain 892
                        $discoveryContact->country = $country;
893
                        $discoveryContact->state = $state;
894
                        $discoveryContact->city = $city;
895
                        $discoveryContact->phone = empty($phone) ? '' : '+' . $phone;
896
                        $discoveryContact->phone_extension = $extension;
897
                        $discoveryContact->celular = empty($movil) ? '' : '+' . $movil;
898
                        $discoveryContact->whatsapp = empty($whatsapp) ? '' : '+' . $whatsapp;
899
                        $discoveryContact->linkedin = $linkedin;
16766 efrain 900
                        $discoveryContact->scholarship = $scholarship;
15831 efrain 901
 
902
 
903
                        if($discoveryContactMapper->insert($discoveryContact)) {
904
                            $new_contacts++;
905
 
16643 efrain 906
                            if($discoveryContactInteractionTypeDefault) {
15831 efrain 907
 
15546 efrain 908
                                $discoveryContactInteraction = new DiscoveryContactInteraction();
909
                                $discoveryContactInteraction->company_id = $currentCompany->id;
910
                                $discoveryContactInteraction->contact_id = $discoveryContact->id;
16643 efrain 911
                                $discoveryContactInteraction->interaction_type_id = $discoveryContactInteractionTypeDefault->id;
15546 efrain 912
                                $discoveryContactInteraction->user_id = $currentUser->id;
15623 anderson 913
 
15546 efrain 914
                                $discoveryContactInteractionMapper->insert($discoveryContactInteraction);
915
                            }
16643 efrain 916
 
917
                            $discoveryContactLog = new DiscoveryContactLog();
918
                            $discoveryContactLog->company_id = $currentCompany->id;
919
                            $discoveryContactLog->contact_id = $discoveryContact->id;
920
                            $discoveryContactLog->user_id = $currentUser->id;
921
                            $discoveryContactLog->activity =  'LABEL_RECORD_CONTACT_ADDED';
922
                            $discoveryContactLog->details = 'LABEL_FIRST_NAME : ' . $discoveryContact->first_name  . PHP_EOL .
923
                            'LABEL_LAST_NAME : ' . $discoveryContact->last_name  . PHP_EOL .
924
                            'LABEL_CORPORATE_EMAIL : ' . $discoveryContact->corporate_email  . PHP_EOL .
925
                            'LABEL_COMPANY : ' . $discoveryContact->company  . PHP_EOL .
926
                            'LABEL_POSITION : ' . $discoveryContact->position  . PHP_EOL .
927
                            'LABEL_COUNTRY : ' . $discoveryContact->country  . PHP_EOL;
928
 
929
 
930
                            if ($discoveryContact->state) {
931
                                $discoveryContactLog->details .= 'LABEL_STATE : ' . $discoveryContact->state  . PHP_EOL;
932
                            }
933
                            if ($discoveryContact->city) {
934
                                $discoveryContactLog->details .= 'LABEL_CITY : ' . $discoveryContact->city  . PHP_EOL;
935
                            }
936
                            if ($discoveryContact->phone) {
937
                                $discoveryContactLog->details .= 'LABEL_PHONE : ' . $discoveryContact->phone  . PHP_EOL;
938
                            }
939
                            if ($discoveryContact->phone_extension) {
940
                                $discoveryContactLog->details .= 'LABEL_PHONE_EXTENSION : ' . $discoveryContact->phone_extension  . PHP_EOL;
941
                            }
942
                            if ($discoveryContact->personal_email) {
943
                                $discoveryContactLog->details .= 'LABEL_PERSONAL_EMAIL : ' . $discoveryContact->personal_email  . PHP_EOL;
944
                            }
945
                            if ($discoveryContact->celular) {
946
                                $discoveryContactLog->details .= 'LABEL_CELULAR : ' . $discoveryContact->celular  . PHP_EOL;
947
                            }
948
                            if ($discoveryContact->whatsapp) {
949
                                $discoveryContactLog->details .= 'LABEL_WHATSAPP : ' . $discoveryContact->whatsapp  . PHP_EOL;
950
                            }
951
                            if ($discoveryContact->linkedin) {
952
                                $discoveryContactLog->details .= 'LABEL_LINKEDIN : ' . $discoveryContact->linkedin  . PHP_EOL;
953
                            }
16766 efrain 954
                            if ($discoveryContact->scholarship) {
955
                                $discoveryContactLog->details .= 'LABEL_SCHOLARSHIP : ' . $discoveryContact->scholarship  . PHP_EOL;
956
                            }
16643 efrain 957
 
958
 
959
                            $discoveryContactLogMapper->insert($discoveryContactLog);
960
 
961
 
962
 
15546 efrain 963
                        } else {
964
                            $error_contacts++;
965
                        }
966
                    }
967
                }
968
 
15623 anderson 969
 
15546 efrain 970
                return new JsonModel([
971
                    'success' => true,
972
                    'data' => [
973
                        'new_contacts' => $new_contacts,
974
                        'error_contacts' => $error_contacts,
975
                        'duplicate_contacts' => $duplicate_contacts,
976
                    ]
977
                ]);
978
            } else {
979
                return new JsonModel([
980
                    'success' => false,
981
                    'data' => 'ERROR_PARAMETERS_ARE_INVALID'
982
                ]);
983
            }
984
        }
15623 anderson 985
 
15546 efrain 986
        return new JsonModel([
987
            'success' => false,
988
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
989
        ]);
990
    }
15397 efrain 991
}