forked from tbelliard/gepi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport_csv_aid.php
executable file
·1336 lines (733 loc) · 42 KB
/
export_csv_aid.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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/*
* Copyright 2001, 2012 Thomas Belliard, Laurent Delineau, Edouard Hue, Eric Lebrun
*
* This file is part of GEPI.
*
* GEPI 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.
*
* GEPI 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 GEPI; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// Initialisations files
require_once("../lib/initialisations.inc.php");
extract($_GET, EXTR_OVERWRITE);
extract($_POST, EXTR_OVERWRITE);
// Resume session
$resultat_session = $session_gepi->security_check();
if ($resultat_session == 'c') {
header("Location: ../utilisateurs/mon_compte.php?change_mdp=yes");
die();
} else if ($resultat_session == '0') {
header("Location: ../logout.php?auto=1");
die();
}
if (!checkAccess()) {
header("Location: ../logout.php?auto=1");
die();
}
$call_data = mysqli_query($GLOBALS["mysqli"], "SELECT * FROM aid_config WHERE indice_aid = '$indice_aid'");
$nom_generique_aid = @old_mysql_result($call_data, 0, "nom");
//**************** EN-TETE *****************
$titre_page = "Gestion des ".$nom_generique_aid." | Outil d'importation";
require_once("../lib/header.inc.php");
//**************** FIN EN-TETE *****************
echo "<p class=bold><a href=\"index2.php?indice_aid=$indice_aid\"><img src='../images/icons/back.png' alt='Retour' class='back_link'/> Retour</a> | ";
if (isset($is_posted) and ($is_posted=='avec_id_etape_4')) {echo "<a href=\"export_csv_aid.php?is_posted=avec_id_etape_1&indice_aid=$indice_aid".add_token_in_url()."\">Importer un autre fichier</a> |";}
if (isset($is_posted) and ($is_posted=='sans_id_etape_4')) {echo "<a href=\"export_csv_aid.php?is_posted=sans_id_etape_1&indice_aid=$indice_aid".add_token_in_url()."\">Importer un autre fichier</a> |";}
echo "</p>";
// $long_max : doit être plus grand que la plus grande ligne trouvée dans le fichier CSV
$long_max = 8000;
if (!isset($is_posted)) {
$test = mysqli_query($GLOBALS["mysqli"], "SELECT * FROM aid WHERE indice_aid='$indice_aid'");
$nb_test = mysqli_num_rows($test);
if ($nb_test == 0) {
// Par sécurité, on efface d'éventuelles données résiduelles dans les tables j_aid_utilisateurs et j_aid_eleves
$del = mysqli_query($GLOBALS["mysqli"], "DELETE FROM j_aidcateg_super_gestionnaires WHERE indice_aid='$indice_aid'");
$del = mysqli_query($GLOBALS["mysqli"], "DELETE FROM j_aid_utilisateurs WHERE indice_aid='$indice_aid'");
$del = mysqli_query($GLOBALS["mysqli"], "DELETE FROM j_aid_utilisateurs_gest WHERE indice_aid='$indice_aid'");
$del = mysqli_query($GLOBALS["mysqli"], "DELETE FROM j_aid_eleves WHERE indice_aid='$indice_aid'");
$del = mysqli_query($GLOBALS["mysqli"], "DELETE FROM j_aid_eleves_resp WHERE indice_aid='$indice_aid'");
$del = mysqli_query($GLOBALS["mysqli"], "DELETE FROM aid_appreciations WHERE indice_aid='$indice_aid'");
$is_posted='debut';
} else {
if (!isset($confirm) or ($confirm != 'Effacer')) {
echo "<p><b>ATTENTION</b> : Des $nom_generique_aid ont déjà été enregistré(e)s. La procédure d'importation permet l'insertion de <b>nouvelles données</b> et la <b>mise à jour</b> des données existantes. <br /><b>Les données déjà présentes dans GEPI ne sont donc pas détruites par cette procédure</b>.<br /><br />Cliquez sur <b>\"Effacer\"</b> si vous souhaitez effacer <b>toutes</b> les données déjà présentes concernant les $nom_generique_aid,<br />Cliquez sur <b>\"Continuer\"</b> si vous souhaitez conserver les données existantes.</p>";
echo "<table border=0><tr><td>";
echo "<form enctype=\"multipart/form-data\" action=\"export_csv_aid.php\" method=post name=formulaire>";
echo add_token_field();
echo "<input type=hidden name=indice_aid value=$indice_aid />";
echo "<INPUT TYPE=SUBMIT name='confirm' value = 'Effacer' />";
echo "</FORM></td><td>";
echo "<form enctype=\"multipart/form-data\" action=\"export_csv_aid.php\" method=post name=formulaire2>";
echo add_token_field();
echo "<INPUT TYPE=HIDDEN name=is_posted value = 'debut' /> ";
echo "<input type=hidden name=indice_aid value=$indice_aid />";
echo "<INPUT TYPE=SUBMIT name='confirm' value = 'Continuer' />";
echo "</FORM></td></tr></table>";
} else {
echo "<p><b>Etes-vous sûr de vouloir effacer toutes les données concernant les $nom_generique_aid ?</b></p>";
echo "<form enctype=\"multipart/form-data\" action=\"export_csv_aid.php\" method=post name=formulaire>";
echo add_token_field();
echo "<INPUT TYPE=HIDDEN name=is_posted value = 'debut' /> ";
echo "<input type=hidden name=indice_aid value=$indice_aid />";
echo "<INPUT TYPE=SUBMIT name='confirm' value = 'Oui' />";
echo "<INPUT TYPE=SUBMIT name='confirm' value = 'Non' />";
echo "</FORM>";
}
}
}
if (isset($is_posted) and ($is_posted == 'debut')) {
//check_token();
if (isset($confirm) and ($confirm == 'Oui')) {
check_token(false);
$del = mysqli_query($GLOBALS["mysqli"], "DELETE FROM aid WHERE indice_aid='$indice_aid'");
$del = mysqli_query($GLOBALS["mysqli"], "DELETE FROM j_aid_utilisateurs WHERE indice_aid='$indice_aid'");
$del = mysqli_query($GLOBALS["mysqli"], "DELETE FROM j_aid_eleves WHERE indice_aid='$indice_aid'");
$del = mysqli_query($GLOBALS["mysqli"], "DELETE FROM aid_appreciations WHERE indice_aid='$indice_aid'");
echo "<p>Les données concernant les $nom_generique_aid ont été définitivement supprimées !</p>";
}
echo "<p>Choisissez une des deux options suivantes :</p>";
echo "<form enctype=\"multipart/form-data\" action=\"export_csv_aid.php\" method=post name=formulaire>";
echo add_token_field();
echo "<p>--> Vous avez <b>vous-même</b> défini un identifiant unique pour chaque $nom_generique_aid.";
echo "<INPUT TYPE=SUBMIT value = 'Valider' /></p>";
echo "<INPUT TYPE=HIDDEN name=is_posted value = 'avec_id_etape_1' /> ";
echo "<input type=hidden name=indice_aid value=$indice_aid />";
echo "</FORM>";
echo "<form enctype=\"multipart/form-data\" action=\"export_csv_aid.php\" method=post name=formulaire2>";
echo add_token_field();
echo "<p>--> Vous voulez laisser <b>GEPI</b> définir un identifiant unique pour chaque $nom_generique_aid .";
echo "<INPUT TYPE=SUBMIT value = 'Valider' /></p>";
echo "<INPUT TYPE=HIDDEN name=is_posted value = 'sans_id_etape_1' /> ";
echo "<input type=hidden name=indice_aid value=$indice_aid />";
echo "</FORM>";
}
//*************************************************************************************************
// Début de la procédure dans laquelle on laisse GEPI définir un identifiant unique pour chaque AID
//*************************************************************************************************
if (isset($is_posted) and ($is_posted == "sans_id_etape_1")) {
check_token(false);
echo "<table border=0>";
// cas où on importe un fichier ELEVES-AID
echo "<tr><td><p>Importer un fichier <b>\"ELEVES-$nom_generique_aid\"</b></p></td>";
echo "<td><form enctype=\"multipart/form-data\" action=\"export_csv_aid.php\" method=post name=formulaire>";
echo add_token_field();
echo "<INPUT TYPE=HIDDEN name=is_posted value = 'sans_id_etape_2' /> ";
echo "<input type=hidden name=indice_aid value=$indice_aid />";
echo "<INPUT TYPE=HIDDEN name=type_import value = 1 /> ";
echo "<INPUT TYPE=SUBMIT value = Valider />";
echo "</FORM></td></tr>";
// cas où on importe un fichier prof-AID
echo "<tr><td><p>Importer un fichier <b>\"PROF-$nom_generique_aid\"</b></p></td>";
echo "<td><form enctype=\"multipart/form-data\" action=\"export_csv_aid.php\" method=post name=formulaire2>";
echo add_token_field();
echo "<INPUT TYPE=HIDDEN name=is_posted value = 'sans_id_etape_2' /> ";
echo "<input type=hidden name=indice_aid value=$indice_aid />";
echo "<INPUT TYPE=HIDDEN name=type_import value=2 /> ";
echo "<INPUT TYPE=SUBMIT value=Valider />";
echo "</FORM></td></tr>";
echo "</table>";
}
if (isset($is_posted) and ($is_posted == 'sans_id_etape_2')) {
check_token(false);
?>
<form enctype="multipart/form-data" action="export_csv_aid.php" method=post name=formulaire>
<?php
$csvfile="";
echo add_token_field();
?>
<p>Fichier CSV à Importer <a href='help_import.php'>Aide </a> : <input TYPE=FILE NAME="csvfile" /></p>
<input TYPE=HIDDEN name=is_posted value = 'sans_id_etape_3' />
<input type=hidden name=indice_aid value=<?php echo $indice_aid;?> />
<input TYPE=HIDDEN name=type_import value = "<?php echo $type_import; ?>" />
<p>Le fichier à importer comporte une première ligne d'en-tête, à ignorer
<input TYPE=CHECKBOX NAME="en_tete" VALUE="yes" CHECKED /></p>
<input TYPE=SUBMIT value = "Valider" /><br />
</form>
<?php
echo "<p>Le fichier d'importation doit être au format csv (séparateur : point-virgule)<br />";
if ($type_import == 1) {
echo "Le fichier doit contenir les deux champs suivants, obligatoires :<br />";
echo "--> <B>IDENTIFIANT</B> : l'identifiant de l'élève<br />";
echo "--> <B>Nom complet de l'activité</B><br /></p>";
} else if ($type_import == 2) {
echo "Le fichier doit contenir les deux champs suivants, obligatoires :<br />";
echo "--> <B>IDENTIFIANT</B> : l'identifiant du professeur<br />";
echo "--> <B>Nom complet de l'activité</B><br /></p>";
}
}
if (isset($is_posted) and ($is_posted == 'sans_id_etape_3')) {
check_token(false);
$csvfile = isset($_FILES["csvfile"]) ? $_FILES["csvfile"] : NULL;
//if($csvfile != "none") {
if(isset($csvfile)) {
//$fp = fopen($csvfile, "r");
$fp = fopen($csvfile['tmp_name'], "r");
if(!$fp) {
echo "Impossible d'ouvrir le fichier CSV (".$csvfile['name'].")";
} else {
$erreur = 'no';
// Dans le cas où on importe un fichier PROF-AID ou ELEVE-AID, on vérifie le login
$row = 0;
while(!feof($fp)) {
if ($en_tete == 'yes') {
$data = fgetcsv ($fp, $long_max, ";");
$en_tete = 'no';
$en_tete2 = 'yes';
}
$data = fgetcsv ($fp, $long_max, ";");
$num = count ($data);
if ($num == 2) {
$row++;
//login
if ($type_import == 1) {
$call_login = mysqli_query($GLOBALS["mysqli"], "SELECT login FROM eleves WHERE login='$data[0]'");
} else {
$call_login = mysqli_query($GLOBALS["mysqli"], "SELECT login FROM utilisateurs WHERE login='$data[0]'");
}
$test = mysqli_num_rows($call_login);
if ($test == 0) {
$erreur = 'yes';
echo "<p><font color='red'>Erreur dans le fichier à la ligne $row : $data[0] ne correspond à aucun identifiant GEPI.</font></p>";
}
}
}
fclose($fp);
//
// On stocke les info du fichier dans une table
//
if ($erreur == 'no') {
$del = mysqli_query($GLOBALS["mysqli"], "delete from tempo2");
//$fp = fopen($csvfile, "r");
$fp = fopen($csvfile['tmp_name'], "r");
$row = 0;
$erreur_reg = 'no';
while(!feof($fp)) {
if ($en_tete2 == 'yes') {
$data = fgetcsv ($fp, $long_max, ";");
$en_tete2 = 'no';
}
$data = fgetcsv ($fp, $long_max, ";");
$num = count ($data);
if ($num == 2) {
$row++;
$data[1] = traitement_magic_quotes(corriger_caracteres($data[1]));
$query = "INSERT INTO tempo2 VALUES('$data[0]', '$data[1]')";
$register = mysqli_query($GLOBALS["mysqli"], $query);
if (!$register) {
$erreur_reg = 'yes';
echo "<p><font color='red'>Erreur lors de l'enregistrement de la ligne $row dans la table temporaire.</font></p>";
}
}
}
fclose($fp);
if ($erreur_reg == 'no') {
// On affiche les aid détectées dans la table tempo2
echo "<form enctype='multipart/form-data' action='export_csv_aid.php' method=post >";
echo add_token_field();
if ($type_import == 1) {
echo "<input type=submit value='Enregistrer les $nom_generique_aid et mettre à jour les élèves' />";
} else if ($type_import == 2) {
echo "<input type=submit value='Enregistrer les $nom_generique_aid et mettre à jour les professeurs' />";
} else {
echo "<input type=submit value='Enregistrer les $nom_generique_aid' />";
}
echo "<INPUT TYPE=HIDDEN name=is_posted value = 'sans_id_etape_4' />";
echo "<input type=hidden name=indice_aid value=$indice_aid />";
echo "<INPUT TYPE=HIDDEN name=type_import value='$type_import' />";
echo "</FORM>";
echo "<p>Si un(e) $nom_generique_aid existe déjà dans la base GEPI, seule une mise à jour des données sera effectuée conformément aux données figurant dans le fichier csv</p>";
$call_data = mysqli_query($GLOBALS["mysqli"], "SELECT distinct col2 FROM tempo2 WHERE col2!='' ORDER BY col2");
$nb_aid = mysqli_num_rows($call_data);
echo "<table border=1 cellpadding=2 cellspacing=2>";
echo "<tr><td><p class=\"small\">$nom_generique_aid :Nom</p></td>";
echo "<td><p class=\"small\">Remarque</p></td></tr>";
$i = "0";
while ($i < $nb_aid) {
$nom_aid = old_mysql_result($call_data, $i, "col2");
$temp = traitement_magic_quotes(corriger_caracteres($nom_aid));
$test = mysqli_query($GLOBALS["mysqli"], "SELECT * FROM aid WHERE (nom = '$temp' and indice_aid='$indice_aid')");
$nb_test = mysqli_num_rows($test);
if ($nb_test == 0) {
$mess = "<font color='green'>Cette activité n'existe pas dans GEPI.</font>";
} else {
$mess = "<font color='blue'>Cette activité existe déjà dans GEPI.</font>";
}
echo "<tr><td><p><b>$nom_aid</b></p></td>";
echo "<td><p>$mess</p></td></tr>";
$i++;
}
echo "</table>";
} else {
$del = mysqli_query($GLOBALS["mysqli"], "delete from tempo2");
echo "<p>AVERTISSEMENT : Une ou plusieurs erreurs ont été détectées lors de l'enregistrement des données dans la table temporaire : l'opération d'importation ne peut continuer !</p>";
}
} else {
echo "<p>AVERTISSEMENT : Une ou plusieurs erreurs ont été détectées dans le fichier : l'opération d'importation ne peut continuer !</p>";
}
}
} else {
echo "<p>Aucun fichier n'a été sélectionné !</p>";
}
}
if (isset($is_posted) and ($is_posted == 'sans_id_etape_4')) {
check_token(false);
echo "<p class='bold'>Mise à jour de la liste des $nom_generique_aid</p>";
echo "<table border=1 cellpadding=2 cellspacing=2><tr>";
echo "<td><p class=\"small\">Nom de l'acticité</p></td>";
echo "<td><p class=\"small\">Remarque</p></td></tr>";
$call_max = mysqli_query($GLOBALS["mysqli"], "SELECT max(id) max FROM aid WHERE indice_aid='$indice_aid'");
$max_id = old_mysql_result($call_max,0,max);
$call_data = mysqli_query($GLOBALS["mysqli"], "SELECT distinct col2 FROM tempo2 WHERE col2!='' ORDER BY col2");
$nb_aid = mysqli_num_rows($call_data);
// On enregistre les AID
$pb_reg = 'no';
$i = "0";
while ($i < $nb_aid) {
$nom_aid = old_mysql_result($call_data, $i, "col2");
$temp = traitement_magic_quotes(corriger_caracteres($nom_aid));
$num_aid = '';
$test = mysqli_query($GLOBALS["mysqli"], "SELECT * FROM aid WHERE (nom = '$temp' and indice_aid='$indice_aid')");
$nb_test = mysqli_num_rows($test);
if ($nb_test == 0) {
$max_id++;
$reg = mysqli_query($GLOBALS["mysqli"], "INSERT INTO aid SET id = '$max_id', nom='$temp', numero='$num_aid', indice_aid='$indice_aid'");
if ($reg) {
$mess = "<font color='green'>L'activité a été enregistrée avec succès !</font>";
} else {
$mess = "<font color='red'>Problème lors de l'enregistrement !</font>";
$pb_reg = 'yes';
}
} else {
$mess = "<font color='blue'>Pas d'enregistrement : cette acticité existait déjà dans GEPI !</font>";
}
echo "<tr>";
echo "<td><p><b>$nom_aid</b></p></td>";
echo "<td><p>$mess</p></td></tr>";
$i++;
}
echo "</table>";
if ($pb_reg == 'yes') {
echo "<p>Il y a eu un problème lors de l'enregistrement des $nom_generique_aid, l'opération d'importation ne peut continuer : la table des identifiants pour les $nom_generique_aid n'a pas été mise à jour !</p>";
} else {
// initialisation de variables
if ($type_import == 1) {
$aid_table = "j_aid_eleves";
$nom_champ = "login";
} else {
$aid_table = "j_aid_utilisateurs";
$nom_champ = "id_utilisateur";
}
// On enregistre les login
$nb = 0;
$call_data = mysqli_query($GLOBALS["mysqli"], "SELECT * FROM tempo2");
$nb_lignes = mysqli_num_rows($call_data);
$pb_reg = "no";
$i = "0";
while ($i < $nb_lignes) {
$champ1 = old_mysql_result($call_data, $i, "col1");
if ($type_import == 1) {
$call_login = mysqli_query($GLOBALS["mysqli"], "SELECT login FROM eleves WHERE login='$champ1'");
} else {
$call_login = mysqli_query($GLOBALS["mysqli"], "SELECT login FROM utilisateurs WHERE login='$champ1'");
}
$test = mysqli_num_rows($call_login);
if ($test != 0) {
// cas où un login existe dans la table eleves ou utilisateurs
// On peut continuer !
$nom_aid = old_mysql_result($call_data, $i, "col2");
$temp = traitement_magic_quotes(corriger_caracteres($nom_aid));
$call_id = mysqli_query($GLOBALS["mysqli"], "SELECT id FROM aid WHERE (nom = '$temp' and indice_aid='$indice_aid')");
$id_aid = old_mysql_result($call_id, 0, "id");
if ($type_import == 1) {
$call_test = mysqli_query($GLOBALS["mysqli"], "SELECT * FROM $aid_table WHERE ($nom_champ='$champ1' and indice_aid='$indice_aid')");
} else {
$call_test = mysqli_query($GLOBALS["mysqli"], "SELECT * FROM $aid_table WHERE ($nom_champ='$champ1' and id_aid='$id_aid' and indice_aid='$indice_aid')");
}
$test2 = mysqli_num_rows($call_test);
// pour les élèves : un élève ne peut suivre qu'une seule AID. Si une ligne existe déjà on la met à jour (update)
// pour les prof : un prof peut être responsable de plusieurs AID, mais on teste qu'il n'y ait pas de lignes 'doublons' dans le fichier j_aid_utilisateurs.
if ($test2 == 0) {
$reg = mysqli_query($GLOBALS["mysqli"], "INSERT INTO $aid_table SET id_aid='$id_aid', $nom_champ = '$champ1', indice_aid='$indice_aid'");
if (!$reg) {
$pb_reg = "yes";
} else {
$nb++;
}
} else {
if ($type_import == 1) {
$reg = mysqli_query($GLOBALS["mysqli"], "UPDATE $aid_table SET id_aid='$id_aid' WHERE ($nom_champ = '$champ1' and indice_aid='$indice_aid')");
if (!$reg) {
$pb_reg = "yes";
} else {
$nb++;
}
}
}
$i++;
}
}
if ($type_import == 1) {
echo "<p class='bold'>Mise à jour des élèves</p>";
echo "<p>$nb lignes élèves ont été mises à jour dans la table de liaison <b>Eleves<-->$nom_generique_aid</b> !</p>";
if ($pb_reg == "yes") {
echo "<p><font color = 'red'>Il y a eu des problèmes d'enregistrement pour un ou plusieurs autres élèves !</font></p>";
}
} else {
echo "<p class='bold'>Mise à jour des professeurs</p>";
echo "<p>$nb lignes professeurs ont été mises à jour dans la table de liaison <b>Professeurs<-->$nom_generique_aid</b> !</p>";
if ($pb_reg == "yes") {
echo "<p><font color = 'red'>Il y a eu des problèmes d'enregistrement pour un ou plusieurs autres professeurs !</font></p>";
}
}
$del = mysqli_query($GLOBALS["mysqli"], "delete from tempo2");
}
}
//*************************************************************************************************
// Fin de la procédure dans laquelle on laisse GEPI définir un identifiant unique pour chaque AID
//*************************************************************************************************
//*************************************************************************************************
// Début de la procédure dans laquelle l'utilisateur définie lui-même un identifiant unique pour chaque AID
//*************************************************************************************************
if (isset($is_posted) and ($is_posted == 'avec_id_etape_1')) {
check_token(false);
echo "<table border=0>";
// cas où on importe un fichier numéro-AID
echo "<tr><td><p>Importer un fichier <b>\"$nom_generique_aid - Identifiant $nom_generique_aid\"</b></p></td>";
echo "<td><form enctype=\"multipart/form-data\" action=\"export_csv_aid.php\" method=post name=formulaire>";
echo add_token_field();
echo "<INPUT TYPE=HIDDEN name=is_posted value = 'avec_id_etape_2' /> ";
echo "<input type=hidden name=indice_aid value=$indice_aid />";
echo "<INPUT TYPE=HIDDEN name=type_import value = 3 /> ";
echo "<INPUT TYPE=SUBMIT value = Valider />";
echo "</FORM></td></tr>";
// cas où on Importe un fichier ELEVES-N° AID
echo "<tr><td><p>Importer un fichier <b>\"ELEVES-Identifiant $nom_generique_aid\"</b></p></td>";
echo "<td><form enctype=\"multipart/form-data\" action=\"export_csv_aid.php\" method=post name=formulaire2>";
echo add_token_field();
echo "<INPUT TYPE=HIDDEN name=is_posted value = 'avec_id_etape_2' /> ";
echo "<input type=hidden name=indice_aid value=$indice_aid />";
echo "<INPUT TYPE=HIDDEN name=type_import value = 1 /> ";
echo "<INPUT TYPE=SUBMIT value = Valider />";
echo "</FORM></td></tr>";
// cas où on importe un fichier prof-AID
echo "<tr><td><p>Importer un fichier <b>\"PROF-Identifiant $nom_generique_aid\"</b></p></td>";
echo "<td><form enctype=\"multipart/form-data\" action=\"export_csv_aid.php\" method=post name=formulaire3>";
echo add_token_field();
echo "<INPUT TYPE=HIDDEN name=is_posted value = 'avec_id_etape_2' /> ";
echo "<input type=hidden name=indice_aid value=$indice_aid />";
echo "<INPUT TYPE=HIDDEN name=type_import value = 2 /> ";
echo "<INPUT TYPE=SUBMIT value = Valider />";
echo "</FORM></td></tr>";
echo "</table>";
}
if (isset($is_posted) and ($is_posted == 'avec_id_etape_2')) {
check_token(false);
?>
<form enctype="multipart/form-data" action="export_csv_aid.php" method=post name=formulaire>
<?php
$csvfile="";
echo add_token_field();
?>
<p>Fichier CSV à importer <a href='help_import.php'>Aide </a> : <INPUT TYPE=FILE NAME="csvfile" /></p>
<input TYPE=HIDDEN name=is_posted value = 'avec_id_etape_3' />
<input type=hidden name=indice_aid value=<?php echo $indice_aid;?> />
<input TYPE=HIDDEN name=type_import value = "<?php echo $type_import; ?>" />
<p>Le fichier à importer comporte une première ligne d'en-tête, à ignorer
<input TYPE=CHECKBOX NAME="en_tete" VALUE="yes" CHECKED /></p>
<input TYPE=SUBMIT value = "Valider" /><br />
</form>
<?php
echo "<p>Le fichier d'importation doit être au format csv (séparateur : point-virgule)<br />";
if ($type_import == 1) {
echo "Le fichier doit contenir les deux champs suivants, obligatoires :<br />";
echo "--> <B>l'identifiant de l'élève</b><br />";
echo "--> <B>L'identifiant de l'activité</B><br /></p>";
} else if ($type_import == 2) {
echo "Le fichier doit contenir les deux champs suivants, obligatoires :<br />";
echo "--> <B>l'identifiant du professeur</b><br />";
echo "--> <B>L'identifiant de l'activité</B><br /></p>";
} else {
echo "Le fichier doit contenir les deux champs suivants, obligatoires :<br />";
echo "--> <B>Nom complet de l'activité</B><br />";
echo "--> <B>L'identifiant de l'activité</B><br /></p>";
}
}
if (isset($is_posted) and ($is_posted == 'avec_id_etape_3')) {
check_token(false);
$csvfile = isset($_FILES["csvfile"]) ? $_FILES["csvfile"] : NULL;
//if($csvfile != "none") {
if(isset($csvfile)) {
//$fp = fopen($csvfile, "r");
$fp = fopen($csvfile['tmp_name'], "r");
if(!$fp) {
//echo "Impossible d'ouvrir le fichier CSV ($csvfile)";
echo "Impossible d'ouvrir le fichier CSV (".$csvfile['name'].")";
} else {
$erreur = 'no';
//
// Dans le cas où on importe un fichier PROF-AID ou ELEVE-AID, on vérifie le login
// ainsi que l'existence d'une AID corrspondant à chaque identifiant AID
//
$row = 0;
while(!feof($fp)) {
if ($en_tete == 'yes') {
$data = fgetcsv ($fp, $long_max, ";");
$en_tete = 'no';
$en_tete2 = 'yes';
}
$data = fgetcsv ($fp, $long_max, ";");
$num = count ($data);
if ($num == 2) {
$row++;
// vérification du login
if ($type_import == 1) {
$call_login = mysqli_query($GLOBALS["mysqli"], "SELECT login FROM eleves WHERE login='$data[0]'");
$test = mysqli_num_rows($call_login);
} else if ($type_import == 2) {
$call_login = mysqli_query($GLOBALS["mysqli"], "SELECT login FROM utilisateurs WHERE login='$data[0]'");
$test = mysqli_num_rows($call_login);
} else {
$test = 1;
}
if ($test == 0) {
$erreur = 'yes';
echo "<p><font color='red'>Erreur dans le fichier à la ligne $row : $data[0] ne correspond à aucun identifiant GEPI.</font></p>";
}
//
// Vérification sur l'identifiant AID
//
if (!(preg_match("/^[a-zA-Z0-9_]{1,10}$/", $data[1]))) {
$erreur = 'yes';
echo "<p><font color='red'>Erreur dans le fichier à la ligne $row : l'identifiant $nom_generique_aid n'est pas valide (un identifiant doit être constitué de uniquement de chiffres, de lettres et caractères de soulignement).</font></p>";
}
$call_aid = mysqli_query($GLOBALS["mysqli"], "SELECT * FROM aid WHERE (id='$data[1]' and indice_aid='$indice_aid')");
$test = mysqli_num_rows($call_aid);
if (($test == 0) and ($type_import != 3)) {
// Vérification de l'existence d'une AID correspondant à chaque identifiant AID
//
$erreur = 'yes';
echo "<p><font color='red'>Erreur dans le fichier à la ligne $row : l'identifiant $nom_generique_aid ne correspond à aucun(e) $nom_generique_aid déjà enregistré(e).</font></p>";
} else if (($test != 0) and ($type_import == 3)) {
// Vérification que l'identifiant n'existe pas déjà
//
$erreur = 'yes';
echo "<p><font color='red'>Erreur dans le fichier à la ligne $row : l'identifiant $nom_generique_aid existe déjà pour un(e) $nom_generique_aid déjà enregistré(e) !</font></p>";
}
// Recherche de doublons sur les identifiants
if ($type_import == 3) {
$doublons = 'no';
$tab_id[$row] = $data[1];
for ($k=1;$k<$row;$k++) {
if ($data[1] == $tab_id[$k]) {
$erreur = 'yes';
echo "<p><font color='red'>Erreur dans le fichier : il y a des doublons dans les identifiants $nom_generique_aid !</font></p>";
}
}
}
}
}
fclose($fp);
//
// On stocke les info du fichier dans une table
//
if ($erreur == 'no') {
$del = mysqli_query($GLOBALS["mysqli"], "delete from tempo2");
//$fp = fopen($csvfile, "r");
$fp = fopen($csvfile['tmp_name'], "r");
$row = 0;
$erreur_reg = 'no';
while(!feof($fp)) {
if ($en_tete2 == 'yes') {
$data = fgetcsv ($fp, $long_max, ";");
$en_tete2 = 'no';
}
$data = fgetcsv ($fp, $long_max, ";");
$num = count ($data);
if ($num == 2) {
$row++;
$data[0] = traitement_magic_quotes(corriger_caracteres($data[0]));
$query = "INSERT INTO tempo2 VALUES('$data[0]', '$data[1]')";
$register = mysqli_query($GLOBALS["mysqli"], $query);
if (!$register) {
$erreur_reg = 'yes';
echo "<p><font color='red'>Erreur lors de l'enregistrement de la ligne $row dans la table temporaire.</font></p>";
}
}
}
fclose($fp);