Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16766 | Rev 16769 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16758 efrain 1
<?php
2
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Controller;
5
 
6
use Laminas\Db\Adapter\AdapterInterface;
16768 efrain 7
 
16758 efrain 8
use Laminas\Mvc\Controller\AbstractActionController;
9
use Laminas\Log\LoggerInterface;
10
use Laminas\View\Model\ViewModel;
11
use Laminas\View\Model\JsonModel;
12
use LeadersLinked\Mapper\QueryMapper;
13
use PhpOffice\PhpSpreadsheet\IOFactory;
14
use PhpOffice\PhpSpreadsheet\Spreadsheet;
15
use LeadersLinked\Form\DiscoveryContact\ContactDownloadForm;
16
use LeadersLinked\Mapper\DiscoveryContactMapper;
17
use Laminas\Mvc\I18n\Translator;
16766 efrain 18
use LeadersLinked\Library\Functions;
16758 efrain 19
 
20
class DiscoveryContactReportController extends AbstractActionController
21
{
22
    /**
23
     *
24
     * @var AdapterInterface
25
     */
26
    private $adapter;
16768 efrain 27
 
16758 efrain 28
 
29
    /**
30
     *
31
     * @var  LoggerInterface
32
     */
33
    private $logger;
34
 
35
    /**
36
     *
37
     * @var array
38
     */
39
    private $config;
40
 
41
    /**
42
     *
43
     * @var Translator
44
     */
45
    private $translator;
46
 
47
    /**
48
     *
49
     * @param AdapterInterface $adapter
16768 efrain 50
 
16758 efrain 51
     * @param LoggerInterface $logger
52
     * @param array $config
53
     * @param Translator $translator;
54
     */
16768 efrain 55
    public function __construct($adapter, $logger, $config, $translator)
16758 efrain 56
    {
57
        $this->adapter      = $adapter;
58
        $this->logger       = $logger;
59
        $this->config       = $config;
60
        $this->translator   = $translator;
61
    }
62
 
63
 
64
    public function indexAction()
65
    {
66
 
67
        $request = $this->getRequest();
68
        if($request->isGet()) {
69
            $currentUserPlugin = $this->plugin('currentUserPlugin');
70
            $currentUser = $currentUserPlugin->getUser();
71
            $currentCompany = $currentUserPlugin->getCompany();
72
 
73
            $headers  = $request->getHeaders();
74
 
75
            $isJson = false;
76
            if($headers->has('Accept')) {
77
                $accept = $headers->get('Accept');
78
 
79
                $prioritized = $accept->getPrioritized();
80
 
81
                foreach($prioritized as $key => $value) {
82
                    $raw = trim($value->getRaw());
83
 
84
                    if(!$isJson) {
85
                        $isJson = strpos($raw, 'json');
86
                    }
87
 
88
                }
89
            }
90
 
91
            if($isJson) {
92
 
16766 efrain 93
                $first_name      = Functions::sanitizeFilterString($this->params()->fromQuery('first_name', ''));
94
                $last_name	     = Functions::sanitizeFilterString($this->params()->fromQuery('last_name', ''));
95
                $corporate_email = Functions::sanitizeFilterString($this->params()->fromQuery('corporate_email', ''));
96
                $company         = Functions::sanitizeFilterString($this->params()->fromQuery('company', ''));
97
                $position        = Functions::sanitizeFilterString($this->params()->fromQuery('position', ''));
98
                $country	     = Functions::sanitizeFilterString($this->params()->fromQuery('country', ''));
99
                $state	         = Functions::sanitizeFilterString($this->params()->fromQuery('state', ''));
100
                $city	         = Functions::sanitizeFilterString($this->params()->fromQuery('city', ''));
101
                $personal_email  = Functions::sanitizeFilterString($this->params()->fromQuery('personal_email', ''));
102
                $phone	         = Functions::sanitizeFilterString($this->params()->fromQuery('phone', ''));
103
                $phone_extension = Functions::sanitizeFilterString($this->params()->fromQuery('phone_extension', ''));
104
                $celular	     = Functions::sanitizeFilterString($this->params()->fromQuery('celular', ''));
105
                $whatsapp        = Functions::sanitizeFilterString($this->params()->fromQuery('whatsapp', ''));
106
                $linkedin	     = Functions::sanitizeFilterString($this->params()->fromQuery('linkedin', ''));
16758 efrain 107
 
108
                $queryMapper = QueryMapper::getInstance($this->adapter);
109
                $select = $queryMapper->getSql()->select(DiscoveryContactMapper::_TABLE);
110
 
111
                if($first_name) {
112
                    $select->where->like('first_name', '%'.$first_name.'%');
113
                }
114
                if($last_name) {
115
                    $select->where->like('last_name', '%'.$last_name.'%');
116
                }
117
                if($corporate_email) {
118
                    $select->where->like('corporate_email', '%'.$corporate_email.'%');
119
                }
120
                if($company) {
121
                    $select->where->like('company', '%'.$company.'%');
122
                }
123
                if($position) {
124
                    $select->where->like('position', '%'.$position.'%');
125
                }
126
                if($country) {
127
                    $select->where->like('country', '%'.$country.'%');
128
                }
129
                if($state) {
130
                    $select->where->like('state', '%'.$state.'%');
131
                }
132
                if($city) {
133
                    $select->where->like('city', '%'.$city.'%');
134
                }
135
                if($personal_email) {
136
                    $select->where->like('personal_email', '%'.$personal_email.'%');
137
                }
138
                if($phone) {
139
                    $select->where->like('phone', '%'.$phone.'%');
140
                }
141
                if($phone_extension) {
142
                    $select->where->like('phone_extension', '%'.$phone_extension.'%');
143
                }
144
                if($celular) {
145
                    $select->where->like('celular', '%'.$celular.'%');
146
                }
147
                if($whatsapp) {
148
                    $select->where->like('whatsapp', '%'.$whatsapp.'%');
149
                }
150
                if($linkedin) {
151
                    $select->where->like('linkedin', '%'.$linkedin.'%');
152
                }
153
                $select->limit(100);
154
                $select->order('added_on ASC');
155
 
156
                $items = $queryMapper->fetchAll($select);
157
 
158
                return new JsonModel([
159
                    'success' => true,
160
                    'data' => [
161
                        'items' => $items,
162
                    ]
163
                ]);
164
 
165
 
166
            } else {
167
                $form = new ContactDownloadForm();
168
 
169
                $this->layout()->setTemplate('layout/layout-backend.phtml');
170
                $viewModel = new ViewModel();
171
                $viewModel->setTemplate('leaders-linked/discovery-contact-report/index');
172
                $viewModel->setVariables([
173
                   'form' => $form
174
                ]);
175
                return $viewModel ;
176
            }
177
        }
178
 
179
        return new JsonModel([
180
            'success' => false,
181
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
182
        ]);;
183
    }
184
 
185
    public function downloadAction()
186
    {
187
        $request = $this->getRequest();
188
        if($request->isGet()) {
189
            $currentUserPlugin = $this->plugin('currentUserPlugin');
190
            $currentUser = $currentUserPlugin->getUser();
191
            $currentCompany = $currentUserPlugin->getCompany();
192
 
16766 efrain 193
            $first_name      = Functions::sanitizeFilterString($this->params()->fromQuery('first_name', ''));
194
            $last_name	     = Functions::sanitizeFilterString($this->params()->fromQuery('last_name', ''));
195
            $corporate_email = Functions::sanitizeFilterString($this->params()->fromQuery('corporate_email', ''));
196
            $company         = Functions::sanitizeFilterString($this->params()->fromQuery('company', ''));
197
            $position        = Functions::sanitizeFilterString($this->params()->fromQuery('position', ''));
198
            $country	     = Functions::sanitizeFilterString($this->params()->fromQuery('country', ''));
199
            $state	         = Functions::sanitizeFilterString($this->params()->fromQuery('state', ''));
200
            $city	         = Functions::sanitizeFilterString($this->params()->fromQuery('city', ''));
201
            $personal_email  = Functions::sanitizeFilterString($this->params()->fromQuery('personal_email', ''));
202
            $phone	         = Functions::sanitizeFilterString($this->params()->fromQuery('phone', ''));
203
            $phone_extension = Functions::sanitizeFilterString($this->params()->fromQuery('phone_extension', ''));
204
            $celular	     = Functions::sanitizeFilterString($this->params()->fromQuery('celular', ''));
205
            $whatsapp        = Functions::sanitizeFilterString($this->params()->fromQuery('whatsapp', ''));
206
            $linkedin	     = Functions::sanitizeFilterString($this->params()->fromQuery('linkedin', ''));
207
            $scholarship	 = Functions::sanitizeFilterString($this->params()->fromQuery('scholarship', ''));
16758 efrain 208
 
209
            $queryMapper = QueryMapper::getInstance($this->adapter);
210
            $select = $queryMapper->getSql()->select(DiscoveryContactMapper::_TABLE);
211
            $select->columns([
212
                'first_name',
213
                'last_name',
214
                'personal_email',
215
                'corporate_email',
216
                'company',
217
                'position',
218
                'country',
219
                'state',
220
                'city',
221
                'phone',
222
                'phone_extension',
223
                'celular',
224
                'whatsapp',
225
                'linkedin',
226
                'sector',
16766 efrain 227
                'scholarship',
16759 efrain 228
                'added_on'
16758 efrain 229
            ]);
230
 
231
            if($first_name) {
232
                $select->where->like('first_name', '%'.$first_name.'%');
233
            }
234
            if($last_name) {
235
                $select->where->like('last_name', '%'.$last_name.'%');
236
            }
237
            if($corporate_email) {
238
                $select->where->like('corporate_email', '%'.$corporate_email.'%');
239
            }
240
            if($company) {
241
                $select->where->like('company', '%'.$company.'%');
242
            }
243
            if($position) {
244
                $select->where->like('position', '%'.$position.'%');
245
            }
246
            if($country) {
247
                $select->where->like('country', '%'.$country.'%');
248
            }
249
            if($state) {
250
                $select->where->like('state', '%'.$state.'%');
251
            }
252
            if($city) {
253
                $select->where->like('city', '%'.$city.'%');
254
            }
255
            if($personal_email) {
256
                $select->where->like('personal_email', '%'.$personal_email.'%');
257
            }
258
            if($phone) {
259
                $select->where->like('phone', '%'.$phone.'%');
260
            }
261
            if($phone_extension) {
262
                $select->where->like('phone_extension', '%'.$phone_extension.'%');
263
            }
264
            if($celular) {
265
                $select->where->like('celular', '%'.$celular.'%');
266
            }
267
            if($whatsapp) {
268
                $select->where->like('whatsapp', '%'.$whatsapp.'%');
269
            }
270
            if($linkedin) {
271
                $select->where->like('linkedin', '%'.$linkedin.'%');
272
            }
16766 efrain 273
            if($scholarship) {
274
               // scholarship
275
            }
16758 efrain 276
 
277
            $spreadsheet = new Spreadsheet();
278
            $spreadsheet->getProperties()->setTitle('Relevamiento de Contactos');
279
 
280
            $sheetIndex = 0;
281
            $workSheet  =  $spreadsheet->setActiveSheetIndex($sheetIndex);
282
 
283
            $max_row = 100000;
284
            $col = 1;
285
            $row = 1;
286
            $items = $queryMapper->fetchAll($select);
16760 efrain 287
 
288
 
289
            $j = 0;
16758 efrain 290
            foreach ( $items as $item )
291
            {
16760 efrain 292
                $j++;
16758 efrain 293
 
294
                if($row == 1) {
295
                    $col = 1;
296
                    $labels = [
297
                        $this->translator->translate('LABEL_FIRST_NAME'),
298
                        $this->translator->translate('LABEL_LAST_NAME'),
299
                        $this->translator->translate('LABEL_PERSONAL_EMAIL'),
300
                        $this->translator->translate('LABEL_CORPORATE_EMAIL'),
301
                        $this->translator->translate('LABEL_COMPANY'),
302
                        $this->translator->translate('LABEL_POSITION'),
303
                        $this->translator->translate('LABEL_COUNTRY'),
304
                        $this->translator->translate('LABEL_STATE'),
305
                        $this->translator->translate('LABEL_CITY'),
306
                        $this->translator->translate('LABEL_PHONE'),
307
                        $this->translator->translate('LABEL_PHONE_EXTENSION'),
308
                        $this->translator->translate('LABEL_CELULAR'),
309
                        $this->translator->translate('LABEL_WHATSAPP'),
310
                        $this->translator->translate('LABEL_LINKEDIN'),
16759 efrain 311
                        $this->translator->translate('LABEL_SECTOR'),
16766 efrain 312
                        $this->translator->translate('LABEL_SCHOLARSHIP'),
16759 efrain 313
                        $this->translator->translate('LABEL_ADDED_DATE')
16758 efrain 314
                    ];
315
 
316
 
317
                    foreach ($labels as $label)
318
                    {
319
                        $workSheet->setCellValue([$col, $row],$label );
320
                        $col++;
321
                    }
322
                    $row++;
323
                }
324
 
325
 
326
 
327
                $col = 1;
328
                foreach($item as $value)
329
                {
330
                    $workSheet->setCellValue([$col, $row], $value);
331
                    $col++;
332
                }
333
 
16759 efrain 334
 
16760 efrain 335
                $row++;
16758 efrain 336
                if($row > $max_row) {
337
                    $row = 1;
338
                    $workSheet = $spreadsheet->createSheet();
339
 
340
                }
341
 
342
            }
343
 
16760 efrain 344
 
345
 
16758 efrain 346
            $fileName = 'reporte_relevamiento_de_contactos_'  . date('d-m-Y-h-i-a', time()) . '.xls';
347
            $tempFilename = tempnam(sys_get_temp_dir(), 'reporte_relevamiento_de_contactos_' . time());
348
 
349
            $writer = IOFactory::createWriter($spreadsheet, 'Xlsx');
350
            $writer->save($tempFilename);
351
 
352
            $content = file_get_contents($tempFilename);
353
            @unlink($tempFilename);
354
 
355
            return new JsonModel([
356
                'success' => true,
357
                'data' => [
358
                    'content' => base64_encode($content),
359
                    'basename' => $fileName
360
 
361
                ]
362
            ]);
363
 
364
        }
365
 
366
        return new JsonModel([
367
            'success' => false,
368
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
369
        ]);;
370
    }
371
 
372
 
373
 
374
 
375
}