-
Notifications
You must be signed in to change notification settings - Fork 4
/
config_tools.inc.php
257 lines (216 loc) · 8.01 KB
/
config_tools.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
<?php
$configus = array(
"welcome_message" => array("Message d'accueil", "Bienvenue sur le site de la section 6"),
"section_shortname"=> array("Intitulé court de la section ou CID","Section 6"),
"section_intitule"=>
array("intitulé long de la section","Sciences de l\'information : fondements de l\'informatique, calculs, algorithmes, représentations, exploitations"),
"president_titre" => array("Titre du président, utilisé pour signer les rapports", "Président de la Section 6"),
"president" => array("Nom du président, utilisé pour signer les rapports", "Alan Türing"),
"webmaster" => array("Adresse email de l'expéditeur des emails", "[email protected]"),
"webmaster_nom" => array("Signataire des emails et pdfs", "Alan Turing"),
"email_scc"=>array("Email utilisé pour informer le SCC d'un changement de rapporteur sur une candidature",""),
"bur_can_affect"=> array("Les membres du bureau peuvent affecter les rapporteurs","true"),
"bur_can_meta"=> array("Les membres du bureau peuvent modifier les rubriques chercheurs/candidats","false"),
"bur_can_keywords"=> array("Les membres du bureau peuvent modifier les mots-clés","true"),
"sec_can_edit"=> array("Le secrétaire et le président peuvent éditer les prérapports","false"),
"acn_can_edit_avis"=> array("L'ACN peut éditer les avis","true"),
"acn_can_edit_reports"=> array("L'ACN peut éditer les rapports de section","true"),
"acn_can_edit_rapporteurs"=> array("L'ACN peut modifier les rapporteurs","true"),
"acn_can_edit_concours"=> array("L'ACN peut editer pendant une session concours","true"),
"sec_can_edit_valid"=> array("En plus du président, le secrétaire peut éditer les rapports en mode 'validation'","true"),
"acn_can_edit_valid"=> array("En plus du président, l'ACN peut éditer les rapports en mode 'validation'","true"),
"show_rapporteur3"=> array("Afficher le raporteur3 et son avis dans l'écran principal","false"),
"show_theme1"=> array("Afficher le mot-clé1 dans l'écran principal","true"),
"show_theme2"=> array("Afficher le mot-clé2 dans l'écran principal","true"),
"show_theme3"=> array("Afficher le mot-clé3 dans l'écran principal","false"),
"show_avis_double_aveugle"=> array("Les avis n'apparaissent pas dans l'écran principal en mode double aveugle","false"),
"double_aveugle_strict"=> array("Le mode double-aveugle masque tous les rapports et avis à tous les rapporteurs","false"),
"formule_standard_Promotion_oui"=>array("Formule standard pour les promotions avec avis 'oui' (typiquement CR1)",""),
"formule_standard_Promotion_non"=>array("Formule standard pour les promotions avec avis 'non'",""),
"formule_standard_Titularisation_tres_favorable"=>array("Formule standard pour les titularisations avec avis TF","")
);
$configus_admin = array(
"sessions_synchro" =>
array("Liste des sessions à synchroniser, séparées par des ';'", "Printemps2015;Automne2015"));
function init_config()
{
global $configus;
global $configus_admin;
if(!isset($_SESSION['filter_section']))
{
removeCredentials();
throw new Exception("Cannot init config, unknown section");
}
$section = $_SESSION['filter_section'];
if($_SESSION["permission_mask"] == NIVEAU_PERMISSION_SUPER_UTILISATEUR)
{
// $configus = array();
foreach($configus_admin as $key => $value)
$configus[$key]= $value;
}
$sql = "SELECT * FROM ".config_db." WHERE `section`='".real_escape_string($section)."';";
$query = sql_request($sql);
$_SESSION["config"] = array();
while($result = mysqli_fetch_object($query))
$_SESSION["config"][$result->key] = $result->value;
/* default config */
foreach($configus as $key => $config)
if(!isset($_SESSION["config"][$key]))
set_config($key, $config[1]);
}
function set_config($key,$value)
{
global $dbh;
if(!isset($_SESSION['filter_section']))
throw new Exception("Cannot set config, section unknown");
$section = $_SESSION['filter_section'];
if($section == "") $section = 0;
$sql = "DELETE FROM ".config_db." WHERE `section`='".$section."' and `key`='".$key."';";
mysqli_query($dbh,$sql);
$sql = "INSERT INTO ".config_db."(`section`, `key`, `value`)";
$sql .= " VALUES ('".mysqli_real_escape_string($dbh,$section)."','".mysqli_real_escape_string($dbh,$key)."','".mysqli_real_escape_string($dbh,$value)."')";
$result = mysqli_query($dbh,$sql);
if(!$result)
throw new exception("Failed to add default_value to config key '".$key." for section '".$section."':<br/>".mysqli_error($dbh));
$_SESSION["config"][mysqli_real_escape_string($dbh,$key)] = $value;
}
function save_config_from_request()
{
foreach($_REQUEST as $key => $value)
if(isset($_SESSION["config"][$key]) && $_SESSION["config"][$key] != $value)
set_config($key,$value);
}
function get_option($key)
{
return (get_config($key,"true",false) == "true");
}
function get_config($key,$default_value="", $create_if_needed=true, $section = "")
{
if($key == "")
throw new Exception("No config with empty key");
if($section === "")
{
if(!isset($_SESSION["config"]))
init_config();
if(!isset($_SESSION["config"][$key]))
{
if(!$create_if_needed)
throw new Exception("No config key '".$key."' for section '".$section."' in database");
else
set_config($key,$default_value);
}
return $_SESSION["config"][$key];
}
else
{
$sql = "SELECT * FROM ".config_db." WHERE `section`='".real_escape_string($section)."' AND `key`='".real_escape_string($key)."';";
$query = sql_request($sql);
while($result = mysqli_fetch_object($query))
return $result->value;
return $default_value;
}
}
function get_array_config($key,$delimiter ="|")
{
if($key == "")
throw new Exception("No config with empty key");
if(!isset($_SESSION["config"]))
init_config();
if(!isset($_SESSION["config"][$key]))
set_config($key,"");
$to_parse = explode($delimiter, $_SESSION["config"][$key]);
$result = array();
for($i = 0; $i < count($to_parse) -1; $i+=2)
$result[$to_parse[$i]] = $to_parse[$i+1];
return $result;
}
function set_array_config($key,$value,$delimiter ="|")
{
if($key == "")
throw new Exception("No config with empty key");
if(!is_array($value))
throw new Exception("Cannot set array config with non array value");
ksort($value);
$linear = "";
foreach($value as $index => $val)
$linear .= str_replace($delimiter," ",$index).$delimiter.str_replace($delimiter," ",$val).$delimiter;
set_config($key, $linear);
}
function get_configs()
{
if(!isset($_SESSION["config"]))
init_config();
return $_SESSION["config"];
}
function add_topic($index, $topic)
{
$topics = get_topics();
$topics[$index] = $topic;
set_topics($topics);
}
function remove_topic($index)
{
$topics = get_topics();
if(isset($topics[$index]))
{
unset($topics[$index]);
set_topics($topics);
}
else
{
echo "Failed to delete keyword with index '" + $index + "'<br/>";
foreach($topics as $index => $mot)
{
echo "Index '".$index."' keyword '".$mot."'<br/>";
}
}
}
function set_topics($topics)
{
foreach($topics as $key => $value)
{
while( strpos($value, $key . " - ") !== FALSE )
$value = substr($value, strlen($key . " - "));
$topics[$key] = $value;
}
set_array_config("topics", $topics);
}
function get_topics()
{
$result = get_array_config("topics");
foreach($result as $key => $value)
$result[$key] = str_replace("\\", "", $value);
return $result;
}
function get_rubriques($type)
{
global $rubriques_supplementaires;
$key = $rubriques_supplementaires[$type][0];
return get_array_config($key);
}
function set_rubriques($rubriques, $type)
{
global $rubriques_supplementaires;
$key = $rubriques_supplementaires[$type][0];
set_array_config($key, $rubriques);
}
function add_rubrique($index, $rubrique, $type)
{
global $rubriques_supplementaires;
/*
$pref = $rubriques_supplementaires[$type][1];
*/
$rubriques = get_rubriques($type);
$rubriques[/*$pref.*/$index] = $rubrique;
set_rubriques($rubriques, $type);
}
function remove_rubrique($index, $people = true)
{
$rubriques = get_rubriques($people);
if(isset($rubriques[$index]))
{
unset($rubriques[$index]);
set_rubriques($rubriques, $people);
}
}
?>