-
Notifications
You must be signed in to change notification settings - Fork 0
/
Customer.php
1487 lines (1305 loc) · 49.1 KB
/
Customer.php
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
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <[email protected]>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
use PrestaShop\PrestaShop\Adapter\CoreException;
use PrestaShop\PrestaShop\Adapter\ServiceLocator;
/***
* Class CustomerCore
*/
class CustomerCore extends ObjectModel
{
/** @var int Customer ID */
public $id;
/** @var int Shop ID */
public $id_shop;
/** @var int ShopGroup ID */
public $id_shop_group;
/** @var string Secure key */
public $secure_key;
/** @var string protected note */
public $note;
/** @var int Gender ID */
public $id_gender = 0;
/** @var int Default group ID */
public $id_default_group;
/** @var int Current language used by the customer */
public $id_lang;
/** @var string Lastname */
public $lastname;
/** @var string Firstname */
public $firstname;
/** @var string Birthday (yyyy-mm-dd) */
public $birthday = null;
/** @var string e-mail */
public $email;
/** @var bool Newsletter subscription */
public $newsletter;
/** @var string Newsletter ip registration */
public $ip_registration_newsletter;
/** @var string Newsletter registration date */
public $newsletter_date_add;
/** @var bool Opt-in subscription */
public $optin;
/** @var string WebSite * */
public $website;
/** @var string Company */
public $company;
/** @var string SIRET */
public $siret;
/** @var string APE */
public $ape;
/** @var float Outstanding allow amount (B2B opt) */
public $outstanding_allow_amount = 0;
/** @var int Show public prices (B2B opt) */
public $show_public_prices = 0;
/** @var int Risk ID (B2B opt) */
public $id_risk;
/** @var int Max payment day */
public $max_payment_days = 0;
/** @var string Password */
public $passwd;
/** @var string Datetime Password */
public $last_passwd_gen;
/** @var bool Status */
public $active = true;
/** @var bool Status */
public $is_guest = 0;
/** @var bool True if carrier has been deleted (staying in database as deleted) */
public $deleted = 0;
/** @var string Object creation date */
public $date_add;
/** @var string Object last modification date */
public $date_upd;
public $years;
public $days;
public $months;
/** @var int customer id_country as determined by geolocation */
public $geoloc_id_country;
/** @var int customer id_state as determined by geolocation */
public $geoloc_id_state;
/** @var string customer postcode as determined by geolocation */
public $geoloc_postcode;
/** @var bool is the customer logged in */
public $logged = 0;
/** @var int id_guest meaning the guest table, not the guest customer */
public $id_guest;
public $groupBox;
/** @var string Unique token for forgot password feature */
public $reset_password_token;
/** @var string token validity date for forgot password feature */
public $reset_password_validity;
protected $webserviceParameters = [
'objectMethods' => [
'add' => 'addWs',
'update' => 'updateWs',
],
'fields' => [
'id_default_group' => ['xlink_resource' => 'groups'],
'id_lang' => ['xlink_resource' => 'languages'],
'newsletter_date_add' => [],
'ip_registration_newsletter' => [],
'last_passwd_gen' => ['setter' => null],
'secure_key' => ['setter' => null],
'deleted' => [],
'passwd' => ['setter' => 'setWsPasswd'],
],
'associations' => [
'groups' => ['resource' => 'group'],
],
];
/**
* @see ObjectModel::$definition
*/
public static $definition = [
'table' => 'customer',
'primary' => 'id_customer',
'fields' => [
'secure_key' => ['type' => self::TYPE_STRING, 'validate' => 'isMd5', 'copy_post' => false],
'lastname' => ['type' => self::TYPE_STRING, 'validate' => 'isCustomerName', 'required' => true, 'size' => 255],
'firstname' => ['type' => self::TYPE_STRING, 'validate' => 'isCustomerName', 'required' => true, 'size' => 255],
'email' => ['type' => self::TYPE_STRING, 'validate' => 'isEmail', 'required' => true, 'size' => 255],
'passwd' => ['type' => self::TYPE_STRING, 'validate' => 'isPasswd', 'required' => true, 'size' => 255],
'last_passwd_gen' => ['type' => self::TYPE_STRING, 'copy_post' => false],
'id_gender' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedId'],
'birthday' => ['type' => self::TYPE_DATE, 'validate' => 'isBirthDate'],
'newsletter' => ['type' => self::TYPE_BOOL, 'validate' => 'isBool'],
'newsletter_date_add' => ['type' => self::TYPE_DATE, 'copy_post' => false],
'ip_registration_newsletter' => ['type' => self::TYPE_STRING, 'copy_post' => false],
'optin' => ['type' => self::TYPE_BOOL, 'validate' => 'isBool'],
'website' => ['type' => self::TYPE_STRING, 'validate' => 'isUrl'],
'company' => ['type' => self::TYPE_STRING, 'validate' => 'isGenericName'],
'siret' => ['type' => self::TYPE_STRING, 'validate' => 'isGenericName'],
'ape' => ['type' => self::TYPE_STRING, 'validate' => 'isApe'],
'outstanding_allow_amount' => ['type' => self::TYPE_FLOAT, 'validate' => 'isFloat', 'copy_post' => false],
'show_public_prices' => ['type' => self::TYPE_BOOL, 'validate' => 'isBool', 'copy_post' => false],
'id_risk' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedInt', 'copy_post' => false],
'max_payment_days' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedInt', 'copy_post' => false],
'active' => ['type' => self::TYPE_BOOL, 'validate' => 'isBool', 'copy_post' => false],
'deleted' => ['type' => self::TYPE_BOOL, 'validate' => 'isBool', 'copy_post' => false],
'note' => ['type' => self::TYPE_HTML, 'size' => 65000, 'copy_post' => false],
'is_guest' => ['type' => self::TYPE_BOOL, 'validate' => 'isBool', 'copy_post' => false],
'id_shop' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'copy_post' => false],
'id_shop_group' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'copy_post' => false],
'id_default_group' => ['type' => self::TYPE_INT, 'copy_post' => false],
'id_lang' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'copy_post' => false],
'date_add' => ['type' => self::TYPE_DATE, 'validate' => 'isDate', 'copy_post' => false],
'date_upd' => ['type' => self::TYPE_DATE, 'validate' => 'isDate', 'copy_post' => false],
'reset_password_token' => ['type' => self::TYPE_STRING, 'validate' => 'isSha1', 'size' => 40, 'copy_post' => false],
'reset_password_validity' => ['type' => self::TYPE_DATE, 'validate' => 'isDateOrNull', 'copy_post' => false],
],
];
protected static $_defaultGroupId = [];
protected static $_customerHasAddress = [];
protected static $_customer_groups = [];
/**
* CustomerCore constructor.
*
* @param int|null $id
*/
public function __construct($id = null)
{
// It sets default value for customer group even when customer does not exist
$this->id_default_group = (int) Configuration::get('PS_CUSTOMER_GROUP');
parent::__construct($id);
}
/**
* Adds current Customer as a new Object to the database.
*
* @param bool $autoDate Automatically set `date_upd` and `date_add` columns
* @param bool $nullValues Whether we want to use NULL values instead of empty quotes values
*
* @return bool Indicates whether the Customer has been successfully added
*
* @throws PrestaShopDatabaseException
* @throws PrestaShopException
*/
public function add($autoDate = true, $nullValues = true)
{
$this->id_shop = ($this->id_shop) ? $this->id_shop : Context::getContext()->shop->id;
$this->id_shop_group = ($this->id_shop_group) ? $this->id_shop_group : Context::getContext()->shop->id_shop_group;
$this->id_lang = ($this->id_lang) ? $this->id_lang : Context::getContext()->language->id;
$this->birthday = (empty($this->years) ? $this->birthday : (int) $this->years . '-' . (int) $this->months . '-' . (int) $this->days);
$this->secure_key = md5(uniqid(mt_rand(0, mt_getrandmax()), true));
$this->last_passwd_gen = date('Y-m-d H:i:s', strtotime('-' . Configuration::get('PS_PASSWD_TIME_FRONT') . 'minutes'));
if ($this->newsletter && !Validate::isDate($this->newsletter_date_add)) {
$this->newsletter_date_add = date('Y-m-d H:i:s');
}
if ($this->id_default_group == Configuration::get('PS_CUSTOMER_GROUP')) {
if ($this->is_guest) {
$this->id_default_group = (int) Configuration::get('PS_GUEST_GROUP');
} else {
$this->id_default_group = (int) Configuration::get('PS_CUSTOMER_GROUP');
}
}
/* Can't create a guest customer, if this feature is disabled */
if ($this->is_guest && !Configuration::get('PS_GUEST_CHECKOUT_ENABLED')) {
return false;
}
$success = parent::add($autoDate, $nullValues);
$this->updateGroup($this->groupBox);
return $success;
}
/**
* Adds current Customer as a new Object to the database.
*
* @param bool $autoDate Automatically set `date_upd` and `date_add` columns
* @param bool $nullValues Whether we want to use NULL values instead of empty quotes values
*
* @return bool Indicates whether the Customer has been successfully added
*
* @throws PrestaShopDatabaseException
* @throws PrestaShopException
*/
public function addWs($autodate = true, $null_values = false)
{
if (Customer::customerExists($this->email)) {
WebserviceRequest::getInstance()->setError(
500,
$this->trans(
'The email is already used, please choose another one',
[],
'Admin.Notifications.Error'
),
140
);
return false;
}
return $this->add($autodate, $null_values);
}
/**
* Updates the current Customer in the database.
*
* @param bool $nullValues Whether we want to use NULL values instead of empty quotes values
*
* @return bool Indicates whether the Customer has been successfully updated
*
* @throws PrestaShopDatabaseException
* @throws PrestaShopException
*/
public function update($nullValues = false)
{
$this->birthday = (empty($this->years) ? $this->birthday : (int) $this->years . '-' . (int) $this->months . '-' . (int) $this->days);
if ($this->newsletter && !Validate::isDate($this->newsletter_date_add)) {
$this->newsletter_date_add = date('Y-m-d H:i:s');
}
if (isset(Context::getContext()->controller) && Context::getContext()->controller->controller_type == 'admin') {
$this->updateGroup($this->groupBox);
}
if ($this->deleted) {
$addresses = $this->getAddresses((int) Configuration::get('PS_LANG_DEFAULT'));
foreach ($addresses as $address) {
$obj = new Address((int) $address['id_address']);
$obj->deleted = true;
$obj->save();
}
}
try {
return parent::update(true);
} catch (\PrestaShopException $exception) {
$message = $exception->getMessage();
error_log($message);
return false;
}
}
/**
* Updates the current Customer in the database.
*
* @param bool $nullValues Whether we want to use NULL values instead of empty quotes values
*
* @return bool Indicates whether the Customer has been successfully updated
*
* @throws PrestaShopDatabaseException
* @throws PrestaShopException
*/
public function updateWs($nullValues = false)
{
if (Customer::customerExists($this->email)
&& Customer::customerExists($this->email, true) !== (int) $this->id
) {
WebserviceRequest::getInstance()->setError(
500,
$this->trans(
'The email is already used, please choose another one',
[],
'Admin.Notifications.Error'
),
141
);
return false;
}
return $this->update($nullValues = false);
}
/**
* Deletes current Customer from the database.
*
* @return bool True if delete was successful
*
* @throws PrestaShopException
*/
public function delete()
{
if (!count(Order::getCustomerOrders((int) $this->id))) {
$addresses = $this->getAddresses((int) Configuration::get('PS_LANG_DEFAULT'));
foreach ($addresses as $address) {
$obj = new Address((int) $address['id_address']);
$obj->delete();
}
}
Db::getInstance()->execute('DELETE FROM `' . _DB_PREFIX_ . 'customer_group` WHERE `id_customer` = ' . (int) $this->id);
Db::getInstance()->execute('DELETE FROM ' . _DB_PREFIX_ . 'message WHERE id_customer=' . (int) $this->id);
Db::getInstance()->execute('DELETE FROM ' . _DB_PREFIX_ . 'specific_price WHERE id_customer=' . (int) $this->id);
$carts = Db::getInstance()->executeS('SELECT id_cart FROM ' . _DB_PREFIX_ . 'cart WHERE id_customer=' . (int) $this->id);
if ($carts) {
foreach ($carts as $cart) {
Db::getInstance()->execute('DELETE FROM ' . _DB_PREFIX_ . 'cart WHERE id_cart=' . (int) $cart['id_cart']);
Db::getInstance()->execute('DELETE FROM ' . _DB_PREFIX_ . 'cart_product WHERE id_cart=' . (int) $cart['id_cart']);
}
}
$cts = Db::getInstance()->executeS('SELECT id_customer_thread FROM ' . _DB_PREFIX_ . 'customer_thread WHERE id_customer=' . (int) $this->id);
if ($cts) {
foreach ($cts as $ct) {
Db::getInstance()->execute('DELETE FROM ' . _DB_PREFIX_ . 'customer_thread WHERE id_customer_thread=' . (int) $ct['id_customer_thread']);
Db::getInstance()->execute('DELETE FROM ' . _DB_PREFIX_ . 'customer_message WHERE id_customer_thread=' . (int) $ct['id_customer_thread']);
}
}
CartRule::deleteByIdCustomer((int) $this->id);
return parent::delete();
}
/**
* Return customers list.
*
* @param bool|null $onlyActive Returns only active customers when `true`
*
* @return array Customers
*/
public static function getCustomers($onlyActive = null)
{
return Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS(
'
SELECT `id_customer`, `email`, `firstname`, `lastname`
FROM `' . _DB_PREFIX_ . 'customer`
WHERE 1 ' . Shop::addSqlRestriction(Shop::SHARE_CUSTOMER) .
($onlyActive ? ' AND `active` = 1' : '') . '
ORDER BY `id_customer` ASC'
);
}
/**
* Return customer instance from its e-mail (optionally check password).
*
* @param string $email e-mail
* @param string $plaintextPassword Password is also checked if specified
* @param bool $ignoreGuest
*
* @return bool|Customer|CustomerCore Customer instance
*
* @throws \InvalidArgumentException if given input is not valid
*/
public function getByEmail($email, $plaintextPassword = null, $ignoreGuest = true)
{
if (!Validate::isEmail($email)) {
throw new \InvalidArgumentException(sprintf(
'Cannot get customer by email as %s is not a valid email',
$email
));
}
if (($plaintextPassword && !Validate::isPlaintextPassword($plaintextPassword))) {
throw new \InvalidArgumentException(
'Cannot get customer by email as given password is not a valid password'
);
}
$shopGroup = Shop::getGroupFromShop(Shop::getContextShopID(), false);
$sql = new DbQuery();
$sql->select('c.`passwd`');
$sql->from('customer', 'c');
$sql->where('c.`email` = \'' . pSQL($email) . '\'');
if (Shop::getContext() == Shop::CONTEXT_SHOP && $shopGroup['share_customer']) {
$sql->where('c.`id_shop_group` = ' . (int) Shop::getContextShopGroupID());
} else {
$sql->where('c.`id_shop` IN (' . implode(', ', Shop::getContextListShopID(Shop::SHARE_CUSTOMER)) . ')');
}
if ($ignoreGuest) {
$sql->where('c.`is_guest` = 0');
}
$sql->where('c.`deleted` = 0');
$passwordHash = Db::getInstance()->getValue($sql);
try {
/** @var \PrestaShop\PrestaShop\Core\Crypto\Hashing $crypto */
$crypto = ServiceLocator::get('\\PrestaShop\\PrestaShop\\Core\\Crypto\\Hashing');
} catch (CoreException $e) {
return false;
}
$shouldCheckPassword = null !== $plaintextPassword;
if ($shouldCheckPassword && !$crypto->checkHash($plaintextPassword, $passwordHash)) {
return false;
}
$sql = new DbQuery();
$sql->select('c.*');
$sql->from('customer', 'c');
$sql->where('c.`email` = \'' . pSQL($email) . '\'');
if (Shop::getContext() == Shop::CONTEXT_SHOP && $shopGroup['share_customer']) {
$sql->where('c.`id_shop_group` = ' . (int) Shop::getContextShopGroupID());
} else {
$sql->where('c.`id_shop` IN (' . implode(', ', Shop::getContextListShopID(Shop::SHARE_CUSTOMER)) . ')');
}
if ($ignoreGuest) {
$sql->where('c.`is_guest` = 0');
}
$sql->where('c.`deleted` = 0');
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow($sql);
if (!$result) {
return false;
}
$this->id = $result['id_customer'];
foreach ($result as $key => $value) {
if (property_exists($this, $key)) {
$this->{$key} = $value;
}
}
if ($shouldCheckPassword && !$crypto->isFirstHash($plaintextPassword, $passwordHash)) {
$this->passwd = $crypto->hash($plaintextPassword);
$this->update();
}
return $this;
}
/**
* Retrieve customers by email address.
*
* @param string $email
*
* @return array
*/
public static function getCustomersByEmail($email)
{
$sql = 'SELECT *
FROM `' . _DB_PREFIX_ . 'customer`
WHERE `email` = \'' . pSQL($email) . '\'
' . Shop::addSqlRestriction(Shop::SHARE_CUSTOMER);
return Db::getInstance()->executeS($sql);
}
/**
* Check id the customer is active or not.
*
* @param int $idCustomer
*
* @return bool Customer validity
*/
public static function isBanned($idCustomer)
{
if (!Validate::isUnsignedId($idCustomer)) {
return true;
}
$cacheId = 'Customer::isBanned_' . (int) $idCustomer;
if (!Cache::isStored($cacheId)) {
$result = (bool) !Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow('
SELECT `id_customer`
FROM `' . _DB_PREFIX_ . 'customer`
WHERE `id_customer` = \'' . (int) $idCustomer . '\'
AND active = 1
AND `deleted` = 0');
Cache::store($cacheId, $result);
return $result;
}
return Cache::retrieve($cacheId);
}
/**
* Check if e-mail is already registered in database.
*
* @param string $email e-mail
* @param bool $returnId
* @param bool $ignoreGuest To exclude guest customer
*
* @return bool|int Customer ID if found
* `false` otherwise
*/
public static function customerExists($email, $returnId = false, $ignoreGuest = true)
{
if (!Validate::isEmail($email)) {
return false;
}
$result = Db::getInstance()->getValue('
SELECT `id_customer`
FROM `' . _DB_PREFIX_ . 'customer`
WHERE `email` = \'' . pSQL($email) . '\'
' . Shop::addSqlRestriction(Shop::SHARE_CUSTOMER) . '
' . ($ignoreGuest ? ' AND `is_guest` = 0' : ''), false);
return $returnId ? (int) $result : (bool) $result;
}
/**
* Check if an address is owned by a customer.
*
* @param int $idCustomer Customer ID
* @param int $idAddress Address ID
*
* @return bool result
*/
public static function customerHasAddress($idCustomer, $idAddress)
{
$key = (int) $idCustomer . '-' . (int) $idAddress;
if (!array_key_exists($key, self::$_customerHasAddress)) {
self::$_customerHasAddress[$key] = (bool) Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue('
SELECT `id_address`
FROM `' . _DB_PREFIX_ . 'address`
WHERE `id_customer` = ' . (int) $idCustomer . '
AND `id_address` = ' . (int) $idAddress . '
AND `deleted` = 0');
}
return self::$_customerHasAddress[$key];
}
/**
* Reset Address cache.
*
* @param int $idCustomer Customer ID
* @param int $idAddress Address ID
*/
public static function resetAddressCache($idCustomer = null, $idAddress = null)
{
if ($idCustomer === null || $idAddress === null) {
self::$_customerHasAddress = [];
self::$_customer_groups = [];
self::$_defaultGroupId = [];
}
$key = (int) $idCustomer . '-' . (int) $idAddress;
if (array_key_exists($key, self::$_customerHasAddress)) {
unset(self::$_customerHasAddress[$key]);
}
}
/**
* Return customer addresses.
*
* @param int $idLang Language ID
*
* @return array Addresses
*/
public function getAddresses($idLang)
{
$group = Context::getContext()->shop->getGroup();
$shareOrder = isset($group->share_order) ? (bool) $group->share_order : false;
$cacheId = 'Customer::getAddresses'
. '-' . (int) $this->id
. '-' . (int) $idLang
. '-' . ($shareOrder ? 1 : 0);
if (!Cache::isStored($cacheId)) {
$sql = 'SELECT DISTINCT a.*, cl.`name` AS country, s.name AS state, s.iso_code AS state_iso
FROM `' . _DB_PREFIX_ . 'address` a
LEFT JOIN `' . _DB_PREFIX_ . 'country` c ON (a.`id_country` = c.`id_country`)
LEFT JOIN `' . _DB_PREFIX_ . 'country_lang` cl ON (c.`id_country` = cl.`id_country`)
LEFT JOIN `' . _DB_PREFIX_ . 'state` s ON (s.`id_state` = a.`id_state`)
' . ($shareOrder ? '' : Shop::addSqlAssociation('country', 'c')) . '
WHERE `id_lang` = ' . (int) $idLang . ' AND `id_customer` = ' . (int) $this->id . ' AND a.`deleted` = 0';
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
Cache::store($cacheId, $result);
return $result;
}
return Cache::retrieve($cacheId);
}
/**
* Get simplified Addresses arrays.
*
* @param int|null $idLang Language ID
*
* @return array
*/
public function getSimpleAddresses($idLang = null)
{
if (!$this->id) {
return [];
}
if (null === $idLang) {
$idLang = Context::getContext()->language->id;
}
$sql = $this->getSimpleAddressSql(null, $idLang);
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
$addresses = [];
foreach ($result as $addr) {
$addresses[$addr['id']] = $addr;
}
return $addresses;
}
/**
* Get Address as array.
*
* @param int $idAddress Address ID
* @param int|null $idLang Language ID
*
* @return array|false|mysqli_result|PDOStatement|resource|null
*/
public function getSimpleAddress($idAddress, $idLang = null)
{
if (!$this->id || !(int) $idAddress || !$idAddress) {
return [
'id' => '',
'alias' => '',
'firstname' => '',
'lastname' => '',
'company' => '',
'address1' => '',
'address2' => '',
'postcode' => '',
'city' => '',
'id_state' => '',
'state' => '',
'state_iso' => '',
'id_country' => '',
'country' => '',
'country_iso' => '',
'other' => '',
'phone' => '',
'phone_mobile' => '',
'vat_number' => '',
'dni' => '',
];
}
$sql = $this->getSimpleAddressSql($idAddress, $idLang);
$res = Db::getInstance()->executeS($sql);
if (count($res) === 1) {
return $res[0];
} else {
return $res;
}
}
/**
* Get SQL query to retrieve Address in an array.
*
* @param int|null $idAddress Address ID
* @param int|null $idLang Language ID
*
* @return string
*/
public function getSimpleAddressSql($idAddress = null, $idLang = null)
{
if (null === $idLang) {
$idLang = Context::getContext()->language->id;
}
$shareOrder = (bool) Context::getContext()->shop->getGroup()->share_order;
$sql = 'SELECT DISTINCT
a.`id_address` AS `id`,
a.`alias`,
a.`firstname`,
a.`lastname`,
a.`company`,
a.`address1`,
a.`address2`,
a.`postcode`,
a.`city`,
a.`id_state`,
s.name AS state,
s.`iso_code` AS state_iso,
a.`id_country`,
cl.`name` AS country,
co.`iso_code` AS country_iso,
a.`other`,
a.`phone`,
a.`phone_mobile`,
a.`vat_number`,
a.`dni`
FROM `' . _DB_PREFIX_ . 'address` a
LEFT JOIN `' . _DB_PREFIX_ . 'country` co ON (a.`id_country` = co.`id_country`)
LEFT JOIN `' . _DB_PREFIX_ . 'country_lang` cl ON (co.`id_country` = cl.`id_country`)
LEFT JOIN `' . _DB_PREFIX_ . 'state` s ON (s.`id_state` = a.`id_state`)
' . ($shareOrder ? '' : Shop::addSqlAssociation('country', 'co')) . '
WHERE
`id_lang` = ' . (int) $idLang . '
AND `id_customer` = ' . (int) $this->id . '
AND a.`deleted` = 0
AND a.`active` = 1';
if (null !== $idAddress) {
$sql .= ' AND a.`id_address` = ' . (int) $idAddress;
}
return $sql;
}
/**
* Count the number of addresses for a customer.
*
* @param int $idCustomer Customer ID
*
* @return int Number of addresses
*/
public static function getAddressesTotalById($idCustomer)
{
return Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue(
'
SELECT COUNT(`id_address`)
FROM `' . _DB_PREFIX_ . 'address`
WHERE `id_customer` = ' . (int) $idCustomer . '
AND `deleted` = 0'
);
}
/**
* Check if customer password is the right one.
*
* @param int $idCustomer Customer ID
* @param string $passwordHash Hashed password
*
* @return bool result
*/
public static function checkPassword($idCustomer, $passwordHash)
{
if (!Validate::isUnsignedId($idCustomer)) {
die(Tools::displayError());
}
// Check that customers password hasn't changed since last login
$context = Context::getContext();
if ($passwordHash != $context->cookie->__get('passwd')) {
return false;
}
$cacheId = 'Customer::checkPassword' . (int) $idCustomer . '-' . $passwordHash;
if (!Cache::isStored($cacheId)) {
$sql = new DbQuery();
$sql->select('c.`id_customer`');
$sql->from('customer', 'c');
$sql->where('c.`id_customer` = ' . (int) $idCustomer);
$sql->where('c.`passwd` = \'' . pSQL($passwordHash) . '\'');
$result = (bool) Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue($sql);
Cache::store($cacheId, $result);
return $result;
}
return Cache::retrieve($cacheId);
}
/**
* Light back office search for customers.
*
* @param string $query Searched string
* @param int|null $limit Limit query results
*
* @return array|false|mysqli_result|PDOStatement|resource|null Corresponding customers
*
* @throws PrestaShopDatabaseException
*/
public static function searchByName($query, $limit = null)
{
$sql = 'SELECT *
FROM `' . _DB_PREFIX_ . 'customer`
WHERE 1';
$search_items = explode(' ', $query);
$research_fields = ['id_customer', 'firstname', 'lastname', 'email'];
if (Configuration::get('PS_B2B_ENABLE')) {
$research_fields[] = 'company';
}
$items = [];
foreach ($research_fields as $field) {
foreach ($search_items as $item) {
$items[$item][] = $field . ' LIKE \'%' . pSQL($item) . '%\' ';
}
}
foreach ($items as $likes) {
$sql .= ' AND (' . implode(' OR ', $likes) . ') ';
}
$sql .= Shop::addSqlRestriction(Shop::SHARE_CUSTOMER);
if ($limit) {
$sql .= ' LIMIT 0, ' . (int) $limit;
}
return Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
}
/**
* Search for customers by ip address.
*
* @param string $ip Searched string
*
* @return array|false|mysqli_result|PDOStatement|resource|null
*/
public static function searchByIp($ip)
{
return Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS('
SELECT DISTINCT c.*
FROM `' . _DB_PREFIX_ . 'customer` c
LEFT JOIN `' . _DB_PREFIX_ . 'guest` g ON g.id_customer = c.id_customer
LEFT JOIN `' . _DB_PREFIX_ . 'connections` co ON g.id_guest = co.id_guest
WHERE co.`ip_address` = \'' . (int) ip2long(trim($ip)) . '\'');
}
/**
* Return several useful statistics about customer.
*
* @return array Stats
*/
public function getStats()
{
$result = Db::getInstance()->getRow('
SELECT COUNT(`id_order`) AS nb_orders, SUM(`total_paid` / o.`conversion_rate`) AS total_orders
FROM `' . _DB_PREFIX_ . 'orders` o
WHERE o.`id_customer` = ' . (int) $this->id . '
AND o.valid = 1');
$result2 = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow('
SELECT c.`date_add` AS last_visit
FROM `' . _DB_PREFIX_ . 'connections` c
LEFT JOIN `' . _DB_PREFIX_ . 'guest` g USING (id_guest)
WHERE g.`id_customer` = ' . (int) $this->id . ' ORDER BY c.`date_add` DESC ');
$result3 = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow('
SELECT (YEAR(CURRENT_DATE)-YEAR(c.`birthday`)) - (RIGHT(CURRENT_DATE, 5)<RIGHT(c.`birthday`, 5)) AS age
FROM `' . _DB_PREFIX_ . 'customer` c
WHERE c.`id_customer` = ' . (int) $this->id);
$result['last_visit'] = $result2['last_visit'] ?? null;
$result['age'] = (isset($result3['age']) && $result3['age'] != date('Y') ? $result3['age'] : '--');
return $result;
}
/**
* Get last 10 emails sent to the Customer.
*
* @return array|false|mysqli_result|PDOStatement|resource|null
*/
public function getLastEmails()
{
if (!$this->id) {
return [];
}
return Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS('
SELECT m.*, l.name as language
FROM `' . _DB_PREFIX_ . 'mail` m
LEFT JOIN `' . _DB_PREFIX_ . 'lang` l ON m.id_lang = l.id_lang
WHERE `recipient` = "' . pSQL($this->email) . '"
ORDER BY m.date_add DESC
LIMIT 10');
}
/**
* Get last 10 Connections of the Customer.
*
* @return array|false|mysqli_result|PDOStatement|resource|null
*/
public function getLastConnections()
{
if (!$this->id) {
return [];
}
return Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS(
'
SELECT c.id_connections, c.date_add, COUNT(cp.id_page) AS pages, TIMEDIFF(MAX(cp.time_end), c.date_add) as time, http_referer,INET_NTOA(ip_address) as ipaddress
FROM `' . _DB_PREFIX_ . 'guest` g
LEFT JOIN `' . _DB_PREFIX_ . 'connections` c ON c.id_guest = g.id_guest
LEFT JOIN `' . _DB_PREFIX_ . 'connections_page` cp ON c.id_connections = cp.id_connections
WHERE g.`id_customer` = ' . (int) $this->id . '
GROUP BY c.`id_connections`
ORDER BY c.date_add DESC
LIMIT 10'
);
}
/**
* Check if Customer ID exists.
*
* @param int $idCustomer Customer ID
*
* @return int|null Customer ID if found
*/
public static function customerIdExistsStatic($idCustomer)
{
$cacheId = 'Customer::customerIdExistsStatic' . (int) $idCustomer;
if (!Cache::isStored($cacheId)) {
$result = (int) Db::getInstance()->getValue('
SELECT `id_customer`
FROM ' . _DB_PREFIX_ . 'customer c
WHERE c.`id_customer` = ' . (int) $idCustomer);
Cache::store($cacheId, $result);
return $result;