This repository has been archived by the owner on Sep 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql.php
181 lines (161 loc) · 6.02 KB
/
sql.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
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<?php
/**
* Display informations about SQL tables of the Pilote Plugin for the admin.
* Allows the Admin to execute SQL scripts stored in plugin/sql directory.
*
* PHP version 5
*
* Copyright © 2011 Mélissa Djebel
*
* This file is part of Galette (http://galette.tuxfamily.org).
*
* Plugin Pilote 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 Galette. If not, see <http://www.gnu.org/licenses/>.
*
* @category Plugins
* @package GalettePilote
*
* @author Mélissa Djebel <[email protected]>
* @copyright 2011 Mélissa Djebel
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL License 3.0 or (at your option) any later version
* @version 0.7
* @link http://galette.tuxfamily.org
* @since Available since 0.7
*/
define('GALETTE_BASE_PATH', '../../');
require_once GALETTE_BASE_PATH . 'includes/galette.inc.php';
if (!$login->isLogged() || !$login->isAdmin()) {
header('location: ' . GALETTE_BASE_PATH . 'index.php');
die();
}
// Import des classes de notre plugin
require_once '_config.inc.php';
// Variable globale qui sert à atteindre la base de donnée et exécuter les requêtes
global $zdb;
$erreur = false;
$liste_erreurs = array();
/**
* Execution du script demandé si nécessaire
*/
if (filter_has_var(INPUT_POST, 'nom_script') && strlen(filter_input(INPUT_POST, 'nom_script')) > 0) {
$script = filter_input(INPUT_POST, 'nom_script');
$resultat = PiloteSQLScripts::executeSQLScript('./sql/' . $script);
PiloteSQLScripts::ajouterLogSQLScript($script);
if (is_array($resultat)) {
$erreur = true;
$liste_erreurs = $resultat;
}
}
/**
* Test si les tables nécessaire existe + affichage nombre lignes dedans
*/
$array_tables = array(
PiloteAdherentComplement::TABLE,
PiloteOperation::TABLE,
PiloteParametre::TABLE,
PiloteAvion::TABLE,
PiloteAvionDispo::TABLE,
PiloteAvionPicture::TABLE,
PiloteReservation::TABLE,
PiloteInstructeur::TABLE,
PiloteSQLScripts::TABLE,
);
$liste_tables = array();
foreach ($array_tables as $table) {
$liste_tables[$table] = new stdClass();
$liste_tables[$table]->nom_table = PREFIX_DB . PILOTE_PREFIX . $table;
$liste_tables[$table]->existe = PiloteParametre::tableExiste(PREFIX_DB . PILOTE_PREFIX . $table);
$liste_tables[$table]->nb_lignes = PiloteParametre::nbEnregistrementTable(PILOTE_PREFIX . $table);
$liste_tables[$table]->version = '';
if ($liste_tables[$table]->existe) {
$liste_tables[$table]->version = PiloteParametre::versionTable(PREFIX_DB . PILOTE_PREFIX . $table);
}
}
$montre_infos_table = false;
$infos_table = array();
/**
* Si on demande à voir la structure de la table et qu'il s'agit d'une table du plugin
* on en cherche les infos
*/
if (filter_has_var(INPUT_GET, 'table') && stripos(filter_input(INPUT_GET, 'table'), PILOTE_PREFIX) !== false) {
try {
$metadata = new \Zend\Db\Metadata\Metadata($zdb->db);
$table = $metadata->getTable(filter_input(INPUT_GET, 'table'));
$infos = $table->getColumns();
$i = 0;
foreach ($infos as $col) {
$info_colonne = new stdClass();
$info_colonne->numero = ++$i;
$info_colonne->table_name = $col->getTableName();
$info_colonne->name = $col->getName();
$info_colonne->data_type = $col->getDataType();
$info_colonne->length = $col->getCharacterMaximumLength();
$info_colonne->unsigned = $col->getNumericUnsigned();
$info_colonne->nullable = $col->getIsNullable();
//$info_colonne->primary = $colonne['PRIMARY'];
//$info_colonne->primary_position = $colonne['PRIMARY_POSITION'];
//$info_colonne->identity = $colonne['IDENTITY'];
$infos_table[] = $info_colonne;
}
$montre_infos_table = true;
} catch (Exception $e) {
Analog\Analog::log('Erreur SQL ' . $e->getMessage(), Analog\Analog::ERROR);
}
}
/**
* Récupération de la liste des scripts présents dans le répertoire SQL
*/
$liste_scripts = array();
$fichiers_sql = array();
$dh = opendir('./scripts');
while (false !== ($filename = readdir($dh))) {
if (preg_match('/.sql$/', $filename)) {
$fichiers_sql[] = $filename;
}
}
/**
* Tri par ordre alphabétique des scripts trouvés
*/
sort($fichiers_sql);
$row = 0;
/**
* Ajout d'informations aux scripts (date modif, nb exécution, dernière exécution)
*/
foreach ($fichiers_sql as $fichier) {
$script = new stdClass();
$script->filename = $fichier;
$script->numero_ligne = $row++;
$script->modifie = date('d/m/Y H:i', filemtime('./scripts/' . $fichier));
$result = PiloteSQLScripts::chercheNbExecutionDateExecution($fichier);
$script->nb_execution = $result->nb_execution;
$script->derniere_execution = '';
if ($result->derniere_execution != null) {
$dt = new DateTime($result->derniere_execution);
$script->derniere_execution = $dt->format('d M Y à H:i');
}
$liste_scripts[] = $script;
}
$tpl->assign('page_title', _T("SQL.PAGE TITLE"));
//Set the path to the current plugin's templates,
//but backup main Galette's template path before
$orig_template_path = $tpl->template_dir;
$tpl->template_dir = 'templates/' . $preferences->pref_theme;
$tpl->assign('erreur', $erreur);
$tpl->assign('liste_erreurs', $liste_erreurs);
$tpl->assign('liste_tables', $liste_tables);
$tpl->assign('liste_scripts', $liste_scripts);
$tpl->assign('montre_infos_table', $montre_infos_table);
if ($montre_infos_table) {
$tpl->assign('nom_table', $_GET['table']);
}
$tpl->assign('infos_table', $infos_table);
$content = $tpl->fetch('sql.tpl', PILOTE_SMARTY_PREFIX);
$tpl->assign('content', $content);
//Set path to main Galette's template
$tpl->template_dir = $orig_template_path;
$tpl->display('page.tpl', PILOTE_SMARTY_PREFIX);