first commit
This commit is contained in:
199
extension/opencart/admin/controller/fraud/ip.php
Normal file
199
extension/opencart/admin/controller/fraud/ip.php
Normal file
@ -0,0 +1,199 @@
|
||||
<?php
|
||||
namespace Opencart\Admin\Controller\Extension\Opencart\Fraud;
|
||||
/**
|
||||
* Class IP
|
||||
*
|
||||
* @package Opencart\Admin\Controller\Extension\Opencart\Fraud
|
||||
*/
|
||||
class Ip extends \Opencart\System\Engine\Controller {
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function index(): void {
|
||||
$this->load->language('extension/opencart/fraud/ip');
|
||||
|
||||
$this->document->setTitle($this->language->get('heading_title'));
|
||||
|
||||
$data['breadcrumbs'] = [];
|
||||
|
||||
$data['breadcrumbs'][] = [
|
||||
'text' => $this->language->get('text_home'),
|
||||
'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'])
|
||||
];
|
||||
|
||||
$data['breadcrumbs'][] = [
|
||||
'text' => $this->language->get('text_extension'),
|
||||
'href' => $this->url->link('marketplace/extension', 'user_token=' . $this->session->data['user_token'] . '&type=fraud')
|
||||
];
|
||||
|
||||
$data['breadcrumbs'][] = [
|
||||
'text' => $this->language->get('heading_title'),
|
||||
'href' => $this->url->link('extension/opencart/fraud/ip', 'user_token=' . $this->session->data['user_token'])
|
||||
];
|
||||
|
||||
$data['save'] = $this->url->link('extension/opencart/fraud/ip.save', 'user_token=' . $this->session->data['user_token']);
|
||||
$data['back'] = $this->url->link('marketplace/extension', 'user_token=' . $this->session->data['user_token'] . '&type=fraud');
|
||||
|
||||
$data['fraud_ip_order_status_id'] = $this->config->get('fraud_ip_order_status_id');
|
||||
|
||||
$this->load->model('localisation/order_status');
|
||||
|
||||
$data['order_statuses'] = $this->model_localisation_order_status->getOrderStatuses();
|
||||
|
||||
$data['fraud_ip_status'] = $this->config->get('fraud_ip_status');
|
||||
|
||||
$data['user_token'] = $this->session->data['user_token'];
|
||||
|
||||
$data['header'] = $this->load->controller('common/header');
|
||||
$data['column_left'] = $this->load->controller('common/column_left');
|
||||
$data['footer'] = $this->load->controller('common/footer');
|
||||
|
||||
$this->response->setOutput($this->load->view('extension/opencart/fraud/ip', $data));
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function save(): void {
|
||||
$this->load->language('extension/opencart/fraud/ip');
|
||||
|
||||
$json = [];
|
||||
|
||||
if (!$this->user->hasPermission('modify', 'extension/opencart/fraud/ip')) {
|
||||
$json['error'] = $this->language->get('error_permission');
|
||||
}
|
||||
|
||||
if (!$json) {
|
||||
$this->load->model('setting/setting');
|
||||
|
||||
$this->model_setting_setting->editSetting('fraud_ip', $this->request->post);
|
||||
|
||||
$json['success'] = $this->language->get('text_success');
|
||||
}
|
||||
|
||||
$this->response->addHeader('Content-Type: application/json');
|
||||
$this->response->setOutput(json_encode($json));
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function install(): void {
|
||||
if ($this->user->hasPermission('modify', 'extension/fraud')) {
|
||||
$this->load->model('extension/opencart/fraud/ip');
|
||||
|
||||
$this->model_extension_opencart_fraud_ip->install();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function uninstall(): void {
|
||||
if ($this->user->hasPermission('modify', 'extension/fraud')) {
|
||||
$this->load->model('extension/opencart/fraud/ip');
|
||||
|
||||
$this->model_extension_opencart_fraud_ip->uninstall();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function ip(): void {
|
||||
$this->load->language('extension/opencart/fraud/ip');
|
||||
|
||||
if (isset($this->request->get['page'])) {
|
||||
$page = (int)$this->request->get['page'];
|
||||
} else {
|
||||
$page = 1;
|
||||
}
|
||||
|
||||
$limit = 10;
|
||||
|
||||
$data['ips'] = [];
|
||||
|
||||
$this->load->model('extension/opencart/fraud/ip');
|
||||
$this->load->model('customer/customer');
|
||||
|
||||
$results = $this->model_extension_opencart_fraud_ip->getIps(($page - 1) * $limit, $limit);
|
||||
|
||||
foreach ($results as $result) {
|
||||
$data['ips'][] = [
|
||||
'ip' => $result['ip'],
|
||||
'total' => $this->model_customer_customer->getTotalCustomersByIp($result['ip']),
|
||||
'date_added' => date('d/m/y', strtotime($result['date_added'])),
|
||||
'filter_ip' => $this->url->link('customer/customer', 'user_token=' . $this->session->data['user_token'] . '&filter_ip=' . $result['ip'])
|
||||
];
|
||||
}
|
||||
|
||||
$ip_total = $this->model_extension_opencart_fraud_ip->getTotalIps();
|
||||
|
||||
$data['pagination'] = $this->load->controller('common/pagination', [
|
||||
'total' => $ip_total,
|
||||
'page' => $page,
|
||||
'limit' => $limit,
|
||||
'url' => $this->url->link('extension/opencart/fraud/ip.ip', 'user_token=' . $this->session->data['user_token'] . '&page={page}')
|
||||
]);
|
||||
|
||||
$data['results'] = sprintf($this->language->get('text_pagination'), ($ip_total) ? (($page - 1) * $limit) + 1 : 0, ((($page - 1) * $limit) > ($ip_total - $limit)) ? $ip_total : ((($page - 1) * $limit) + $limit), $ip_total, ceil($ip_total / $limit));
|
||||
|
||||
$this->response->setOutput($this->load->view('extension/opencart/fraud/ip_ip', $data));
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function addIp(): void {
|
||||
$this->load->language('extension/opencart/fraud/ip');
|
||||
|
||||
$json = [];
|
||||
|
||||
if (!$this->user->hasPermission('modify', 'extension/opencart/fraud/ip')) {
|
||||
$json['error'] = $this->language->get('error_permission');
|
||||
}
|
||||
|
||||
if (empty($this->request->post['ip'])) {
|
||||
$json['error'] = $this->language->get('error_required');
|
||||
} elseif (!filter_var($this->request->post['ip'], FILTER_VALIDATE_IP)) {
|
||||
$json['error'] = $this->language->get('error_invalid');
|
||||
}
|
||||
|
||||
if (!$json) {
|
||||
$this->load->model('extension/opencart/fraud/ip');
|
||||
|
||||
if (!$this->model_extension_opencart_fraud_ip->getTotalIpsByIp($this->request->post['ip'])) {
|
||||
$this->model_extension_opencart_fraud_ip->addIp($this->request->post['ip']);
|
||||
}
|
||||
|
||||
$json['success'] = $this->language->get('text_success');
|
||||
}
|
||||
|
||||
$this->response->addHeader('Content-Type: application/json');
|
||||
$this->response->setOutput(json_encode($json));
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function removeIp(): void {
|
||||
$this->load->language('extension/opencart/fraud/ip');
|
||||
|
||||
$json = [];
|
||||
|
||||
if (!$this->user->hasPermission('modify', 'extension/opencart/fraud/ip')) {
|
||||
$json['error'] = $this->language->get('error_permission');
|
||||
}
|
||||
|
||||
if (!$json) {
|
||||
$this->load->model('extension/opencart/fraud/ip');
|
||||
|
||||
$this->model_extension_opencart_fraud_ip->removeIp($this->request->post['ip']);
|
||||
|
||||
$json['success'] = $this->language->get('text_success');
|
||||
}
|
||||
|
||||
$this->response->addHeader('Content-Type: application/json');
|
||||
$this->response->setOutput(json_encode($json));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user