Proyectos de Subversion LeadersLinked - Backend

Rev

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