2014-12-17 13:17:08 +01:00
|
|
|
<?php
|
2014-12-17 13:48:03 +01:00
|
|
|
/**
|
|
|
|
* This software is governed by the CeCILL-B license. If a copy of this license
|
|
|
|
* is not distributed with this file, you can obtain one at
|
|
|
|
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt
|
|
|
|
*
|
|
|
|
* Authors of STUdS (initial project): Guilhem BORGHESI (borghesi@unistra.fr) and Raphaël DROZ
|
2016-08-04 22:26:37 +02:00
|
|
|
* Authors of Framadate/OpenSondage: Framasoft (https://github.com/framasoft)
|
2014-12-17 13:48:03 +01:00
|
|
|
*
|
|
|
|
* =============================
|
|
|
|
*
|
|
|
|
* Ce logiciel est régi par la licence CeCILL-B. Si une copie de cette licence
|
|
|
|
* ne se trouve pas avec ce fichier vous pouvez l'obtenir sur
|
|
|
|
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.txt
|
|
|
|
*
|
|
|
|
* Auteurs de STUdS (projet initial) : Guilhem BORGHESI (borghesi@unistra.fr) et Raphaël DROZ
|
|
|
|
* Auteurs de Framadate/OpenSondage : Framasoft (https://github.com/framasoft)
|
|
|
|
*/
|
2014-12-17 13:17:08 +01:00
|
|
|
namespace Framadate\Services;
|
2016-06-30 20:48:30 +02:00
|
|
|
use DateTime;
|
2014-12-17 13:17:08 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class helps to clean all inputs from the users or external services.
|
|
|
|
*/
|
|
|
|
class InputService {
|
|
|
|
function __construct() {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method filter an array calling "filter_var" on each items.
|
|
|
|
* Only items validated are added at their own indexes, the others are not returned.
|
2015-04-03 00:11:36 +02:00
|
|
|
* @param array $arr The array to filter
|
|
|
|
* @param int $type The type of filter to apply
|
|
|
|
* @param array|null $options The associative array of options
|
|
|
|
* @return array The filtered array
|
2014-12-17 13:17:08 +01:00
|
|
|
*/
|
2015-01-05 23:30:47 +01:00
|
|
|
function filterArray(array $arr, $type, $options = null) {
|
2014-12-17 13:17:08 +01:00
|
|
|
$newArr = [];
|
|
|
|
|
|
|
|
foreach($arr as $id=>$item) {
|
|
|
|
$item = filter_var($item, $type, $options);
|
|
|
|
if ($item !== false) {
|
|
|
|
$newArr[$id] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $newArr;
|
|
|
|
}
|
|
|
|
|
2014-12-18 13:57:25 +01:00
|
|
|
function filterAllowedValues($value, array $allowedValues) {
|
|
|
|
return in_array($value, $allowedValues, true) ? $value : null;
|
|
|
|
}
|
|
|
|
|
2015-04-11 16:02:07 +02:00
|
|
|
public function filterTitle($title) {
|
2015-05-29 18:33:55 +02:00
|
|
|
return $this->returnIfNotBlank($title);
|
2015-04-11 16:02:07 +02:00
|
|
|
}
|
|
|
|
|
2015-12-05 16:03:01 +01:00
|
|
|
public function filterId($id) {
|
|
|
|
$filtered = filter_var($id, FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => POLL_REGEX]]);
|
|
|
|
return $filtered ? substr($filtered, 0, 64) : false;
|
|
|
|
}
|
|
|
|
|
2015-04-11 16:02:07 +02:00
|
|
|
public function filterName($name) {
|
2015-10-12 21:26:13 +02:00
|
|
|
$filtered = trim($name);
|
2015-04-11 17:13:16 +02:00
|
|
|
return $this->returnIfNotBlank($filtered);
|
2015-04-11 16:02:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function filterMail($mail) {
|
|
|
|
return filter_var($mail, FILTER_VALIDATE_EMAIL);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function filterDescription($description) {
|
|
|
|
$description = str_replace("\r\n", "\n", $description);
|
2015-05-29 18:33:55 +02:00
|
|
|
return $description;
|
2015-04-11 16:02:07 +02:00
|
|
|
}
|
|
|
|
|
2015-12-08 22:53:51 +01:00
|
|
|
public function filterMD5($control) {
|
|
|
|
return filter_var($control, FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => MD5_REGEX]]);
|
|
|
|
}
|
|
|
|
|
2015-04-11 16:02:07 +02:00
|
|
|
public function filterBoolean($boolean) {
|
|
|
|
return !!filter_var($boolean, FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => BOOLEAN_TRUE_REGEX]]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function filterEditable($editable) {
|
|
|
|
return filter_var($editable, FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => EDITABLE_CHOICE_REGEX]]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function filterComment($comment) {
|
2015-04-14 13:34:42 +02:00
|
|
|
$comment = str_replace("\r\n", "\n", $comment);
|
2015-05-29 18:33:55 +02:00
|
|
|
return $this->returnIfNotBlank($comment);
|
2015-04-11 17:13:16 +02:00
|
|
|
}
|
|
|
|
|
2016-06-30 20:48:30 +02:00
|
|
|
public function filterDate($date) {
|
|
|
|
$dDate = DateTime::createFromFormat(__('Date', 'datetime_parseformat'), $date)->setTime(0, 0, 0);
|
|
|
|
return $dDate->format('Y-m-d H:i:s');
|
|
|
|
}
|
|
|
|
|
2015-04-11 17:13:16 +02:00
|
|
|
/**
|
|
|
|
* Return the value if it's not blank.
|
|
|
|
*
|
|
|
|
* @param string $filtered The value
|
|
|
|
* @return string|null
|
|
|
|
*/
|
|
|
|
private function returnIfNotBlank($filtered) {
|
2015-04-11 17:23:37 +02:00
|
|
|
if ($filtered) {
|
|
|
|
$withoutSpaces = str_replace(' ', '', $filtered);
|
|
|
|
if (!empty($withoutSpaces)) {
|
|
|
|
return $filtered;
|
|
|
|
}
|
2015-04-11 17:13:16 +02:00
|
|
|
}
|
2015-04-11 17:23:37 +02:00
|
|
|
|
|
|
|
return null;
|
2015-04-11 16:02:07 +02:00
|
|
|
}
|
2016-06-30 20:48:30 +02:00
|
|
|
}
|