-
Notifications
You must be signed in to change notification settings - Fork 2
/
verif_auto_grr.php
93 lines (82 loc) · 3.16 KB
/
verif_auto_grr.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
<?php
/**
* verif_auto_grr.php
* Exécution de taches automatiques
* Ce script fait partie de l'application GRR
* Dernière modification : $Date: 2009-10-09 07:55:48 $
* @author Laurent Delineau <[email protected]>
* @copyright Copyright 2003-2008 Laurent Delineau
* @link http://www.gnu.org/licenses/licenses.html
* @package root
* @version $Id: verif_auto_grr.php,v 1.5 2009-10-09 07:55:48 grr Exp $
* @filesource
*
* This file is part of GRR.
*
* GRR 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 2 of the License, or
* (at your option) any later version.
*
* GRR 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 GRR; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
MOT DE PASSE
------------
L'exécution de ce script requiert un mot de passe défini dans l'interface en ligne de GRR (configuration générale -> Interactivité)
*/
$titre = "GRR - Exécution de tâches automatiques";
include "include/connect.inc.php";
include "include/config.inc.php";
include "include/misc.inc.php";
include "include/functions.inc.php";
include "include/$dbsys.inc.php";
include "include/mrbs_sql.inc.php";
$grr_script_name = "verif_auto_grr.php";
include("include/settings.inc.php");
if (!loadSettings())
die("Erreur chargement settings");
if ((!isset($_GET['mdp'])) and (!isset($argv[1]))) {
echo "Il manque des arguments pour executer ce script. Reportez-vous a la documentation.";
die();
}
// Début du script
if (isset($argv[1])) {
DEFINE("CHEMIN_COMPLET_GRR",getSettingValue("chemin_complet_grr"));
chdir(CHEMIN_COMPLET_GRR);
}
include "include/language.inc.php";
if (!isset($_GET['mdp']))
$_GET['mdp']=$argv[1];
if ((!isset($_GET['mdp'])) or ($_GET['mdp'] != getSettingValue("motdepasse_verif_auto_grr")) or (getSettingValue("motdepasse_verif_auto_grr")=='')) {
if (!isset($argv[1]))
echo begin_page($titre,$page="no_session")."<p>";
echo "Le mot de passe fourni est invalide.";
if (!isset($argv[1])) {
echo "</p>";
include "include/trailer.inc.php";
}
die();
}
if (!isset($argv[1]))
echo begin_page($titre,$page="no_session");
// On vérifie une fois par jour si le délai de confirmation des réservations est dépassé
// Si oui, les réservations concernées sont supprimées et un mail automatique est envoyé.
verify_confirm_reservation();
// On vérifie une fois par jour que les ressources ont été rendue en fin de réservation
// Si non, une notification email est envoyée
verify_retard_reservation();
if (!isset($argv[1])) {
echo "<p>Le script a été exécuté.</p>";
include "include/trailer.inc.php";
} else {
echo "Le script a ete execute.";
}
?>