forked from garacil/verifactu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintegrity.php
More file actions
160 lines (143 loc) · 5.51 KB
/
Copy pathintegrity.php
File metadata and controls
160 lines (143 loc) · 5.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?php
/* Copyright (C) 2025 Alberto SuperAdmin <aluquerivasdev@gmail.com>
* Copyright (C) 2025 Germán Luis Aracil Boned <garacilb@gmail.com>
*
* Based on original code from verifactu module by Alberto SuperAdmin (easysoft.es)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER', '1'); // Do not load object $user
if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU', '1'); // Do not load object $menu
if (! defined('NOLOGIN')) define('NOLOGIN', '1'); // Do not load object $user
// Load Dolibarr environment
$res = 0;
// Try main.inc.php into web root known defined into CONTEXT_DOCUMENT_ROOT (not always defined)
if (!$res && !empty($_SERVER["CONTEXT_DOCUMENT_ROOT"])) {
$res = @include $_SERVER["CONTEXT_DOCUMENT_ROOT"] . "/main.inc.php";
}
// Try main.inc.php into web root detected using web root calculated from SCRIPT_FILENAME
$tmp = empty($_SERVER['SCRIPT_FILENAME']) ? '' : $_SERVER['SCRIPT_FILENAME'];
$tmp2 = realpath(__FILE__);
$i = strlen($tmp) - 1;
$j = strlen($tmp2) - 1;
while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
$i--;
$j--;
}
if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1)) . "/main.inc.php")) {
$res = @include substr($tmp, 0, ($i + 1)) . "/main.inc.php";
}
if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1))) . "/main.inc.php")) {
$res = @include dirname(substr($tmp, 0, ($i + 1))) . "/main.inc.php";
}
// Try main.inc.php using relative path
if (!$res && file_exists("../main.inc.php")) {
$res = @include "../main.inc.php";
}
if (!$res && file_exists("../../main.inc.php")) {
$res = @include "../../main.inc.php";
}
if (!$res && file_exists("../../../main.inc.php")) {
$res = @include "../../../main.inc.php";
}
if (!$res) {
die("Include of main fails");
}
// Configure response headers
top_httphead('text/json');
// Include libraries
dol_include_once('/verifactu/lib/verifactu.lib.php');
dol_include_once('/verifactu/core/modules/modVerifactu.class.php');
$verifactuModule = new ModVerifactu($db);
try {
// Get the module's current directory
$moduleDirectory = __DIR__;
// Calculate integrity hash
$integrityHash = calculateVerifactuIntegrityChecksums($moduleDirectory);
if ($integrityHash === false) {
// Error calculating hash
http_response_code(500);
echo json_encode([
'status' => 'error',
'message' => 'Could not calculate integrity hash',
'hash' => null
]);
} else {
// License is no longer required
$licenseKey = null;
// Check if private key is configured
$hasPrivateKey = !empty($conf->global->VERIFACTU_CERTIFICATE_PRIVATE_KEY);
// Check if invoices have already been sent to VeriFactu
$sql = "SELECT COUNT(*) as count FROM " . MAIN_DB_PREFIX . "facture f";
$sql .= " INNER JOIN " . MAIN_DB_PREFIX . "facture_extrafields fe ON f.rowid = fe.fk_object";
$sql .= " WHERE 1=1 ";
$sql .= " AND fe.verifactu_csv_factura IS NOT NULL AND fe.verifactu_csv_factura != ''";
$sql .= " AND fe.verifactu_estado IS NOT NULL AND fe.verifactu_estado != ''";
$sql .= " LIMIT 1";
$resql = $db->query($sql);
$invoicesSent = 0;
if ($resql) {
$obj = $db->fetch_object($resql);
$invoicesSent = intval($obj->count);
$db->free($resql);
}
// Count invoices with VeriFactu errors
$sqlErrors = "SELECT COUNT(*) as count FROM " . MAIN_DB_PREFIX . "facture f";
$sqlErrors .= " INNER JOIN " . MAIN_DB_PREFIX . "facture_extrafields fe ON f.rowid = fe.fk_object";
$sqlErrors .= " WHERE fe.verifactu_error IS NOT NULL AND fe.verifactu_error != ''";
$sqlErrors .= " AND f.fk_statut > 0";
$sqlErrors .= " LIMIT 1";
$resqlErrors = $db->query($sqlErrors);
$invoicesWithErrors = 0;
if ($resqlErrors) {
$objErrors = $db->fetch_object($resqlErrors);
$invoicesWithErrors = intval($objErrors->count);
$db->free($resqlErrors);
}
// Check critical configuration
$hasNIF = !empty($conf->global->VERIFACTU_HOLDER_NIF);
$hasCompanyName = !empty($conf->global->VERIFACTU_HOLDER_COMPANY_NAME);
// Hash calculated successfully
http_response_code(200);
echo json_encode([
'status' => 'success',
'message' => 'Integrity hash calculated successfully',
'hash' => $integrityHash,
'module' => 'verifactu',
'version' => $verifactuModule->version,
'timestamp' => time(),
'domain' => getVerifactuDomain(),
'directory' => basename($moduleDirectory),
'license' => $licenseKey,
'has_private_key' => $hasPrivateKey,
'invoices_sent' => $invoicesSent,
'invoices_with_errors' => $invoicesWithErrors,
'local_certificate' => true,
'configuration' => [
'has_nif' => $hasNIF,
'has_company_name' => $hasCompanyName,
'environment' => getEnvironment()
]
]);
}
} catch (Exception $e) {
// Error during execution
http_response_code(500);
echo json_encode([
'status' => 'error',
'message' => 'Error en el cálculo de integridad: ' . $e->getMessage(),
'hash' => null,
'trace' => $e->getTraceAsString()
]);
}