1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Customer\Model;
use Magento\Customer\Api\CustomerRepositoryInterface;
use Magento\Customer\Api\Data\CustomerInterface as CustomerData;
use Magento\Customer\Api\GroupManagementInterface;
use Magento\Customer\Model\Config\Share;
use Magento\Customer\Model\ResourceModel\Customer as ResourceCustomer;
/**
* Customer session model
*
* @api
* @method string getNoReferer()
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
* @since 100.0.2
*/
class Session extends \Magento\Framework\Session\SessionManager
{
/**
* Customer object
*
* @var CustomerData
*/
protected $_customer;
/**
* @var ResourceCustomer
*/
protected $_customerResource;
/**
* Customer model
*
* @var Customer
*/
protected $_customerModel;
/**
* Flag with customer id validations result
*
* @var bool|null
*/
protected $_isCustomerIdChecked = null;
/**
* Customer URL
*
* @var \Magento\Customer\Model\Url
*/
protected $_customerUrl;
/**
* Core url
*
* @var \Magento\Framework\Url\Helper\Data|null
*/
protected $_coreUrl = null;
/**
* @var Share
*/
protected $_configShare;
/**
* @var \Magento\Framework\Session\Generic
*/
protected $_session;
/**
* @var CustomerRepositoryInterface
*/
protected $customerRepository;
/**
* @var CustomerFactory
*/
protected $_customerFactory;
/**
* @var \Magento\Framework\UrlFactory
*/
protected $_urlFactory;
/**
* @var \Magento\Framework\Event\ManagerInterface
*/
protected $_eventManager;
/**
* @var \Magento\Framework\App\Http\Context
*/
protected $_httpContext;
/**
* @var GroupManagementInterface
*/
protected $groupManagement;
/**
* @var \Magento\Framework\App\Response\Http
*/
protected $response;
/**
* @param \Magento\Framework\App\Request\Http $request
* @param \Magento\Framework\Session\SidResolverInterface $sidResolver
* @param \Magento\Framework\Session\Config\ConfigInterface $sessionConfig
* @param \Magento\Framework\Session\SaveHandlerInterface $saveHandler
* @param \Magento\Framework\Session\ValidatorInterface $validator
* @param \Magento\Framework\Session\StorageInterface $storage
* @param \Magento\Framework\Stdlib\CookieManagerInterface $cookieManager
* @param \Magento\Framework\Stdlib\Cookie\CookieMetadataFactory $cookieMetadataFactory
* @param \Magento\Framework\App\State $appState
* @param Share $configShare
* @param \Magento\Framework\Url\Helper\Data $coreUrl
* @param \Magento\Customer\Model\Url $customerUrl
* @param ResourceCustomer $customerResource
* @param CustomerFactory $customerFactory
* @param \Magento\Framework\UrlFactory $urlFactory
* @param \Magento\Framework\Session\Generic $session
* @param \Magento\Framework\Event\ManagerInterface $eventManager
* @param \Magento\Framework\App\Http\Context $httpContext
* @param CustomerRepositoryInterface $customerRepository
* @param GroupManagementInterface $groupManagement
* @param \Magento\Framework\App\Response\Http $response
* @throws \Magento\Framework\Exception\SessionException
* @SuppressWarnings(PHPMD.ExcessiveParameterList)
*/
public function __construct(
\Magento\Framework\App\Request\Http $request,
\Magento\Framework\Session\SidResolverInterface $sidResolver,
\Magento\Framework\Session\Config\ConfigInterface $sessionConfig,
\Magento\Framework\Session\SaveHandlerInterface $saveHandler,
\Magento\Framework\Session\ValidatorInterface $validator,
\Magento\Framework\Session\StorageInterface $storage,
\Magento\Framework\Stdlib\CookieManagerInterface $cookieManager,
\Magento\Framework\Stdlib\Cookie\CookieMetadataFactory $cookieMetadataFactory,
\Magento\Framework\App\State $appState,
Config\Share $configShare,
\Magento\Framework\Url\Helper\Data $coreUrl,
\Magento\Customer\Model\Url $customerUrl,
ResourceCustomer $customerResource,
CustomerFactory $customerFactory,
\Magento\Framework\UrlFactory $urlFactory,
\Magento\Framework\Session\Generic $session,
\Magento\Framework\Event\ManagerInterface $eventManager,
\Magento\Framework\App\Http\Context $httpContext,
CustomerRepositoryInterface $customerRepository,
GroupManagementInterface $groupManagement,
\Magento\Framework\App\Response\Http $response
) {
$this->_coreUrl = $coreUrl;
$this->_customerUrl = $customerUrl;
$this->_configShare = $configShare;
$this->_customerResource = $customerResource;
$this->_customerFactory = $customerFactory;
$this->_urlFactory = $urlFactory;
$this->_session = $session;
$this->customerRepository = $customerRepository;
$this->_eventManager = $eventManager;
$this->_httpContext = $httpContext;
parent::__construct(
$request,
$sidResolver,
$sessionConfig,
$saveHandler,
$validator,
$storage,
$cookieManager,
$cookieMetadataFactory,
$appState
);
$this->groupManagement = $groupManagement;
$this->response = $response;
$this->_eventManager->dispatch('customer_session_init', ['customer_session' => $this]);
}
/**
* Retrieve customer sharing configuration model
*
* @return Share
*/
public function getCustomerConfigShare()
{
return $this->_configShare;
}
/**
* Set customer object and setting customer id in session
*
* @param CustomerData $customer
* @return $this
*/
public function setCustomerData(CustomerData $customer)
{
$this->_customer = $customer;
if ($customer === null) {
$this->setCustomerId(null);
} else {
$this->_httpContext->setValue(
Context::CONTEXT_GROUP,
$customer->getGroupId(),
\Magento\Customer\Model\Group::NOT_LOGGED_IN_ID
);
$this->setCustomerId($customer->getId());
}
return $this;
}
/**
* Retrieve customer model object
*
* @return CustomerData
*/
public function getCustomerData()
{
if (!$this->_customer instanceof CustomerData && $this->getCustomerId()) {
$this->_customer = $this->customerRepository->getById($this->getCustomerId());
}
return $this->_customer;
}
/**
* Returns Customer data object with the customer information
*
* @return CustomerData
*/
public function getCustomerDataObject()
{
/* TODO refactor this after all usages of the setCustomer is refactored */
return $this->getCustomer()->getDataModel();
}
/**
* Set Customer data object with the customer information
*
* @param CustomerData $customerData
* @return $this
*/
public function setCustomerDataObject(CustomerData $customerData)
{
$this->setId($customerData->getId());
$this->getCustomer()->updateData($customerData);
return $this;
}
/**
* Set customer model and the customer id in session
*
* @param Customer $customerModel
* @return $this
* use setCustomerId() instead
*/
public function setCustomer(Customer $customerModel)
{
$this->_customerModel = $customerModel;
$this->_httpContext->setValue(
Context::CONTEXT_GROUP,
$customerModel->getGroupId(),
\Magento\Customer\Model\Group::NOT_LOGGED_IN_ID
);
$this->setCustomerId($customerModel->getId());
if (!$customerModel->isConfirmationRequired() && $customerModel->getConfirmation()) {
$customerModel->setConfirmation(null)->save();
}
/**
* The next line is a workaround.
* It is used to distinguish users that are logged in from user data set via methods similar to setCustomerId()
*/
$this->unsIsCustomerEmulated();
return $this;
}
/**
* Retrieve customer model object
*
* @return Customer
* use getCustomerId() instead
*/
public function getCustomer()
{
if ($this->_customerModel === null) {
$this->_customerModel = $this->_customerFactory->create()->load($this->getCustomerId());
}
return $this->_customerModel;
}
/**
* Set customer id
*
* @param int|null $id
* @return $this
*/
public function setCustomerId($id)
{
$this->storage->setData('customer_id', $id);
return $this;
}
/**
* Retrieve customer id from current session
*
* @api
* @return int|null
*/
public function getCustomerId()
{
if ($this->storage->getData('customer_id')) {
return $this->storage->getData('customer_id');
}
return null;
}
/**
* Retrieve customer id from current session
*
* @return int|null
*/
public function getId()
{
return $this->getCustomerId();
}
/**
* Set customer id
*
* @param int|null $customerId
* @return $this
*/
public function setId($customerId)
{
return $this->setCustomerId($customerId);
}
/**
* Set customer group id
*
* @param int|null $id
* @return $this
*/
public function setCustomerGroupId($id)
{
$this->storage->setData('customer_group_id', $id);
return $this;
}
/**
* Get customer group id
* If customer is not logged in system, 'not logged in' group id will be returned
*
* @return int
*/
public function getCustomerGroupId()
{
if ($this->storage->getData('customer_group_id')) {
return $this->storage->getData('customer_group_id');
}
if ($this->getCustomerData()) {
$customerGroupId = $this->getCustomerData()->getGroupId();
$this->setCustomerGroupId($customerGroupId);
return $customerGroupId;
}
return Group::NOT_LOGGED_IN_ID;
}
/**
* Checking customer login status
*
* @api
* @return bool
*/
public function isLoggedIn()
{
return (bool)$this->getCustomerId()
&& $this->checkCustomerId($this->getId())
&& !$this->getIsCustomerEmulated();
}
/**
* Check exists customer (light check)
*
* @param int $customerId
* @return bool
*/
public function checkCustomerId($customerId)
{
if ($this->_isCustomerIdChecked === $customerId) {
return true;
}
try {
$this->customerRepository->getById($customerId);
$this->_isCustomerIdChecked = $customerId;
return true;
} catch (\Exception $e) {
return false;
}
}
/**
* @param Customer $customer
* @return $this
*/
public function setCustomerAsLoggedIn($customer)
{
$this->setCustomer($customer);
$this->_eventManager->dispatch('customer_login', ['customer' => $customer]);
$this->_eventManager->dispatch('customer_data_object_login', ['customer' => $this->getCustomerDataObject()]);
$this->regenerateId();
return $this;
}
/**
* @param CustomerData $customer
* @return $this
*/
public function setCustomerDataAsLoggedIn($customer)
{
$this->_httpContext->setValue(Context::CONTEXT_AUTH, true, false);
$this->setCustomerData($customer);
$customerModel = $this->_customerFactory->create()->updateData($customer);
$this->setCustomer($customerModel);
$this->_eventManager->dispatch('customer_login', ['customer' => $customerModel]);
$this->_eventManager->dispatch('customer_data_object_login', ['customer' => $customer]);
return $this;
}
/**
* Authorization customer by identifier
*
* @api
* @param int $customerId
* @return bool
*/
public function loginById($customerId)
{
try {
$customer = $this->customerRepository->getById($customerId);
$this->setCustomerDataAsLoggedIn($customer);
return true;
} catch (\Exception $e) {
return false;
}
}
/**
* Logout customer
*
* @api
* @return $this
*/
public function logout()
{
if ($this->isLoggedIn()) {
$this->_eventManager->dispatch('customer_logout', ['customer' => $this->getCustomer()]);
$this->_logout();
}
$this->_httpContext->unsValue(Context::CONTEXT_AUTH);
return $this;
}
/**
* Authenticate controller action by login customer
*
* @param bool|null $loginUrl
* @return bool
*/
public function authenticate($loginUrl = null)
{
if ($this->isLoggedIn()) {
return true;
}
$this->setBeforeAuthUrl($this->_createUrl()->getUrl('*/*/*', ['_current' => true]));
if (isset($loginUrl)) {
$this->response->setRedirect($loginUrl);
} else {
$arguments = $this->_customerUrl->getLoginUrlParams();
if ($this->_createUrl()->getUseSession()) {
$arguments += [
'_query' => [
$this->sidResolver->getSessionIdQueryParam($this->_session) => $this->_session->getSessionId(),
]
];
}
$this->response->setRedirect(
$this->_createUrl()->getUrl(\Magento\Customer\Model\Url::ROUTE_ACCOUNT_LOGIN, $arguments)
);
}
return false;
}
/**
* Set auth url
*
* @param string $key
* @param string $url
* @return $this
*/
protected function _setAuthUrl($key, $url)
{
$url = $this->_coreUrl->removeRequestParam($url, $this->sidResolver->getSessionIdQueryParam($this));
// Add correct session ID to URL if needed
$url = $this->_createUrl()->getRebuiltUrl($url);
return $this->storage->setData($key, $url);
}
/**
* Logout without dispatching event
*
* @return $this
*/
protected function _logout()
{
$this->_customer = null;
$this->_customerModel = null;
$this->setCustomerId(null);
$this->setCustomerGroupId($this->groupManagement->getNotLoggedInGroup()->getId());
$this->destroy(['clear_storage' => false]);
return $this;
}
/**
* Set Before auth url
*
* @param string $url
* @return $this
*/
public function setBeforeAuthUrl($url)
{
return $this->_setAuthUrl('before_auth_url', $url);
}
/**
* Set After auth url
*
* @param string $url
* @return $this
*/
public function setAfterAuthUrl($url)
{
return $this->_setAuthUrl('after_auth_url', $url);
}
/**
* Reset core session hosts after resetting session ID
*
* @return $this
*/
public function regenerateId()
{
parent::regenerateId();
$this->_cleanHosts();
return $this;
}
/**
* @return \Magento\Framework\UrlInterface
*/
protected function _createUrl()
{
return $this->_urlFactory->create();
}
}