first commit
This commit is contained in:
256
system/library/cart/customer.php
Normal file
256
system/library/cart/customer.php
Normal file
@ -0,0 +1,256 @@
|
||||
<?php
|
||||
namespace Opencart\System\Library\Cart;
|
||||
/**
|
||||
* Class Customer
|
||||
*
|
||||
* @package
|
||||
*/
|
||||
class Customer {
|
||||
/**
|
||||
* @var object|mixed|null
|
||||
*/
|
||||
private object $db;
|
||||
/**
|
||||
* @var object|mixed|null
|
||||
*/
|
||||
private object $config;
|
||||
/**
|
||||
* @var object|mixed|null
|
||||
*/
|
||||
private object $request;
|
||||
/**
|
||||
* @var object|mixed|null
|
||||
*/
|
||||
private object $session;
|
||||
/**
|
||||
* @var int|mixed
|
||||
*/
|
||||
private int $customer_id = 0;
|
||||
/**
|
||||
* @var string|mixed
|
||||
*/
|
||||
private string $firstname = '';
|
||||
/**
|
||||
* @var string|mixed
|
||||
*/
|
||||
private string $lastname = '';
|
||||
/**
|
||||
* @var int|mixed
|
||||
*/
|
||||
private int $customer_group_id = 0;
|
||||
/**
|
||||
* @var string|mixed
|
||||
*/
|
||||
private string $email = '';
|
||||
/**
|
||||
* @var string|mixed
|
||||
*/
|
||||
private string $telephone = '';
|
||||
/**
|
||||
* @var bool|mixed
|
||||
*/
|
||||
private bool $newsletter = false;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param object $registry
|
||||
*/
|
||||
public function __construct(\Opencart\System\Engine\Registry $registry) {
|
||||
$this->db = $registry->get('db');
|
||||
$this->config = $registry->get('config');
|
||||
$this->request = $registry->get('request');
|
||||
$this->session = $registry->get('session');
|
||||
|
||||
if (isset($this->session->data['customer_id'])) {
|
||||
$customer_query = $this->db->query("SELECT * FROM `" . DB_PREFIX . "customer` WHERE `customer_id` = '" . (int)$this->session->data['customer_id'] . "' AND `status` = '1'");
|
||||
|
||||
if ($customer_query->num_rows) {
|
||||
$this->customer_id = $customer_query->row['customer_id'];
|
||||
$this->firstname = $customer_query->row['firstname'];
|
||||
$this->lastname = $customer_query->row['lastname'];
|
||||
$this->customer_group_id = $customer_query->row['customer_group_id'];
|
||||
$this->email = $customer_query->row['email'];
|
||||
$this->telephone = $customer_query->row['telephone'];
|
||||
$this->newsletter = $customer_query->row['newsletter'];
|
||||
|
||||
$this->db->query("UPDATE `" . DB_PREFIX . "customer` SET `language_id` = '" . (int)$this->config->get('config_language_id') . "', `ip` = '" . $this->db->escape($this->request->server['REMOTE_ADDR']) . "' WHERE `customer_id` = '" . (int)$this->customer_id . "'");
|
||||
} else {
|
||||
$this->logout();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Login
|
||||
*
|
||||
* @param string $email
|
||||
* @param string $password
|
||||
* @param bool $override
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function login(string $email, string $password, bool $override = false): bool {
|
||||
$customer_query = $this->db->query("SELECT * FROM `" . DB_PREFIX . "customer` WHERE LCASE(`email`) = '" . $this->db->escape(oc_strtolower($email)) . "' AND `status` = '1'");
|
||||
|
||||
if ($customer_query->row) {
|
||||
if (!$override) {
|
||||
if (password_verify($password, $customer_query->row['password'])) {
|
||||
$rehash = password_needs_rehash($customer_query->row['password'], PASSWORD_DEFAULT);
|
||||
} elseif (isset($customer_query->row['salt']) && $customer_query->row['password'] == sha1($customer_query->row['salt'] . sha1($customer_query->row['salt'] . sha1($password)))) {
|
||||
$rehash = true;
|
||||
} elseif ($customer_query->row['password'] == md5($password)) {
|
||||
$rehash = true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ($rehash) {
|
||||
$this->db->query("UPDATE `" . DB_PREFIX . "customer` SET `password` = '" . $this->db->escape(password_hash($password, PASSWORD_DEFAULT)) . "' WHERE `customer_id` = '" . (int)$customer_query->row['customer_id'] . "'");
|
||||
}
|
||||
}
|
||||
|
||||
$this->session->data['customer_id'] = $customer_query->row['customer_id'];
|
||||
|
||||
$this->customer_id = $customer_query->row['customer_id'];
|
||||
$this->firstname = $customer_query->row['firstname'];
|
||||
$this->lastname = $customer_query->row['lastname'];
|
||||
$this->customer_group_id = $customer_query->row['customer_group_id'];
|
||||
$this->email = $customer_query->row['email'];
|
||||
$this->telephone = $customer_query->row['telephone'];
|
||||
$this->newsletter = $customer_query->row['newsletter'];
|
||||
|
||||
$this->db->query("UPDATE `" . DB_PREFIX . "customer` SET `language_id` = '" . (int)$this->config->get('config_language_id') . "', `ip` = '" . $this->db->escape($this->request->server['REMOTE_ADDR']) . "' WHERE `customer_id` = '" . (int)$this->customer_id . "'");
|
||||
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Logout
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function logout(): void {
|
||||
unset($this->session->data['customer_id']);
|
||||
|
||||
$this->customer_id = 0;
|
||||
$this->firstname = '';
|
||||
$this->lastname = '';
|
||||
$this->customer_group_id = 0;
|
||||
$this->email = '';
|
||||
$this->telephone = '';
|
||||
$this->newsletter = false;
|
||||
}
|
||||
|
||||
/**
|
||||
* isLogged
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function isLogged(): bool {
|
||||
return $this->customer_id ? true : false;
|
||||
}
|
||||
|
||||
/**
|
||||
* getId
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getId(): int {
|
||||
return $this->customer_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* getFirstName
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getFirstName(): string {
|
||||
return $this->firstname;
|
||||
}
|
||||
|
||||
/**
|
||||
* getLastName
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getLastName(): string {
|
||||
return $this->lastname;
|
||||
}
|
||||
|
||||
/**
|
||||
* getGroupId
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getGroupId(): int {
|
||||
return $this->customer_group_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* getEmail
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getEmail(): string {
|
||||
return $this->email;
|
||||
}
|
||||
|
||||
/**
|
||||
* getTelephone
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getTelephone(): string {
|
||||
return $this->telephone;
|
||||
}
|
||||
|
||||
/**
|
||||
* getNewsletter
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function getNewsletter(): bool {
|
||||
return $this->newsletter;
|
||||
}
|
||||
|
||||
/**
|
||||
* getAddressId
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getAddressId(): int {
|
||||
$query = $this->db->query("SELECT * FROM `" . DB_PREFIX . "address` WHERE `customer_id` = '" . (int)$this->customer_id . "' AND `default` = '1'");
|
||||
|
||||
if ($query->num_rows) {
|
||||
return (int)$query->row['address_id'];
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* getBalance
|
||||
*
|
||||
* @return float
|
||||
*/
|
||||
public function getBalance(): float {
|
||||
$query = $this->db->query("SELECT SUM(`amount`) AS `total` FROM `" . DB_PREFIX . "customer_transaction` WHERE `customer_id` = '" . (int)$this->customer_id . "'");
|
||||
|
||||
return (float)$query->row['total'];
|
||||
}
|
||||
|
||||
/**
|
||||
* getRewardPoints
|
||||
*
|
||||
* @return float
|
||||
*/
|
||||
public function getRewardPoints(): float {
|
||||
$query = $this->db->query("SELECT SUM(`points`) AS `total` FROM `" . DB_PREFIX . "customer_reward` WHERE `customer_id` = '" . (int)$this->customer_id . "'");
|
||||
|
||||
return (float)$query->row['total'];
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user