This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 107
/
cron.php
124 lines (101 loc) · 4.32 KB
/
cron.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
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
<?php
/**
* This file is part of FacturaScripts
* Copyright (C) 2013-2018 Carlos Garcia Gomez <neorazorx@gmail.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/>.
*/
echo 'Iniciando cron de FacturaScripts...';
/// establecemos el límite de ejecución de PHP en 50 minutos
@set_time_limit(3000);
/// accedemos al directorio de FacturaScripts
chdir(__DIR__);
define('FS_FOLDER', __DIR__);
/// cargamos las constantes de configuración
require_once 'config.php';
require_once 'base/config2.php';
$tiempo = explode(' ', microtime());
$uptime = $tiempo[1] + $tiempo[0];
require_once 'base/fs_core_log.php';
require_once 'base/fs_db2.php';
$core_log = new fs_core_log();
$db = new fs_db2();
require_once 'base/fs_default_items.php';
require_once 'base/fs_extended_model.php';
require_once 'base/fs_log_manager.php';
require_all_models();
if ($db->connect()) {
$fsvar = new fs_var();
$cron_vars = $fsvar->array_get(array('cron_exists' => FALSE, 'cron_lock' => FALSE, 'cron_error' => FALSE));
if ($cron_vars['cron_lock']) {
echo "\nERROR: Ya hay un cron en ejecución. Si crees que es un error,"
. " ve a Admin > Información del sistema para solucionar el problema.";
/// marcamos el error en el cron
$cron_vars['cron_error'] = 'TRUE';
} else {
/**
* He detectado que a veces, con el plugin kiwimaru,
* el proceso cron tarda más de una hora, y por tanto se encadenan varios
* procesos a la vez. Para evitar esto, uso la entrada cron_lock.
* Además uso la entrada cron_exists para marcar que alguna vez se ha ejecutado el cron,
* y cron_error por si hubiese algún fallo.
*/
$cron_vars['cron_lock'] = 'TRUE';
$cron_vars['cron_exists'] = 'TRUE';
/// guardamos las variables
$fsvar->array_save($cron_vars);
/// indicamos el inicio en el log
$core_log->save('Ejecutando el cron...', 'cron');
/// establecemos los elementos por defecto
$fs_default_items = new fs_default_items();
$empresa = new empresa();
$fs_default_items->set_codalmacen($empresa->codalmacen);
$fs_default_items->set_coddivisa($empresa->coddivisa);
$fs_default_items->set_codejercicio($empresa->codejercicio);
$fs_default_items->set_codpago($empresa->codpago);
$fs_default_items->set_codpais($empresa->codpais);
$fs_default_items->set_codserie($empresa->codserie);
/*
* Ahora ejecutamos el cron de cada plugin que tenga cron y esté activado
*/
foreach ($GLOBALS['plugins'] as $plugin) {
if (file_exists('plugins/' . $plugin . '/cron.php')) {
echo "\n***********************\nEjecutamos el cron.php del plugin " . $plugin . "\n";
include 'plugins/' . $plugin . '/cron.php';
echo "\n***********************";
}
}
/// indicamos el fin en el log
$core_log->save('Terminada la ejecución del cron.', 'cron');
/// Eliminamos la variable cron_lock puesto que ya hemos terminado
$cron_vars['cron_lock'] = FALSE;
}
/// guardamos las variables
$fsvar->array_save($cron_vars);
/// mostramos el errores que se hayan podido producir
foreach ($core_log->get_errors() as $err) {
echo "\nERROR: " . $err . "\n";
}
/// guardamos los errores en el log
$log_manager = new fs_log_manager();
$log_manager->save();
$db->close();
} else {
echo "¡Imposible conectar a la base de datos!\n";
foreach ($core_log->get_errors() as $err) {
echo $err . "\n";
}
}
$tiempo2 = explode(' ', microtime());
echo "\nTiempo de ejecución: " . number_format($tiempo2[1] + $tiempo2[0] - $uptime, 3) . " s\n";