-
Notifications
You must be signed in to change notification settings - Fork 41
/
Functions.class.php
405 lines (356 loc) · 12.5 KB
/
Functions.class.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
<?php
/*
@nom: constant
@auteur: Idleman (http://blog.idleman.fr)
@description: Classe de stockage des fonctions utiles (toutes disponibles en static)
*/
class Functions
{
private $id;
public $debug=0;
/**
* Securise la variable utilisateur entrée en parametre
* @author Valentin
* @param<String> variable a sécuriser
* @param<Integer> niveau de securisation
* @return<String> variable securisée
*/
public static function secure($var,$level = 1){
$var = htmlspecialchars($var, ENT_QUOTES, "UTF-8");
if($level<1)$var = mysqli_real_escape_string($var);
if($level<2)$var = addslashes($var);
return $var;
}
/**
* Return l'environnement/serveur sur lequel on se situe, permet de changer les
* connexions bdd en fonction de la dev, la préprod ou la prod
*/
public static function whereImI(){
$maps = array (
'LOCAL'=>array('localhost','127.0.0.1','0.0.0.1','::0.0.0.0'),
'LAN'=>array('192.168.10.','valentin'),
'PWAN'=>array('test.sys1.fr'),
'WAN'=>array('www.sys1.fr'),
);
$return = 'UNKNOWN';
foreach($maps as $map=>$values){
foreach($values as $ip){
$pos = strpos(strtolower($_SERVER['HTTP_HOST']),$ip);
if ($pos!==false){
$return = $map;
}
}
}
return $return;
}
public static function isLocal($perimeter='LOCAL'){
$return = false;
$localTab = array('localhost','127.0.0.1','0.0.0.1','::0.0.0.0');
$lanTab = array('192.168.10.','valentin');
switch($perimeter){
case 'LOCAL':
foreach($localTab as $ip){
$pos = strpos(strtolower($_SERVER['HTTP_HOST']),$ip);
if ($pos!==false){
$return = true;
}
}
break;
case 'LAN':
foreach($lanTab as $ip){
$pos = strpos(strtolower($_SERVER['HTTP_HOST']),$ip);
if ($pos!==false){
$return = true;
}
}
break;
case 'ALL':
foreach($localTab as $ip){
$pos = strpos(strtolower($_SERVER['HTTP_HOST']),$ip);
if ($pos!==false){
$return = true;
}
}
foreach($lanTab as $ip){
$pos = strpos(strtolower($_SERVER['HTTP_HOST']),$ip);
if ($pos!==false){
$return = true;
}
}
break;
}
return $return;
}
/**
* Convertis la chaine passée en timestamp quel que soit sont format
* (prend en charge les formats type dd-mm-yyy , dd/mm/yyy, yyyy/mm/ddd...)
*/
public static function toTime($string){
$string = str_replace('/','-',$string);
$string = str_replace('\\','-',$string);
$string = str_replace('Janvier','Jan',$string);
$string = str_replace('Fevrier','Feb',$string);
$string = str_replace('Mars','Mar',$string);
$string = str_replace('Avril','Apr',$string);
$string = str_replace('Mai','May',$string);
$string = str_replace('Juin','Jun',$string);
$string = str_replace('Juillet','Jul',$string);
$string = str_replace('Aout','Aug',$string);
$string = str_replace('Septembre','Sept',$string);
$string = str_replace('Octobre','Oct',$string);
$string = str_replace('Novembre','Nov',$string);
$string = str_replace('Decembre','Dec',$string);
return strtotime($string);
}
/**
* Recupere l'ip de l'internaute courant
* @author Valentin
* @return<String> ip de l'utilisateur
*/
public static function getIP(){
if(isset($_SERVER['HTTP_X_FORWARDED_FOR'])){
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];}
elseif(isset($_SERVER['HTTP_CLIENT_IP'])){
$ip = $_SERVER['HTTP_CLIENT_IP'];}
else{ $ip = $_SERVER['REMOTE_ADDR'];}
return $ip;
}
/**
* Retourne une version tronquée au bout de $limit caracteres de la chaine fournie
* @author Valentin
* @param<String> message a tronquer
* @param<Integer> limite de caracteres
* @return<String> chaine tronquée
*/
public static function truncate($msg,$limit){
$str = html_entity_decode($msg, ENT_QUOTES, 'UTF-8');
$count = preg_match_all('/\X/u', $str);
if($count<=$limit){
return $msg;
}
$fin='…' ;
$nb=$limit-1;
return htmlentities(mb_substr($str, 0, $nb, 'UTF-8').$fin);
}
function getExtension($fileName){
$dot = explode('.',$fileName);
return $dot[sizeof($dot)-1];
}
/**
* Definis si la chaine fournie est existante dans la reference fournie ou non
* @param unknown_type $string
* @param unknown_type $reference
* @return false si aucune occurence du string, true dans le cas contraire
*/
public static function contain($string,$reference){
$return = true;
$pos = strpos($reference,$string);
if ($pos === false) {
$return = false;
}
return strtolower($return);
}
/**
* Définis si la chaine passée en parametre est une url ou non
*/
public static function isUrl($url){
$return =false;
if (preg_match('/^(http|https|ftp)://([A-Z0-9][A-Z0-9_-]*(?:.[A-Z0-9][A-Z0-9_-]*)+):?(d+)?/?/i', $url)) {
$return =true;
}
return $return;
}
/**
* Définis si la chaine passée en parametre est une couleur héxadécimale ou non
*/
public static function isColor($color){
$return =false;
if (preg_match('/^#(?:(?:[a-fd]{3}){1,2})$/i', $color)) {
$return =true;
}
return $return;
}
/**
* Définis si la chaine passée en parametre est un mail ou non
*/
public static function isMail($mail){
$return =false;
if (filter_var($mail, FILTER_VALIDATE_EMAIL)) {
$return =true;
}
return $return;
}
/**
* Définis si la chaine passée en parametre est une IP ou non
*/
public static function isIp($ip){
$return =false;
if (preg_match('^(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:[.](?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}$',$ip)) {
$return =true;
}
return $return;
}
public static function sourceName($string){
$name = strtolower($string);
$name = str_replace(' ','-',$name);
$name = str_replace(''','-',$name);
$name = str_replace('\'','-',$name);
$name = str_replace(',','-',$name);
$name = str_replace(':','-',$name);
$name = str_replace('à','a',$name);
$name = trim($name);
$name = html_entity_decode($name,null,'UTF-8');
return $name;
}
public static function makeCookie($name, $value, $expire='') {
if($expire == '') {
setcookie($name, $value, mktime(0,0,0, date("d"),
date("m"), (date("Y")+1)),'/');
}else {
setcookie($name, '', mktime(0,0,0, date("d"),
date("m"), (date("Y")-1)),'/');
}
}
public static function destroyCookie($name){
Fonction::makeCookie($name,'',time()-3600);
unset($_COOKIE[$name]);
}
public static function wordwrap($str, $width = 75, $break = "\n", $cut = false)
{
$str = html_entity_decode($str);
$str = htmlentities (wordwrap($str,$width,$break,$cut));
$str = str_replace('<br/>','<br/>',$str);
$str = str_replace('&','&',$str);
return $str;
}
public static function createFile($filePath,$content){
$fichier = fopen($filePath,"w+");
$fwriteResult = fwrite($fichier,$content);
fclose($fichier);
}
public static function convertFileSize($bytes)
{
if($bytes<1024){
return round(($bytes / 1024), 2).' o';
}elseif(1024<$bytes && $bytes<1048576){
return round(($bytes / 1024), 2).' ko';
}elseif(1048576<$bytes && $bytes<1073741824){
return round(($bytes / 1024)/1024, 2).' Mo';
}elseif(1073741824<$bytes){
return round(($bytes / 1024)/1024/1024, 2).' Go';
}
}
public static function hexaValue($str){
$code = dechex(crc32($str));
$code = substr($code, 0, 6);
return $code;
}
public static function scanRecursiveDir($dir){
$files = scandir($dir);
$allFiles = array();
foreach($files as $file){
if($file!='.' && $file!='..'){
if(is_dir($dir.$file)){
$allFiles = array_merge($allFiles,Fonction::scanRecursiveDir($dir.$file));
}else{
$allFiles[]=str_replace('//','/',$dir.'/'.$file);
}
}
}
return $allFiles;
}
/** Permet la sortie directe de texte à l'écran, sans tampon.
Source : http://php.net/manual/fr/function.flush.php
*/
public static function triggerDirectOutput() {
// La ligne de commande n'en a pas besoin.
if ('cli'==php_sapi_name()) return;
if (function_exists('apache_setenv')) {
/* Selon l'hébergeur la fonction peut être désactivée. Alors Php
arrête le programme avec l'erreur :
"PHP Fatal error: Call to undefined function apache_setenv()".
*/
@apache_setenv('no-gzip', 1);
}
@ini_set('zlib.output_compression', 0);
@ini_set('implicit_flush', 1);
for ($i = 0; $i < ob_get_level(); $i++) { ob_end_flush(); }
ob_implicit_flush(1);
}
public static function relativePath($from, $to, $ps = '/') {
$arFrom = explode($ps, rtrim($from, $ps));
$arTo = explode($ps, rtrim($to, $ps));
while(count($arFrom) && count($arTo) && ($arFrom[0] == $arTo[0])) {
array_shift($arFrom);
array_shift($arTo);
}
return str_pad("", count($arFrom) * 3, '..'.$ps).implode($ps, $arTo);
}
// Nettoyage de l'url avant la mise en base
public static function clean_url( $url ) {
$url = str_replace('&', '&', $url);
return $url;
}
/**
* Méthode de test de connexion.
* @return true si ok
* @param server
* @param login
* @param pass
* @param db facultatif, si précisé alors tente de la séléctionner
*/
public static function testDb($server, $login, $pass, $db=null) {
/* Méthode hors des classes dédiées aux BDD afin de supporter le moins
de dépendances possibles. En particulier, pas besoin que le fichier
de configuration existe. */
$link = mysqli_connect($server, $login, $pass, $db);
if (false===$link) return false;
$version = mysqli_get_server_version($link);
if( $version < 50503 ) return false;
mysqli_close($link);
return true;
}
/**
* @return boolean
*/
public static function isAjaxCall() {
return !empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest';
}
/**
* Charge dans la portée locale des variables de $_REQUEST
* Ex: chargeVarRequest('liste', 'var') créera $liste et $var venant de $_REQUEST
*/
public static function chargeVarRequest() {
foreach (func_get_args() as $arg) {
global ${$arg};
if (array_key_exists($arg, $_REQUEST)) {
$valeur = $_REQUEST[$arg];
} else {
$valeur = '';
}
${$arg} = $valeur;
}
}
/**
* Vide le contenu du cache de RainTpl
*
*/
public static function purgeRaintplCache() {
$directory = raintpl::$cache_dir;
if ($directory) {
$files = glob($directory.'*.rtpl.php');
if ($files) {
foreach($files as $file) {
if (!unlink($file)) {
error_log("Leed: cannot unlink '$file'");
}
}
} else {
error_log('Leed: Raintpl, no file cached: '.$directory.' '.getcwd());
}
} else {
error_log('Leed: Raintpl cache directory not set!');
}
}
}
?>