185 lines
7.8 KiB
PHP
185 lines
7.8 KiB
PHP
<?php
|
|
namespace Opencart\Catalog\Controller\Account;
|
|
/**
|
|
* Class Edit
|
|
*
|
|
* @package Opencart\Catalog\Controller\Account
|
|
*/
|
|
class Edit extends \Opencart\System\Engine\Controller {
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function index(): void {
|
|
$this->load->language('account/edit');
|
|
|
|
if (!$this->customer->isLogged() || (!isset($this->request->get['customer_token']) || !isset($this->session->data['customer_token']) || ($this->request->get['customer_token'] != $this->session->data['customer_token']))) {
|
|
$this->session->data['redirect'] = $this->url->link('account/edit', 'language=' . $this->config->get('config_language'));
|
|
|
|
$this->response->redirect($this->url->link('account/login', 'language=' . $this->config->get('config_language')));
|
|
}
|
|
|
|
$this->document->setTitle($this->language->get('heading_title'));
|
|
|
|
$data['breadcrumbs'] = [];
|
|
|
|
$data['breadcrumbs'][] = [
|
|
'text' => $this->language->get('text_home'),
|
|
'href' => $this->url->link('common/home', 'language=' . $this->config->get('config_language'))
|
|
];
|
|
|
|
$data['breadcrumbs'][] = [
|
|
'text' => $this->language->get('text_account'),
|
|
'href' => $this->url->link('account/account', 'language=' . $this->config->get('config_language') . '&customer_token=' . $this->session->data['customer_token'])
|
|
];
|
|
|
|
$data['breadcrumbs'][] = [
|
|
'text' => $this->language->get('text_edit'),
|
|
'href' => $this->url->link('account/edit', 'language=' . $this->config->get('config_language') . '&customer_token=' . $this->session->data['customer_token'])
|
|
];
|
|
|
|
$data['error_upload_size'] = sprintf($this->language->get('error_upload_size'), $this->config->get('config_file_max_size'));
|
|
|
|
$data['config_file_max_size'] = ((int)$this->config->get('config_file_max_size') * 1024 * 1024);
|
|
$data['config_telephone_display'] = $this->config->get('config_telephone_display');
|
|
$data['config_telephone_required'] = $this->config->get('config_telephone_required');
|
|
|
|
$data['save'] = $this->url->link('account/edit.save', 'language=' . $this->config->get('config_language') . '&customer_token=' . $this->session->data['customer_token']);
|
|
$data['upload'] = $this->url->link('tool/upload', 'language=' . $this->config->get('config_language'));
|
|
|
|
$this->load->model('account/customer');
|
|
|
|
$customer_info = $this->model_account_customer->getCustomer($this->customer->getId());
|
|
|
|
$data['firstname'] = $customer_info['firstname'];
|
|
$data['lastname'] = $customer_info['lastname'];
|
|
$data['email'] = $customer_info['email'];
|
|
$data['telephone'] = $customer_info['telephone'];
|
|
|
|
// Custom Fields
|
|
$data['custom_fields'] = [];
|
|
|
|
$this->load->model('account/custom_field');
|
|
|
|
$custom_fields = $this->model_account_custom_field->getCustomFields($this->customer->getGroupId());
|
|
|
|
foreach ($custom_fields as $custom_field) {
|
|
if ($custom_field['location'] == 'account') {
|
|
$data['custom_fields'][] = $custom_field;
|
|
}
|
|
}
|
|
|
|
if (isset($customer_info)) {
|
|
$data['account_custom_field'] = json_decode($customer_info['custom_field'], true);
|
|
} else {
|
|
$data['account_custom_field'] = [];
|
|
}
|
|
|
|
$data['back'] = $this->url->link('account/account', 'language=' . $this->config->get('config_language') . '&customer_token=' . $this->session->data['customer_token']);
|
|
|
|
$data['language'] = $this->config->get('config_language');
|
|
|
|
$data['column_left'] = $this->load->controller('common/column_left');
|
|
$data['column_right'] = $this->load->controller('common/column_right');
|
|
$data['content_top'] = $this->load->controller('common/content_top');
|
|
$data['content_bottom'] = $this->load->controller('common/content_bottom');
|
|
$data['footer'] = $this->load->controller('common/footer');
|
|
$data['header'] = $this->load->controller('common/header');
|
|
|
|
$this->response->setOutput($this->load->view('account/edit', $data));
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function save(): void {
|
|
$this->load->language('account/edit');
|
|
|
|
$json = [];
|
|
|
|
if (!$this->customer->isLogged() || (!isset($this->request->get['customer_token']) || !isset($this->session->data['customer_token']) || ($this->request->get['customer_token'] != $this->session->data['customer_token']))) {
|
|
$this->session->data['redirect'] = $this->url->link('account/edit', 'language=' . $this->config->get('config_language'));
|
|
|
|
$json['redirect'] = $this->url->link('account/login', 'language=' . $this->config->get('config_language'), true);
|
|
}
|
|
|
|
if (!$json) {
|
|
$keys = [
|
|
'firstname',
|
|
'lastname',
|
|
'email',
|
|
'telephone'
|
|
];
|
|
|
|
foreach ($keys as $key) {
|
|
if (!isset($this->request->post[$key])) {
|
|
$this->request->post[$key] = '';
|
|
}
|
|
}
|
|
|
|
if ((oc_strlen($this->request->post['firstname']) < 1) || (oc_strlen($this->request->post['firstname']) > 32)) {
|
|
$json['error']['firstname'] = $this->language->get('error_firstname');
|
|
}
|
|
|
|
if ((oc_strlen($this->request->post['lastname']) < 1) || (oc_strlen($this->request->post['lastname']) > 32)) {
|
|
$json['error']['lastname'] = $this->language->get('error_lastname');
|
|
}
|
|
|
|
if ((oc_strlen($this->request->post['email']) > 96) || !filter_var($this->request->post['email'], FILTER_VALIDATE_EMAIL)) {
|
|
$json['error']['email'] = $this->language->get('error_email');
|
|
}
|
|
|
|
$this->load->model('account/customer');
|
|
|
|
if (($this->customer->getEmail() != $this->request->post['email']) && $this->model_account_customer->getTotalCustomersByEmail($this->request->post['email'])) {
|
|
$json['error']['warning'] = $this->language->get('error_exists');
|
|
}
|
|
|
|
if ($this->config->get('config_telephone_required') && (oc_strlen($this->request->post['telephone']) < 3) || (oc_strlen($this->request->post['telephone']) > 32)) {
|
|
$json['error']['telephone'] = $this->language->get('error_telephone');
|
|
}
|
|
|
|
// Custom field validation
|
|
$this->load->model('account/custom_field');
|
|
|
|
$custom_fields = $this->model_account_custom_field->getCustomFields($this->customer->getGroupId());
|
|
|
|
foreach ($custom_fields as $custom_field) {
|
|
if ($custom_field['location'] == 'account') {
|
|
if ($custom_field['required'] && empty($this->request->post['custom_field'][$custom_field['custom_field_id']])) {
|
|
$json['error']['custom_field_' . $custom_field['custom_field_id']] = sprintf($this->language->get('error_custom_field'), $custom_field['name']);
|
|
} elseif (($custom_field['type'] == 'text') && !empty($custom_field['validation']) && !preg_match(html_entity_decode($custom_field['validation'], ENT_QUOTES, 'UTF-8'), $this->request->post['custom_field'][$custom_field['custom_field_id']])) {
|
|
$json['error']['custom_field_' . $custom_field['custom_field_id']] = sprintf($this->language->get('error_regex'), $custom_field['name']);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!$json) {
|
|
// Update customer in db
|
|
$this->model_account_customer->editCustomer($this->customer->getId(), $this->request->post);
|
|
|
|
$this->session->data['success'] = $this->language->get('text_success');
|
|
|
|
// Update customer session details
|
|
$this->session->data['customer'] = [
|
|
'customer_id' => $this->customer->getId(),
|
|
'customer_group_id' => $this->customer->getGroupId(),
|
|
'firstname' => $this->request->post['firstname'],
|
|
'lastname' => $this->request->post['lastname'],
|
|
'email' => $this->request->post['email'],
|
|
'telephone' => $this->request->post['telephone'],
|
|
'custom_field' => isset($this->request->post['custom_field']) ? $this->request->post['custom_field'] : []
|
|
];
|
|
|
|
unset($this->session->data['shipping_method']);
|
|
unset($this->session->data['shipping_methods']);
|
|
unset($this->session->data['payment_method']);
|
|
unset($this->session->data['payment_methods']);
|
|
|
|
$json['redirect'] = $this->url->link('account/account', 'language=' . $this->config->get('config_language') . '&customer_token=' . $this->session->data['customer_token'], true);
|
|
}
|
|
|
|
$this->response->addHeader('Content-Type: application/json');
|
|
$this->response->setOutput(json_encode($json));
|
|
}
|
|
} |