-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataSanitizer.php
106 lines (93 loc) · 2.51 KB
/
DataSanitizer.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
<?php
/**
* DataSanitizer Class
*
* @category Sanitizer
* @package DataSanitizer
* @author Sagar Guhe <[email protected]>
* @copyright Copyright (c) 2015
* @license http://opensource.org/licenses/gpl-3.0.html GNU Public License
* @version 1.0
**/
class DataSanitizer {
protected $data = array();
protected $str = "";
/**
* Initializes data array/string
* @param array $data the data array/string which is to be sanitized
*/
public function __construct($data = null) {
if(is_array($data)){
$this->data = $data;
}else{
$this->str = $data;
}
}
/**
* Sanitizes Html data using htmlspecialchars
* @return array sanitized array
*/
public function sanitizeArrayHtml(){
return array_map('self::__sanitizeHtml', $this->data);
}
/**
* Prepares data array to input it in a sql statements
* @return array array with sql escaped string
*/
public function sqlEscapeArray(){
return array_map('self::__escapeString', $this->data);
}
/**
* sanitizes and escapes data array to be stored in database
* @return array sanitized and escaped data array
*/
public function sanitizeAndSqlEscArray(){
return array_map('self::__sanitizeAndEscapeString', $this->data);
}
/**
* alternative to htmlspecialchars
* @param string $str string to sanitize
* @return string sanitized string
*/
public function sanitizeStr($str){
return htmlspecialchars($str);
}
/**
* alternative to addslashes
* @return string slashed string
*/
public function sqlEscapeStr(){
return addslashes($this->str);
}
/**
* sanitize html and escape string to be added to the database
* @return string [description]
*/
public function sanitizeAndSqlEscString() {
return addslashes(htmlspecialchars($this->str));
}
/**
* static method to sanitize the data string
* @param string $elem the array element as a string
* @return string sanitized string
*/
static function __sanitizeHtml($elem){
return htmlspecialchars($elem);
}
/**
* static method to addslashes to the string
* @param string $elem data string
* @return string slashed data string
*/
static function __escapeString($elem){
return addslashes($elem);
}
/**
* static method to sanitize and escape string tobe used to store in database
* @return [type] sanitized and escaped string
*/
static function __sanitizeAndEscapeString($elem){
$str = htmlspecialchars($elem);
return addslashes($str);
}
}