-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.php
221 lines (191 loc) · 5.96 KB
/
database.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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<?php
define("SQL_TIMESPECIFIER_UNIT_MICROSECOND", 1);
define("SQL_TIMESPECIFIER_UNIT_SECOND", 2);
define("SQL_TIMESPECIFIER_UNIT_MINUTE", 3);
define("SQL_TIMESPECIFIER_UNIT_HOUR", 4);
define("SQL_TIMESPECIFIER_UNIT_DAY", 5);
define("SQL_TIMESPECIFIER_UNIT_WEEK", 6);
define("SQL_TIMESPECIFIER_UNIT_MONTH", 7);
define("SQL_TIMESPECIFIER_UNIT_QUARTER", 8);
define("SQL_TIMESPECIFIER_UNIT_YEAR", 9);
class SqlTimeSpecifier {
private int $unit;
private int $value;
public function __construct(int $unit, int $value) {
$this->value = intval($value);
$this->unit = $unit;
}
public function getSql()
{
$unit = match ($this->unit) {
SQL_TIMESPECIFIER_UNIT_MICROSECOND => "MICROSECOND",
SQL_TIMESPECIFIER_UNIT_SECOND => "SECOND",
SQL_TIMESPECIFIER_UNIT_MINUTE => "MINUTE",
SQL_TIMESPECIFIER_UNIT_HOUR => "HOUR",
SQL_TIMESPECIFIER_UNIT_DAY => "DAY",
SQL_TIMESPECIFIER_UNIT_WEEK => "WEEK",
SQL_TIMESPECIFIER_UNIT_MONTH => "MONTH",
SQL_TIMESPECIFIER_UNIT_QUARTER => "QUARTER",
SQL_TIMESPECIFIER_UNIT_YEAR => "YEAR",
default => throw new RuntimeException("Invalid value for unit")
};
return $this->value . " " . $unit;
}
/**
* @return int
*/
public function getValue(): int {
return $this->value;
}
/**
* @return SqlTimeSpecifierUnit
*/
public function getUnit(): int {
return $this->unit;
}
}
class Database
{
private static $db;
private $connection;
private function __construct()
{
$this->connection = new MySQLi(DB_HOSTNAME, DB_USER, DB_PASSWORD, DB_NAME);
if ($this->connection->connect_error) {
echo "<style>html {
background: linear-gradient(#223, #446);
display: flex; align-items: center; justify-content: center; border-top: 20px solid #ff4411; color: white; height: 100vh; box-sizing: border-box; font-family: sans-serif; font-size: 30px;
}
</style>";
echo "Osekai is currently experiencing issues connecting to the backend. Please try again later.";
die();
}
$this->connection->set_charset("utf8mb4"); // to fix emojis in comments
$inTransaction = false;
}
private static bool $inTransaction = false;
public static function wrapInTransaction(callable $function, $flags = MYSQLI_TRANS_START_WITH_CONSISTENT_SNAPSHOT) {
if (self::$inTransaction) {
return $function();
}
self::$inTransaction = true;
$connection = self::getConnection();
$connection->begin_transaction($flags);
try {
$result = $function();
$connection->commit();
} catch (Exception $e) {
throw $e;
} finally {
$connection->rollback();
self::$inTransaction = false;
}
return $result;
}
public static function wrapInTransactionReadOnly(callable $function) {
$connection = self::getConnection();
$connection->begin_transaction(MYSQLI_TRANS_START_READ_ONLY);
try {
$result = $function();
$connection->commit();
} catch (Exception $e) {
$connection->rollback();
throw $e;
}
return $result;
}
function __destruct()
{
//echo "closing";
//$this->connection->close();
}
public static function getConnection()
{
if (self::$db == null) {
self::$db = new Database();
}
return self::$db->connection;
}
/**
* @param string $strQuery
* @param string $strTypes
* @param array $colVariables
*
* @return array
*/
public static function execSelect($strQuery, $strTypes, $colVariables)
{
$mysql = self::getConnection();
$stmt = $mysql->prepare($strQuery);
if ($strTypes != '')
$stmt->bind_param($strTypes, ...$colVariables);
$stmt->execute();
$meta = $stmt->result_metadata();
while ($field = $meta->fetch_field()) $params[] = &$row[$field->name];
$stmt->bind_result(...$params);
while ($stmt->fetch()) {
foreach ($row as $key => $val) {
$c[$key] = $val;
}
$hits[] = $c;
}
if ($mysql->more_results()) {
$mysql->next_result();
}
if (isset($hits)) {
return $hits;
} else {
return [];
}
return (array)$hits;
}
public static function execSelectFirstOrNull($strQuery, $strTypes, $colVariables) {
$rows = Database::execSelect($strQuery, $strTypes, $colVariables);
if (count($rows) == 0)
return null;
return $rows[0];
}
/**
* @param string $strQuery
*
* @return array
*/
public static function execSimpleSelect($strQuery)
{
$oQuery = self::getConnection()->query($strQuery);
$hits = array();
while ($val = $oQuery->fetch_assoc()) {
$hits[] = $val;
}
return $hits;
}
/**
* @param string $strQuery
* @param string $strTypes
* @param array $colVariables
*
* @return void
*/
public static function execOperation($strQuery, $strTypes, $colVariables): void
{
$mysql = self::getConnection();
$stmt = $mysql->prepare($strQuery);
$stmt->bind_param($strTypes, ...$colVariables);
$stmt->execute();
}
public static function getLastInsertedId() : int {
$mysql = self::getConnection();
return $mysql->insert_id;
}
/**
* @param string $strQuery
*
* @return void
*/
public static function execSimpleOperation($strQuery): void
{
$mysql = self::getConnection();
$stmt = $mysql->prepare($strQuery);
$stmt->execute();
}
}