1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* This file is part of the official Pagantis module for PrestaShop. |
4
|
|
|
* |
5
|
|
|
* @author Pagantis <[email protected]> |
6
|
|
|
* @copyright 2019 Pagantis |
7
|
|
|
* @license proprietary |
8
|
|
|
*/ |
9
|
|
|
|
10
|
|
|
/** |
11
|
|
|
* Class PagantisLogModuleFrontController |
12
|
|
|
*/ |
13
|
|
|
class PagantisLogModuleFrontController extends ModuleFrontController |
|
|
|
|
14
|
|
|
{ |
15
|
|
|
/** |
16
|
|
|
* @var string $message |
17
|
|
|
*/ |
18
|
|
|
protected $message; |
19
|
|
|
|
20
|
|
|
/** |
21
|
|
|
* @var bool $error |
22
|
|
|
*/ |
23
|
|
|
protected $error = false; |
24
|
|
|
|
25
|
|
|
/** |
26
|
|
|
* Controller index method: |
27
|
|
|
*/ |
28
|
|
|
public function postProcess() |
29
|
|
|
{ |
30
|
|
|
if (!$this->authorize()) { |
|
|
|
|
31
|
|
|
return; |
32
|
|
|
}; |
33
|
|
|
$limit = 200; |
34
|
|
|
$where = ''; |
35
|
|
|
if (Tools::getValue('limit', false) && is_numeric(Tools::getValue('limit'))) { |
|
|
|
|
36
|
|
|
$limit = Tools::getValue('limit'); |
37
|
|
|
} |
38
|
|
|
if (Tools::getValue('from', false)) { |
39
|
|
|
$where = 'WHERE createdAt >= \'' . Tools::getValue('from') . '\''; |
40
|
|
|
} |
41
|
|
|
$sql = 'SELECT * FROM ' . _DB_PREFIX_ . 'pagantis_log ' . $where . ' ORDER BY id desc LIMIT ' . $limit; |
|
|
|
|
42
|
|
|
if ($results = Db::getInstance()->ExecuteS($sql)) { |
|
|
|
|
43
|
|
|
foreach ($results as $row) { |
44
|
|
|
$data = (is_null(json_decode($row['log']))) ? $row['log'] : json_decode($row['log']); |
45
|
|
|
if (is_array($data)) { |
46
|
|
|
$data['timestamp'] = $row['createdAt']; |
47
|
|
|
} else { |
48
|
|
|
$data = array("message" => $data, 'timestamp' => $row['createdAt']); |
49
|
|
|
} |
50
|
|
|
$this->message[] = $data; |
51
|
|
|
} |
52
|
|
|
} |
53
|
|
|
$this->jsonResponse(); |
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
/** |
57
|
|
|
* Send a jsonResponse |
58
|
|
|
*/ |
59
|
|
|
public function jsonResponse() |
60
|
|
|
{ |
61
|
|
|
$result = json_encode($this->message); |
62
|
|
|
if ($result === 'null') { |
63
|
|
|
$result = array(); |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
header('HTTP/1.1 200 Ok', true, 200); |
67
|
|
|
header('Content-Type: application/json', true); |
68
|
|
|
header('Content-Length: ' . Tools::strlen($result)); |
69
|
|
|
|
70
|
|
|
echo $result; |
|
|
|
|
71
|
|
|
exit(); |
|
|
|
|
72
|
|
|
} |
73
|
|
|
|
74
|
|
|
/** |
75
|
|
|
* @return bool|null |
76
|
|
|
*/ |
77
|
|
|
public function authorize() |
78
|
|
|
{ |
79
|
|
|
$productCode = Tools::getValue('product', false); |
80
|
|
|
$products = explode(',', Pagantis::getExtraConfig('PRODUCTS', null)); |
81
|
|
|
$privateKey = Configuration::get(Tools::strtolower($productCode) . '_private_key'); |
|
|
|
|
82
|
|
|
$privateKeyGet = Tools::getValue('secret', false); |
83
|
|
|
if (!empty($privateKeyGet) && $privateKeyGet === $privateKey && in_array(Tools::strtoupper($productCode), $products)) { |
84
|
|
|
return true; |
85
|
|
|
} |
86
|
|
|
|
87
|
|
|
header('HTTP/1.1 403 Forbidden', true, 403); |
88
|
|
|
header('Content-Type: application/json', true); |
89
|
|
|
|
90
|
|
|
exit(); |
91
|
|
|
} |
92
|
|
|
} |
93
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths