2017-06-10 08:07:03 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Requests functions
|
|
|
|
*
|
|
|
|
* @author Pierre HUBERT
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check $_POST parametres associated to a request
|
|
|
|
*
|
|
|
|
* @param Array $varList The list of variables to check
|
|
|
|
* @return Boolean True or false depending of the success of the operation
|
|
|
|
*/
|
|
|
|
function check_post_parametres(array $varList){
|
|
|
|
|
|
|
|
//Check each fields
|
|
|
|
foreach($varList as $process){
|
|
|
|
|
|
|
|
//Check variable existence
|
|
|
|
if(!isset($_POST[$process]))
|
|
|
|
return false; //The variable does not exists
|
|
|
|
|
|
|
|
//Check variable content
|
|
|
|
if($_POST[$process] == "")
|
|
|
|
return false; //The variable is empty
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//If we arrive there, it is a success
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a list of user comma-separated to an array
|
|
|
|
*
|
|
|
|
* @param String $list The input list
|
|
|
|
* @return Array The list of user / an empty list in case of errors
|
|
|
|
*/
|
|
|
|
function users_list_to_array($list) : array{
|
|
|
|
//Split the list into an array
|
|
|
|
$array = explode(",", $list);
|
|
|
|
$usersList = array();
|
|
|
|
|
|
|
|
foreach($array as $process){
|
|
|
|
|
|
|
|
//Check the entry is valid
|
2017-06-16 17:08:58 +00:00
|
|
|
if(toInt($process) < 1)
|
2017-06-10 08:07:03 +00:00
|
|
|
return array();
|
|
|
|
|
|
|
|
//Add the entry to the list
|
2017-06-16 17:08:58 +00:00
|
|
|
$usersList[toInt($process)] = toInt($process);
|
2017-06-10 08:07:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//Return the result
|
|
|
|
return $usersList;
|
2017-06-16 17:08:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Securely transform user given number (mixed) to integer (int)
|
|
|
|
*
|
|
|
|
* @param Mixed $input The input variable (mixed)
|
|
|
|
* @return Integer $output The output (safe integer)
|
|
|
|
*/
|
|
|
|
function toInt($input){
|
|
|
|
return floor($input*1);
|
2017-06-10 08:07:03 +00:00
|
|
|
}
|