OpenCart 🇺🇦

Схема

public bool login ( string $email, string $password, bool $override = false )

Аргументы

Аргумент Возможный тип Описание
$email string
$password string
$override = false bool

Описание

Метод, который авторизовует пользователя

Пример использования:

// пример в моделе catalog/controller/account/register.php
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validate()) {
	$this->model_account_customer->addCustomer($this->request->post);

	$this->customer->login($this->request->post['email'], $this->request->post['password']);

	unset($this->session->data['guest']);

Исходный код

if ($override) {
	$customer_query = $this->db->query("SELECT * FROM " . DB_PREFIX . "customer where LOWER(email) = '" . $this->db->escape(utf8_strtolower($email)) . "' AND status = '1'");
} else {
	$customer_query = $this->db->query("SELECT * FROM " . DB_PREFIX . "customer WHERE LOWER(email) = '" . $this->db->escape(utf8_strtolower($email)) . "' AND (password = SHA1(CONCAT(salt, SHA1(CONCAT(salt, SHA1('" . $this->db->escape($password) . "'))))) OR password = '" . $this->db->escape(md5($password)) . "') AND status = '1' AND approved = '1'");
}

if ($customer_query->num_rows) {
	$this->session->data['customer_id'] = $customer_query->row['customer_id'];	

	if ($customer_query->row['cart'] && is_string($customer_query->row['cart'])) {
		$cart = unserialize($customer_query->row['cart']);

		foreach ($cart as $key => $value) {
			if (!array_key_exists($key, $this->session->data['cart'])) {
				$this->session->data['cart'][$key] = $value;
			} else {
				$this->session->data['cart'][$key] += $value;
			}
		}			
	}

	if ($customer_query->row['wishlist'] && is_string($customer_query->row['wishlist'])) {
		if (!isset($this->session->data['wishlist'])) {
			$this->session->data['wishlist'] = array();
		}

		$wishlist = unserialize($customer_query->row['wishlist']);

		foreach ($wishlist as $product_id) {
			if (!in_array($product_id, $this->session->data['wishlist'])) {
				$this->session->data['wishlist'][] = $product_id;
			}
		}			
	}

	$this->customer_id = $customer_query->row['customer_id'];
	$this->firstname = $customer_query->row['firstname'];
	$this->lastname = $customer_query->row['lastname'];
	$this->email = $customer_query->row['email'];
	$this->telephone = $customer_query->row['telephone'];
	$this->fax = $customer_query->row['fax'];
	$this->newsletter = $customer_query->row['newsletter'];
	$this->customer_group_id = $customer_query->row['customer_group_id'];
	$this->address_id = $customer_query->row['address_id'];

	$this->db->query("UPDATE " . DB_PREFIX . "customer SET ip = '" . $this->db->escape($this->request->server['REMOTE_ADDR']) . "' WHERE customer_id = '" . (int)$this->customer_id . "'");

	return true;
} else {
	return false;
}