forked from hogsim/PMB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocs.inc.php
executable file
·360 lines (327 loc) · 14.4 KB
/
procs.inc.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
<?php
// +-------------------------------------------------+
// © 2002-2004 PMB Services / www.sigb.net [email protected] et contributeurs (voir www.sigb.net)
// +-------------------------------------------------+
// $Id: procs.inc.php,v 1.45 2015-06-29 06:56:39 jpermanne Exp $
if (stristr($_SERVER['REQUEST_URI'], ".inc.php")) die("no access");
include("$class_path/parameters.class.php");
require_once("$class_path/notice_tpl_gen.class.php");
function show_procs($dbh) {
global $msg;
global $charset;
global $PMBuserid, $javascript_path,$form_notice_tpl;
print "
<script type=\"text/javascript\" src=\"".$javascript_path."/tablist.js\"></script>
<a href=\"javascript:expandAll()\"><img src='./images/expand_all.gif' border='0' id=\"expandall\"></a>
<a href=\"javascript:collapseAll()\"><img src='./images/collapse_all.gif' border='0' id=\"collapseall\"></a>
";
// affichage du tableau des procédures
$requete = "SELECT idproc, name, requete, comment, autorisations, libproc_classement, num_classement FROM procs left join procs_classements on idproc_classement=num_classement ORDER BY libproc_classement,name ";
$res = pmb_mysql_query($requete, $dbh);
$nbr = pmb_mysql_num_rows($res);
$class_prec=$msg[proc_clas_aucun];
$buf_tit="";
$buf_class=0;
$parity=1;
for($i=0;$i<$nbr;$i++) {
$row=pmb_mysql_fetch_row($res);
$rqt_autorisation=explode(" ",$row[4]);
if (($PMBuserid==1 || array_search ($PMBuserid, $rqt_autorisation)!==FALSE) && pmb_strtolower(pmb_substr(trim($row[2]),0,6))=='select') {
$classement=$row[5];
if ($class_prec!=$classement) {
if (!$row[5]) $row[5]=$msg[proc_clas_aucun];
if ($buf_tit) {
$buf_contenu="<table><tr><th colspan=4>".$buf_tit."</th></tr>".$buf_contenu."</table>";
print gen_plus("procclass".$buf_class,$buf_tit,$buf_contenu);
$buf_contenu="";
}
$buf_tit=$row[5];
$buf_class=$row[6];
$class_prec=$classement;
}
if ($parity % 2) {
$pair_impair = "even";
} else {
$pair_impair = "odd";
}
$parity++;
$tr_javascript=" onmouseover=\"this.className='surbrillance'\" onmouseout=\"this.className='$pair_impair'\" onmousedown=\"document.location='./edit.php?categ=procs&sub=&action=execute&id_proc=$row[0]';\" ";
$buf_contenu.="\n<tr class='$pair_impair' $tr_javascript style='cursor: pointer'>
<td><strong>$row[1]</strong><br />
<small>$row[3]</small></td>
</tr>";
}
}
$buf_contenu="<table><tr><th colspan=4>".$buf_tit."</th></tr>".$buf_contenu."</table>";
print gen_plus("procclass".$buf_class,$buf_tit,$buf_contenu);
}
switch($dest) {
case "TABLEAU":
$fichier_temp_nom=str_replace(" ","",microtime());
$fichier_temp_nom=str_replace("0.","",$fichier_temp_nom);
$fname = tempnam("./temp", $fichier_temp_nom.".xls");
$workbook = new writeexcel_workbook($fname);
$worksheet = &$workbook->addworksheet();
break;
case "TABLEAUHTML":
echo "<h1>".$msg[1130]." : ".$msg[1131]."</h1>";
break;
case "TABLEAUCSV":
break;
case "EXPORT_NOTI":
$fichier_temp_nom=str_replace(" ","",microtime());
$fichier_temp_nom=str_replace("0.","",$fichier_temp_nom);
$fname = tempnam("./temp", $fichier_temp_nom.".doc");
break;
default:
echo "<h1>".$msg[1130]." : ".$msg[1131]."</h1>";
break;
}
if (!$id_proc) {
show_procs($dbh);
} else {
@set_time_limit ($pmb_set_time_limit);
//Récupération des variables postées, on en aura besoin pour les liens
$page="./edit.php";
$requete = "SELECT idproc, name, requete, comment, proc_notice_tpl, proc_notice_tpl_field FROM procs where idproc='".$id_proc."' ";
$res = pmb_mysql_query($requete, $dbh) or die ("<br/>SQL error : <br/>".pmb_mysql_error()."<br/>SQL Query : <br/>".$requete);
$row=pmb_mysql_fetch_row($res);
//Requete et calcul du nombre de pages à afficher selon la taille de la base 'pret'
//********************************************************************************/
// récupérer ici la procédure à lancer
$sql = $row[2];
//$proc_notice_tpl=$row[4];
$proc_notice_tpl_field=$row[5];
if (preg_match_all("|!!(.*)!!|U",$sql,$query_parameters) && $form_type=="") {
$hp=new parameters($id_proc,"procs");
$hp->gen_form("edit.php?categ=procs&sub=&action=execute&id_proc=".$id_proc."&force_exec=".$force_exec);
} else {
$param_hidden="";
if($force_exec){
$param_hidden.="<input type='hidden' name='force_exec' value='".$force_exec."' />";//On a forcé la requete
}
if (preg_match_all("|!!(.*)!!|U",$sql,$query_parameters)) {
$hp=new parameters($id_proc,"procs");
$hp->get_final_query();
$sql=$hp->final_query;
$param_hidden.=$hp->get_hidden_values();//Je mets les paramêtres en champ caché en cas de forçage
$param_hidden.="<input type='hidden' name='form_type' value='gen_form' />";//Je mets le marqueur des paramêtres en champ caché en cas de forçage
}
if($dest != "TABLEAU" && $dest != "TABLEAUHTML" && $dest != "TABLEAUCSV"){
print "<form class=\"form-edit\" id=\"formulaire\" name=\"formulaire\" action='./edit.php?categ=procs&sub=&action=execute&id_proc=".$id_proc."&force_exec=".$force_exec."' method=\"post\">";
print "<input type='button' class='bouton' value='".htmlentities($msg[654], ENT_QUOTES, $charset)."' onClick='this.form.action=\"./edit.php?categ=procs\";this.form.submit();'/>";
if (!explain_requete($sql) && (SESSrights & EDIT_FORCING_AUTH) && !$force_exec) {
print $param_hidden;
print "<input type='button' id='procs_button_exec' class='bouton' value='".htmlentities($msg["procs_force_exec"], ENT_QUOTES, $charset)."' onClick='this.form.action=\"./edit.php?categ=procs&sub=&action=execute&id_proc=".$id_proc."&force_exec=1\";this.form.submit();' />";
} else{
print "<input type='submit' id='procs_button_exec' class='bouton' value='".htmlentities($msg[708], ENT_QUOTES, $charset)."'/>";
}
print "<br>";
print "</form>";
}
if (!explain_requete($sql) && !((SESSrights & EDIT_FORCING_AUTH) && $force_exec)){
die("<br /><br />".$sql."<br /><br />".htmlentities($msg["proc_param_explain_failed"], ENT_QUOTES, $charset)."<br /><br />".$erreur_explain_rqt);
}
$req_nombre_lignes="";
if(!$nombre_lignes_total){
$req_nombre_lignes = pmb_mysql_query($sql);
if(!$req_nombre_lignes){
die($sql."<br /><br />".pmb_mysql_error());
}
$nombre_lignes_total = pmb_mysql_num_rows($req_nombre_lignes);
}
$param_hidden.="<input type='hidden' name='nombre_lignes_total' value='".$nombre_lignes_total."' />";//Je garde le nombre de ligne total pour le pas refaire la requête à la page suivante
//Si aucune limite_page n'a été passée, valeur par défaut : 10
if (!$limite_page) $limite_page = 10;
$nbpages= $nombre_lignes_total / $limite_page;
// on arondi le nombre de page pour ne pas avoir de virgules, ici au chiffre supérieur
$nbpages_arrondi = ceil($nbpages);
// on enlève 1 au nombre de pages, car la 1ere page affichée ne fait pas partie des pages suivantes
$nbpages_arrondi = $nbpages_arrondi - 1;
if (!$numero_page) $numero_page=0;
$limite_mysql = $limite_page * $numero_page;
//REINITIALISATION DE LA REQUETE SQL
switch($dest) {
case "TABLEAU":
case "TABLEAUHTML":
case "TABLEAUCSV":
case "EXPORT_NOTI":
if(!$req_nombre_lignes){
$res = @pmb_mysql_query($sql, $dbh) or die($sql."<br /><br />".pmb_mysql_error());
}else{
$res = $req_nombre_lignes;
}
break;
default:
echo "<h1>".htmlentities($row[1], ENT_QUOTES, $charset)."</h1><h2>".htmlentities($row[3], ENT_QUOTES, $charset)."</h2>";
//tri défini ?
if($sort!=""){
preg_match('`^(.+)( order by .+)$`i',$sql,$arraySql);
$sql=$arraySql[1]." order by ".($sort>0?$sort:(-$sort)." DESC");
}
//on définit les limites
$sql = $sql." LIMIT ".$limite_mysql.", ".$limite_page;
// on execute la requete avec les bonnes limites
$res = @pmb_mysql_query($sql, $dbh) or die($sql."<br /><br />".pmb_mysql_error());
echo "<p>";
break;
}
$nbr_lignes = @pmb_mysql_num_rows($res);
$nbr_champs = @pmb_mysql_num_fields($res);
if ($nbr_lignes) {
switch($dest) {
case "TABLEAU":
$worksheet->write(0,0,$row[1]);
$worksheet->write(0,1,$row[3]);
for($i=0; $i < $nbr_champs; $i++) {
// entête de colonnes
$fieldname = pmb_mysql_field_name($res, $i);
$worksheet->write(1,$i,${fieldname});
}
for($i=0; $i < $nbr_lignes; $i++) {
$row = pmb_mysql_fetch_row($res);
$j=0;
foreach($row as $dummykey=>$col) {
if(trim($col)=='') $col=" ";
$worksheet->write(($i+2),$j,$col);
$j++;
}
}
$workbook->close();
header("Content-Type: application/x-msexcel; name=\""."Procedure_$id_proc".".xls"."\"");
header("Content-Disposition: inline; filename=\""."Procedure_$id_proc".".xls"."\"");
$fh=fopen($fname, "rb");
fpassthru($fh);
unlink($fname);
break;
case "TABLEAUHTML":
echo "<h1>$row[1]</h1><h2>$row[3]</h2>$sql<br />";
echo "<table>";
for($i=0; $i < $nbr_champs; $i++) {
$fieldname = pmb_mysql_field_name($res, $i);
print("<th align='left'>${fieldname}</th>");
}
for($i=0; $i < $nbr_lignes; $i++) {
$row = pmb_mysql_fetch_row($res);
echo "<tr>";
foreach($row as $dummykey=>$col) {
if (is_numeric($col)){
$col = "'".$col ;
}
if(trim($col)=='') $col=" ";
print '<td>'.$col.'</td>';
}
echo "</tr>";
}
echo "</table>";
break;
case "TABLEAUCSV":
for($i=0; $i < $nbr_champs; $i++) {
$fieldname = pmb_mysql_field_name($res, $i);
print("${fieldname}\t");
}
for($i=0; $i < $nbr_lignes; $i++) {
$row = pmb_mysql_fetch_row($res);
echo "\n";
foreach($row as $dummykey=>$col) {
/* if (is_numeric($col)) {
$col = "\"'".(string)$col."\"" ;
} */
print "$col\t";
}
}
break;
case "EXPORT_NOTI":
$noti_tpl=new notice_tpl_gen($form_notice_tpl);
for($i=0; $i < $nbr_lignes; $i++) {
$row = pmb_mysql_fetch_object($res);
$contents.=$noti_tpl->build_notice($row->$proc_notice_tpl_field)."<hr />";
}
header("Content-Disposition: attachment; filename='bibliographie.doc';");
header('Content-type: application/msword');
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0,pre-check=0");
header("Pragma: public");
echo "<html><body>".$contents."</body></html>";
break;
default:
echo "<script type='text/javascript'>
function survol(obj){
obj.style.cursor = 'pointer';
}
function sort_by_col(type){
document.forms['navbar'].sort.value = type;
document.forms['navbar'].submit();
}
</script>";
echo "<table>";
for($i=0; $i < $nbr_champs; $i++) {
$fieldname = pmb_mysql_field_name($res, $i);
print("<th align='left' onMouseOver ='survol(this);' onClick='sort_by_col(".($sort==($i+1)?(-($i+1)):($i+1)).");'>${fieldname}");
if($sort==($i+1)){
print(" ▴");
}elseif((-$sort)==($i+1)){
print(" ▾");
}
print ("</th>");
}
$odd_even=0;
for($i=0; $i < $nbr_lignes; $i++) {
$row = pmb_mysql_fetch_row($res);
if ($odd_even==0) {
echo " <tr class='odd'>";
$odd_even=1;
} elseif ($odd_even==1) {
echo " <tr class='even'>";
$odd_even=0;
}
foreach($row as $dummykey=>$col) {
if(trim($col)=='') $col=" ";
print '<td>'.$col.'</td>';
}
echo "</tr>";
}
echo "</table><hr />";
echo "<p align=left size='-3' class='pn-normal'>
<form name='navbar' class='form-$current_module' action='$page' method='post'>";
echo "
<input type='hidden' name='numero_page' value='$numero_page' />
<input type='hidden' name='id_proc' value='$id_proc' />
<input type='hidden' name='categ' value='$categ' />
<input type='hidden' name='sub' value='$sub' />
<input type='hidden' id='sort' name='sort' value='$sort' />";
print $param_hidden;
// LIENS PAGE SUIVANTE et PAGE PRECEDENTE
// si le nombre de page n'est pas 0 et si la variable numero_page n'est pas définie
// dans cette condition, la variable numero_page est incrémenté et est inférieure à $nombre
// constitution des liens
$suivante = $numero_page+1;
$precedente = $numero_page-1;
// affichage du lien précédent si nécéssaire
if ($precedente >= 0)
$nav_bar .= "<img src='./images/left.gif' border='0' title='$msg[48]' alt='[$msg[48]]' hspace='3' align='bottom' onClick=\"document.navbar.dest.value='';document.navbar.numero_page.value='$precedente'; document.navbar.limite_page.value='$limite_page'; document.navbar.submit(); \"/>" ;
for ($i = 0; $i <=$nbpages_arrondi; $i++) {
if($i==$numero_page) $nav_bar .= "<strong>".($i+1)."/".($nbpages_arrondi+1)."</strong>";
}
if ($suivante<=$nbpages_arrondi) $nav_bar .= "<img src='./images/right.gif' border='0' title='$msg[49]' alt='[$msg[49]]' hspace='3' align='bottom' onClick=\"document.navbar.dest.value='';document.navbar.numero_page.value='$suivante'; document.navbar.limite_page.value='$limite_page'; document.navbar.submit(); \" />";
echo $nav_bar ;
echo "
<input type='hidden' name='dest' value='' />
$msg[edit_cbgen_mep_afficher] <input type='text' name='limite_page' value='$limite_page' class='saisie-5em' /> $msg[1905]
<input type='submit' class='bouton' value='".$msg['actualiser']."' onclick=\"this.form.dest.value='';document.navbar.numero_page.value=0;\" /><font size='4'> </font>
<input type='image' src='./images/tableur.gif' border='0' onClick=\"this.form.dest.value='TABLEAU';\" alt='Export tableau EXCEL' title='Export tableau EXCEL' /><font size='4'> </font>
<input type='image' src='./images/tableur_html.gif' border='0' onClick=\"this.form.dest.value='TABLEAUHTML';\" alt='Export tableau HTML' title='Export tableau HTML' />";
if($proc_notice_tpl_field) {
echo "<font size='4'> </font>
<input type='submit' class='bouton' value='".$msg['etatperso_export_notice']."' onclick=\"this.form.dest.value='EXPORT_NOTI';\" /> ";
echo notice_tpl_gen::gen_tpl_select("form_notice_tpl",$proc_notice_tpl,'',0,1);
}
echo "</form></p>";
break;
}
} else {
echo $msg["etatperso_aucuneligne"];
}
pmb_mysql_free_result($res);
} // fin if else proc paramétrée
}