Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6849 | Rev 6866 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6849 Rev 6854
Línea 1... Línea 1...
1
<?php
1
<?php
-
 
2
 
2
declare(strict_types=1);
3
declare(strict_types=1);
Línea 3... Línea 4...
3
 
4
 
Línea 4... Línea 5...
4
namespace LeadersLinked\Controller;
5
namespace LeadersLinked\Controller;
5
 
6
 
Línea 6... Línea 7...
6
use Nullix\CryptoJsAes\CryptoJsAes;
7
use Nullix\CryptoJsAes\CryptoJsAes;
7
use GeoIp2\Database\Reader As GeoIp2Reader;
8
use GeoIp2\Database\Reader as GeoIp2Reader;
8
 
9
 
9
use Laminas\Authentication\AuthenticationService;
10
use Laminas\Authentication\AuthenticationService;
Línea 57... Línea 58...
57
    /**
58
    /**
58
     *
59
     *
59
     * @var AdapterInterface
60
     * @var AdapterInterface
60
     */
61
     */
61
    private $adapter;
62
    private $adapter;
62
    
63
 
63
    /**
64
    /**
64
     *
65
     *
65
     * @var  LoggerInterface
66
     * @var  LoggerInterface
66
     */
67
     */
67
    private $logger;
68
    private $logger;
Línea 69... Línea 70...
69
    /**
70
    /**
70
     * 
71
     * 
71
     * @var array
72
     * @var array
72
     */
73
     */
73
    private $config;
74
    private $config;
74
    
75
 
75
    /**
76
    /**
76
     * 
77
     * 
77
     * @var CacheInterface
78
     * @var CacheInterface
78
     */
79
     */
79
    private $cache;
80
    private $cache;
80
    
81
 
Línea 81... Línea 82...
81
 
82
 
82
    /**
83
    /**
83
     * 
84
     * 
84
     * @param AdapterInterface $adapter
85
     * @param AdapterInterface $adapter
Línea 90... Línea 91...
90
        $this->adapter      = $adapter;
91
        $this->adapter      = $adapter;
91
        $this->logger       = $logger;
92
        $this->logger       = $logger;
92
        $this->config       = $config;
93
        $this->config       = $config;
93
        $this->cache    = CacheImpl::getInstance($config);
94
        $this->cache    = CacheImpl::getInstance($config);
94
    }
95
    }
95
    
96
 
96
    public function signinAction()
97
    public function signinAction()
97
    {
98
    {
98
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
99
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
99
        $currentNetwork = $currentNetworkPlugin->getNetwork();
100
        $currentNetwork = $currentNetworkPlugin->getNetwork();
100
        
101
 
101
        $request = $this->getRequest();
102
        $request = $this->getRequest();
102
        
103
 
103
        if($request->isPost()) {
104
        if ($request->isPost()) {
104
            $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
105
            $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
105
            $currentNetwork = $currentNetworkPlugin->getNetwork();
106
            $currentNetwork = $currentNetworkPlugin->getNetwork();
Línea 106... Línea 107...
106
 
107
 
107
            
108
 
108
            $form = new  SigninForm($this->config);
109
            $form = new  SigninForm($this->config);
109
            $dataPost = $request->getPost()->toArray();
110
            $dataPost = $request->getPost()->toArray();
110
            
111
 
111
            if(empty($_SESSION['aes'])) {
112
            if (empty($_SESSION['aes'])) {
112
                return new JsonModel([
113
                return new JsonModel([
113
                    'success'   => false,
114
                    'success'   => false,
114
                    'data'      => 'ERROR_WEBSERVICE_ENCRYPTION_KEYS_NOT_FOUND'
115
                    'data'      => 'ERROR_WEBSERVICE_ENCRYPTION_KEYS_NOT_FOUND'
115
                ]);
116
                ]);
116
            }
117
            }
117
            
118
 
118
            if(!empty( $dataPost['email'])) {
119
            if (!empty($dataPost['email'])) {
119
                $dataPost['email'] = CryptoJsAes::decrypt( $dataPost['email'], $_SESSION['aes']);
120
                $dataPost['email'] = CryptoJsAes::decrypt($dataPost['email'], $_SESSION['aes']);
120
            }
121
            }
121
            
122
 
122
            
123
 
123
            if(!empty( $dataPost['password'])) {
124
            if (!empty($dataPost['password'])) {
124
                $dataPost['password'] = CryptoJsAes::decrypt( $dataPost['password'], $_SESSION['aes']);
125
                $dataPost['password'] = CryptoJsAes::decrypt($dataPost['password'], $_SESSION['aes']);
125
            }
126
            }
126
            
127
 
127
            $form->setData($dataPost);
128
            $form->setData($dataPost);
128
            
129
 
129
            if($form->isValid()) {
130
            if ($form->isValid()) {
130
                $dataPost = (array) $form->getData();
131
                $dataPost = (array) $form->getData();
131
                
132
 
132
                $email      = $dataPost['email'];
133
                $email      = $dataPost['email'];
133
                $password   = $dataPost['password'];
134
                $password   = $dataPost['password'];
134
                $remember   = $dataPost['remember'];
135
                $remember   = $dataPost['remember'];
135
                
136
 
136
                $authAdapter = new AuthAdapter($this->adapter, $this->logger);
137
                $authAdapter = new AuthAdapter($this->adapter, $this->logger);
137
                $authAdapter->setData($email, $password, $currentNetwork->id);
138
                $authAdapter->setData($email, $password, $currentNetwork->id);
138
                $authService = new AuthenticationService();
139
                $authService = new AuthenticationService();
139
                
140
 
140
                $result = $authService->authenticate($authAdapter);
141
                $result = $authService->authenticate($authAdapter);
141
   
142
 
142
                if($result->getCode() == AuthResult::SUCCESS) {
143
                if ($result->getCode() == AuthResult::SUCCESS) {
143
                    
144
 
144
                    
145
 
145
                    $userMapper = UserMapper::getInstance($this->adapter);
146
                    $userMapper = UserMapper::getInstance($this->adapter);
146
                    $user = $userMapper->fetchOneByEmail($email);
147
                    $user = $userMapper->fetchOneByEmail($email);
147
                    
148
 
148
                    $navigator = get_browser(null, true);
149
                    $navigator = get_browser(null, true);
149
                    $device_type    =  isset($navigator['device_type']) ? $navigator['device_type'] : '';
150
                    $device_type    =  isset($navigator['device_type']) ? $navigator['device_type'] : '';
150
                    $platform       =  isset($navigator['platform']) ? $navigator['platform'] : '';
151
                    $platform       =  isset($navigator['platform']) ? $navigator['platform'] : '';
151
                    $browser        =  isset($navigator['browser']) ? $navigator['browser'] : '';
152
                    $browser        =  isset($navigator['browser']) ? $navigator['browser'] : '';
152
                    
153
 
153
                    
154
 
154
                    $istablet = isset($navigator['istablet']) ?  intval( $navigator['istablet']) : 0;
155
                    $istablet = isset($navigator['istablet']) ?  intval($navigator['istablet']) : 0;
155
                    $ismobiledevice = isset($navigator['ismobiledevice']) ? intval( $navigator['ismobiledevice']) : 0;
156
                    $ismobiledevice = isset($navigator['ismobiledevice']) ? intval($navigator['ismobiledevice']) : 0;
156
                    $version = isset($navigator['version']) ? $navigator['version'] : '';
157
                    $version = isset($navigator['version']) ? $navigator['version'] : '';
157
                    
158
 
158
                    
159
 
159
                    $userBrowserMapper = UserBrowserMapper::getInstance($this->adapter);
160
                    $userBrowserMapper = UserBrowserMapper::getInstance($this->adapter);
160
                    $userBrowser = $userBrowserMapper->fetch($user->id, $device_type, $platform, $browser);
161
                    $userBrowser = $userBrowserMapper->fetch($user->id, $device_type, $platform, $browser);
161
                    if($userBrowser) {
162
                    if ($userBrowser) {
162
                        $userBrowserMapper->update($userBrowser);
163
                        $userBrowserMapper->update($userBrowser);
163
                    } else {
164
                    } else {
164
                        $userBrowser = new UserBrowser();
165
                        $userBrowser = new UserBrowser();
165
                        $userBrowser->user_id           = $user->id;
166
                        $userBrowser->user_id           = $user->id;
166
                        $userBrowser->browser           = $browser;
167
                        $userBrowser->browser           = $browser;
167
                        $userBrowser->platform          = $platform;
168
                        $userBrowser->platform          = $platform;
168
                        $userBrowser->device_type       = $device_type;
169
                        $userBrowser->device_type       = $device_type;
169
                        $userBrowser->is_tablet         = $istablet;
170
                        $userBrowser->is_tablet         = $istablet;
170
                        $userBrowser->is_mobile_device  = $ismobiledevice;
171
                        $userBrowser->is_mobile_device  = $ismobiledevice;
171
                        $userBrowser->version           = $version;
172
                        $userBrowser->version           = $version;
172
                        
173
 
173
                        $userBrowserMapper->insert($userBrowser);
174
                        $userBrowserMapper->insert($userBrowser);
174
                    }
175
                    }
175
                    //
176
                    //
176
                    
177
 
177
                    $ip = Functions::getUserIP();
178
                    $ip = Functions::getUserIP();
178
                    $ip = $ip == '127.0.0.1' ? '148.240.211.148' : $ip;
179
                    $ip = $ip == '127.0.0.1' ? '148.240.211.148' : $ip;
179
                    
180
 
180
                    $userIpMapper = UserIpMapper::getInstance($this->adapter);
181
                    $userIpMapper = UserIpMapper::getInstance($this->adapter);
181
                    $userIp = $userIpMapper->fetch($user->id, $ip);
182
                    $userIp = $userIpMapper->fetch($user->id, $ip);
182
                    if(empty($userIp)) {
183
                    if (empty($userIp)) {
183
                        
184
 
184
                        if($this->config['leaderslinked.runmode.sandbox']) {
185
                        if ($this->config['leaderslinked.runmode.sandbox']) {
185
                            $filename = $this->config['leaderslinked.geoip2.production_database'];
186
                            $filename = $this->config['leaderslinked.geoip2.production_database'];
186
                        } else {
187
                        } else {
187
                            $filename = $this->config['leaderslinked.geoip2.sandbox_database'];
188
                            $filename = $this->config['leaderslinked.geoip2.sandbox_database'];
188
                        }
189
                        }
189
                        
190
 
190
                        $reader = new GeoIp2Reader($filename); //GeoIP2-City.mmdb');
191
                        $reader = new GeoIp2Reader($filename); //GeoIP2-City.mmdb');
191
                        $record = $reader->city($ip);
192
                        $record = $reader->city($ip);
192
                        if($record) {
193
                        if ($record) {
193
                            $userIp = new UserIp();
194
                            $userIp = new UserIp();
194
                            $userIp->user_id = $user->id;
195
                            $userIp->user_id = $user->id;
195
                            $userIp->city = !empty($record->city->name) ? Functions::utf8_decode($record->city->name) : '';
196
                            $userIp->city = !empty($record->city->name) ? Functions::utf8_decode($record->city->name) : '';
196
                            $userIp->state_code = !empty($record->mostSpecificSubdivision->isoCode) ? Functions::utf8_decode($record->mostSpecificSubdivision->isoCode) : '';
197
                            $userIp->state_code = !empty($record->mostSpecificSubdivision->isoCode) ? Functions::utf8_decode($record->mostSpecificSubdivision->isoCode) : '';
Línea 199... Línea 200...
199
                            $userIp->country_name = !empty($record->country->name) ? Functions::utf8_decode($record->country->name) : '';
200
                            $userIp->country_name = !empty($record->country->name) ? Functions::utf8_decode($record->country->name) : '';
200
                            $userIp->ip = $ip;
201
                            $userIp->ip = $ip;
201
                            $userIp->latitude = !empty($record->location->latitude) ? $record->location->latitude : 0;
202
                            $userIp->latitude = !empty($record->location->latitude) ? $record->location->latitude : 0;
202
                            $userIp->longitude = !empty($record->location->longitude) ? $record->location->longitude : 0;
203
                            $userIp->longitude = !empty($record->location->longitude) ? $record->location->longitude : 0;
203
                            $userIp->postal_code = !empty($record->postal->code) ? $record->postal->code : '';
204
                            $userIp->postal_code = !empty($record->postal->code) ? $record->postal->code : '';
204
                            
205
 
205
                            $userIpMapper->insert($userIp);
206
                            $userIpMapper->insert($userIp);
206
                        }
207
                        }
207
                        
-
 
208
 
-
 
209
                    } else {
208
                    } else {
210
                        $userIpMapper->update($userIp);
209
                        $userIpMapper->update($userIp);
211
                    }
210
                    }
Línea 212... Línea 211...
212
 
211
 
213
                    if($remember) {
212
                    if ($remember) {
214
                        $expired = time() + 365 * 24 * 60 * 60;
213
                        $expired = time() + 365 * 24 * 60 * 60;
215
                        
214
 
216
                        $cookieEmail = new SetCookie('email', $email, $expired);
-
 
217
                        
215
                        $cookieEmail = new SetCookie('email', $email, $expired);
218
                    } else {
216
                    } else {
219
                        $expired = time() - 7200;
217
                        $expired = time() - 7200;
220
                        $cookieEmail = new SetCookie('email', '', $expired);
-
 
221
                        
218
                        $cookieEmail = new SetCookie('email', '', $expired);
222
                    }
219
                    }
223
                    
220
 
224
                    
221
 
225
                    $response = $this->getResponse();
222
                    $response = $this->getResponse();
226
                    $response->getHeaders()->addHeader($cookieEmail);
223
                    $response->getHeaders()->addHeader($cookieEmail);
227
                    
224
 
228
                    
225
 
229
                    
226
 
230
                    
227
 
231
                    
228
 
232
                    
229
 
233
                    
230
 
234
                    $this->logger->info('Ingreso a LeadersLiked', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
231
                    $this->logger->info('Ingreso a LeadersLiked', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
235
                    
232
 
236
                    $user_share_invitation = $this->cache->getItem('user_share_invitation');
233
                    $user_share_invitation = $this->cache->getItem('user_share_invitation');
237
                    
234
 
238
                    if($user_share_invitation) {
235
                    if ($user_share_invitation) {
239
                        $userRedirect = $userMapper->fetchOneByUuid($user_share_invitation);
236
                        $userRedirect = $userMapper->fetchOneByUuid($user_share_invitation);
240
                        if($userRedirect && $userRedirect->status == User::STATUS_ACTIVE && $user->id != $userRedirect->id) {
237
                        if ($userRedirect && $userRedirect->status == User::STATUS_ACTIVE && $user->id != $userRedirect->id) {
241
                            $connectionMapper = ConnectionMapper::getInstance($this->adapter);
238
                            $connectionMapper = ConnectionMapper::getInstance($this->adapter);
242
                            $connection = $connectionMapper->fetchOneByUserId1AndUserId2($user->id, $userRedirect->id);
239
                            $connection = $connectionMapper->fetchOneByUserId1AndUserId2($user->id, $userRedirect->id);
243
                            
240
 
244
                            if($connection) {
241
                            if ($connection) {
245
                                
242
 
246
                                if($connection->status != Connection::STATUS_ACCEPTED) {
243
                                if ($connection->status != Connection::STATUS_ACCEPTED) {
247
                                    $connectionMapper->approve($connection);
244
                                    $connectionMapper->approve($connection);
248
                                }
-
 
249
                                
245
                                }
250
                            } else {
246
                            } else {
251
                                $connection = new Connection();
247
                                $connection = new Connection();
252
                                $connection->request_from = $user->id;
248
                                $connection->request_from = $user->id;
253
                                $connection->request_to = $userRedirect->id;
249
                                $connection->request_to = $userRedirect->id;
254
                                $connection->status = Connection::STATUS_ACCEPTED;
250
                                $connection->status = Connection::STATUS_ACCEPTED;
255
                                
251
 
256
                                $connectionMapper->insert($connection);
252
                                $connectionMapper->insert($connection);
257
                            }
253
                            }
258
                        }
254
                        }
259
                    }
255
                    }
260
                    
256
 
261
                    
257
 
262
                    
258
 
263
                    $data = [
259
                    $data = [
264
                        'success'   => true,
260
                        'success'   => true,
265
                        'data'      => $this->url()->fromRoute('dashboard'),
261
                        'data'      => $this->url()->fromRoute('dashboard'),
266
                    ];
262
                    ];
267
                   
263
 
268
                    $this->cache->removeItem('user_share_invitation');
-
 
269
                    
-
 
270
                 
264
                    $this->cache->removeItem('user_share_invitation');
271
                } else {
265
                } else {
272
                    
266
 
-
 
267
                    $message = $result->getMessages()[0];
273
                    $message = $result->getMessages()[0];
268
                    if (!in_array($message, [
274
                    if(!in_array($message, ['ERROR_USER_NOT_FOUND', 'ERROR_USER_EMAIL_HASNT_BEEN_VARIFIED', 'ERROR_USER_IS_BLOCKED',
269
                        'ERROR_USER_NOT_FOUND', 'ERROR_USER_EMAIL_HASNT_BEEN_VARIFIED', 'ERROR_USER_IS_BLOCKED',
275
                        'ERROR_USER_IS_INACTIVE', 'ERROR_ENTERED_PASS_INCORRECT_USER_IS_BLOCKED', 'ERROR_ENTERED_PASS_INCORRECT_2',
270
                        'ERROR_USER_IS_INACTIVE', 'ERROR_ENTERED_PASS_INCORRECT_USER_IS_BLOCKED', 'ERROR_ENTERED_PASS_INCORRECT_2',
276
                        'ERROR_ENTERED_PASS_INCORRECT_1', 'ERROR_USER_REQUEST_ACCESS_IS_PENDING', 'ERROR_USER_REQUEST_ACCESS_IS_REJECTED' 
271
                        'ERROR_ENTERED_PASS_INCORRECT_1', 'ERROR_USER_REQUEST_ACCESS_IS_PENDING', 'ERROR_USER_REQUEST_ACCESS_IS_REJECTED'
277
                        
272
 
278
                        
273
 
279
                    ])) {
-
 
280
                        
-
 
281
                        
274
                    ])) {
282
                    }
275
                    }
283
                    
276
 
284
                    switch($message) 
-
 
285
                    {
277
                    switch ($message) {
286
                        case 'ERROR_USER_NOT_FOUND' : 
278
                        case 'ERROR_USER_NOT_FOUND':
287
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Email no existe', ['ip' => Functions::getUserIP()]);
279
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Email no existe', ['ip' => Functions::getUserIP()]);
288
                            break;
280
                            break;
289
                            
281
 
290
                        case 'ERROR_USER_EMAIL_HASNT_BEEN_VARIFIED' : 
282
                        case 'ERROR_USER_EMAIL_HASNT_BEEN_VARIFIED':
291
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Email no verificado', ['ip' => Functions::getUserIP()]);
283
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Email no verificado', ['ip' => Functions::getUserIP()]);
292
                            break;
284
                            break;
293
                            
285
 
294
                        case 'ERROR_USER_IS_BLOCKED' : 
286
                        case 'ERROR_USER_IS_BLOCKED':
295
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Usuario bloqueado', ['ip' => Functions::getUserIP()]);
287
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Usuario bloqueado', ['ip' => Functions::getUserIP()]);
296
                            break;
288
                            break;
297
                            
289
 
298
                        case 'ERROR_USER_IS_INACTIVE' :  
290
                        case 'ERROR_USER_IS_INACTIVE':
299
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Usuario inactivo', ['ip' => Functions::getUserIP()]);
291
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Usuario inactivo', ['ip' => Functions::getUserIP()]);
300
                            break;
292
                            break;
301
                            
293
 
302
                            
294
 
303
                        case 'ERROR_ENTERED_PASS_INCORRECT_USER_IS_BLOCKED': 
295
                        case 'ERROR_ENTERED_PASS_INCORRECT_USER_IS_BLOCKED':
304
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - 3er Intento Usuario bloqueado', ['ip' => Functions::getUserIP()]);
296
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - 3er Intento Usuario bloqueado', ['ip' => Functions::getUserIP()]);
305
                            break;
297
                            break;
306
                            
298
 
307
                            
299
 
308
                        case 'ERROR_ENTERED_PASS_INCORRECT_2' : 
300
                        case 'ERROR_ENTERED_PASS_INCORRECT_2':
309
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - 1er Intento', ['ip' => Functions::getUserIP()]);
301
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - 1er Intento', ['ip' => Functions::getUserIP()]);
310
                            break;
302
                            break;
311
                            
303
 
312
                            
304
 
313
                        case 'ERROR_ENTERED_PASS_INCORRECT_1' : 
305
                        case 'ERROR_ENTERED_PASS_INCORRECT_1':
314
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - 2do Intento', ['ip' => Functions::getUserIP()]);
306
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - 2do Intento', ['ip' => Functions::getUserIP()]);
315
                            break;
307
                            break;
316
                            
308
 
317
                            
309
 
318
                        case 'ERROR_USER_REQUEST_ACCESS_IS_PENDING' :
310
                        case 'ERROR_USER_REQUEST_ACCESS_IS_PENDING':
319
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Falta verificar que pertence a la Red Privada', ['ip' => Functions::getUserIP()]);
311
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Falta verificar que pertence a la Red Privada', ['ip' => Functions::getUserIP()]);
320
                            break;
312
                            break;
321
                            
313
 
322
                        case  'ERROR_USER_REQUEST_ACCESS_IS_REJECTED' :
314
                        case  'ERROR_USER_REQUEST_ACCESS_IS_REJECTED':
323
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Rechazado por no pertence a la Red Privada', ['ip' => Functions::getUserIP()]);
315
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Rechazado por no pertence a la Red Privada', ['ip' => Functions::getUserIP()]);
324
                            break;
316
                            break;
325
                            
317
 
326
                            
318
 
327
                        default :     
319
                        default:
328
                            $message = 'ERROR_UNKNOWN';
320
                            $message = 'ERROR_UNKNOWN';
329
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Error desconocido', ['ip' => Functions::getUserIP()]);
321
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Error desconocido', ['ip' => Functions::getUserIP()]);
330
                            break;
-
 
331
                            
-
 
332
 
322
                            break;
333
                    }
323
                    }
334
                    
324
 
335
                    
325
 
336
                    
326
 
337
                    
327
 
338
                    $data = [
328
                    $data = [
339
                        'success'   => false,
329
                        'success'   => false,
340
                        'data'   => $message
330
                        'data'   => $message
341
                    ];
-
 
342
                    
331
                    ];
343
                }
332
                }
344
                
333
 
345
                return new JsonModel($data);
-
 
346
                
334
                return new JsonModel($data);
347
            } else {
335
            } else {
348
                $messages = [];
336
                $messages = [];
349
                
337
 
350
                
338
 
351
                
339
 
352
                $form_messages = (array) $form->getMessages();
340
                $form_messages = (array) $form->getMessages();
353
                foreach($form_messages  as $fieldname => $field_messages)
-
 
354
                {
341
                foreach ($form_messages  as $fieldname => $field_messages) {
355
                    
342
 
356
                    $messages[$fieldname] = array_values($field_messages);
343
                    $messages[$fieldname] = array_values($field_messages);
357
                }
344
                }
358
                
345
 
359
                return new JsonModel([
346
                return new JsonModel([
360
                    'success'   => false,
347
                    'success'   => false,
361
                    'data'   => $messages
348
                    'data'   => $messages
362
                ]);
349
                ]);
363
            }
350
            }
364
        } else if($request->isGet())  {
351
        } else if ($request->isGet()) {
365
            
352
 
366
            if(empty($_SESSION['aes'])) {
353
            if (empty($_SESSION['aes'])) {
367
                $_SESSION['aes'] = Functions::generatePassword(16);
354
                $_SESSION['aes'] = Functions::generatePassword(16);
368
            }
355
            }
369
            
356
 
370
            if($this->config['leaderslinked.runmode.sandbox']) {
357
            if ($this->config['leaderslinked.runmode.sandbox']) {
371
                $site_key      = $this->config['leaderslinked.google_captcha.sandbox_site_key'];
358
                $site_key      = $this->config['leaderslinked.google_captcha.sandbox_site_key'];
372
            } else {
359
            } else {
373
                $site_key      = $this->config['leaderslinked.google_captcha.production_site_key'];
360
                $site_key      = $this->config['leaderslinked.google_captcha.production_site_key'];
374
            }
361
            }
375
            
362
 
376
            $headers  = $request->getHeaders();
363
            $headers  = $request->getHeaders();
377
            $isJson = false;
364
            $isJson = false;
378
            if($headers->has('Accept')) {
365
            if ($headers->has('Accept')) {
379
                $accept = $headers->get('Accept');
366
                $accept = $headers->get('Accept');
380
                
367
 
381
                $prioritized = $accept->getPrioritized();
368
                $prioritized = $accept->getPrioritized();
382
                
369
 
383
                foreach($prioritized as $key => $value) {
370
                foreach ($prioritized as $key => $value) {
384
                    $raw = trim($value->getRaw());
371
                    $raw = trim($value->getRaw());
385
                    
372
 
386
                    if(!$isJson) {
373
                    if (!$isJson) {
387
                        $isJson = strpos($raw, 'json');
374
                        $isJson = strpos($raw, 'json');
388
                    }
-
 
389
                    
375
                    }
390
                }
376
                }
391
            }
377
            }
392
            
378
 
393
            $email      = isset($_COOKIE['email']) ? $_COOKIE['email'] : '';
379
            $email      = isset($_COOKIE['email']) ? $_COOKIE['email'] : '';
394
            $remember   = $email ? true : false;
380
            $remember   = $email ? true : false;
395
            $access_usign_social_networks = $this->config['leaderslinked.runmode.access_usign_social_networks'];
381
            $access_usign_social_networks = $this->config['leaderslinked.runmode.access_usign_social_networks'];
396
            
382
 
397
            if($isJson) {
383
            if ($isJson) {
398
                $sandbox = $this->config['leaderslinked.runmode.sandbox'];
384
                $sandbox = $this->config['leaderslinked.runmode.sandbox'];
399
                if ($sandbox) {
385
                if ($sandbox) {
400
                    $google_map_key  = $this->config['leaderslinked.google_map.sandbox_api_key'];
386
                    $google_map_key  = $this->config['leaderslinked.google_map.sandbox_api_key'];
401
                } else {
387
                } else {
402
                    $google_map_key  = $this->config['leaderslinked.google_map.production_api_key'];
388
                    $google_map_key  = $this->config['leaderslinked.google_map.production_api_key'];
403
                }
389
                }
404
                
390
 
405
                
391
 
406
                $data = [
392
                $data = [
407
                    'google_map_key' => $google_map_key,
393
                    'google_map_key' => $google_map_key,
408
                    'email'     => $email,
394
                    'email'     => $email,
409
                    'remember'  => $remember,
395
                    'remember'  => $remember,
Línea 414... Línea 400...
414
                    'access_usign_social_networks' => $access_usign_social_networks && $currentNetwork->default == Network::DEFAULT_YES ? 'y' : 'n',
400
                    'access_usign_social_networks' => $access_usign_social_networks && $currentNetwork->default == Network::DEFAULT_YES ? 'y' : 'n',
415
                    'logo_url' => $this->url()->fromRoute('storage-network', ['type' => 'logo']),
401
                    'logo_url' => $this->url()->fromRoute('storage-network', ['type' => 'logo']),
416
                    'navbar_url' => $this->url()->fromRoute('storage-network', ['type' => 'navbar']),
402
                    'navbar_url' => $this->url()->fromRoute('storage-network', ['type' => 'navbar']),
417
                    'favico_url' => $this->url()->fromRoute('storage-network', ['type' => 'favico']),
403
                    'favico_url' => $this->url()->fromRoute('storage-network', ['type' => 'favico']),
418
                    'intro' => $currentNetwork->intro
404
                    'intro' => $currentNetwork->intro
419
                    
405
 
420
                ];
406
                ];
421
                
-
 
422
                
-
 
423
            } else {
407
            } else {
424
                $sandbox = $this->config['leaderslinked.runmode.sandbox'];
408
                $sandbox = $this->config['leaderslinked.runmode.sandbox'];
425
                if ($sandbox) {
409
                if ($sandbox) {
426
                    $google_map_key  = $this->config['leaderslinked.google_map.sandbox_api_key'];
410
                    $google_map_key  = $this->config['leaderslinked.google_map.sandbox_api_key'];
427
                } else {
411
                } else {
428
                    $google_map_key  = $this->config['leaderslinked.google_map.production_api_key'];
412
                    $google_map_key  = $this->config['leaderslinked.google_map.production_api_key'];
429
                }
413
                }
430
                
414
 
431
                $form = new SigninForm($this->config);
415
                $form = new SigninForm($this->config);
432
                $form->setData([
416
                $form->setData([
433
                    'email'     => $email,
417
                    'email'     => $email,
434
                    'remember'  => $remember,
418
                    'remember'  => $remember,
435
                ]);
419
                ]);
Línea 442... Línea 426...
442
                    'google_map_key' => $google_map_key,
426
                    'google_map_key' => $google_map_key,
443
                    'aes'       => $_SESSION['aes'],
427
                    'aes'       => $_SESSION['aes'],
444
                    'defaultNetwork' => $currentNetwork->default,
428
                    'defaultNetwork' => $currentNetwork->default,
445
                    'access_usign_social_networks' => $access_usign_social_networks && $currentNetwork->default == Network::DEFAULT_YES ? 'y' : 'n',
429
                    'access_usign_social_networks' => $access_usign_social_networks && $currentNetwork->default == Network::DEFAULT_YES ? 'y' : 'n',
446
                ]);
430
                ]);
447
                
-
 
448
                return $viewModel ;
-
 
449
            }
-
 
450
            
-
 
Línea 451... Línea -...
451
 
-
 
-
 
431
 
452
 
432
                return $viewModel;
453
            
433
            }
454
        } else {
434
        } else {
455
            $data = [
435
            $data = [
456
                'success' => false,
436
                'success' => false,
457
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
437
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
458
            ];
438
            ];
459
            
439
 
460
            return new JsonModel($data);
440
            return new JsonModel($data);
Línea 461... Línea 441...
461
        }
441
        }
462
 
-
 
463
        return new JsonModel($data);
442
 
464
        
443
        return new JsonModel($data);
465
    }
444
    }
466
    
445
 
Línea 467... Línea 446...
467
    public function facebookAction()
446
    public function facebookAction()
468
    {
447
    {
469
 
448
 
470
        $request = $this->getRequest();
449
        $request = $this->getRequest();
471
        if($request->isGet()) {
450
        if ($request->isGet()) {
472
/*
451
            /*
473
          //  try {
452
          //  try {
474
                $app_id = $this->config['leaderslinked.facebook.app_id'];
453
                $app_id = $this->config['leaderslinked.facebook.app_id'];
Línea 512... Línea 491...
512
                return new JsonModel([
491
                return new JsonModel([
513
                    'success' => false,
492
                    'success' => false,
514
                    'data' =>  'ERROR_WE_COULD_NOT_CONNECT_TO_FACEBOOK'
493
                    'data' =>  'ERROR_WE_COULD_NOT_CONNECT_TO_FACEBOOK'
515
                ]);
494
                ]);
516
            }*/
495
            }*/
517
            
-
 
518
        } else {
496
        } else {
519
            return new JsonModel([
497
            return new JsonModel([
520
                'success' => false,
498
                'success' => false,
521
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
499
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
522
            ]);
500
            ]);
523
        }
501
        }
524
    }
502
    }
525
    
503
 
526
    public function twitterAction()
504
    public function twitterAction()
527
    {
505
    {
528
        $request = $this->getRequest();
506
        $request = $this->getRequest();
529
        if($request->isGet()) {
507
        if ($request->isGet()) {
530
            
508
 
531
            try {
509
            try {
532
                if($this->config['leaderslinked.runmode.sandbox']) {
510
                if ($this->config['leaderslinked.runmode.sandbox']) {
533
                    
511
 
534
                    $twitter_api_key = $this->config['leaderslinked.twitter.sandbox_api_key'];
512
                    $twitter_api_key = $this->config['leaderslinked.twitter.sandbox_api_key'];
535
                    $twitter_api_secret = $this->config['leaderslinked.twitter.sandbox_api_secret'];
513
                    $twitter_api_secret = $this->config['leaderslinked.twitter.sandbox_api_secret'];
536
                    
-
 
537
                } else {
514
                } else {
538
                    $twitter_api_key = $this->config['leaderslinked.twitter.production_api_key'];
515
                    $twitter_api_key = $this->config['leaderslinked.twitter.production_api_key'];
539
                    $twitter_api_secret = $this->config['leaderslinked.twitter.production_api_secret'];
516
                    $twitter_api_secret = $this->config['leaderslinked.twitter.production_api_secret'];
540
                }
517
                }
541
                
518
 
542
                /*
519
                /*
543
                 echo '$twitter_api_key = ' . $twitter_api_key . PHP_EOL;
520
                 echo '$twitter_api_key = ' . $twitter_api_key . PHP_EOL;
544
                 echo '$twitter_api_secret = ' . $twitter_api_secret . PHP_EOL;
521
                 echo '$twitter_api_secret = ' . $twitter_api_secret . PHP_EOL;
545
                 exit;
522
                 exit;
546
                 */
523
                 */
547
                
524
 
548
                //Twitter
525
                //Twitter
549
                //$redirect_url =  $this->url()->fromRoute('oauth/twitter', [], ['force_canonical' => true]);
526
                //$redirect_url =  $this->url()->fromRoute('oauth/twitter', [], ['force_canonical' => true]);
550
                $redirect_url = $this->config['leaderslinked.twitter.app_redirect_url'];
527
                $redirect_url = $this->config['leaderslinked.twitter.app_redirect_url'];
551
                $twitter = new \Abraham\TwitterOAuth\TwitterOAuth($twitter_api_key, $twitter_api_secret);
528
                $twitter = new \Abraham\TwitterOAuth\TwitterOAuth($twitter_api_key, $twitter_api_secret);
552
                $request_token =  $twitter->oauth('oauth/request_token', ['oauth_callback' => $redirect_url ]);
529
                $request_token =  $twitter->oauth('oauth/request_token', ['oauth_callback' => $redirect_url]);
553
                $twitterUrl = $twitter->url('oauth/authorize', [ 'oauth_token' => $request_token['oauth_token'] ]);
530
                $twitterUrl = $twitter->url('oauth/authorize', ['oauth_token' => $request_token['oauth_token']]);
554
                
531
 
555
                $twitterSession = new \Laminas\Session\Container('twitter');
532
                $twitterSession = new \Laminas\Session\Container('twitter');
556
                $twitterSession->oauth_token = $request_token['oauth_token'];
533
                $twitterSession->oauth_token = $request_token['oauth_token'];
557
                $twitterSession->oauth_token_secret = $request_token['oauth_token_secret'];
534
                $twitterSession->oauth_token_secret = $request_token['oauth_token_secret'];
558
                
535
 
559
                return new JsonModel([
536
                return new JsonModel([
560
                    'success' => true,
537
                    'success' => true,
561
                    'data' =>  $twitterUrl
538
                    'data' =>  $twitterUrl
562
                ]);
539
                ]);
563
            } catch (\Throwable $e) {
540
            } catch (\Throwable $e) {
564
                return new JsonModel([
541
                return new JsonModel([
565
                    'success' => false,
542
                    'success' => false,
566
                    'data' =>  'ERROR_WE_COULD_NOT_CONNECT_TO_TWITTER'
543
                    'data' =>  'ERROR_WE_COULD_NOT_CONNECT_TO_TWITTER'
567
                ]);
544
                ]);
568
            }
545
            }
569
            
-
 
570
        } else {
546
        } else {
571
            return new JsonModel([
547
            return new JsonModel([
572
                'success' => false,
548
                'success' => false,
573
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
549
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
574
            ]);
550
            ]);
575
        }
551
        }
576
        
-
 
577
       
-
 
578
    }
552
    }
579
    
553
 
580
    public function googleAction()
554
    public function googleAction()
581
    {
555
    {
582
        $request = $this->getRequest();
556
        $request = $this->getRequest();
583
        if($request->isGet()) {
557
        if ($request->isGet()) {
584
            
558
 
585
            try {
559
            try {
586
                
560
 
587
                
561
 
588
                //Google
562
                //Google
589
                $google = new \Google_Client();
563
                $google = new \Google_Client();
590
                $google->setAuthConfig('data/google/auth-leaderslinked/apps.google.com_secreto_cliente.json');
564
                $google->setAuthConfig('data/google/auth-leaderslinked/apps.google.com_secreto_cliente.json');
591
                $google->setAccessType("offline");        // offline access
565
                $google->setAccessType("offline");        // offline access
592
                
566
 
593
                $google->setIncludeGrantedScopes(true);   // incremental auth
567
                $google->setIncludeGrantedScopes(true);   // incremental auth
594
                
568
 
595
                $google->addScope('profile');
569
                $google->addScope('profile');
596
                $google->addScope('email');
570
                $google->addScope('email');
597
                
571
 
598
                // $redirect_url =  $this->url()->fromRoute('oauth/google', [], ['force_canonical' => true]);
572
                // $redirect_url =  $this->url()->fromRoute('oauth/google', [], ['force_canonical' => true]);
599
                $redirect_url = $this->config['leaderslinked.google_auth.app_redirect_url'];
573
                $redirect_url = $this->config['leaderslinked.google_auth.app_redirect_url'];
600
                
574
 
601
                $google->setRedirectUri($redirect_url);
575
                $google->setRedirectUri($redirect_url);
602
                $googleUrl = $google->createAuthUrl();
576
                $googleUrl = $google->createAuthUrl();
603
                
577
 
604
                return new JsonModel([
578
                return new JsonModel([
605
                    'success' => true,
579
                    'success' => true,
606
                    'data' =>  $googleUrl
580
                    'data' =>  $googleUrl
607
                ]);
581
                ]);
608
            } catch (\Throwable $e) {
582
            } catch (\Throwable $e) {
609
                return new JsonModel([
583
                return new JsonModel([
610
                    'success' => false,
584
                    'success' => false,
611
                    'data' =>  'ERROR_WE_COULD_NOT_CONNECT_TO_GOOGLE'
585
                    'data' =>  'ERROR_WE_COULD_NOT_CONNECT_TO_GOOGLE'
612
                ]);
586
                ]);
613
            }
587
            }
614
            
-
 
615
        } else {
588
        } else {
616
            return new JsonModel([
589
            return new JsonModel([
617
                'success' => false,
590
                'success' => false,
618
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
591
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
619
            ]);
592
            ]);
620
        }
593
        }
621
    }
594
    }
622
    
595
 
623
    public function signoutAction()
596
    public function signoutAction()
624
    {
597
    {
625
        $currentUserPlugin = $this->plugin('currentUserPlugin');
598
        $currentUserPlugin = $this->plugin('currentUserPlugin');
626
        $currentUser = $currentUserPlugin->getRawUser();
599
        $currentUser = $currentUserPlugin->getRawUser();
627
        if($currentUserPlugin->hasImpersonate()) {
600
        if ($currentUserPlugin->hasImpersonate()) {
628
            
601
 
629
            
602
 
630
            $userMapper = UserMapper::getInstance($this->adapter);
603
            $userMapper = UserMapper::getInstance($this->adapter);
631
            $userMapper->leaveImpersonate($currentUser->id);
604
            $userMapper->leaveImpersonate($currentUser->id);
632
            
605
 
633
            $networkMapper = NetworkMapper::getInstance($this->adapter);
606
            $networkMapper = NetworkMapper::getInstance($this->adapter);
634
            $network = $networkMapper->fetchOne($currentUser->network_id);
607
            $network = $networkMapper->fetchOne($currentUser->network_id);
635
            
608
 
636
            
609
 
637
            if(!$currentUser->one_time_password) {
610
            if (!$currentUser->one_time_password) {
638
                $one_time_password = Functions::generatePassword(25);
611
                $one_time_password = Functions::generatePassword(25);
639
                
612
 
640
                $currentUser->one_time_password = $one_time_password;
613
                $currentUser->one_time_password = $one_time_password;
641
                
614
 
642
                $userMapper = UserMapper::getInstance($this->adapter);
615
                $userMapper = UserMapper::getInstance($this->adapter);
643
                $userMapper->updateOneTimePassword($currentUser, $one_time_password);
616
                $userMapper->updateOneTimePassword($currentUser, $one_time_password);
644
            }
617
            }
645
            
618
 
646
            
619
 
647
            $sandbox = $this->config['leaderslinked.runmode.sandbox'];
620
            $sandbox = $this->config['leaderslinked.runmode.sandbox'];
648
            if($sandbox) {
621
            if ($sandbox) {
649
                $salt = $this->config['leaderslinked.backend.sandbox_salt'];
622
                $salt = $this->config['leaderslinked.backend.sandbox_salt'];
650
            } else {
623
            } else {
651
                $salt = $this->config['leaderslinked.backend.production_salt'];
624
                $salt = $this->config['leaderslinked.backend.production_salt'];
652
            }
625
            }
653
            
626
 
654
            
627
 
655
            
628
 
656
            
629
 
657
            $rand = 1000 + mt_rand(1, 999);
630
            $rand = 1000 + mt_rand(1, 999);
658
            $timestamp = time();
631
            $timestamp = time();
659
            $password = md5($currentUser->one_time_password . '-' . $rand . '-' . $timestamp . '-' . $salt);
632
            $password = md5($currentUser->one_time_password . '-' . $rand . '-' . $timestamp . '-' . $salt);
660
            
633
 
661
            $params = [
634
            $params = [
662
                'user_uuid' => $currentUser->uuid,
635
                'user_uuid' => $currentUser->uuid,
663
                'password' => $password,
636
                'password' => $password,
664
                'rand' => $rand,
637
                'rand' => $rand,
665
                'time' => $timestamp,
638
                'time' => $timestamp,
666
            ];
639
            ];
667
            
640
 
668
            $currentUserPlugin->clearIdentity();
641
            $currentUserPlugin->clearIdentity();
669
            $url = 'https://'. $network->main_hostname . '/signin/impersonate' . '?' . http_build_query($params);
642
            $url = 'https://' . $network->main_hostname . '/signin/impersonate' . '?' . http_build_query($params);
670
            return $this->redirect()->toUrl($url);
643
            return $this->redirect()->toUrl($url);
671
            
-
 
672
            
-
 
673
            
-
 
674
        } else {
644
        } else {
675
            
645
 
676
            
646
 
677
            if($currentUserPlugin->hasIdentity()) {
647
            if ($currentUserPlugin->hasIdentity()) {
678
    
648
 
679
                $this->logger->info('Desconexión de LeadersLinked', ['user_id' => $currentUserPlugin->getUserId(), 'ip' => Functions::getUserIP()]);
649
                $this->logger->info('Desconexión de LeadersLinked', ['user_id' => $currentUserPlugin->getUserId(), 'ip' => Functions::getUserIP()]);
680
            }
650
            }
681
            
651
 
682
            $currentUserPlugin->clearIdentity();
652
            $currentUserPlugin->clearIdentity();
683
            
653
 
684
            return $this->redirect()->toRoute('home');
654
            return $this->redirect()->toRoute('home');
685
        }
655
        }
686
    }
656
    }
687
    
657
 
688
    
658
 
689
    public function resetPasswordAction()
659
    public function resetPasswordAction()
690
    {
660
    {
691
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
661
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
692
        $currentNetwork  = $currentNetworkPlugin->getNetwork();
662
        $currentNetwork  = $currentNetworkPlugin->getNetwork();
693
        
663
 
694
        
664
 
695
        $flashMessenger = $this->plugin('FlashMessenger');
665
        $flashMessenger = $this->plugin('FlashMessenger');
696
        $code =  Functions::sanitizeFilterString($this->params()->fromRoute('code', ''));
666
        $code =  Functions::sanitizeFilterString($this->params()->fromRoute('code', ''));
697
        
667
 
698
        $userMapper = UserMapper::getInstance($this->adapter);
668
        $userMapper = UserMapper::getInstance($this->adapter);
699
        $user = $userMapper->fetchOneByPasswordResetKeyAndNetworkId($code, $currentNetwork->id);
669
        $user = $userMapper->fetchOneByPasswordResetKeyAndNetworkId($code, $currentNetwork->id);
700
        if(!$user) {
670
        if (!$user) {
701
            $this->logger->err('Restablecer contraseña - Error código no existe', ['ip' => Functions::getUserIP()]);
671
            $this->logger->err('Restablecer contraseña - Error código no existe', ['ip' => Functions::getUserIP()]);
702
            
672
 
703
            $flashMessenger->addErrorMessage('ERROR_PASSWORD_RECOVER_CODE_IS_INVALID');
673
            $flashMessenger->addErrorMessage('ERROR_PASSWORD_RECOVER_CODE_IS_INVALID');
704
            return $this->redirect()->toRoute('forgot-password');
674
            return $this->redirect()->toRoute('forgot-password');
705
        }
675
        }
706
        
676
 
707
        
677
 
708
        
678
 
709
        $password_generated_on = strtotime($user->password_generated_on);
679
        $password_generated_on = strtotime($user->password_generated_on);
710
        $expiry_time = $password_generated_on + $this->config['leaderslinked.security.reset_password_expired'];
680
        $expiry_time = $password_generated_on + $this->config['leaderslinked.security.reset_password_expired'];
711
        if (time() > $expiry_time) {
681
        if (time() > $expiry_time) {
712
            $this->logger->err('Restablecer contraseña - Error código expirado', ['ip' => Functions::getUserIP()]);
682
            $this->logger->err('Restablecer contraseña - Error código expirado', ['ip' => Functions::getUserIP()]);
713
            
683
 
714
            $flashMessenger->addErrorMessage('ERROR_PASSWORD_RECOVER_CODE_HAS_EXPIRED');
684
            $flashMessenger->addErrorMessage('ERROR_PASSWORD_RECOVER_CODE_HAS_EXPIRED');
715
            return $this->redirect()->toRoute('forgot-password');
685
            return $this->redirect()->toRoute('forgot-password');
716
        }
686
        }
717
        
687
 
718
        $request = $this->getRequest();
688
        $request = $this->getRequest();
719
        if($request->isPost()) {
689
        if ($request->isPost()) {
720
            $dataPost = $request->getPost()->toArray();
690
            $dataPost = $request->getPost()->toArray();
721
            if(empty($_SESSION['aes'])) {
691
            if (empty($_SESSION['aes'])) {
722
                return new JsonModel([
692
                return new JsonModel([
723
                    'success'   => false,
693
                    'success'   => false,
724
                    'data'      => 'ERROR_WEBSERVICE_ENCRYPTION_KEYS_NOT_FOUND'
694
                    'data'      => 'ERROR_WEBSERVICE_ENCRYPTION_KEYS_NOT_FOUND'
725
                ]);
695
                ]);
726
            }
696
            }
Línea 727... Línea 697...
727
 
697
 
728
            if(!empty( $dataPost['password'])) {
698
            if (!empty($dataPost['password'])) {
729
                $dataPost['password'] = CryptoJsAes::decrypt( $dataPost['password'], $_SESSION['aes']);
699
                $dataPost['password'] = CryptoJsAes::decrypt($dataPost['password'], $_SESSION['aes']);
730
            }
700
            }
731
            if(!empty( $dataPost['confirmation'])) {
701
            if (!empty($dataPost['confirmation'])) {
732
                $dataPost['confirmation'] = CryptoJsAes::decrypt( $dataPost['confirmation'], $_SESSION['aes']);
702
                $dataPost['confirmation'] = CryptoJsAes::decrypt($dataPost['confirmation'], $_SESSION['aes']);
733
            }
703
            }
734
            
704
 
735
            
705
 
736
            
706
 
737
            $form = new ResetPasswordForm($this->config);
707
            $form = new ResetPasswordForm($this->config);
738
            $form->setData($dataPost);
708
            $form->setData($dataPost);
739
            
709
 
740
            if($form->isValid()) {
710
            if ($form->isValid()) {
741
                $data = (array) $form->getData();
711
                $data = (array) $form->getData();
742
                $password = $data['password'];
712
                $password = $data['password'];
Línea 743... Línea 713...
743
                
713
 
744
 
714
 
Línea 745... Línea 715...
745
                $userPasswordMapper = UserPasswordMapper::getInstance($this->adapter);
715
                $userPasswordMapper = UserPasswordMapper::getInstance($this->adapter);
746
                $userPasswords = $userPasswordMapper->fetchAllByUserId($user->id);
716
                $userPasswords = $userPasswordMapper->fetchAllByUserId($user->id);
747
 
-
 
748
                $oldPassword = false;
717
 
749
                foreach($userPasswords as $userPassword)
-
 
750
                {
718
                $oldPassword = false;
751
                    if(password_verify($password, $userPassword->password) || (md5($password) == $userPassword->password)) 
719
                foreach ($userPasswords as $userPassword) {
752
                    {
720
                    if (password_verify($password, $userPassword->password) || (md5($password) == $userPassword->password)) {
753
                        $oldPassword = true;
721
                        $oldPassword = true;
754
                        break;
722
                        break;
755
                    }
723
                    }
756
                }
724
                }
757
                
725
 
758
                if($oldPassword) {
726
                if ($oldPassword) {
759
                    $this->logger->err('Restablecer contraseña - Error contraseña ya utilizada anteriormente', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
727
                    $this->logger->err('Restablecer contraseña - Error contraseña ya utilizada anteriormente', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
760
                    
728
 
761
                    return new JsonModel([
729
                    return new JsonModel([
762
                        'success'   => false,
730
                        'success'   => false,
763
                        'data'      => 'ERROR_PASSWORD_HAS_ALREADY_BEEN_USED'
731
                        'data'      => 'ERROR_PASSWORD_HAS_ALREADY_BEEN_USED'
764
                        
732
 
765
                    ]);
733
                    ]);
766
                } else {
734
                } else {
767
                    $password_hash = password_hash($password, PASSWORD_DEFAULT);
735
                    $password_hash = password_hash($password, PASSWORD_DEFAULT);
768
                    
736
 
769
                    
737
 
770
                    $result = $userMapper->updatePassword($user, $password_hash);
738
                    $result = $userMapper->updatePassword($user, $password_hash);
771
                    if($result) {
739
                    if ($result) {
772
                        
740
 
773
                        $userPassword = new UserPassword();
741
                        $userPassword = new UserPassword();
774
                        $userPassword->user_id = $user->id;
742
                        $userPassword->user_id = $user->id;
775
                        $userPassword->password = $password_hash;
743
                        $userPassword->password = $password_hash;
776
                        $userPasswordMapper->insert($userPassword);
744
                        $userPasswordMapper->insert($userPassword);
777
                        
745
 
778
                        
746
 
779
                        $this->logger->info('Restablecer contraseña realizado', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
747
                        $this->logger->info('Restablecer contraseña realizado', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
780
                        
748
 
781
                       
749
 
782
                        $flashMessenger->addSuccessMessage('LABEL_YOUR_PASSWORD_HAS_BEEN_UPDATED');
750
                        $flashMessenger->addSuccessMessage('LABEL_YOUR_PASSWORD_HAS_BEEN_UPDATED');
783
                        
751
 
784
                        return new JsonModel([
752
                        return new JsonModel([
785
                            'success'   => true,
753
                            'success'   => true,
786
                            'data'      => $this->url()->fromRoute('home')
754
                            'data'      => $this->url()->fromRoute('home')
787
                            
755
 
788
                        ]);
756
                        ]);
789
                    } else {
757
                    } else {
790
                        $this->logger->err('Restablecer contraseña - Error desconocido', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
758
                        $this->logger->err('Restablecer contraseña - Error desconocido', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
791
                        
759
 
792
                        return new JsonModel([
760
                        return new JsonModel([
793
                            'success'   => true,
761
                            'success'   => true,
794
                            'data'      => 'ERROR_THERE_WAS_AN_ERROR'
762
                            'data'      => 'ERROR_THERE_WAS_AN_ERROR'
795
                            
763
 
796
                        ]);
-
 
797
                    }
764
                        ]);
798
                }
765
                    }
799
 
766
                }
800
            } else {
767
            } else {
801
                $form_messages =  $form->getMessages('captcha');
768
                $form_messages =  $form->getMessages('captcha');
802
                if(!empty($form_messages)) {
769
                if (!empty($form_messages)) {
803
                    return new JsonModel([
770
                    return new JsonModel([
804
                        'success'   => false,
771
                        'success'   => false,
805
                        'data'      => 'ERROR_RECAPTCHA_EMPTY'
772
                        'data'      => 'ERROR_RECAPTCHA_EMPTY'
806
                    ]);
773
                    ]);
807
                }
774
                }
808
                
775
 
809
                $messages = [];
776
                $messages = [];
810
                
-
 
811
                $form_messages = (array) $form->getMessages();
777
 
812
                foreach($form_messages  as $fieldname => $field_messages)
778
                $form_messages = (array) $form->getMessages();
813
                {
779
                foreach ($form_messages  as $fieldname => $field_messages) {
814
                    $messages[$fieldname] = array_values($field_messages);
780
                    $messages[$fieldname] = array_values($field_messages);
815
                }
781
                }
816
                
782
 
817
                return new JsonModel([
783
                return new JsonModel([
818
                    'success'   => false,
784
                    'success'   => false,
819
                    'data'   => $messages
-
 
820
                ]);
785
                    'data'   => $messages
Línea 821... Línea 786...
821
            }
786
                ]);
822
            
787
            }
823
        } 
788
        }
824
 
789
 
825
        if($request->isGet()) {
790
        if ($request->isGet()) {
826
            
791
 
827
            if(empty($_SESSION['aes'])) {
792
            if (empty($_SESSION['aes'])) {
828
                $_SESSION['aes'] = Functions::generatePassword(16);
793
                $_SESSION['aes'] = Functions::generatePassword(16);
829
            }
794
            }
830
            
795
 
831
            if($this->config['leaderslinked.runmode.sandbox']) {
796
            if ($this->config['leaderslinked.runmode.sandbox']) {
832
                $site_key      = $this->config['leaderslinked.google_captcha.sandbox_site_key'];
797
                $site_key      = $this->config['leaderslinked.google_captcha.sandbox_site_key'];
833
            } else {
798
            } else {
834
                $site_key      = $this->config['leaderslinked.google_captcha.production_site_key'];
799
                $site_key      = $this->config['leaderslinked.google_captcha.production_site_key'];
835
            }
800
            }
836
            
801
 
837
            
802
 
838
            $form = new ResetPasswordForm($this->config);
803
            $form = new ResetPasswordForm($this->config);
839
            
804
 
840
            $this->layout()->setTemplate('layout/auth.phtml');
805
            $this->layout()->setTemplate('layout/auth.phtml');
841
            $viewModel = new ViewModel();
806
            $viewModel = new ViewModel();
842
            $viewModel->setTemplate('leaders-linked/auth/reset-password.phtml');
807
            $viewModel->setTemplate('leaders-linked/auth/reset-password.phtml');
843
            $viewModel->setVariables([
808
            $viewModel->setVariables([
844
                'code' => $code,
809
                'code' => $code,
845
                'form' => $form,
810
                'form' => $form,
846
                'site_key' => $site_key,
811
                'site_key' => $site_key,
847
                'aes'       => $_SESSION['aes'],
812
                'aes'       => $_SESSION['aes'],
848
                'defaultNetwork' => $currentNetwork->default,
813
                'defaultNetwork' => $currentNetwork->default,
-
 
814
            ]);
-
 
815
 
Línea 849... Línea -...
849
            ]);
-
 
850
            
-
 
851
            return $viewModel;
816
            return $viewModel;
852
        } 
817
        }
853
 
818
 
854
            
819
 
855
            
820
 
856
        return new JsonModel([
821
        return new JsonModel([
857
            'success' => false,
822
            'success' => false,
858
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
823
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
859
        ]);
824
        ]);
860
    }
825
    }
861
    
826
 
862
    public function forgotPasswordAction()
827
    public function forgotPasswordAction()
863
    {
828
    {
864
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
829
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
865
        $currentNetwork  = $currentNetworkPlugin->getNetwork();
830
        $currentNetwork  = $currentNetworkPlugin->getNetwork();
866
        
831
 
867
        
832
 
868
        
833
 
869
        $request = $this->getRequest();
834
        $request = $this->getRequest();
870
        if($request->isPost()) {
835
        if ($request->isPost()) {
871
            $dataPost = $request->getPost()->toArray();
836
            $dataPost = $request->getPost()->toArray();
872
            if(empty($_SESSION['aes'])) {
837
            if (empty($_SESSION['aes'])) {
873
                return new JsonModel([
838
                return new JsonModel([
874
                    'success'   => false,
839
                    'success'   => false,
875
                    'data'      => 'ERROR_WEBSERVICE_ENCRYPTION_KEYS_NOT_FOUND'
840
                    'data'      => 'ERROR_WEBSERVICE_ENCRYPTION_KEYS_NOT_FOUND'
876
                ]);
841
                ]);
877
            }
842
            }
878
            
843
 
879
            if(!empty( $dataPost['email'])) {
844
            if (!empty($dataPost['email'])) {
880
                $dataPost['email'] = CryptoJsAes::decrypt( $dataPost['email'], $_SESSION['aes']);
845
                $dataPost['email'] = CryptoJsAes::decrypt($dataPost['email'], $_SESSION['aes']);
881
            }
846
            }
882
            
847
 
883
            $form = new ForgotPasswordForm($this->config);
848
            $form = new ForgotPasswordForm($this->config);
884
            $form->setData($dataPost);
849
            $form->setData($dataPost);
885
            
850
 
886
            if($form->isValid()) {
851
            if ($form->isValid()) {
887
                $dataPost = (array) $form->getData();
852
                $dataPost = (array) $form->getData();
888
                $email      = $dataPost['email'];
853
                $email      = $dataPost['email'];
889
                
854
 
890
                $userMapper = UserMapper::getInstance($this->adapter);
855
                $userMapper = UserMapper::getInstance($this->adapter);
891
                $user = $userMapper->fetchOneByEmailAndNetworkId($email, $currentNetwork->id);
856
                $user = $userMapper->fetchOneByEmailAndNetworkId($email, $currentNetwork->id);
892
                if(!$user) {
857
                if (!$user) {
893
                    $this->logger->err('Olvidó contraseña ' . $email . '- Email no existe ', ['ip' => Functions::getUserIP()]);
858
                    $this->logger->err('Olvidó contraseña ' . $email . '- Email no existe ', ['ip' => Functions::getUserIP()]);
894
                    
859
 
895
                    return new JsonModel([
860
                    return new JsonModel([
896
                        'success' => false,
861
                        'success' => false,
897
                        'data' =>  'ERROR_EMAIL_IS_NOT_REGISTERED'
862
                        'data' =>  'ERROR_EMAIL_IS_NOT_REGISTERED'
898
                    ]);
863
                    ]);
899
                } else {
864
                } else {
900
                    if($user->status == User::STATUS_INACTIVE) {
865
                    if ($user->status == User::STATUS_INACTIVE) {
901
                        return new JsonModel([
866
                        return new JsonModel([
902
                            'success' => false,
867
                            'success' => false,
903
                            'data' =>  'ERROR_USER_IS_INACTIVE'
868
                            'data' =>  'ERROR_USER_IS_INACTIVE'
904
                        ]);
869
                        ]);
905
                    } else if ($user->email_verified == User::EMAIL_VERIFIED_NO) {
870
                    } else if ($user->email_verified == User::EMAIL_VERIFIED_NO) {
906
                        $this->logger->err('Olvidó contraseña - Email no verificado ', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
871
                        $this->logger->err('Olvidó contraseña - Email no verificado ', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
907
                        
872
 
908
                        return new JsonModel([
873
                        return new JsonModel([
909
                            'success' => false,
874
                            'success' => false,
910
                            'data' => 'ERROR_EMAIL_HAS_NOT_BEEN_VERIFIED'
875
                            'data' => 'ERROR_EMAIL_HAS_NOT_BEEN_VERIFIED'
911
                        ]);
876
                        ]);
912
                    } else {
877
                    } else {
913
                        $password_reset_key = md5($user->email. time());
878
                        $password_reset_key = md5($user->email . time());
914
                        $userMapper->updatePasswordResetKey((int) $user->id, $password_reset_key);
879
                        $userMapper->updatePasswordResetKey((int) $user->id, $password_reset_key);
915
                        
880
 
916
                        $emailTemplateMapper = EmailTemplateMapper::getInstance($this->adapter);
881
                        $emailTemplateMapper = EmailTemplateMapper::getInstance($this->adapter);
917
                        $emailTemplate = $emailTemplateMapper->fetchOneByCodeAndNetworkId(EmailTemplate::CODE_RESET_PASSWORD, $currentNetwork->id);
882
                        $emailTemplate = $emailTemplateMapper->fetchOneByCodeAndNetworkId(EmailTemplate::CODE_RESET_PASSWORD, $currentNetwork->id);
918
                        if($emailTemplate) {
883
                        if ($emailTemplate) {
Línea 925... Línea 890...
925
                                'group_name'            => '',
890
                                'group_name'            => '',
926
                                'content'               => '',
891
                                'content'               => '',
927
                                'code'                  => '',
892
                                'code'                  => '',
928
                                'link'                  => $this->url()->fromRoute('reset-password', ['code' => $password_reset_key], ['force_canonical' => true])
893
                                'link'                  => $this->url()->fromRoute('reset-password', ['code' => $password_reset_key], ['force_canonical' => true])
929
                            ];
894
                            ];
930
                            
895
 
931
                            $email = new QueueEmail($this->adapter);
896
                            $email = new QueueEmail($this->adapter);
932
                            $email->processEmailTemplate($emailTemplate, $arrayCont, $user->email, trim($user->first_name . ' ' . $user->last_name));
897
                            $email->processEmailTemplate($emailTemplate, $arrayCont, $user->email, trim($user->first_name . ' ' . $user->last_name));
933
                        }
898
                        }
934
                        $flashMessenger = $this->plugin('FlashMessenger');
899
                        $flashMessenger = $this->plugin('FlashMessenger');
935
                        $flashMessenger->addSuccessMessage('LABEL_RECOVERY_LINK_WAS_SENT_TO_YOUR_EMAIL');
900
                        $flashMessenger->addSuccessMessage('LABEL_RECOVERY_LINK_WAS_SENT_TO_YOUR_EMAIL');
936
                        
901
 
937
                        $this->logger->info('Olvidó contraseña - Se envio link de recuperación ', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
902
                        $this->logger->info('Olvidó contraseña - Se envio link de recuperación ', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
938
                        
903
 
939
                        return new JsonModel([
904
                        return new JsonModel([
940
                            'success' => true,
905
                            'success' => true,
941
                        ]);
906
                        ]);
942
                    }
907
                    }
943
                }
908
                }
944
                
-
 
945
            } else {
909
            } else {
946
                
910
 
947
                
911
 
948
                $form_messages =  $form->getMessages('captcha');
912
                $form_messages =  $form->getMessages('captcha');
949
                
913
 
950
         
914
 
951
                
915
 
952
                if(!empty($form_messages)) {
916
                if (!empty($form_messages)) {
953
                    return new JsonModel([
917
                    return new JsonModel([
954
                        'success'   => false,
918
                        'success'   => false,
955
                        'data'      => 'ERROR_RECAPTCHA_EMPTY'
919
                        'data'      => 'ERROR_RECAPTCHA_EMPTY'
956
                    ]);
920
                    ]);
957
                }
921
                }
958
                
922
 
959
                $messages = [];
923
                $messages = [];
960
                $form_messages = (array) $form->getMessages();
924
                $form_messages = (array) $form->getMessages();
961
                foreach($form_messages  as $fieldname => $field_messages)
925
                foreach ($form_messages  as $fieldname => $field_messages) {
962
                {
-
 
963
                    $messages[$fieldname] = array_values($field_messages);
926
                    $messages[$fieldname] = array_values($field_messages);
964
                }
927
                }
Línea 965... Línea 928...
965
 
928
 
966
                return new JsonModel([
929
                return new JsonModel([
967
                    'success'   => false,
930
                    'success'   => false,
968
                    'data'      => $messages    
931
                    'data'      => $messages
969
                ]);
932
                ]);
970
            }
933
            }
971
        } 
934
        }
972
        
935
 
973
        /*
936
        /*
974
        if($request->isGet())  {
937
        if($request->isGet())  {
975
            if(empty($_SESSION['aes'])) {
938
            if(empty($_SESSION['aes'])) {
976
                $_SESSION['aes'] = Functions::generatePassword(16);
939
                $_SESSION['aes'] = Functions::generatePassword(16);
Línea 995... Línea 958...
995
            ]);
958
            ]);
Línea 996... Línea 959...
996
            
959
            
997
            return $viewModel ;
960
            return $viewModel ;
998
        } 
961
        } 
999
        */
962
        */
1000
        
963
 
1001
        if($request->isGet())  {
964
        if ($request->isGet()) {
1002
            
965
 
1003
            if(empty($_SESSION['aes'])) {
966
            if (empty($_SESSION['aes'])) {
1004
                $_SESSION['aes'] = Functions::generatePassword(16);
967
                $_SESSION['aes'] = Functions::generatePassword(16);
1005
            }
968
            }
1006
            
969
 
1007
            if($this->config['leaderslinked.runmode.sandbox']) {
970
            if ($this->config['leaderslinked.runmode.sandbox']) {
1008
                $site_key      = $this->config['leaderslinked.google_captcha.sandbox_site_key'];
971
                $site_key      = $this->config['leaderslinked.google_captcha.sandbox_site_key'];
1009
            } else {
972
            } else {
1010
                $site_key      = $this->config['leaderslinked.google_captcha.production_site_key'];
973
                $site_key      = $this->config['leaderslinked.google_captcha.production_site_key'];
1011
            }
974
            }
1012
            
975
 
1013
            $email      = isset($_COOKIE['email']) ? $_COOKIE['email'] : '';
976
            $email      = isset($_COOKIE['email']) ? $_COOKIE['email'] : '';
1014
            $remember   = $email ? true : false;
977
            $remember   = $email ? true : false;
1015
            
978
 
1016
            $form = new SigninForm($this->config);
979
            $form = new SigninForm($this->config);
1017
            $form->setData([
980
            $form->setData([
1018
                'email'     => $email,
981
                'email'     => $email,
1019
                'remember'  => $remember,
982
                'remember'  => $remember,
Línea 1025... Línea 988...
1025
                'form'      =>  $form,
988
                'form'      =>  $form,
1026
                'site_key'  => $site_key,
989
                'site_key'  => $site_key,
1027
                'aes'       => $_SESSION['aes'],
990
                'aes'       => $_SESSION['aes'],
1028
                'defaultNetwork' => $currentNetwork->default,
991
                'defaultNetwork' => $currentNetwork->default,
1029
            ]);
992
            ]);
1030
            
993
 
1031
            return $viewModel ;
994
            return $viewModel;
1032
            
-
 
1033
        } 
995
        }
1034
        
996
 
1035
        return new JsonModel([
997
        return new JsonModel([
1036
            'success' => false,
998
            'success' => false,
1037
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
999
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
1038
        ]);
1000
        ]);
1039
    }
1001
    }
1040
    
1002
 
1041
    public function signupAction()
1003
    public function signupAction()
1042
    {
1004
    {
1043
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
1005
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
1044
        $currentNetwork  = $currentNetworkPlugin->getNetwork();
1006
        $currentNetwork  = $currentNetworkPlugin->getNetwork();
1045
        
1007
 
1046
        
1008
 
1047
        $request = $this->getRequest();
1009
        $request = $this->getRequest();
1048
        if($request->isPost()) {
1010
        if ($request->isPost()) {
1049
            $dataPost = $request->getPost()->toArray();
1011
            $dataPost = $request->getPost()->toArray();
1050
            
1012
 
1051
            if(empty($_SESSION['aes'])) {
1013
            if (empty($_SESSION['aes'])) {
1052
                return new JsonModel([
1014
                return new JsonModel([
1053
                    'success'   => false,
1015
                    'success'   => false,
1054
                    'data'      => 'ERROR_WEBSERVICE_ENCRYPTION_KEYS_NOT_FOUND'
1016
                    'data'      => 'ERROR_WEBSERVICE_ENCRYPTION_KEYS_NOT_FOUND'
1055
                ]);
1017
                ]);
1056
            }
1018
            }
1057
            
1019
 
1058
            if(!empty( $dataPost['email'])) {
1020
            if (!empty($dataPost['email'])) {
1059
                $dataPost['email'] = CryptoJsAes::decrypt( $dataPost['email'], $_SESSION['aes']);
1021
                $dataPost['email'] = CryptoJsAes::decrypt($dataPost['email'], $_SESSION['aes']);
1060
            }
1022
            }
1061
            
1023
 
1062
            if(!empty( $dataPost['password'])) {
1024
            if (!empty($dataPost['password'])) {
1063
                $dataPost['password'] = CryptoJsAes::decrypt( $dataPost['password'], $_SESSION['aes']);
1025
                $dataPost['password'] = CryptoJsAes::decrypt($dataPost['password'], $_SESSION['aes']);
1064
            }
1026
            }
1065
            
1027
 
1066
            if(!empty( $dataPost['confirmation'])) {
1028
            if (!empty($dataPost['confirmation'])) {
1067
                $dataPost['confirmation'] = CryptoJsAes::decrypt( $dataPost['confirmation'], $_SESSION['aes']);
1029
                $dataPost['confirmation'] = CryptoJsAes::decrypt($dataPost['confirmation'], $_SESSION['aes']);
1068
            }
1030
            }
1069
            
1031
 
1070
            if(empty($dataPost['is_adult'])) {
1032
            if (empty($dataPost['is_adult'])) {
1071
                $dataPost['is_adult'] = User::IS_ADULT_NO;
1033
                $dataPost['is_adult'] = User::IS_ADULT_NO;
1072
            } else {
1034
            } else {
1073
                $dataPost['is_adult'] = $dataPost['is_adult'] == User::IS_ADULT_YES ? User::IS_ADULT_YES : User::IS_ADULT_NO;
1035
                $dataPost['is_adult'] = $dataPost['is_adult'] == User::IS_ADULT_YES ? User::IS_ADULT_YES : User::IS_ADULT_NO;
1074
            }
1036
            }
1075
            
1037
 
1076
            
1038
 
1077
            
1039
 
1078
            $form = new SignupForm($this->config);
1040
            $form = new SignupForm($this->config);
1079
            $form->setData($dataPost);
1041
            $form->setData($dataPost);
1080
            
1042
 
1081
            if($form->isValid()) {
1043
            if ($form->isValid()) {
1082
                $dataPost = (array) $form->getData();
1044
                $dataPost = (array) $form->getData();
1083
                
1045
 
1084
                $email = $dataPost['email'];
1046
                $email = $dataPost['email'];
1085
                
1047
 
1086
                $userMapper = UserMapper::getInstance($this->adapter);
1048
                $userMapper = UserMapper::getInstance($this->adapter);
1087
                $user = $userMapper->fetchOneByEmailAndNetworkId($email, $currentNetwork->id);
1049
                $user = $userMapper->fetchOneByEmailAndNetworkId($email, $currentNetwork->id);
1088
                if($user) {
1050
                if ($user) {
1089
                    $this->logger->err('Registro ' . $email . '- Email ya  existe ', ['ip' => Functions::getUserIP()]);
1051
                    $this->logger->err('Registro ' . $email . '- Email ya  existe ', ['ip' => Functions::getUserIP()]);
1090
                    
1052
 
1091
                    
1053
 
1092
                    
1054
 
1093
                    return new JsonModel([
1055
                    return new JsonModel([
1094
                        'success' => false,
1056
                        'success' => false,
1095
                        'data' => 'ERROR_EMAIL_IS_REGISTERED'
1057
                        'data' => 'ERROR_EMAIL_IS_REGISTERED'
1096
                    ]);
1058
                    ]);
1097
                } else {
1059
                } else {
1098
                    
1060
 
1099
                    $user_share_invitation = $this->cache->getItem('user_share_invitation');
1061
                    $user_share_invitation = $this->cache->getItem('user_share_invitation');
Línea 1100... Línea 1062...
1100
 
1062
 
1101
                    
1063
 
1102
                    if($user_share_invitation) {
1064
                    if ($user_share_invitation) {
1103
                        $userRedirect = $userMapper->fetchOneByUuid($user_share_invitation);
1065
                        $userRedirect = $userMapper->fetchOneByUuid($user_share_invitation);
1104
                        if($userRedirect && $userRedirect->status == User::STATUS_ACTIVE) {
1066
                        if ($userRedirect && $userRedirect->status == User::STATUS_ACTIVE) {
1105
                            $password_hash = password_hash($dataPost['password'], PASSWORD_DEFAULT);
1067
                            $password_hash = password_hash($dataPost['password'], PASSWORD_DEFAULT);
1106
                            
1068
 
1107
                            $user = new User();
1069
                            $user = new User();
1108
                            $user->network_id           = $currentNetwork->id;
1070
                            $user->network_id           = $currentNetwork->id;
1109
                            $user->email                = $dataPost['email'];
1071
                            $user->email                = $dataPost['email'];
1110
                            $user->first_name           = $dataPost['first_name'];
1072
                            $user->first_name           = $dataPost['first_name'];
Línea 1117... Línea 1079...
1117
                            $user->email_verified       = User::EMAIL_VERIFIED_YES;
1079
                            $user->email_verified       = User::EMAIL_VERIFIED_YES;
1118
                            $user->login_attempt        = 0;
1080
                            $user->login_attempt        = 0;
1119
                            $user->is_adult             = $dataPost['is_adult'];
1081
                            $user->is_adult             = $dataPost['is_adult'];
1120
                            $user->request_access       = User::REQUEST_ACCESS_APPROVED;
1082
                            $user->request_access       = User::REQUEST_ACCESS_APPROVED;
Línea 1121... Línea 1083...
1121
 
1083
 
1122
              
1084
 
1123
                            
1085
 
1124
                            
1086
 
1125
                            
1087
 
1126
                            if($userMapper->insert($user)) {
1088
                            if ($userMapper->insert($user)) {
1127
                                
1089
 
1128
                                $userPassword = new UserPassword();
1090
                                $userPassword = new UserPassword();
1129
                                $userPassword->user_id = $user->id;
1091
                                $userPassword->user_id = $user->id;
1130
                                $userPassword->password = $password_hash;
1092
                                $userPassword->password = $password_hash;
1131
                                
1093
 
1132
                                $userPasswordMapper = UserPasswordMapper::getInstance($this->adapter);
1094
                                $userPasswordMapper = UserPasswordMapper::getInstance($this->adapter);
1133
                                $userPasswordMapper->insert($userPassword);
1095
                                $userPasswordMapper->insert($userPassword);
1134
                                
1096
 
1135
                                
1097
 
1136
                                $connectionMapper = ConnectionMapper::getInstance($this->adapter);
1098
                                $connectionMapper = ConnectionMapper::getInstance($this->adapter);
1137
                                $connection = $connectionMapper->fetchOneByUserId1AndUserId2($user->id, $userRedirect->id);
1099
                                $connection = $connectionMapper->fetchOneByUserId1AndUserId2($user->id, $userRedirect->id);
1138
                                
1100
 
1139
                                if($connection) {
1101
                                if ($connection) {
1140
                                    
1102
 
1141
                                    if($connection->status != Connection::STATUS_ACCEPTED) {
1103
                                    if ($connection->status != Connection::STATUS_ACCEPTED) {
1142
                                        $connectionMapper->approve($connection);
1104
                                        $connectionMapper->approve($connection);
1143
                                    }
-
 
1144
                                    
1105
                                    }
1145
                                } else {
1106
                                } else {
1146
                                    $connection = new Connection();
1107
                                    $connection = new Connection();
1147
                                    $connection->request_from = $user->id;
1108
                                    $connection->request_from = $user->id;
1148
                                    $connection->request_to = $userRedirect->id;
1109
                                    $connection->request_to = $userRedirect->id;
1149
                                    $connection->status = Connection::STATUS_ACCEPTED;
1110
                                    $connection->status = Connection::STATUS_ACCEPTED;
1150
                                    
1111
 
1151
                                    $connectionMapper->insert($connection);
1112
                                    $connectionMapper->insert($connection);
1152
                                }
1113
                                }
1153
                                
1114
 
1154
                                
1115
 
Línea 1155... Línea 1116...
1155
                                $this->cache->removeItem('user_share_invitation');
1116
                                $this->cache->removeItem('user_share_invitation');
1156
 
1117
 
1157
                                
1118
 
1158
                                
1119
 
1159
                                $data = [
1120
                                $data = [
1160
                                    'success'   => true,
1121
                                    'success'   => true,
1161
                                    'data'      => $this->url()->fromRoute('home'),
1122
                                    'data'      => $this->url()->fromRoute('home'),
1162
                                ];
1123
                                ];
1163
        
1124
 
1164
                              
1125
 
1165
                                $this->logger->info('Registro con Exito ', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
1126
                                $this->logger->info('Registro con Exito ', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
1166
                                
1127
 
1167
                                return new JsonModel($data);
1128
                                return new JsonModel($data);
1168
                            }
1129
                            }
1169
                        }
-
 
Línea -... Línea 1130...
-
 
1130
                        }
1170
                    }
1131
                    }
1171
                    
1132
 
1172
 
1133
 
1173
                    
1134
 
1174
                    
1135
 
1175
                    $timestamp = time();
1136
                    $timestamp = time();
1176
                    $activation_key = sha1($dataPost['email'] . uniqid() . $timestamp);
1137
                    $activation_key = sha1($dataPost['email'] . uniqid() . $timestamp);
1177
                    
1138
 
1178
                    $password_hash = password_hash($dataPost['password'], PASSWORD_DEFAULT);
1139
                    $password_hash = password_hash($dataPost['password'], PASSWORD_DEFAULT);
1179
                    
1140
 
1180
                    $user = new User();
1141
                    $user = new User();
1181
                    $user->network_id           = $currentNetwork->id;
1142
                    $user->network_id           = $currentNetwork->id;
Línea 1188... Línea 1149...
1188
                    $user->activation_key       = $activation_key;
1149
                    $user->activation_key       = $activation_key;
1189
                    $user->status               = User::STATUS_INACTIVE;
1150
                    $user->status               = User::STATUS_INACTIVE;
1190
                    $user->blocked              = User::BLOCKED_NO;
1151
                    $user->blocked              = User::BLOCKED_NO;
1191
                    $user->email_verified       = User::EMAIL_VERIFIED_NO;
1152
                    $user->email_verified       = User::EMAIL_VERIFIED_NO;
1192
                    $user->login_attempt        = 0;
1153
                    $user->login_attempt        = 0;
1193
                    
1154
 
1194
                    if($currentNetwork->default == Network::DEFAULT_YES) {
1155
                    if ($currentNetwork->default == Network::DEFAULT_YES) {
1195
                        $user->request_access = User::REQUEST_ACCESS_APPROVED;
1156
                        $user->request_access = User::REQUEST_ACCESS_APPROVED;
1196
                    } else {
1157
                    } else {
1197
                        $user->request_access = User::REQUEST_ACCESS_PENDING;
1158
                        $user->request_access = User::REQUEST_ACCESS_PENDING;
1198
                    }
1159
                    }
1199
                    
1160
 
1200
               
1161
 
1201
                    
1162
 
1202
                    if($userMapper->insert($user)) {
1163
                    if ($userMapper->insert($user)) {
1203
                        
1164
 
1204
                        $userPassword = new UserPassword();
1165
                        $userPassword = new UserPassword();
1205
                        $userPassword->user_id = $user->id;
1166
                        $userPassword->user_id = $user->id;
1206
                        $userPassword->password = $password_hash;
1167
                        $userPassword->password = $password_hash;
1207
                        
1168
 
1208
                        $userPasswordMapper = UserPasswordMapper::getInstance($this->adapter);
1169
                        $userPasswordMapper = UserPasswordMapper::getInstance($this->adapter);
1209
                        $userPasswordMapper->insert($userPassword);
1170
                        $userPasswordMapper->insert($userPassword);
1210
                        
1171
 
1211
                        $emailTemplateMapper = EmailTemplateMapper::getInstance($this->adapter);
1172
                        $emailTemplateMapper = EmailTemplateMapper::getInstance($this->adapter);
1212
                        $emailTemplate = $emailTemplateMapper->fetchOneByCodeAndNetworkId(EmailTemplate::CODE_USER_REGISTER, $currentNetwork->id);
1173
                        $emailTemplate = $emailTemplateMapper->fetchOneByCodeAndNetworkId(EmailTemplate::CODE_USER_REGISTER, $currentNetwork->id);
1213
                        if($emailTemplate) {
1174
                        if ($emailTemplate) {
1214
                            $arrayCont = [
1175
                            $arrayCont = [
1215
                                'firstname'             => $user->first_name,
1176
                                'firstname'             => $user->first_name,
1216
                                'lastname'              => $user->last_name,
1177
                                'lastname'              => $user->last_name,
1217
                                'other_user_firstname'  => '',
1178
                                'other_user_firstname'  => '',
1218
                                'other_user_lastname'   => '',
1179
                                'other_user_lastname'   => '',
Línea 1220... Línea 1181...
1220
                                'group_name'            => '',
1181
                                'group_name'            => '',
1221
                                'content'               => '',
1182
                                'content'               => '',
1222
                                'code'                  => '',
1183
                                'code'                  => '',
1223
                                'link'                  => $this->url()->fromRoute('activate-account', ['code' => $user->activation_key], ['force_canonical' => true])
1184
                                'link'                  => $this->url()->fromRoute('activate-account', ['code' => $user->activation_key], ['force_canonical' => true])
1224
                            ];
1185
                            ];
1225
                            
1186
 
1226
                            $email = new QueueEmail($this->adapter);
1187
                            $email = new QueueEmail($this->adapter);
1227
                            $email->processEmailTemplate($emailTemplate, $arrayCont, $user->email, trim($user->first_name . ' ' . $user->last_name));
1188
                            $email->processEmailTemplate($emailTemplate, $arrayCont, $user->email, trim($user->first_name . ' ' . $user->last_name));
1228
                        }
1189
                        }
1229
                        $flashMessenger = $this->plugin('FlashMessenger');
1190
                        $flashMessenger = $this->plugin('FlashMessenger');
1230
                        $flashMessenger->addSuccessMessage('LABEL_REGISTRATION_DONE');
1191
                        $flashMessenger->addSuccessMessage('LABEL_REGISTRATION_DONE');
1231
                        
1192
 
1232
                        $this->logger->info('Registro con Exito ', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
1193
                        $this->logger->info('Registro con Exito ', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
1233
                        
1194
 
1234
                        return new JsonModel([
1195
                        return new JsonModel([
1235
                            'success' => true,
1196
                            'success' => true,
1236
                        ]);
1197
                        ]);
1237
                        
-
 
1238
                    } else {
1198
                    } else {
1239
                        $this->logger->err('Registro ' . $email . '- Ha ocurrido un error ', ['ip' => Functions::getUserIP()]);
1199
                        $this->logger->err('Registro ' . $email . '- Ha ocurrido un error ', ['ip' => Functions::getUserIP()]);
1240
                        
1200
 
1241
                        return new JsonModel([
1201
                        return new JsonModel([
1242
                            'success' => false,
1202
                            'success' => false,
1243
                            'data' => 'ERROR_THERE_WAS_AN_ERROR'
1203
                            'data' => 'ERROR_THERE_WAS_AN_ERROR'
1244
                        ]);
1204
                        ]);
1245
                    }
1205
                    }
1246
                }
1206
                }
1247
                
-
 
1248
 
-
 
1249
                
-
 
1250
            } else {
1207
            } else {
1251
               
1208
 
1252
                $form_messages =  $form->getMessages('captcha');
1209
                $form_messages =  $form->getMessages('captcha');
1253
                if(!empty($form_messages)) {
1210
                if (!empty($form_messages)) {
1254
                    return new JsonModel([
1211
                    return new JsonModel([
1255
                        'success'   => false,
1212
                        'success'   => false,
1256
                        'data'      => 'ERROR_RECAPTCHA_EMPTY'
1213
                        'data'      => 'ERROR_RECAPTCHA_EMPTY'
1257
                    ]);
1214
                    ]);
1258
                }
1215
                }
1259
                
1216
 
1260
                $messages = [];
1217
                $messages = [];
1261
                
1218
 
1262
                $form_messages = (array) $form->getMessages();
1219
                $form_messages = (array) $form->getMessages();
1263
                foreach($form_messages  as $fieldname => $field_messages)
1220
                foreach ($form_messages  as $fieldname => $field_messages) {
1264
                {
-
 
1265
                    $messages[$fieldname] = array_values($field_messages);
1221
                    $messages[$fieldname] = array_values($field_messages);
1266
                }
1222
                }
1267
                
1223
 
1268
                return new JsonModel([
1224
                return new JsonModel([
1269
                    'success'   => false,
1225
                    'success'   => false,
1270
                    'data'   => $messages
1226
                    'data'   => $messages
1271
                ]);
1227
                ]);
1272
            }
1228
            }
1273
        } 
1229
        }
1274
        /*
1230
        /*
1275
        if($request->isGet())  {
1231
        if($request->isGet())  {
1276
            if(empty($_SESSION['aes'])) {
1232
            if(empty($_SESSION['aes'])) {
1277
                $_SESSION['aes'] = Functions::generatePassword(16);
1233
                $_SESSION['aes'] = Functions::generatePassword(16);
1278
            }
1234
            }
Línea 1295... Línea 1251...
1295
                'aes' =>  $_SESSION['aes'],
1251
                'aes' =>  $_SESSION['aes'],
1296
            ]);
1252
            ]);
Línea 1297... Línea 1253...
1297
            
1253
            
1298
            return $viewModel ;
1254
            return $viewModel ;
1299
        } */
1255
        } */
1300
        
1256
 
1301
        
1257
 
1302
        if($request->isGet())  {
1258
        if ($request->isGet()) {
1303
            
1259
 
1304
            if(empty($_SESSION['aes'])) {
1260
            if (empty($_SESSION['aes'])) {
1305
                $_SESSION['aes'] = Functions::generatePassword(16);
1261
                $_SESSION['aes'] = Functions::generatePassword(16);
1306
            }
1262
            }
1307
            
1263
 
1308
            if($this->config['leaderslinked.runmode.sandbox']) {
1264
            if ($this->config['leaderslinked.runmode.sandbox']) {
1309
                $site_key      = $this->config['leaderslinked.google_captcha.sandbox_site_key'];
1265
                $site_key      = $this->config['leaderslinked.google_captcha.sandbox_site_key'];
1310
            } else {
1266
            } else {
1311
                $site_key      = $this->config['leaderslinked.google_captcha.production_site_key'];
1267
                $site_key      = $this->config['leaderslinked.google_captcha.production_site_key'];
1312
            }
1268
            }
1313
            
1269
 
1314
            $email      = isset($_COOKIE['email']) ? $_COOKIE['email'] : '';
1270
            $email      = isset($_COOKIE['email']) ? $_COOKIE['email'] : '';
1315
            $remember   = $email ? true : false;
1271
            $remember   = $email ? true : false;
1316
            
1272
 
1317
            $form = new SigninForm($this->config);
1273
            $form = new SigninForm($this->config);
1318
            $form->setData([
1274
            $form->setData([
1319
                'email'     => $email,
1275
                'email'     => $email,
1320
                'remember'  => $remember,
1276
                'remember'  => $remember,
Línea 1326... Línea 1282...
1326
                'form'      =>  $form,
1282
                'form'      =>  $form,
1327
                'site_key'  => $site_key,
1283
                'site_key'  => $site_key,
1328
                'aes'       => $_SESSION['aes'],
1284
                'aes'       => $_SESSION['aes'],
1329
                'defaultNetwork' => $currentNetwork->default,
1285
                'defaultNetwork' => $currentNetwork->default,
1330
            ]);
1286
            ]);
1331
            
1287
 
1332
            return $viewModel ;
1288
            return $viewModel;
1333
            
-
 
1334
        } 
1289
        }
1335
            
1290
 
1336
        return new JsonModel([
1291
        return new JsonModel([
1337
            'success' => false,
1292
            'success' => false,
1338
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
1293
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
1339
        ]);
1294
        ]);
1340
        
-
 
1341
        
-
 
1342
    }
1295
    }
1343
    
1296
 
1344
    public function activateAccountAction()
1297
    public function activateAccountAction()
1345
    {
1298
    {
1346
        
1299
 
1347
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
1300
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
1348
        $currentNetwork  = $currentNetworkPlugin->getNetwork();
1301
        $currentNetwork  = $currentNetworkPlugin->getNetwork();
1349
        
1302
 
1350
        
1303
 
1351
        
1304
 
1352
        $request = $this->getRequest();
1305
        $request = $this->getRequest();
1353
        if($request->isGet()) {
1306
        if ($request->isGet()) {
1354
            $code   =  Functions::sanitizeFilterString($this->params()->fromRoute('code'));
1307
            $code   =  Functions::sanitizeFilterString($this->params()->fromRoute('code'));
1355
            $userMapper = UserMapper::getInstance($this->adapter);
1308
            $userMapper = UserMapper::getInstance($this->adapter);
1356
            $user = $userMapper->fetchOneByActivationKeyAndNetworkId($code, $currentNetwork->id);
1309
            $user = $userMapper->fetchOneByActivationKeyAndNetworkId($code, $currentNetwork->id);
1357
            
1310
 
1358
            $flashMessenger = $this->plugin('FlashMessenger');
1311
            $flashMessenger = $this->plugin('FlashMessenger');
1359
            
1312
 
1360
            if($user) {
1313
            if ($user) {
1361
                if(User::EMAIL_VERIFIED_YES == $user->email_verified) {
1314
                if (User::EMAIL_VERIFIED_YES == $user->email_verified) {
1362
             
1315
 
1363
                    $this->logger->err('Verificación email - El código ya habia sido verificao ', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
1316
                    $this->logger->err('Verificación email - El código ya habia sido verificao ', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
1364
                    
1317
 
1365
                    $flashMessenger->addErrorMessage('ERROR_EMAIL_HAS_BEEN_PREVIOUSLY_VERIFIED');
1318
                    $flashMessenger->addErrorMessage('ERROR_EMAIL_HAS_BEEN_PREVIOUSLY_VERIFIED');
1366
                } else {
1319
                } else {
1367
              
1320
 
1368
                    if($userMapper->activateAccount((int) $user->id)) {
1321
                    if ($userMapper->activateAccount((int) $user->id)) {
Línea 1369... Línea 1322...
1369
 
1322
 
1370
                        $this->logger->info('Verificación email realizada ', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
1323
                        $this->logger->info('Verificación email realizada ', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
1371
                        
1324
 
1372
                        
1325
 
1373
                    
1326
 
1374
                        $user_share_invitation = $this->cache->getItem('user_share_invitation');
1327
                        $user_share_invitation = $this->cache->getItem('user_share_invitation');
1375
                        
1328
 
1376
                        if($user_share_invitation) {
1329
                        if ($user_share_invitation) {
1377
                            $userRedirect = $userMapper->fetchOneByUuid($user_share_invitation);
1330
                            $userRedirect = $userMapper->fetchOneByUuid($user_share_invitation);
1378
                            if($userRedirect && $userRedirect->status == User::STATUS_ACTIVE && $user->id != $userRedirect->id) {
1331
                            if ($userRedirect && $userRedirect->status == User::STATUS_ACTIVE && $user->id != $userRedirect->id) {
1379
                                $connectionMapper = ConnectionMapper::getInstance($this->adapter);
1332
                                $connectionMapper = ConnectionMapper::getInstance($this->adapter);
1380
                                $connection = $connectionMapper->fetchOneByUserId1AndUserId2($user->id, $userRedirect->id);
1333
                                $connection = $connectionMapper->fetchOneByUserId1AndUserId2($user->id, $userRedirect->id);
1381
                                
1334
 
1382
                                if($connection) {
1335
                                if ($connection) {
1383
                                    
1336
 
1384
                                    if($connection->status != Connection::STATUS_ACCEPTED) {
1337
                                    if ($connection->status != Connection::STATUS_ACCEPTED) {
1385
                                        $connectionMapper->approve($connection);
1338
                                        $connectionMapper->approve($connection);
1386
                                    }
-
 
1387
                                    
1339
                                    }
1388
                                } else {
1340
                                } else {
1389
                                    $connection = new Connection();
1341
                                    $connection = new Connection();
1390
                                    $connection->request_from = $user->id;
1342
                                    $connection->request_from = $user->id;
1391
                                    $connection->request_to = $userRedirect->id;
1343
                                    $connection->request_to = $userRedirect->id;
1392
                                    $connection->status = Connection::STATUS_ACCEPTED;
1344
                                    $connection->status = Connection::STATUS_ACCEPTED;
1393
                                    
1345
 
1394
                                    $connectionMapper->insert($connection);
1346
                                    $connectionMapper->insert($connection);
1395
                                }
1347
                                }
1396
                            }
1348
                            }
1397
                        }
1349
                        }
1398
                        
1350
 
1399
    
1351
 
1400
                        
1352
 
1401
                        $this->cache->removeItem('user_share_invitation');
1353
                        $this->cache->removeItem('user_share_invitation');
1402
                        
1354
 
1403
                        
1355
 
1404
                        if($currentNetwork->default == Network::DEFAULT_YES) {
1356
                        if ($currentNetwork->default == Network::DEFAULT_YES) {
1405
                            $flashMessenger->addSuccessMessage('LABEL_YOUR_EMAIL_HAS_BEEN_VERIFIED');
1357
                            $flashMessenger->addSuccessMessage('LABEL_YOUR_EMAIL_HAS_BEEN_VERIFIED');
1406
                        } else {
1358
                        } else {
1407
                            
1359
 
1408
                            $emailTemplateMapper = EmailTemplateMapper::getInstance($this->adapter);
1360
                            $emailTemplateMapper = EmailTemplateMapper::getInstance($this->adapter);
1409
                            $emailTemplate = $emailTemplateMapper->fetchOneByCodeAndNetworkId(EmailTemplate::CODE_REQUEST_ACCESS_PENDING, $currentNetwork->id);
1361
                            $emailTemplate = $emailTemplateMapper->fetchOneByCodeAndNetworkId(EmailTemplate::CODE_REQUEST_ACCESS_PENDING, $currentNetwork->id);
1410
                            
1362
 
1411
                            if($emailTemplate) {
1363
                            if ($emailTemplate) {
1412
                                $arrayCont = [
1364
                                $arrayCont = [
1413
                                    'firstname'             => $user->first_name,
1365
                                    'firstname'             => $user->first_name,
1414
                                    'lastname'              => $user->last_name,
1366
                                    'lastname'              => $user->last_name,
1415
                                    'other_user_firstname'  => '',
1367
                                    'other_user_firstname'  => '',
Línea 1418... Línea 1370...
1418
                                    'group_name'            => '',
1370
                                    'group_name'            => '',
1419
                                    'content'               => '',
1371
                                    'content'               => '',
1420
                                    'code'                  => '',
1372
                                    'code'                  => '',
1421
                                    'link'                  => '',
1373
                                    'link'                  => '',
1422
                                ];
1374
                                ];
1423
                                
1375
 
1424
                                $email = new QueueEmail($this->adapter);
1376
                                $email = new QueueEmail($this->adapter);
1425
                                $email->processEmailTemplate($emailTemplate, $arrayCont, $user->email, trim($user->first_name . ' ' . $user->last_name));
1377
                                $email->processEmailTemplate($emailTemplate, $arrayCont, $user->email, trim($user->first_name . ' ' . $user->last_name));
1426
                            }
1378
                            }
1427
                            
1379
 
1428
                            
1380
 
1429
                            $flashMessenger->addSuccessMessage('LABEL_YOUR_EMAIL_HAS_BEEN_VERIFIED_WE_ARE_VERIFYING_YOUR_INFORMATION');
1381
                            $flashMessenger->addSuccessMessage('LABEL_YOUR_EMAIL_HAS_BEEN_VERIFIED_WE_ARE_VERIFYING_YOUR_INFORMATION');
1430
                        }
1382
                        }
1431
   
-
 
1432
                    
-
 
1433
                    } else {
1383
                    } else {
1434
                        $this->logger->err('Verificación email - Ha ocurrido un error ', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
1384
                        $this->logger->err('Verificación email - Ha ocurrido un error ', ['user_id' => $user->id, 'ip' => Functions::getUserIP()]);
1435
                        
1385
 
1436
                        $flashMessenger->addErrorMessage('ERROR_THERE_WAS_AN_ERROR');
1386
                        $flashMessenger->addErrorMessage('ERROR_THERE_WAS_AN_ERROR');
1437
                    }
1387
                    }
1438
                }
1388
                }
1439
            } else {
1389
            } else {
1440
                $this->logger->err('Verificación email - El código no existe ', ['ip' => Functions::getUserIP()]);
1390
                $this->logger->err('Verificación email - El código no existe ', ['ip' => Functions::getUserIP()]);
1441
                
1391
 
1442
                $flashMessenger->addErrorMessage('ERROR_ACTIVATION_CODE_IS_NOT_VALID');
1392
                $flashMessenger->addErrorMessage('ERROR_ACTIVATION_CODE_IS_NOT_VALID');
1443
            }
1393
            }
1444
            
-
 
1445
            return $this->redirect()->toRoute('home');    
-
 
Línea 1446... Línea -...
1446
 
-
 
1447
            
-
 
-
 
1394
 
1448
            
1395
            return $this->redirect()->toRoute('home');
1449
        } else {
1396
        } else {
1450
            $response = [
1397
            $response = [
1451
                'success' => false,
1398
                'success' => false,
1452
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1399
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1453
            ];
1400
            ];
1454
        }
1401
        }
1455
        
1402
 
1456
        return new JsonModel($response);
-
 
1457
        
1403
        return new JsonModel($response);
1458
    }
1404
    }
1459
   
1405
 
1460
                        
1406
 
1461
    
1407
 
1462
    public function onroomAction()
1408
    public function onroomAction()
1463
    {
1409
    {
1464
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
1410
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
1465
        $currentNetwork  = $currentNetworkPlugin->getNetwork();
1411
        $currentNetwork  = $currentNetworkPlugin->getNetwork();
1466
        
1412
 
1467
        
1413
 
1468
        
1414
 
1469
        $request = $this->getRequest();
1415
        $request = $this->getRequest();
1470
        
1416
 
1471
        if($request->isPost()) {
1417
        if ($request->isPost()) {
1472
            
1418
 
1473
            $dataPost = $request->getPost()->toArray();
1419
            $dataPost = $request->getPost()->toArray();
Línea 1474... Línea 1420...
1474
            
1420
 
1475
 
1421
 
1476
            $form = new  MoodleForm();
1422
            $form = new  MoodleForm();
1477
            $form->setData($dataPost);
1423
            $form->setData($dataPost);
1478
            if($form->isValid()) {
1424
            if ($form->isValid()) {
1479
                
1425
 
1480
                $dataPost   = (array) $form->getData();
1426
                $dataPost   = (array) $form->getData();
1481
                $username   = $dataPost['username'];
1427
                $username   = $dataPost['username'];
1482
                $password   = $dataPost['password'];
1428
                $password   = $dataPost['password'];
1483
                $timestamp  = $dataPost['timestamp'];
1429
                $timestamp  = $dataPost['timestamp'];
1484
                $rand       = $dataPost['rand'];
1430
                $rand       = $dataPost['rand'];
1485
                $data       = $dataPost['data'];
1431
                $data       = $dataPost['data'];
1486
                
1432
 
1487
                $config_username    = $this->config['leaderslinked.moodle.username'];
1433
                $config_username    = $this->config['leaderslinked.moodle.username'];
1488
                $config_password    = $this->config['leaderslinked.moodle.password'];
1434
                $config_password    = $this->config['leaderslinked.moodle.password'];
1489
                $config_rsa_n       = $this->config['leaderslinked.moodle.rsa_n'];
1435
                $config_rsa_n       = $this->config['leaderslinked.moodle.rsa_n'];
1490
                $config_rsa_d       = $this->config['leaderslinked.moodle.rsa_d'];
1436
                $config_rsa_d       = $this->config['leaderslinked.moodle.rsa_d'];
1491
                $config_rsa_e       = $this->config['leaderslinked.moodle.rsa_e'];
1437
                $config_rsa_e       = $this->config['leaderslinked.moodle.rsa_e'];
1492
                
1438
 
1493
                
1439
 
1494
                
1440
 
1495
                
1441
 
1496
                if(empty($username) || empty($password) || empty($timestamp) || empty($rand) || !is_integer($rand)) {
1442
                if (empty($username) || empty($password) || empty($timestamp) || empty($rand) || !is_integer($rand)) {
1497
                    echo json_encode(['success' => false, 'data' => 'ERROR_SECURITY1']) ;
1443
                    echo json_encode(['success' => false, 'data' => 'ERROR_SECURITY1']);
1498
                    exit;
1444
                    exit;
1499
                }
1445
                }
1500
                
1446
 
1501
                if($username != $config_username) {
1447
                if ($username != $config_username) {
1502
                    echo json_encode(['success' => false, 'data' => 'ERROR_SECURITY2']) ;
1448
                    echo json_encode(['success' => false, 'data' => 'ERROR_SECURITY2']);
1503
                    exit;
1449
                    exit;
1504
                }
1450
                }
1505
                
1451
 
1506
                $dt = \DateTime::createFromFormat('Y-m-d\TH:i:s', $timestamp);
1452
                $dt = \DateTime::createFromFormat('Y-m-d\TH:i:s', $timestamp);
1507
                if(!$dt) {
1453
                if (!$dt) {
1508
                    echo json_encode(['success' => false, 'data' => 'ERROR_SECURITY3']) ;
1454
                    echo json_encode(['success' => false, 'data' => 'ERROR_SECURITY3']);
1509
                    exit;
1455
                    exit;
1510
                }
1456
                }
1511
                
1457
 
1512
                $t0 = $dt->getTimestamp();
1458
                $t0 = $dt->getTimestamp();
1513
                $t1 = strtotime('-5 minutes');
1459
                $t1 = strtotime('-5 minutes');
1514
                $t2 = strtotime('+5 minutes');
1460
                $t2 = strtotime('+5 minutes');
1515
                
1461
 
1516
                if($t0 < $t1 || $t0 > $t2) {
1462
                if ($t0 < $t1 || $t0 > $t2) {
1517
                    //echo json_encode(['success' => false, 'data' => 'ERROR_SECURITY4']) ;
1463
                    //echo json_encode(['success' => false, 'data' => 'ERROR_SECURITY4']) ;
1518
                    //exit;
1464
                    //exit;
1519
                }
1465
                }
1520
                
1466
 
1521
                if(!password_verify( $username.'-'. $config_password . '-' . $rand. '-' . $timestamp, $password)) {
1467
                if (!password_verify($username . '-' . $config_password . '-' . $rand . '-' . $timestamp, $password)) {
1522
                    echo json_encode(['success' => false, 'data' => 'ERROR_SECURITY5']) ;
1468
                    echo json_encode(['success' => false, 'data' => 'ERROR_SECURITY5']);
1523
                    exit;
1469
                    exit;
1524
                }
1470
                }
1525
                
1471
 
1526
                if(empty($data)) {
1472
                if (empty($data)) {
1527
                    echo json_encode(['success' => false, 'data' => 'ERROR_PARAMETERS1']) ;
1473
                    echo json_encode(['success' => false, 'data' => 'ERROR_PARAMETERS1']);
1528
                    exit;
1474
                    exit;
1529
                }
1475
                }
1530
                
1476
 
1531
                $data = base64_decode($data);
1477
                $data = base64_decode($data);
1532
                if(empty($data)) {
1478
                if (empty($data)) {
1533
                    echo json_encode(['success' => false, 'data' => 'ERROR_PARAMETERS2']) ;
1479
                    echo json_encode(['success' => false, 'data' => 'ERROR_PARAMETERS2']);
1534
                    exit;
1480
                    exit;
1535
                }
1481
                }
1536
                
1482
 
1537
                
1483
 
1538
                try {
1484
                try {
1539
                    $rsa = Rsa::getInstance();
1485
                    $rsa = Rsa::getInstance();
1540
                    $data = $rsa->decrypt($data,  $config_rsa_d,  $config_rsa_n);
-
 
1541
                } catch (\Throwable $e)
1486
                    $data = $rsa->decrypt($data,  $config_rsa_d,  $config_rsa_n);
1542
                {
1487
                } catch (\Throwable $e) {
1543
                    echo json_encode(['success' => false, 'data' => 'ERROR_PARAMETERS3']) ;
1488
                    echo json_encode(['success' => false, 'data' => 'ERROR_PARAMETERS3']);
1544
                    exit;
1489
                    exit;
1545
                }
1490
                }
1546
                
1491
 
1547
                $data = (array) json_decode($data);
1492
                $data = (array) json_decode($data);
1548
                if(empty($data)) {
1493
                if (empty($data)) {
1549
                    echo json_encode(['success' => false, 'data' => 'ERROR_PARAMETERS4']) ;
1494
                    echo json_encode(['success' => false, 'data' => 'ERROR_PARAMETERS4']);
1550
                    exit;
1495
                    exit;
1551
                }
1496
                }
1552
                
1497
 
1553
                $email      = isset($data['email']) ? Functions::sanitizeFilterString($data['email']) : '';
1498
                $email      = isset($data['email']) ? Functions::sanitizeFilterString($data['email']) : '';
1554
                $first_name = isset($data['first_name']) ? Functions::sanitizeFilterString($data['first_name']) : '';
1499
                $first_name = isset($data['first_name']) ? Functions::sanitizeFilterString($data['first_name']) : '';
1555
                $last_name  = isset($data['last_name']) ? Functions::sanitizeFilterString($data['last_name']) : '';
1500
                $last_name  = isset($data['last_name']) ? Functions::sanitizeFilterString($data['last_name']) : '';
1556
                
1501
 
1557
                if(!filter_var($email, FILTER_VALIDATE_EMAIL) || empty($first_name) || empty($last_name)) {
1502
                if (!filter_var($email, FILTER_VALIDATE_EMAIL) || empty($first_name) || empty($last_name)) {
1558
                    echo json_encode(['success' => false, 'data' => 'ERROR_PARAMETERS5']) ;
1503
                    echo json_encode(['success' => false, 'data' => 'ERROR_PARAMETERS5']);
1559
                    exit;
1504
                    exit;
1560
                }
1505
                }
1561
                
1506
 
1562
                $userMapper = UserMapper::getInstance($this->adapter);
1507
                $userMapper = UserMapper::getInstance($this->adapter);
1563
                $user = $userMapper->fetchOneByEmail($email);
1508
                $user = $userMapper->fetchOneByEmail($email);
1564
                if(!$user) {
1509
                if (!$user) {
1565
                    
1510
 
1566
                    
1511
 
1567
                    $user = new User();
1512
                    $user = new User();
1568
                    $user->network_id = $currentNetwork->id;
1513
                    $user->network_id = $currentNetwork->id;
1569
                    $user->blocked = User::BLOCKED_NO;
1514
                    $user->blocked = User::BLOCKED_NO;
Línea 1574... Línea 1519...
1574
                    $user->login_attempt = 0;
1519
                    $user->login_attempt = 0;
1575
                    $user->password = '-NO-PASSWORD-';
1520
                    $user->password = '-NO-PASSWORD-';
1576
                    $user->usertype_id = UserType::USER;
1521
                    $user->usertype_id = UserType::USER;
1577
                    $user->status = User::STATUS_ACTIVE;
1522
                    $user->status = User::STATUS_ACTIVE;
1578
                    $user->show_in_search = User::SHOW_IN_SEARCH_YES;
1523
                    $user->show_in_search = User::SHOW_IN_SEARCH_YES;
1579
                    
1524
 
1580
                    if($userMapper->insert($user)) {
1525
                    if ($userMapper->insert($user)) {
1581
                        echo json_encode(['success' => false, 'data' => $userMapper->getError()]) ;
1526
                        echo json_encode(['success' => false, 'data' => $userMapper->getError()]);
1582
                        exit;
1527
                        exit;
1583
                    }
1528
                    }
1584
                    
1529
 
1585
                    
1530
 
1586
                    
1531
 
1587
                    
1532
 
1588
                    $filename   =trim( isset($data['avatar_filename']) ? filter_var($data['avatar_filename'], FILTER_SANITIZE_EMAIL) : '');
1533
                    $filename   = trim(isset($data['avatar_filename']) ? filter_var($data['avatar_filename'], FILTER_SANITIZE_EMAIL) : '');
1589
                    $content    = isset($data['avatar_content']) ? Functions::sanitizeFilterString($data['avatar_content']) : '';
1534
                    $content    = isset($data['avatar_content']) ? Functions::sanitizeFilterString($data['avatar_content']) : '';
1590
                    
1535
 
1591
                    if($filename && $content) {
1536
                    if ($filename && $content) {
1592
                        $source = sys_get_temp_dir() . DIRECTORY_SEPARATOR . $filename;
1537
                        $source = sys_get_temp_dir() . DIRECTORY_SEPARATOR . $filename;
1593
                        try {
1538
                        try {
1594
                            file_put_contents($source, base64_decode($content));
1539
                            file_put_contents($source, base64_decode($content));
1595
                            if (file_exists($source)) {
1540
                            if (file_exists($source)) {
1596
                                $target_path = $this->config['leaderslinked.fullpath.user'] . $user->uuid;
1541
                                $target_path = $this->config['leaderslinked.fullpath.user'] . $user->uuid;
1597
                                list( $target_width, $target_height ) = explode('x', $this->config['leaderslinked.image_sizes.user_size']);
1542
                                list($target_width, $target_height) = explode('x', $this->config['leaderslinked.image_sizes.user_size']);
1598
                                
1543
 
1599
                                $target_filename    = 'user-' . uniqid() . '.png';
1544
                                $target_filename    = 'user-' . uniqid() . '.png';
1600
                                $crop_to_dimensions = true;
1545
                                $crop_to_dimensions = true;
1601
                                
1546
 
1602
                                if(!Image::uploadImage($source, $target_path, $target_filename, $target_width, $target_height, $crop_to_dimensions)) {
1547
                                if (!Image::uploadImage($source, $target_path, $target_filename, $target_width, $target_height, $crop_to_dimensions)) {
1603
                                    return new JsonModel([
1548
                                    return new JsonModel([
1604
                                        'success'   => false,
1549
                                        'success'   => false,
1605
                                        'data'   =>  'ERROR_THERE_WAS_AN_ERROR'
1550
                                        'data'   =>  'ERROR_THERE_WAS_AN_ERROR'
1606
                                    ]);
1551
                                    ]);
1607
                                }
1552
                                }
1608
                                
1553
 
1609
                                $user->image = $target_filename;
1554
                                $user->image = $target_filename;
1610
                                $userMapper->updateImage($user);
1555
                                $userMapper->updateImage($user);
1611
                            }
1556
                            }
1612
                        } catch(\Throwable $e) {
1557
                        } catch (\Throwable $e) {
1613
                            
-
 
1614
                        } finally {
1558
                        } finally {
1615
                            if(file_exists($source)) {
1559
                            if (file_exists($source)) {
1616
                                unlink($source);
1560
                                unlink($source);
1617
                            }
1561
                            }
1618
                        }
1562
                        }
1619
                    }
1563
                    }
1620
                    
-
 
1621
                }
1564
                }
1622
                
1565
 
1623
                $auth = new AuthEmailAdapter($this->adapter);
1566
                $auth = new AuthEmailAdapter($this->adapter);
1624
                $auth->setData($email);
1567
                $auth->setData($email);
1625
                
1568
 
1626
                $result = $auth->authenticate();
1569
                $result = $auth->authenticate();
1627
                if($result->getCode() == AuthResult::SUCCESS) {
1570
                if ($result->getCode() == AuthResult::SUCCESS) {
1628
                    return $this->redirect()->toRoute('dashboard');
1571
                    return $this->redirect()->toRoute('dashboard');
1629
                    
-
 
1630
                    
-
 
1631
                } else {
1572
                } else {
1632
                    $message = $result->getMessages()[0];
1573
                    $message = $result->getMessages()[0];
-
 
1574
                    if (!in_array($message, [
1633
                    if(!in_array($message, ['ERROR_USER_NOT_FOUND', 'ERROR_USER_EMAIL_HASNT_BEEN_VARIFIED', 'ERROR_USER_IS_BLOCKED',
1575
                        'ERROR_USER_NOT_FOUND', 'ERROR_USER_EMAIL_HASNT_BEEN_VARIFIED', 'ERROR_USER_IS_BLOCKED',
1634
                        'ERROR_USER_IS_INACTIVE', 'ERROR_ENTERED_PASS_INCORRECT_USER_IS_BLOCKED', 'ERROR_ENTERED_PASS_INCORRECT_2',
1576
                        'ERROR_USER_IS_INACTIVE', 'ERROR_ENTERED_PASS_INCORRECT_USER_IS_BLOCKED', 'ERROR_ENTERED_PASS_INCORRECT_2',
1635
                        'ERROR_ENTERED_PASS_INCORRECT_1'])) {
1577
                        'ERROR_ENTERED_PASS_INCORRECT_1'
1636
                        
-
 
1637
                        
-
 
-
 
1578
                    ])) {
1638
                    }
1579
                    }
1639
                    
1580
 
1640
                    switch($message)
1581
                    switch ($message) {
1641
                    {
-
 
1642
                        case 'ERROR_USER_NOT_FOUND' :
1582
                        case 'ERROR_USER_NOT_FOUND':
1643
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Email no existe', ['ip' => Functions::getUserIP()]);
1583
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Email no existe', ['ip' => Functions::getUserIP()]);
1644
                            break;
1584
                            break;
1645
                            
1585
 
1646
                        case 'ERROR_USER_EMAIL_HASNT_BEEN_VARIFIED' :
1586
                        case 'ERROR_USER_EMAIL_HASNT_BEEN_VARIFIED':
1647
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Email no verificado', ['ip' => Functions::getUserIP()]);
1587
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Email no verificado', ['ip' => Functions::getUserIP()]);
1648
                            break;
1588
                            break;
1649
                            
1589
 
1650
                        case 'ERROR_USER_IS_BLOCKED' :
1590
                        case 'ERROR_USER_IS_BLOCKED':
1651
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Usuario bloqueado', ['ip' => Functions::getUserIP()]);
1591
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Usuario bloqueado', ['ip' => Functions::getUserIP()]);
1652
                            break;
1592
                            break;
1653
                            
1593
 
1654
                        case 'ERROR_USER_IS_INACTIVE' :
1594
                        case 'ERROR_USER_IS_INACTIVE':
1655
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Usuario inactivo', ['ip' => Functions::getUserIP()]);
1595
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Usuario inactivo', ['ip' => Functions::getUserIP()]);
1656
                            break;
1596
                            break;
1657
                            
1597
 
1658
                            
1598
 
1659
                        case 'ERROR_ENTERED_PASS_INCORRECT_USER_IS_BLOCKED':
1599
                        case 'ERROR_ENTERED_PASS_INCORRECT_USER_IS_BLOCKED':
1660
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - 3er Intento Usuario bloqueado', ['ip' => Functions::getUserIP()]);
1600
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - 3er Intento Usuario bloqueado', ['ip' => Functions::getUserIP()]);
1661
                            break;
1601
                            break;
1662
                            
1602
 
1663
                            
1603
 
1664
                        case 'ERROR_ENTERED_PASS_INCORRECT_2' :
1604
                        case 'ERROR_ENTERED_PASS_INCORRECT_2':
1665
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - 1er Intento', ['ip' => Functions::getUserIP()]);
1605
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - 1er Intento', ['ip' => Functions::getUserIP()]);
1666
                            break;
1606
                            break;
1667
                            
1607
 
1668
                            
1608
 
1669
                        case 'ERROR_ENTERED_PASS_INCORRECT_1' :
1609
                        case 'ERROR_ENTERED_PASS_INCORRECT_1':
1670
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - 2do Intento', ['ip' => Functions::getUserIP()]);
1610
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - 2do Intento', ['ip' => Functions::getUserIP()]);
1671
                            break;
1611
                            break;
1672
                            
1612
 
1673
                            
1613
 
1674
                        default :
1614
                        default:
1675
                            $message = 'ERROR_UNKNOWN';
1615
                            $message = 'ERROR_UNKNOWN';
1676
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Error desconocido', ['ip' => Functions::getUserIP()]);
1616
                            $this->logger->err('Error de ingreso a LeadersLinked de ' . $email . ' - Error desconocido', ['ip' => Functions::getUserIP()]);
1677
                            break;
1617
                            break;
1678
                            
-
 
1679
                            
-
 
1680
                    }
1618
                    }
1681
                    
1619
 
1682
                    
1620
 
1683
                    
1621
 
1684
                    
1622
 
1685
                    return new JsonModel( [
1623
                    return new JsonModel([
1686
                        'success'   => false,
1624
                        'success'   => false,
1687
                        'data'   => $message
1625
                        'data'   => $message
1688
                    ]);
1626
                    ]);
1689
                }
1627
                }
1690
                
-
 
1691
                
-
 
1692
                
-
 
1693
                
-
 
1694
            } else {
1628
            } else {
1695
                $messages = [];
1629
                $messages = [];
1696
                
1630
 
1697
                
1631
 
1698
                
1632
 
1699
                $form_messages = (array) $form->getMessages();
1633
                $form_messages = (array) $form->getMessages();
1700
                foreach($form_messages  as $fieldname => $field_messages)
1634
                foreach ($form_messages  as $fieldname => $field_messages) {
1701
                {
-
 
1702
                    
1635
 
1703
                    $messages[$fieldname] = array_values($field_messages);
1636
                    $messages[$fieldname] = array_values($field_messages);
1704
                }
1637
                }
1705
                
1638
 
1706
                return new JsonModel([
1639
                return new JsonModel([
1707
                    'success'   => false,
1640
                    'success'   => false,
1708
                    'data'   => $messages
1641
                    'data'   => $messages
1709
                ]);
1642
                ]);
1710
            }
1643
            }
1711
            
-
 
1712
        } else {
1644
        } else {
1713
            $data = [
1645
            $data = [
1714
                'success' => false,
1646
                'success' => false,
1715
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1647
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1716
            ];
1648
            ];
1717
            
1649
 
1718
            return new JsonModel($data);
1650
            return new JsonModel($data);
1719
        }
1651
        }
1720
        
1652
 
1721
        return new JsonModel($data);
1653
        return new JsonModel($data);
1722
    }
1654
    }
1723
    
1655
 
1724
    public function csrfAction()
1656
    public function csrfAction()
1725
    {
1657
    {
1726
        $request = $this->getRequest();
1658
        $request = $this->getRequest();
1727
        if($request->isGet()) {
1659
        if ($request->isGet()) {
1728
            
1660
 
1729
            $token = md5(uniqid('CSFR-' . mt_rand(), true));
1661
            $token = md5(uniqid('CSFR-' . mt_rand(), true));
1730
            $_SESSION['token'] = $token;
1662
            $_SESSION['token'] = $token;
1731
            
1663
 
1732
            
1664
 
1733
            return new JsonModel([
1665
            return new JsonModel([
1734
                'success' => true,
1666
                'success' => true,
1735
                'data' => $token
1667
                'data' => $token
1736
            ]);
1668
            ]);
1737
        
-
 
1738
        
-
 
1739
        } else {
1669
        } else {
1740
            return new JsonModel([
1670
            return new JsonModel([
1741
                'success' => false,
1671
                'success' => false,
1742
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1672
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1743
            ]);
1673
            ]);
1744
        }
1674
        }
1745
        
-
 
1746
        
-
 
1747
    }
1675
    }
1748
    
1676
 
1749
    public function impersonateAction()
1677
    public function impersonateAction()
1750
    {
1678
    {
1751
        $request = $this->getRequest();
1679
        $request = $this->getRequest();
1752
        if($request->isGet()) {
1680
        if ($request->isGet()) {
1753
            $user_uuid  = Functions::sanitizeFilterString($this->params()->fromQuery('user_uuid'));
1681
            $user_uuid  = Functions::sanitizeFilterString($this->params()->fromQuery('user_uuid'));
1754
            $rand       = filter_var($this->params()->fromQuery('rand'), FILTER_SANITIZE_NUMBER_INT);
1682
            $rand       = filter_var($this->params()->fromQuery('rand'), FILTER_SANITIZE_NUMBER_INT);
1755
            $timestamp  = filter_var($this->params()->fromQuery('time'), FILTER_SANITIZE_NUMBER_INT);
1683
            $timestamp  = filter_var($this->params()->fromQuery('time'), FILTER_SANITIZE_NUMBER_INT);
1756
            $password   = Functions::sanitizeFilterString($this->params()->fromQuery('password'));
1684
            $password   = Functions::sanitizeFilterString($this->params()->fromQuery('password'));
1757
            
1685
 
1758
            
1686
 
1759
            if(!$user_uuid || !$rand || !$timestamp || !$password ) {
1687
            if (!$user_uuid || !$rand || !$timestamp || !$password) {
1760
                throw new \Exception('ERROR_PARAMETERS_ARE_INVALID');
1688
                throw new \Exception('ERROR_PARAMETERS_ARE_INVALID');
1761
            }
1689
            }
1762
            
1690
 
1763
            
1691
 
1764
            $currentUserPlugin = $this->plugin('currentUserPlugin');
1692
            $currentUserPlugin = $this->plugin('currentUserPlugin');
1765
            $currentUserPlugin->clearIdentity();
1693
            $currentUserPlugin->clearIdentity();
1766
            
1694
 
1767
            
1695
 
1768
            $authAdapter = new AuthImpersonateAdapter($this->adapter, $this->config);
1696
            $authAdapter = new AuthImpersonateAdapter($this->adapter, $this->config);
1769
            $authAdapter->setDataAdmin($user_uuid, $password, $timestamp, $rand);
1697
            $authAdapter->setDataAdmin($user_uuid, $password, $timestamp, $rand);
1770
            
1698
 
1771
            $authService = new AuthenticationService();
1699
            $authService = new AuthenticationService();
1772
            $result = $authService->authenticate($authAdapter);
1700
            $result = $authService->authenticate($authAdapter);
1773
            
1701
 
1774
            
1702
 
1775
            if($result->getCode() == AuthResult::SUCCESS) {
1703
            if ($result->getCode() == AuthResult::SUCCESS) {
1776
                return $this->redirect()->toRoute('dashboard');
1704
                return $this->redirect()->toRoute('dashboard');
1777
            } else {
1705
            } else {
1778
                throw new \Exception($result->getMessages()[0]);
1706
                throw new \Exception($result->getMessages()[0]);
1779
            }
1707
            }
1780
        }
1708
        }
1781
        
1709
 
1782
        return new JsonModel([
1710
        return new JsonModel([
1783
            'success' => false,
1711
            'success' => false,
1784
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
1712
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
1785
        ]);
1713
        ]);
1786
    }
1714
    }
1787
   
-
 
1788
}
1715
}