-
Notifications
You must be signed in to change notification settings - Fork 254
/
index.php
81 lines (67 loc) · 2.38 KB
/
index.php
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
<?php
/**
* This file is part of FacturaScripts
* Copyright (C) 2017-2024 Carlos Garcia Gomez <carlos@facturascripts.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
use FacturaScripts\Core\Base\DataBase;
use FacturaScripts\Core\Base\MiniLog;
use FacturaScripts\Core\CrashReport;
use FacturaScripts\Core\Kernel;
use FacturaScripts\Core\NextCode;
use FacturaScripts\Core\Plugins;
use FacturaScripts\Core\Telemetry;
use FacturaScripts\Core\Tools;
use FacturaScripts\Core\WorkQueue;
require_once __DIR__ . '/vendor/autoload.php';
// cargamos la configuración
const FS_FOLDER = __DIR__;
if (file_exists(__DIR__ . '/config.php')) {
require_once __DIR__ . '/config.php';
}
// desactivamos el tiempo de ejecución y el aborto de la conexión
@set_time_limit(0);
ignore_user_abort(true);
// establecemos la zona horaria
$timeZone = Tools::config('timezone', 'Europe/Madrid');
date_default_timezone_set($timeZone);
// cargamos el gestor de errores
CrashReport::init();
// iniciamos el kernel
Kernel::init();
// obtenemos la url y ejecutamos el controlador
// si se le pasa el parámetro cron, entonces ejecutamos la url /cron
$url = isset($argv[1]) && $argv[1] === '-cron' ?
'/cron' :
parse_url($_SERVER["REQUEST_URI"] ?? '', PHP_URL_PATH) ?? '';
// iniciamos los plugins, a menos que la ruta sea /deploy
if ($url !== '/deploy') {
Plugins::init();
}
// ejecutamos el controlador
Kernel::run($url);
$db = new DataBase();
if ($db->connected()) {
// ejecutamos la cola de trabajos
WorkQueue::run();
// actualizamos la telemetría
$telemetry = new Telemetry();
$telemetry->update();
// guardamos los logs y cerramos la conexión a la base de datos
MiniLog::save();
$db->close();
// limpiamos archivos temporales antiguos
NextCode::clearOld();
}