Total Complexity | 64 |
Total Lines | 388 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
Complex classes like mysql often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use mysql, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
22 | class mysql { |
||
23 | private static mysqli $connection; |
||
24 | |||
25 | private static bool $auto_process = true; |
||
26 | |||
27 | /** |
||
28 | * @internal Only for BPT self usage , Don't use it in your source! |
||
29 | */ |
||
30 | public static function init (): void { |
||
31 | $host = settings::$db['host'] ?? 'localhost'; |
||
32 | $port = settings::$db['port'] ?? 3306; |
||
33 | $user = settings::$db['user'] ?? settings::$db['username'] ?? 'unknown'; |
||
34 | $pass = settings::$db['pass'] ?? settings::$db['password'] ?? 'unknown'; |
||
35 | self::$auto_process = !isset(settings::$db['auto_process']) || settings::$db['auto_process'] == true; |
||
36 | $dbname = settings::$db['dbname']; |
||
37 | self::$connection = new mysqli($host, $user, $pass, $dbname, $port); |
||
38 | if (self::$connection->connect_errno) { |
||
39 | logger::write('SQL connection has problem : ' . self::$connection->connect_error, loggerTypes::ERROR); |
||
40 | throw new bptException('SQL_CONNECTION_PROBLEM'); |
||
41 | } |
||
42 | if (self::$auto_process && !lock::exist('BPT-MYSQL')) { |
||
43 | self::install(); |
||
44 | } |
||
45 | } |
||
46 | |||
47 | private static function install (): void { |
||
48 | self::pureQuery(" |
||
49 | CREATE TABLE `users` |
||
50 | ( |
||
51 | `id` BIGINT(20) NOT NULL, |
||
52 | `username` VARCHAR(32) NULL DEFAULT NULL, |
||
53 | `lang_code` VARCHAR(3) NULL DEFAULT NULL, |
||
54 | `first_active` INT(11) NOT NULL DEFAULT '0', |
||
55 | `last_active` INT(11) NOT NULL DEFAULT '0', |
||
56 | `referral` BIGINT(20) NULL DEFAULT NULL, |
||
57 | `blocked` BOOLEAN NOT NULL DEFAULT FALSE, |
||
58 | `step` VARCHAR(64) NOT NULL DEFAULT 'main', |
||
59 | `value` TEXT NULL DEFAULT NULL, |
||
60 | PRIMARY KEY (`id`) |
||
61 | ) ENGINE = InnoDB;"); |
||
62 | lock::set('BPT-MYSQL'); |
||
63 | } |
||
64 | |||
65 | /** |
||
66 | * @internal Only for BPT self usage , Don't use it in your source! |
||
67 | */ |
||
68 | public static function process (): void { |
||
69 | if (self::$auto_process) { |
||
70 | if (isset(BPT::$update->message)) { |
||
71 | self::processMessage(BPT::$update->message); |
||
|
|||
72 | } |
||
73 | elseif (isset(BPT::$update->edited_message)) { |
||
74 | self::processMessage(BPT::$update->edited_message); |
||
75 | } |
||
76 | elseif (isset(BPT::$update->callback_query)) { |
||
77 | self::processCallbackQuery(BPT::$update->callback_query); |
||
78 | } |
||
79 | elseif (isset(BPT::$update->inline_query)) { |
||
80 | self::processInlineQuery(BPT::$update->inline_query); |
||
81 | } |
||
82 | elseif (isset(BPT::$update->my_chat_member)) { |
||
83 | self::processMyChatMember(BPT::$update->my_chat_member); |
||
84 | } |
||
85 | } |
||
86 | } |
||
87 | |||
88 | private static function processMessage (message $update): void { |
||
89 | $type = $update->chat->type; |
||
90 | if ($type === chatType::PRIVATE) { |
||
91 | $user_id = $update->from->id; |
||
92 | $first_active = $last_active = time(); |
||
93 | $referral = null; |
||
94 | $username = $update->from->username; |
||
95 | $lang_code = $update->from->language_code; |
||
96 | if (isset($update->commend) && isset($update->commend_payload) && $update->commend === 'start' && str_starts_with($update->commend_payload, 'ref_')) { |
||
97 | if (tools::isShorted(substr($update->commend_payload, 4))) { |
||
98 | $referral = tools::shortDecode(substr($update->commend_payload, 4)); |
||
99 | } |
||
100 | } |
||
101 | self::query("INSERT INTO `users`(`id`, `username`, `lang_code`, `first_active`, `last_active`, `referral`) VALUES (?,?,?,?,?,?) on duplicate key update `last_active` = ?, `username` = ?", [ |
||
102 | $user_id, |
||
103 | $username, |
||
104 | $lang_code, |
||
105 | $first_active, |
||
106 | $last_active, |
||
107 | $referral, |
||
108 | $last_active, |
||
109 | $username |
||
110 | ]); |
||
111 | } |
||
112 | } |
||
113 | |||
114 | private static function processCallbackQuery (callbackQuery $update): void { |
||
115 | $type = $update->message->chat->type; |
||
116 | if ($type === chatType::PRIVATE) { |
||
117 | $user_id = $update->from->id; |
||
118 | $last_active = time(); |
||
119 | $username = $update->from->username; |
||
120 | self::update('users', ['last_active' => $last_active, 'username' => $username], ['id' => $user_id], 1); |
||
121 | } |
||
122 | } |
||
123 | |||
124 | private static function processInlineQuery (inlineQuery $update): void { |
||
125 | $type = $update->chat_type; |
||
126 | if ($type === chatType::PRIVATE || $type === chatType::SENDER) { |
||
127 | $user_id = $update->from->id; |
||
128 | $last_active = time(); |
||
129 | $username = $update->from->username; |
||
130 | self::update('users', ['last_active' => $last_active, 'username' => $username], ['id' => $user_id], 1); |
||
131 | } |
||
132 | } |
||
133 | |||
134 | private static function processMyChatMember (chatMemberUpdated $update): void { |
||
135 | $type = $update->chat->type; |
||
136 | if ($type === chatType::PRIVATE) { |
||
137 | if ($update->new_chat_member->status === chatMemberStatus::MEMBER) { |
||
138 | self::update('users', ['blocked' => false], ['id' => $update->from->id], 1); |
||
139 | } |
||
140 | else { |
||
141 | self::update('users', ['blocked' => true], ['id' => $update->from->id], 1); |
||
142 | } |
||
143 | } |
||
144 | } |
||
145 | |||
146 | /** |
||
147 | * Get real mysqli connections |
||
148 | * |
||
149 | * @return mysqli |
||
150 | */ |
||
151 | public static function getMysqli (): mysqli { |
||
152 | return self::$connection; |
||
153 | } |
||
154 | |||
155 | /** |
||
156 | * Get affected rows |
||
157 | * |
||
158 | * @return int|string |
||
159 | */ |
||
160 | public static function affected_rows (): int|string { |
||
162 | } |
||
163 | |||
164 | /** |
||
165 | * Get inserted id |
||
166 | * |
||
167 | * @return int|string |
||
168 | */ |
||
169 | public static function insert_id (): int|string { |
||
170 | return self::$connection->insert_id; |
||
171 | } |
||
172 | |||
173 | /** |
||
174 | * Escape string with real_escape_string of mysqli class |
||
175 | * |
||
176 | * @param string $text |
||
177 | * |
||
178 | * @return string |
||
179 | */ |
||
180 | public static function escapeString (string $text): string { |
||
181 | return self::$connection->real_escape_string($text); |
||
182 | } |
||
183 | |||
184 | /** |
||
185 | * Run query as what is it |
||
186 | * |
||
187 | * The library doesn't do anything on it |
||
188 | * |
||
189 | * It's like calling mysqli->query(); |
||
190 | * |
||
191 | * @param string $query |
||
192 | * |
||
193 | * @return mysqli_result|bool |
||
194 | */ |
||
195 | public static function pureQuery (string $query): mysqli_result|bool { |
||
197 | } |
||
198 | |||
199 | /** |
||
200 | * Run query with safe execution |
||
201 | * |
||
202 | * Replace inputs with `?` in query to be replaced safely with $vars in order |
||
203 | * |
||
204 | * e.g. : mysql::query('select * from `users` where `id` = ? limit 1',[123456789]); |
||
205 | * |
||
206 | * e.g. : mysql::query('update `users` set `step` = ? where `id` = ? limit 1',['main',123456789]); |
||
207 | * |
||
208 | * @param string $query |
||
209 | * @param array $vars default [] or empty |
||
210 | * @param bool $need_result set if you want result be returned, default : true |
||
211 | * |
||
212 | * @return mysqli_result|bool |
||
213 | */ |
||
214 | public static function query (string $query, array $vars = [], bool $need_result = true): mysqli_result|bool { |
||
215 | $prepare = self::$connection->prepare($query); |
||
216 | $types = ''; |
||
217 | foreach ($vars as $var) { |
||
218 | if (is_int($var)) { |
||
219 | $types .= 'i'; |
||
220 | } |
||
221 | elseif (is_double($var)) { |
||
222 | $types .= 'd'; |
||
223 | } |
||
224 | else { |
||
225 | $types .= 's'; |
||
226 | } |
||
227 | } |
||
228 | if (!empty($types) && !empty($vars)) { |
||
229 | $prepare->bind_param($types,...$vars); |
||
230 | } |
||
231 | if (!$prepare->execute()) { |
||
232 | logger::write(loggerTypes::WARNING, $prepare->error); |
||
233 | return false; |
||
234 | } |
||
235 | return $need_result ? $prepare->get_result() : true; |
||
236 | } |
||
237 | |||
238 | private static function makeArrayReady (string &$query, array $array, string $operator = ' AND '): array { |
||
239 | $first = true; |
||
240 | $values = []; |
||
241 | foreach ($array as $name => $value) { |
||
242 | if ($first) { |
||
243 | $first = false; |
||
244 | } |
||
245 | else { |
||
246 | $query .= $operator; |
||
247 | } |
||
248 | $query .= " `$name` = ?"; |
||
249 | $values[] = $value; |
||
250 | } |
||
251 | return $values; |
||
252 | } |
||
253 | |||
254 | private static function makeQueryReady (string &$query, array $where = null, int $count = null, int $offset = null): array { |
||
255 | $values = []; |
||
256 | if (!empty($where)) { |
||
257 | $query .= " WHERE"; |
||
258 | $values = self::makeArrayReady($query, $where); |
||
259 | } |
||
260 | if (!empty($count)) { |
||
261 | $query .= !empty($offset) ? " LIMIT $offset,$count" : " LIMIT $count"; |
||
262 | } |
||
263 | elseif (!empty($offset)) { |
||
264 | $query .= " OFFSET $offset"; |
||
265 | } |
||
266 | return $values; |
||
267 | } |
||
268 | |||
269 | /** |
||
270 | * Run delete query |
||
271 | * |
||
272 | * e.g. : `mysql::delete('users',['id'=>123456789],1);` |
||
273 | * |
||
274 | * @param string $table table name |
||
275 | * @param array|null $where Set your ifs default : null |
||
276 | * @param int|null $count Set if you want to delete specific amount of row default : null |
||
277 | * @param int|null $offset Set if you want to delete rows after specific row default : null |
||
278 | * |
||
279 | * @return mysqli_result|bool |
||
280 | */ |
||
281 | public static function delete (string $table, array $where = null, int $count = null, int $offset = null): mysqli_result|bool { |
||
285 | } |
||
286 | |||
287 | /** |
||
288 | * Run update query |
||
289 | * |
||
290 | * e.g. : mysql::update('users',['step'=>'panel'],['id'=>123456789],1); |
||
291 | * |
||
292 | * @param string $table table name |
||
293 | * @param array $modify Set the data's you want to modify |
||
294 | * @param array|null $where Set your ifs default : null |
||
295 | * @param int|null $count Set if you want to update specific amount of row default : null |
||
296 | * @param int|null $offset Set if you want to update rows after specific row default : null |
||
297 | * |
||
298 | * @return mysqli_result|bool |
||
299 | */ |
||
300 | public static function update (string $table, array $modify, array $where = null, int $count = null, int $offset = null): mysqli_result|bool { |
||
301 | $query = "UPDATE `$table` SET"; |
||
302 | $values = self::makeArrayReady($query, $modify, ', '); |
||
303 | $res = self::makeQueryReady($query, $where, $count, $offset); |
||
304 | return self::query($query, array_merge($values, $res), false); |
||
305 | } |
||
306 | |||
307 | /** |
||
308 | * Run insert query |
||
309 | * |
||
310 | * e.g. : `mysql::insert('users',['id','column1','column2','column3'],[123456789,'value1','value2','value3']);` |
||
311 | * |
||
312 | * @param string $table table name |
||
313 | * @param string|array $columns sets columns that you want to fill |
||
314 | * @param array|string $values sets value that you want to set |
||
315 | * |
||
316 | * @return mysqli_result|bool |
||
317 | */ |
||
318 | public static function insert (string $table, string|array $columns, array|string $values): mysqli_result|bool { |
||
319 | $query = "INSERT INTO `$table`("; |
||
320 | $query .= '`' . (is_string($columns) ? $columns : implode('`,`', $columns)) . '`) VALUES ('; |
||
321 | if (is_string($values)) $values = [$values]; |
||
322 | $query .= '?' . str_repeat(',?', count($values) - 1) . ')'; |
||
323 | return self::query($query, $values, false); |
||
324 | } |
||
325 | |||
326 | /** |
||
327 | * Run select query |
||
328 | * |
||
329 | * e.g. : mysql::select('users','*',['id'=>123456789],1); |
||
330 | * |
||
331 | * e.g. : mysql::select('users',['step','referrals'],['id'=>123456789],1); |
||
332 | * |
||
333 | * @param string $table table name |
||
334 | * @param array|string $columns sets column that you want to retrieve , set '*' to retrieve all , default : '*' |
||
335 | * @param array|null $where Set your ifs default : null |
||
336 | * @param int|null $count Set if you want to select specific amount of row default : null |
||
337 | * @param int|null $offset Set if you want to select rows after specific row default : null |
||
338 | * |
||
339 | * @return mysqli_result|bool |
||
340 | */ |
||
341 | public static function select (string $table, array|string $columns = '*', array $where = null, int $count = null, int $offset = null): mysqli_result|bool { |
||
352 | } |
||
353 | |||
354 | /** |
||
355 | * Same as mysql::select but return first result as array |
||
356 | * |
||
357 | * mysql::selectArray('users','*',['id'=>123456789]); |
||
358 | * |
||
359 | * @param string $table table name |
||
360 | * @param array|string $columns sets column that you want to retrieve , set '*' to retrieve all , default : '*' |
||
361 | * @param array|null $where Set your ifs default : null |
||
362 | * |
||
363 | * @return null|bool|array |
||
364 | */ |
||
365 | public static function selectArray (string $table, array|string $columns = '*', array $where = null): bool|array|null { |
||
371 | } |
||
372 | |||
373 | /** |
||
374 | * Same as mysql::select but return first result as object(stdClass) |
||
375 | * |
||
376 | * mysql::selectObject('users','*',['id'=>123456789]); |
||
377 | * |
||
378 | * @param string $table table name |
||
379 | * @param array|string $columns sets column that you want to retrieve , set '*' to retrieve all , default : '*' |
||
380 | * @param array|null $where Set your ifs default : null |
||
381 | */ |
||
382 | public static function selectObject (string $table, array|string $columns = '*', array $where = null) { |
||
388 | } |
||
389 | |||
390 | /** |
||
391 | * Same as mysql::select but return each row as generator |
||
392 | * |
||
393 | * e.g. : mysql::selectEach('users','*',['id'=>123456789],1); |
||
394 | * e.g. : mysql::selectEach('users',['id']); |
||
395 | * |
||
396 | * @param string $table table name |
||
397 | * @param array|string $columns sets column that you want to retrieve , set '*' to retrieve all , default : '*' |
||
398 | * @param array|null $where Set your ifs default : null |
||
399 | * @param int|null $count Set if you want to select specific amount of row default : null |
||
400 | * @param int|null $offset Set if you want to select rows after specific row default : null |
||
401 | * |
||
402 | * @return bool|Generator |
||
403 | */ |
||
404 | public static function selectEach (string $table, array|string $columns = '*', array $where = null, int $count = null, int $offset = null): bool|Generator { |
||
410 | } |
||
411 | } |