source: trunk/Packages/Common/Database.php@ 890

Last change on this file since 890 was 890, checked in by chronos, 4 years ago
  • Fixed: Modules dependencies evaluation.
  • Modified: Better installation/uninstallation of models in more modules.
File size: 7.1 KB
Line 
1<?php
2
3// Extended database class
4// Date: 2020-11-10
5
6function microtime_float()
7{
8 list($usec, $sec) = explode(" ", microtime());
9 return (float)$usec + (float)$sec;
10}
11
12class DatabaseResult
13{
14 public PDOStatement $PDOStatement;
15 public int $num_rows = 0;
16
17 function fetch_assoc()
18 {
19 return $this->PDOStatement->fetch(PDO::FETCH_ASSOC);
20 }
21
22 function fetch_array()
23 {
24 return $this->PDOStatement->fetch(PDO::FETCH_BOTH);
25 }
26
27 function fetch_row()
28 {
29 return $this->PDOStatement->fetch(PDO::FETCH_NUM);
30 }
31}
32
33class Database
34{
35 public string $Prefix;
36 public array $Functions;
37 public string $Type;
38 public PDO $PDO;
39 public string $Error;
40 public string $insert_id;
41 public string $LastQuery;
42 public bool $ShowSQLError;
43 public bool $ShowSQLQuery;
44 public bool $LogSQLQuery;
45 public string $LogFile;
46
47 function __construct()
48 {
49 $this->Prefix = '';
50 $this->Functions = array('NOW()', 'CURDATE()', 'CURTIME()', 'UUID()');
51 $this->Type = 'mysql'; // mysql, pgsql
52 $this->Error = '';
53 $this->LastQuery = '';
54 $this->ShowSQLError = false;
55 $this->ShowSQLQuery = false;
56 $this->LogSQLQuery = false;
57 $this->LogFile = dirname(__FILE__).'/../../Query.log';
58 }
59
60 function Connect(string $Host, string $User, string $Password, string $Database)
61 {
62 if ($this->Type == 'mysql') $ConnectionString = 'mysql:host='.$Host.';dbname='.$Database;
63 else if ($this->Type == 'pgsql') $ConnectionString = 'pgsql:dbname='.$Database.';host='.$Host;
64 else $ConnectionString = '';
65 try {
66 $this->PDO = new PDO($ConnectionString, $User, $Password);
67
68 } catch (Exception $E)
69 {
70 unset($this->PDO);
71 throw new Exception($E->getMessage());
72 }
73 }
74
75 function Disconnect()
76 {
77 unset($this->PDO);
78 }
79
80 function Connected(): bool
81 {
82 return isset($this->PDO);
83 }
84
85 function select_db(string $Database)
86 {
87 $this->query('USE `'.$Database.'`');
88 }
89
90 function query($Query): DatabaseResult
91 {
92 if (!$this->Connected()) throw new Exception(T('Not connected to database'));
93 if (($this->ShowSQLQuery == true) or ($this->LogSQLQuery == true)) $QueryStartTime = microtime_float();
94 $this->LastQuery = $Query;
95 //echo('a'.$this->ShowSQLQuery.'<'.$QueryStartTime.', '.microtime_float());
96 if (($this->ShowSQLQuery == true) or ($this->LogSQLQuery == true))
97 {
98 $Time = round(microtime_float() - $QueryStartTime, 4);
99 $Duration = ' ; '.$Time. ' s';
100 }
101 if (($this->LogSQLQuery == true) and ($Time != 0))
102 file_put_contents($this->LogFile, $Query.$Duration."\n", FILE_APPEND);
103 if ($this->ShowSQLQuery == true)
104 echo('<div style="border-bottom-width: 1px; border-bottom-style: solid; '.
105 'padding-bottom: 3px; padding-top: 3px; font-size: 12px; font-family: Arial;">'.$Query.$Duration.'</div>'."\n");
106 $Result = new DatabaseResult();
107 $Statement = $this->PDO->query($Query);
108 if ($Statement)
109 {
110 $Result->PDOStatement = $Statement;
111 $Result->num_rows = $Statement->rowCount();
112 $this->insert_id = $this->PDO->lastInsertId();
113 } else
114 {
115 $Error = $this->PDO->errorInfo();
116 $this->Error = $Error[2];
117 if (($this->Error != '') and ($this->ShowSQLError == true))
118 echo('<div><strong>SQL Error: </strong>'.$this->Error.'<br />'.$Query.'</div>');
119 throw new Exception('SQL Error: '.$this->Error.', Query: '.$Query);
120 }
121 return $Result;
122 }
123
124 function select(string $Table, string $What = '*', string $Condition = '1'): DatabaseResult
125 {
126 return $this->query('SELECT '.$What.' FROM `'.$this->Prefix.$Table.'` WHERE '.$Condition);
127 }
128
129 function delete(string $Table, string $Condition)
130 {
131 $this->query('DELETE FROM `'.$this->Prefix.$Table.'` WHERE '.$Condition);
132 }
133
134 function insert(string $Table, array $Data)
135 {
136 $this->query($this->GetInsert($Table, $Data));
137 $this->insert_id = $this->PDO->lastInsertId();
138 }
139
140 function GetInsert(string $Table, array $Data): string
141 {
142 $Name = '';
143 $Values = '';
144 foreach ($Data as $Key => $Value)
145 {
146 $Name .= ',`'.$Key.'`';
147 if (!in_array($Value, $this->Functions))
148 {
149 if (is_null($Value)) $Value = 'NULL';
150 else $Value = $this->PDO->quote($Value);
151 }
152 $Values .= ','.$Value;
153 }
154 $Name = substr($Name, 1);
155 $Values = substr($Values, 1);
156 return 'INSERT INTO `'.$this->Prefix.$Table.'` ('.$Name.') VALUES('.$Values.')';
157 }
158
159 function update(string $Table, string $Condition, array $Data)
160 {
161 $this->query($this->GetUpdate($Table, $Condition, $Data));
162 }
163
164 function GetUpdate(string $Table, string $Condition, array $Data): string
165 {
166 $Values = '';
167 foreach ($Data as $Key => $Value)
168 {
169 if (!in_array($Value, $this->Functions))
170 {
171 if (is_null($Value)) $Value = 'NULL';
172 else $Value = $this->PDO->quote($Value);
173 }
174 $Values .= ', `'.$Key.'`='.$Value;
175 }
176 $Values = substr($Values, 2);
177 return 'UPDATE `'.$this->Prefix.$Table.'` SET '.$Values.' WHERE ('.$Condition.')';
178 }
179
180 function replace(string $Table, array $Data)
181 {
182 $Name = '';
183 $Values = '';
184 foreach ($Data as $Key => $Value)
185 {
186 if (!in_array($Value, $this->Functions))
187 {
188 if (is_null($Value)) $Value = 'NULL';
189 else $Value = $this->PDO->quote($Value);
190 }
191 $Name .= ',`'.$Key.'`';
192 $Values .= ','.$Value;
193 }
194 $Name = substr($Name, 1);
195 $Values = substr($Values, 1);
196 //echo('REPLACE INTO `'.$this->Prefix.$Table.'` ('.$Name.') VALUES ('.$Values.')<br />');
197 $this->query('REPLACE INTO `'.$this->Prefix.$Table.'` ('.$Name.') VALUES('.$Values.')');
198 //echo($this->error().'<br>');
199 }
200
201 function charset(string $Charset)
202 {
203 $this->query('SET NAMES "'.$Charset.'"');
204 }
205
206 function real_escape_string(string $Text): string
207 {
208 return addslashes($Text);
209 }
210
211 function quote(string $Text): string
212 {
213 return $this->PDO->quote($Text);
214 }
215
216 public function __sleep()
217 {
218 return array('LastQuery');
219 }
220
221 public function __wakeup()
222 {
223 }
224
225 public function Transaction(array $Queries)
226 {
227 //echo('|'."\n");
228 $this->PDO->beginTransaction();
229 foreach ($Queries as $Query)
230 {
231 //echo('|'.$Query."\n");
232 $Statement = $this->PDO->prepare($Query);
233 $Statement->execute();
234 }
235 $this->PDO->commit();
236 }
237}
238
239function TimeToMysqlDateTime($Time)
240{
241 if ($Time == NULL) return NULL;
242 else return date('Y-m-d H:i:s', $Time);
243}
244
245function TimeToMysqlDate($Time)
246{
247 if ($Time == NULL) return NULL;
248 else return date('Y-m-d', $Time);
249}
250
251function TimeToMysqlTime($Time)
252{
253 if ($Time == NULL) return NULL;
254 else return date('H:i:s', $Time);
255}
256
257function MysqlDateTimeToTime($DateTime)
258{
259 if ($DateTime == '') return NULL;
260 $Parts = explode(' ', $DateTime);
261 $DateParts = explode('-', $Parts[0]);
262 $TimeParts = explode(':', $Parts[1]);
263 $Result = mktime($TimeParts[0], $TimeParts[1], $TimeParts[2], $DateParts[1], $DateParts[2], $DateParts[0]);
264 return $Result;
265}
266
267function MysqlDateToTime($Date)
268{
269 if ($Date == '') return NULL;
270 return MysqlDateTimeToTime($Date.' 0:0:0');
271}
272
273function MysqlTimeToTime($Time)
274{
275 if ($Time == '') return NULL;
276 return MysqlDateTimeToTime('0000-00-00 '.$Time);
277}
Note: See TracBrowser for help on using the repository browser.