forked from gogo40/XManager0_public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maniadb.php
executable file
·199 lines (159 loc) · 4.43 KB
/
maniadb.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
<?php
class maniadb {
var $link;
var $result;
var $data;
var $ip;
var $nd;
var $loadData;
function maniadb() {
$this->result = $this->link= 0;
}
function connect($PATH, $USR, $PWD){
$this->result = 0;
$this->link = mysql_connect($PATH, $USR, $PWD);
if (!$this->link) {
die('Não foi possível conectar: ' . mysql_error());
}
}
function select($DB){
if (!mysql_select_db($DB, $this->link)) {
logXManager('Não foi possível selecionar o banco de dados');
die("Data base ocupado por favor recarregue\n");
}
}
function connectCall($PATH, $USR, $PWD){
$this->result = 0;
$this->link = mysql_connect($PATH, $USR, $PWD, true, 131072);
if (!$this->link) {
die('Não foi possível conectar: ' . mysql_error());
}
}
function queryCall($SQL) {
$this->result = mysql_query($SQL, $this->link);
if (!$this->result) {
echo mysql_error();
logXManager("Erro do banco de dados, não foi possível consultar o banco de dados\n". mysql_error());
return false;
}
return true;
}
function queryNoBatch($SQL) {
$this->result = mysql_query($SQL, $this->link);
if (!$this->result) {
echo mysql_error();
logXManager("Erro do banco de dados, não foi possível consultar o banco de dados\n". mysql_error());
return false;
}
return true;
}
function query($SQL){
$this->result = mysql_query($SQL, $this->link);
if (!$this->result) {
echo mysql_error();
logXManager("Erro do banco de dados, não foi possível consultar o banco de dados\n". mysql_error());
return false;
}
$this->data = array();
$this->ip = $this->nd = 0;
$this->loadData = false;
return true;
}
function nextRow() {
if (!$this->loadData) {
while ($d = mysql_fetch_assoc($this->result)) {
$this->data[$this->nd] = $d; $this->nd++;
}
$this->loadData = true;
mysql_free_result($this->result);
}
$v = 0;
if ($this->ip < $this->nd) {
$v = $this->data[$this->ip];
$this->ip++;
}
return $v;
}
function free() {
$this->data = array();
}
function close() {
$this->free();
mysql_close($this->link);
}
};
function getQueryUpdate($db, $v, $idDb) {
$query = "UPDATE `$db` SET ";
$f = true;
foreach ($v as $key => $value)
if (strcmp($key, 'id') != 0) {
if (!$f) {
$query .=", ";
} else {
$f = false;
}
$query .= "`$key` = '$value'";
}
$query .= " WHERE id = $idDb";
return $query;
}
function getQueryInsert($db, $v) {
$query = "INSERT INTO `$db` (";
$f = true;
foreach ($v as $key => $value) {
if (strcmp($key, 'id') != 0) {
if ($f) {
$query .= '`'.$key.'`';
$f = false;
} else {
$query .= ", `".$key.'`';
}
}
}
$query .=") VALUES(";
$f = true;
foreach ($v as $key => $value) {
if (strcmp($key, 'id') != 0) {
if ($f) {
$query .= $value;
$f = false;
} else {
$query .= ", ".$value;
}
}
}
$query .= ")";
return $query;
}
function parser($str) {
$n = strlen($str);
for ($i = 0; $i < $n; ++$i) {
$ok = false;
if (($str[$i] >= 'A' and $str[$i] <= 'Z') or
($str[$i] >= 'a' and $str[$i] <= 'z') or
($str[$i] >= '0' and $str[$i] <= '9') or
$str[$i] == '.' or $str[$i] == '_' or
$str[$i] == ' ' or $str[$i] == '+' or
$str[$i] == '-') {
$ok = true;
}
if (!$ok) return false;
}
return true;
}
function inputValidation() {
foreach ($_POST as $key => $value) {
if (!parser($value) and strcmp($key,'f') and strcmp($key,'salvarDecisao')) {
logXManager($value." é uma entrada inválida!\n");
return false;
}
}
foreach ($_GET as $key => $value) {
if (!parser($value) and strcmp($key,'f') and strcmp($key,'salvarDecisao')) {
logXManager($value." é uma entrada inválida!\n");
return false;
}
}
return true;
}
?>