Proyectos de Subversion LeadersLinked - Backend

Rev

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