-
Notifications
You must be signed in to change notification settings - Fork 1
/
functions.php
177 lines (141 loc) · 5.76 KB
/
functions.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
<?php
/**
* Chercher tous les fichiers dans un repertoire
* @param string $path Chemin du fichier vers le repertoir à analyser
* @return array Tableau contenant la liste des fichiers
*/
function get_all_file_names($path) {
$content_repo = scandir($path);
// liste des fichiers à exclure :
$hidden_items = array('.', '..', '.DS_Store');
// séparation des fichiers et exclus
$content_repo = array_diff($content_repo, $hidden_items);
return $content_repo ;
}
/**
* Obtenir un tableau d'un fichier JSON
* @param string $path Chemin du fichier vers le fichier JSON a transformer
* @return array Tableau contenant les données du fichier JSON
*/
function JSON_file_to_array($path) {
$json_file = file_get_contents($path);
if (!$json_file) {
return false;
}
$json_file = json_decode($json_file, true);
return $json_file;
}
/**
* Obtenir un tableau d'un fichier CSV
* @param string $path Chemin du fichier vers le fichier CSV a transformer
* @return array Tableau contenant les lignes du fichier CSV :
* la key [0] donnera accès aux données de la ligne 1 du fichier
*/
function CSV_file_to_array($path) {
$return_tab = [];
$csv_file = file_get_contents($path);
$CSV_rows = str_getcsv($csv_file, "\n");
foreach($CSV_rows as &$row) {
$row = str_getcsv($row, ",");
array_push($return_tab, $row);
}
return $return_tab;
}
/**
* Obtenir du code HTML par l'inteprêtation d'un fichier markdown
* @param string $path Chemin du fichier vers le fichier markdown a transformer
* @return string Code HTML à inteprêter par le navigateur
*/
function markdown_to_string($path) {
$markdown_content = file_get_contents($path);
include_once './libs/parsedown/Parsedown.php';
$parsedown = new Parsedown();
return $parsedown->text($markdown_content);
}
/**
* Pour un tableau JSON entré : trouver les entrées correspondany
* à la clé entrée
* @param array $total_JSON_array Tableau contenant toutes les données JSON du site
* @param string $key Nom de la clé des fichiers retourner
* @return array Tableau des données gardées sous la clé renseignée
*/
function find_all_keys($total_JSON_array, $key) {
$tab = [];
foreach ($total_JSON_array as $tab_index => $value) {
array_push($tab, $value[$key]);
}
$tab = array_unique($tab); // suppression des doublons
return $tab;
}
/**
* Pour une ville et une catégorie données, chercher toutes les infos
* les concernant dans le tableau de données
*
* Générer le score et le Popper pour ces informations
*
* @param array $total_JSON_array Tableau contenant toutes les données JSON du site
* @param string $ville Nom de la ville, condition de renvoie
* @param string $categorie Nom de la catégorie, condition de renvoie
* @return array Tableau de renvoie du HTML et du score
*/
function find_infos($total_JSON_array, $ville, $categorie) {
$tab_infos = [];
// lecture du CSV
$field_file = CSV_file_to_array('./fields.csv');
$all_fields = $field_file[0];
$id_file = '';
foreach ($all_fields as $field) {
// pour chaque champs...
foreach ($total_JSON_array as $tab_index => $value) {
// chercher dans chaque fichier JSON ce champ...
if ($value['categorie'] == $categorie && $value['ville'] == $ville) {
// si le JSON a la bonne catégorie et la bonne ville
array_push($tab_infos, $value[$field]); // stockage de l'information
$id_file = $value['id'];
}
}
}
// variables à compléter avant renvoie
$fields_view = '';
$popover_content = '';
$score = 0;
$i = 0;
$field_file = CSV_file_to_array('./fields.csv');
// liste des noms complets des champs d'info
$all_fields_name = $field_file[1];
// liste des scores
$all_fields_score = $field_file[2];
foreach ($tab_infos as $tab_index => $value) {
// pour chaque information stockée
// générer l'affichage et le score
if ($value === "true" || $value === true) {
$fields_view .= '<span class=\'field-color field-color--yes\'></span>';
$popover_content .= '<li class=\'list-group-item list-group-item-success\'>' . $all_fields_name[$i] . ' : Oui</li>';
$score += $all_fields_score[$i];
} elseif ($value === "false" || $value === false) {
$fields_view .= '<span class=\'field-color field-color--no\'></span>';
$popover_content .= '<li class=\'list-group-item list-group-item-danger\'>' . $all_fields_name[$i] . ' : Non</li>';
} else {
$fields_view .= '<span class=\'field-color field-color--unsure\'></span>';
$popover_content .= '<li class=\'list-group-item list-group-item-dark\'>' . $all_fields_name[$i] . ' : Incertain</li>';
}
$i++;
}
$html = '<a href="./view.php?view=' . $id_file . '"><div data-toggle="popover" data-trigger="hover" data-placement="right"
title="Statistiques" data-content="<ul class=\'list-group || little-list-group\'>' . $popover_content . '</ul> <div class=\'alert alert-primary mt-1\'>Score : ' . $score . '</div>">' . $fields_view . '</div></a>';
return ['HTML' => $html, 'score' => $score];
}
/**
* Pour un fichier JSON entré, génération d'un fichier JSON pour chaque
* objet qu'il contient dans le repertoire 'data'
* @param string $path Chemin vers le fichier JSON servant à la génération
*/
function mass_JSON_create($path) {
$mass_json_file = JSON_file_to_array($path);
foreach ($mass_json_file as $key => $json_unit) {
if ($json_unit['is_exist'] === "false") {
continue;
}
file_put_contents('./data/' . $json_unit['id'] . '.json', json_encode($json_unit, JSON_UNESCAPED_UNICODE));
}
}