@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | /** |
30 | 30 | * tools class , gather what ever you need |
31 | 31 | */ |
32 | -class tools{ |
|
32 | +class tools { |
|
33 | 33 | /** |
34 | 34 | * Check the given username format |
35 | 35 | * |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | * |
42 | 42 | * @return bool |
43 | 43 | */ |
44 | - public static function isUsername (string $username): bool { |
|
44 | + public static function isUsername(string $username): bool { |
|
45 | 45 | $length = strlen($username); |
46 | 46 | return !str_contains($username, '__') && $length >= 5 && $length <= 33 && preg_match('/^@?([a-zA-Z])(\w{4,31})$/', $username); |
47 | 47 | } |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | * |
59 | 59 | * @return bool |
60 | 60 | */ |
61 | - public static function ipInRange (string $ip, string $range): bool { |
|
61 | + public static function ipInRange(string $ip, string $range): bool { |
|
62 | 62 | if (!str_contains($range, '/')) { |
63 | 63 | $range .= '/32'; |
64 | 64 | } |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | * |
79 | 79 | * @return bool |
80 | 80 | */ |
81 | - public static function isTelegram (string $ip): bool { |
|
81 | + public static function isTelegram(string $ip): bool { |
|
82 | 82 | return tools::ipInRange($ip, '149.154.160.0/20') || tools::ipInRange($ip, '91.108.4.0/22'); |
83 | 83 | } |
84 | 84 | |
@@ -93,10 +93,10 @@ discard block |
||
93 | 93 | * |
94 | 94 | * @return bool |
95 | 95 | */ |
96 | - public static function isCloudFlare (string $ip): bool { |
|
96 | + public static function isCloudFlare(string $ip): bool { |
|
97 | 97 | $cf_ips = ['173.245.48.0/20', '103.21.244.0/22', '103.22.200.0/22', '103.31.4.0/22', '141.101.64.0/18', '108.162.192.0/18', '190.93.240.0/20', '188.114.96.0/20', '197.234.240.0/22', '198.41.128.0/17', '162.158.0.0/15', '104.16.0.0/12', '104.24.0.0/14', '172.64.0.0/13', '131.0.72.0/22']; |
98 | 98 | foreach ($cf_ips as $cf_ip) { |
99 | - if (self::ipInRange($ip,$cf_ip)) { |
|
99 | + if (self::ipInRange($ip, $cf_ip)) { |
|
100 | 100 | return true; |
101 | 101 | } |
102 | 102 | } |
@@ -114,10 +114,10 @@ discard block |
||
114 | 114 | * |
115 | 115 | * @return bool |
116 | 116 | */ |
117 | - public static function isArvanCloud (string $ip): bool { |
|
117 | + public static function isArvanCloud(string $ip): bool { |
|
118 | 118 | $ar_ips = ['185.143.232.0/22', '92.114.16.80/28', '2.146.0.0/28', '46.224.2.32/29', '89.187.178.96/29', '195.181.173.128/29', '89.187.169.88/29', '188.229.116.16/29', '83.123.255.56/31', '164.138.128.28/31', '94.182.182.28/30', '185.17.115.176/30', '5.213.255.36/31', '138.128.139.144/29', '5.200.14.8/29', '188.122.68.224/29', '188.122.83.176/29', '213.179.217.16/29', '185.179.201.192/29', '43.239.139.192/29', '213.179.197.16/29', '213.179.201.192/29', '109.200.214.248/29', '138.128.141.16/29', '188.122.78.136/29', '213.179.211.32/29', '103.194.164.24/29', '185.50.105.136/29', '213.179.213.16/29', '162.244.52.120/29', '188.122.80.240/29', '109.200.195.64/29', '109.200.199.224/29', '185.228.238.0/28', '94.182.153.24/29', '94.101.182.0/27', '37.152.184.208/28', '78.39.156.192/28', '158.255.77.238/31', '81.12.28.16/29', '176.65.192.202/31', '2.144.3.128/28', '89.45.48.64/28', '37.32.16.0/27', '37.32.17.0/27', '37.32.18.0/27']; |
119 | 119 | foreach ($ar_ips as $ar_ip) { |
120 | - if (self::ipInRange($ip,$ar_ip)) { |
|
120 | + if (self::ipInRange($ip, $ar_ip)) { |
|
121 | 121 | return true; |
122 | 122 | } |
123 | 123 | } |
@@ -137,11 +137,11 @@ discard block |
||
137 | 137 | * |
138 | 138 | * @return bool|user return array when verify is active and token is true array of telegram getMe result |
139 | 139 | */ |
140 | - public static function isToken (string $token, bool $verify = false): bool|user { |
|
140 | + public static function isToken(string $token, bool $verify = false): bool | user { |
|
141 | 141 | if (!preg_match('/^(\d{8,10}):[\w\-]{35}$/', $token)) { |
142 | 142 | return false; |
143 | 143 | } |
144 | - if (!$verify){ |
|
144 | + if (!$verify) { |
|
145 | 145 | return true; |
146 | 146 | } |
147 | 147 | $res = telegram::me($token); |
@@ -171,14 +171,14 @@ discard block |
||
171 | 171 | * |
172 | 172 | * @return bool |
173 | 173 | */ |
174 | - public static function isJoined (array|string|int $ids , int|null $user_id = null): bool { |
|
174 | + public static function isJoined(array | string | int $ids, int | null $user_id = null): bool { |
|
175 | 175 | if (!is_array($ids)) { |
176 | 176 | $ids = [$ids]; |
177 | 177 | } |
178 | 178 | $user_id = $user_id ?? request::catchFields('user_id'); |
179 | 179 | |
180 | 180 | foreach ($ids as $id) { |
181 | - $check = telegram::getChatMember($id,$user_id); |
|
181 | + $check = telegram::getChatMember($id, $user_id); |
|
182 | 182 | if (telegram::$status) { |
183 | 183 | $check = $check->status; |
184 | 184 | if ($check === chatMemberStatus::LEFT || $check === chatMemberStatus::KICKED) { |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | * |
206 | 206 | * @return array keys will be id and values will be bool(null for not founded ids) |
207 | 207 | */ |
208 | - public static function joinChecker (array|string|int $ids , int|null $user_id = null): array { |
|
208 | + public static function joinChecker(array | string | int $ids, int | null $user_id = null): array { |
|
209 | 209 | if (!is_array($ids)) { |
210 | 210 | $ids = [$ids]; |
211 | 211 | } |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | |
214 | 214 | $result = []; |
215 | 215 | foreach ($ids as $id) { |
216 | - $check = telegram::getChatMember($id,$user_id); |
|
216 | + $check = telegram::getChatMember($id, $user_id); |
|
217 | 217 | if (telegram::$status) { |
218 | 218 | $check = $check->status; |
219 | 219 | $result[$id] = $check !== chatMemberStatus::LEFT && $check !== chatMemberStatus::KICKED; |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | * @return bool |
234 | 234 | */ |
235 | 235 | public static function isShorted(string $text): bool{ |
236 | - return preg_match('/^[a-zA-Z0-9]+$/',$text); |
|
236 | + return preg_match('/^[a-zA-Z0-9]+$/', $text); |
|
237 | 237 | } |
238 | 238 | |
239 | 239 | /** |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | * |
251 | 251 | * @return string|int|false string for formatted data , int for normal data , false when size can not be found(file not found or ...) |
252 | 252 | */ |
253 | - public static function size (string $path, bool $format = true): string|int|false { |
|
253 | + public static function size(string $path, bool $format = true): string | int | false { |
|
254 | 254 | if (filter_var($path, FILTER_VALIDATE_URL)) { |
255 | 255 | $ch = curl_init($path); |
256 | 256 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | * @return bool |
284 | 284 | * @throws bptException |
285 | 285 | */ |
286 | - public static function delete (string $path, bool $sub = true): bool { |
|
286 | + public static function delete(string $path, bool $sub = true): bool { |
|
287 | 287 | $path = realpath($path); |
288 | 288 | if (!is_dir($path)) { |
289 | 289 | return unlink($path); |
@@ -292,7 +292,7 @@ discard block |
||
292 | 292 | return rmdir($path); |
293 | 293 | } |
294 | 294 | if (!$sub) { |
295 | - logger::write("tools::delete function used\ndelete function cannot delete folder because its have subFiles and sub parameter haven't true value",loggerTypes::ERROR); |
|
295 | + logger::write("tools::delete function used\ndelete function cannot delete folder because its have subFiles and sub parameter haven't true value", loggerTypes::ERROR); |
|
296 | 296 | throw new bptException('DELETE_FOLDER_HAS_SUB'); |
297 | 297 | } |
298 | 298 | $it = new RecursiveDirectoryIterator($path, FilesystemIterator::SKIP_DOTS); |
@@ -314,7 +314,7 @@ discard block |
||
314 | 314 | * @return bool |
315 | 315 | * @throws bptException when zip extension not found |
316 | 316 | */ |
317 | - public static function zip (string $path, string $destination): bool { |
|
317 | + public static function zip(string $path, string $destination): bool { |
|
318 | 318 | if (!extension_loaded('zip')) { |
319 | 319 | logger::write("tools::zip function used\nzip extension is not found , It may not be installed or enabled", loggerTypes::ERROR); |
320 | 320 | throw new bptException('ZIP_EXTENSION_MISSING'); |
@@ -349,14 +349,14 @@ discard block |
||
349 | 349 | * |
350 | 350 | * @return bool true on success and false in failure |
351 | 351 | */ |
352 | - public static function downloadFile (string $url, string $path,int $chunk_size = 512): bool { |
|
352 | + public static function downloadFile(string $url, string $path, int $chunk_size = 512): bool { |
|
353 | 353 | $file = fopen($url, 'rb'); |
354 | 354 | if (!$file) return false; |
355 | 355 | $path = fopen($path, 'wb'); |
356 | 356 | if (!$path) return false; |
357 | 357 | |
358 | 358 | $length = $chunk_size * 1024; |
359 | - while (!feof($file)){ |
|
359 | + while (!feof($file)) { |
|
360 | 360 | fwrite($path, fread($file, $length), $length); |
361 | 361 | } |
362 | 362 | fclose($path); |
@@ -378,10 +378,10 @@ discard block |
||
378 | 378 | * |
379 | 379 | * @return string |
380 | 380 | */ |
381 | - public static function byteFormat (int $byte, int $precision = 2): string { |
|
381 | + public static function byteFormat(int $byte, int $precision = 2): string { |
|
382 | 382 | $rate_counter = 0; |
383 | 383 | |
384 | - while ($byte > 1024){ |
|
384 | + while ($byte > 1024) { |
|
385 | 385 | $byte /= 1024; |
386 | 386 | $rate_counter++; |
387 | 387 | } |
@@ -390,7 +390,7 @@ discard block |
||
390 | 390 | $byte = round($byte, $precision); |
391 | 391 | } |
392 | 392 | |
393 | - return $byte . ' ' . ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB'][$rate_counter]; |
|
393 | + return $byte.' '.['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB'][$rate_counter]; |
|
394 | 394 | } |
395 | 395 | |
396 | 396 | /** |
@@ -407,10 +407,10 @@ discard block |
||
407 | 407 | * |
408 | 408 | * @return string|false return false when mode is incorrect |
409 | 409 | */ |
410 | - public static function modeEscape (string $text, string $mode = parseMode::HTML): string|false { |
|
410 | + public static function modeEscape(string $text, string $mode = parseMode::HTML): string | false { |
|
411 | 411 | return match ($mode) { |
412 | - parseMode::HTML => str_replace(['&', '<', '>',], ["&", "<", ">",], $text), |
|
413 | - parseMode::MARKDOWN => str_replace(['\\', '_', '*', '`', '['], ['\\\\', '\_', '\*', '\`', '\[',], $text), |
|
412 | + parseMode::HTML => str_replace(['&', '<', '>', ], ["&", "<", ">", ], $text), |
|
413 | + parseMode::MARKDOWN => str_replace(['\\', '_', '*', '`', '['], ['\\\\', '\_', '\*', '\`', '\[', ], $text), |
|
414 | 414 | parseMode::MARKDOWNV2 => str_replace( |
415 | 415 | ['_', '*', '[', ']', '(', ')', '~', '`', '>', '#', '+', '-', '=', '|', '{', '}', '.', '!', '\\'], |
416 | 416 | ['\_', '\*', '\[', '\]', '\(', '\)', '\~', '\`', '\>', '\#', '\+', '\-', '\=', '\|', '\{', '\}', '\.', '\!', '\\\\'], |
@@ -449,12 +449,12 @@ discard block |
||
449 | 449 | * @return array{status: string,year: string,month: string,day: string,hour: string,minute: string,second: string} |
450 | 450 | * @throws Exception |
451 | 451 | */ |
452 | - public static function timeDiff (int|string $target_time, int|string|null $base_time = null): array { |
|
452 | + public static function timeDiff(int | string $target_time, int | string | null $base_time = null): array { |
|
453 | 453 | if (!isset($base_time)) { |
454 | 454 | $base_time = '@'.time(); |
455 | 455 | } |
456 | 456 | $base_time = new DateTime($base_time); |
457 | - $target_time = new DateTime(is_numeric($target_time) ? '@' . $target_time : $target_time . ' +00:00'); |
|
457 | + $target_time = new DateTime(is_numeric($target_time) ? '@'.$target_time : $target_time.' +00:00'); |
|
458 | 458 | |
459 | 459 | $diff = $base_time->diff($target_time); |
460 | 460 | |
@@ -481,12 +481,12 @@ discard block |
||
481 | 481 | * |
482 | 482 | * @return string[]|string |
483 | 483 | */ |
484 | - public static function realEscapeString(string|array $input): string|array { |
|
485 | - if(is_array($input)) { |
|
484 | + public static function realEscapeString(string | array $input): string | array { |
|
485 | + if (is_array($input)) { |
|
486 | 486 | return array_map(__METHOD__, $input); |
487 | 487 | } |
488 | 488 | |
489 | - if(!empty($input) && is_string($input)) { |
|
489 | + if (!empty($input) && is_string($input)) { |
|
490 | 490 | return str_replace(['\\', "\0", "\n", "\r", "'", '"', "\x1a"], ['\\\\', '\\0', '\\n', '\\r', "\\'", '\\"', '\\Z'], $input); |
491 | 491 | } |
492 | 492 | |
@@ -504,7 +504,7 @@ discard block |
||
504 | 504 | * |
505 | 505 | * @return string[]|string |
506 | 506 | */ |
507 | - public static function strReplaceFirst(string|array $search, string|array $replace, string|array $subject): string|array { |
|
507 | + public static function strReplaceFirst(string | array $search, string | array $replace, string | array $subject): string | array { |
|
508 | 508 | $pos = strpos($subject, $search); |
509 | 509 | if ($pos !== false) { |
510 | 510 | return substr_replace($subject, $replace, $pos, strlen($search)); |
@@ -521,7 +521,7 @@ discard block |
||
521 | 521 | * |
522 | 522 | * @return string see possible values in fileType class |
523 | 523 | */ |
524 | - public static function fileType (string $file_id): string { |
|
524 | + public static function fileType(string $file_id): string { |
|
525 | 525 | $data = base64_decode(str_pad(strtr($file_id, '-_', '+/'), strlen($file_id) % 4, '=')); |
526 | 526 | $new = ''; |
527 | 527 | $last = ''; |
@@ -535,7 +535,7 @@ discard block |
||
535 | 535 | $last = $char; |
536 | 536 | } |
537 | 537 | } |
538 | - $data = unpack('VtypeId/Vdc_id', $new . $last); |
|
538 | + $data = unpack('VtypeId/Vdc_id', $new.$last); |
|
539 | 539 | $data['typeId'] = $data['typeId'] & ~33554432 & ~16777216; |
540 | 540 | return [ |
541 | 541 | fileTypes::THUMBNAIL, |
@@ -573,10 +573,10 @@ discard block |
||
573 | 573 | * |
574 | 574 | * @return string |
575 | 575 | */ |
576 | - public static function randomString (int $length = 16, string $characters = 'aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ'): string { |
|
576 | + public static function randomString(int $length = 16, string $characters = 'aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ'): string { |
|
577 | 577 | $rand_string = ''; |
578 | 578 | $char_len = strlen($characters) - 1; |
579 | - for ($i = 0; $i < $length; $i ++) { |
|
579 | + for ($i = 0; $i < $length; $i++) { |
|
580 | 580 | $rand_string .= $characters[rand(0, $char_len)]; |
581 | 581 | } |
582 | 582 | return $rand_string; |
@@ -605,7 +605,7 @@ discard block |
||
605 | 605 | * @return inlineKeyboardMarkup|replyKeyboardMarkup replyKeyboardMarkup for keyboard and inlineKeyboardMarkup for inline |
606 | 606 | * @throws bptException |
607 | 607 | */ |
608 | - public static function easyKey(array $keyboard = [], array $inline = []): inlineKeyboardMarkup|replyKeyboardMarkup { |
|
608 | + public static function easyKey(array $keyboard = [], array $inline = []): inlineKeyboardMarkup | replyKeyboardMarkup { |
|
609 | 609 | if (!empty($keyboard)) { |
610 | 610 | $keyboard_object = new replyKeyboardMarkup(); |
611 | 611 | $keyboard_object->setResize_keyboard($keyboard['resize'] ?? true); |
@@ -669,7 +669,7 @@ discard block |
||
669 | 669 | return $keyboard_object; |
670 | 670 | } |
671 | 671 | else { |
672 | - logger::write("tools::eKey function used\nkeyboard or inline parameter must be set",loggerTypes::ERROR); |
|
672 | + logger::write("tools::eKey function used\nkeyboard or inline parameter must be set", loggerTypes::ERROR); |
|
673 | 673 | throw new bptException('ARGUMENT_NOT_FOUND_KEYBOARD_INLINE'); |
674 | 674 | } |
675 | 675 | } |
@@ -686,10 +686,10 @@ discard block |
||
686 | 686 | * |
687 | 687 | * @return string |
688 | 688 | */ |
689 | - public static function inviteLink (int $user_id = null, string $bot_username = null): string { |
|
689 | + public static function inviteLink(int $user_id = null, string $bot_username = null): string { |
|
690 | 690 | if (empty($user_id)) $user_id = telegram::catchFields(fields::USER_ID); |
691 | 691 | if (empty($bot_username)) $bot_username = telegram::getMe()->username; |
692 | - return 'https://t.me/' . str_replace('@', '', $bot_username) . '?start=ref_' . tools::shortEncode($user_id); |
|
692 | + return 'https://t.me/'.str_replace('@', '', $bot_username).'?start=ref_'.tools::shortEncode($user_id); |
|
693 | 693 | } |
694 | 694 | |
695 | 695 | /** |
@@ -713,9 +713,9 @@ discard block |
||
713 | 713 | * @return string|bool|array{hash:string, key:string, iv:string} |
714 | 714 | * @throws bptException |
715 | 715 | */ |
716 | - public static function crypto (string $action, string $text, string $key = null, string $iv = null): bool|array|string { |
|
716 | + public static function crypto(string $action, string $text, string $key = null, string $iv = null): bool | array | string { |
|
717 | 717 | if (!extension_loaded('openssl')) { |
718 | - logger::write("tools::crypto function used\nopenssl extension is not found , It may not be installed or enabled",loggerTypes::ERROR); |
|
718 | + logger::write("tools::crypto function used\nopenssl extension is not found , It may not be installed or enabled", loggerTypes::ERROR); |
|
719 | 719 | throw new bptException('OPENSSL_EXTENSION_MISSING'); |
720 | 720 | } |
721 | 721 | if ($action === cryptoAction::ENCRYPT) { |
@@ -726,17 +726,17 @@ discard block |
||
726 | 726 | } |
727 | 727 | elseif ($action === cryptoAction::DECRYPT) { |
728 | 728 | if (empty($key)) { |
729 | - logger::write("tools::crypto function used\nkey parameter is not set",loggerTypes::ERROR); |
|
729 | + logger::write("tools::crypto function used\nkey parameter is not set", loggerTypes::ERROR); |
|
730 | 730 | throw new bptException('ARGUMENT_NOT_FOUND_KEY'); |
731 | 731 | } |
732 | 732 | if (empty($iv)) { |
733 | - logger::write("tools::crypto function used\niv parameter is not set",loggerTypes::ERROR); |
|
733 | + logger::write("tools::crypto function used\niv parameter is not set", loggerTypes::ERROR); |
|
734 | 734 | throw new bptException('ARGUMENT_NOT_FOUND_IV'); |
735 | 735 | } |
736 | 736 | return openssl_decrypt(base64_decode($text), 'AES-256-CBC', $key, 1, $iv); |
737 | 737 | } |
738 | 738 | else { |
739 | - logger::write("tools::crypto function used\naction is not right, its must be `encode` or `decode`",loggerTypes::WARNING); |
|
739 | + logger::write("tools::crypto function used\naction is not right, its must be `encode` or `decode`", loggerTypes::WARNING); |
|
740 | 740 | return false; |
741 | 741 | } |
742 | 742 | } |
@@ -753,7 +753,7 @@ discard block |
||
753 | 753 | public static function shortEncode(int $num): string { |
754 | 754 | $codes = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; |
755 | 755 | $array = []; |
756 | - while ($num > 0){ |
|
756 | + while ($num > 0) { |
|
757 | 757 | $array[] = $num % 62; |
758 | 758 | $num = floor($num / 62); |
759 | 759 | } |
@@ -761,7 +761,7 @@ discard block |
||
761 | 761 | foreach ($array as &$value) { |
762 | 762 | $value = $codes[$value]; |
763 | 763 | } |
764 | - return strrev(implode('',$array)); |
|
764 | + return strrev(implode('', $array)); |
|
765 | 765 | } |
766 | 766 | |
767 | 767 | /** |
@@ -778,7 +778,7 @@ discard block |
||
778 | 778 | $num = 0; |
779 | 779 | $text = str_split(strrev($text)); |
780 | 780 | foreach ($text as $key=>$value) { |
781 | - $num += strpos($codes,$value) * pow(62,$key); |
|
781 | + $num += strpos($codes, $value) * pow(62, $key); |
|
782 | 782 | } |
783 | 783 | return $num; |
784 | 784 | } |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | /** |
18 | 18 | * @internal Only for BPT self usage , Don't use it in your source! |
19 | 19 | */ |
20 | - public static function init (int $log_size = 10): void { |
|
20 | + public static function init(int $log_size = 10): void { |
|
21 | 21 | self::$log_size = $log_size; |
22 | 22 | $log_file = realpath(settings::$name.'BPT.log'); |
23 | 23 | if (file_exists($log_file) && !(filesize($log_file) > self::$log_size * 1024 * 1024)) { |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | self::$handler = fopen(settings::$name.'BPT.log', $mode); |
32 | 32 | |
33 | 33 | if ($write) { |
34 | - fwrite(self::$handler,"♥♥♥♥♥♥♥♥♥♥♥♥♥♥ BPT Library ♥♥♥♥♥♥♥♥♥♥♥♥♥♥\nTnx for using our library\nSome information about us :\nAuthor : @Im_Miaad\nHelper : @A_LiReza_ME\nChannel : @BPT_CH\nOur Website : https://bptlib.ir\n\nIf you have any problem with our library\nContact to our supports\n♥♥♥♥♥♥♥♥♥♥♥♥♥♥ BPT Library ♥♥♥♥♥♥♥♥♥♥♥♥♥♥\nINFO : BPT Library LOG STARTED ...\nwarning : this file automatically deleted when its size reached log_size setting, do not delete it manually\n\n"); |
|
34 | + fwrite(self::$handler, "♥♥♥♥♥♥♥♥♥♥♥♥♥♥ BPT Library ♥♥♥♥♥♥♥♥♥♥♥♥♥♥\nTnx for using our library\nSome information about us :\nAuthor : @Im_Miaad\nHelper : @A_LiReza_ME\nChannel : @BPT_CH\nOur Website : https://bptlib.ir\n\nIf you have any problem with our library\nContact to our supports\n♥♥♥♥♥♥♥♥♥♥♥♥♥♥ BPT Library ♥♥♥♥♥♥♥♥♥♥♥♥♥♥\nINFO : BPT Library LOG STARTED ...\nwarning : this file automatically deleted when its size reached log_size setting, do not delete it manually\n\n"); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | if (self::$waited_logs != []) { |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * @return void |
53 | 53 | */ |
54 | 54 | public static function write(string $data, string $type = loggerTypes::NONE): void { |
55 | - $text = date('Y/m/d H:i:s') . ( $type === loggerTypes::NONE ? " : $data\n\n" : " : ⤵\n$type : $data\n\n" ); |
|
55 | + $text = date('Y/m/d H:i:s').($type === loggerTypes::NONE ? " : $data\n\n" : " : ⤵\n$type : $data\n\n"); |
|
56 | 56 | if (!is_null(self::$handler)) { |
57 | 57 | fwrite(self::$handler, $text); |
58 | 58 | } |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | /** |
28 | 28 | * @internal Only for BPT self usage , Don't use it in your source! |
29 | 29 | */ |
30 | - public static function init (): void { |
|
30 | + public static function init(): void { |
|
31 | 31 | $host = settings::$db['host'] ?? 'localhost'; |
32 | 32 | $port = settings::$db['port'] ?? 3306; |
33 | 33 | $user = settings::$db['user'] ?? settings::$db['username'] ?? 'unknown'; |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | $dbname = settings::$db['dbname']; |
37 | 37 | self::$connection = new mysqli($host, $user, $pass, $dbname, $port); |
38 | 38 | if (self::$connection->connect_errno) { |
39 | - logger::write('SQL connection has problem : ' . self::$connection->connect_error, loggerTypes::ERROR); |
|
39 | + logger::write('SQL connection has problem : '.self::$connection->connect_error, loggerTypes::ERROR); |
|
40 | 40 | throw new bptException('SQL_CONNECTION_PROBLEM'); |
41 | 41 | } |
42 | 42 | if (self::$auto_process && !lock::exist('BPT-MYSQL')) { |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | } |
45 | 45 | } |
46 | 46 | |
47 | - private static function install (): void { |
|
47 | + private static function install(): void { |
|
48 | 48 | self::pureQuery(" |
49 | 49 | CREATE TABLE `users` |
50 | 50 | ( |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | /** |
66 | 66 | * @internal Only for BPT self usage , Don't use it in your source! |
67 | 67 | */ |
68 | - public static function process (): void { |
|
68 | + public static function process(): void { |
|
69 | 69 | if (self::$auto_process) { |
70 | 70 | if (isset(BPT::$update->message)) { |
71 | 71 | self::processMessage(BPT::$update->message); |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | } |
86 | 86 | } |
87 | 87 | |
88 | - private static function processMessage (message $update): void { |
|
88 | + private static function processMessage(message $update): void { |
|
89 | 89 | $type = $update->chat->type; |
90 | 90 | if ($type === chatType::PRIVATE) { |
91 | 91 | $user_id = $update->from->id; |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | } |
112 | 112 | } |
113 | 113 | |
114 | - private static function processCallbackQuery (callbackQuery $update): void { |
|
114 | + private static function processCallbackQuery(callbackQuery $update): void { |
|
115 | 115 | $type = $update->message->chat->type; |
116 | 116 | if ($type === chatType::PRIVATE) { |
117 | 117 | $user_id = $update->from->id; |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | } |
122 | 122 | } |
123 | 123 | |
124 | - private static function processInlineQuery (inlineQuery $update): void { |
|
124 | + private static function processInlineQuery(inlineQuery $update): void { |
|
125 | 125 | $type = $update->chat_type; |
126 | 126 | if ($type === chatType::PRIVATE || $type === chatType::SENDER) { |
127 | 127 | $user_id = $update->from->id; |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | } |
132 | 132 | } |
133 | 133 | |
134 | - private static function processMyChatMember (chatMemberUpdated $update): void { |
|
134 | + private static function processMyChatMember(chatMemberUpdated $update): void { |
|
135 | 135 | $type = $update->chat->type; |
136 | 136 | if ($type === chatType::PRIVATE) { |
137 | 137 | if ($update->new_chat_member->status === chatMemberStatus::MEMBER) { |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | * |
149 | 149 | * @return mysqli |
150 | 150 | */ |
151 | - public static function getMysqli (): mysqli { |
|
151 | + public static function getMysqli(): mysqli { |
|
152 | 152 | return self::$connection; |
153 | 153 | } |
154 | 154 | |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | * |
158 | 158 | * @return int|string |
159 | 159 | */ |
160 | - public static function affected_rows (): int|string { |
|
160 | + public static function affected_rows(): int | string { |
|
161 | 161 | return self::$connection->affected_rows; |
162 | 162 | } |
163 | 163 | |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | * |
167 | 167 | * @return int|string |
168 | 168 | */ |
169 | - public static function insert_id (): int|string { |
|
169 | + public static function insert_id(): int | string { |
|
170 | 170 | return self::$connection->insert_id; |
171 | 171 | } |
172 | 172 | |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | * |
178 | 178 | * @return string |
179 | 179 | */ |
180 | - public static function escapeString (string $text): string { |
|
180 | + public static function escapeString(string $text): string { |
|
181 | 181 | return self::$connection->real_escape_string($text); |
182 | 182 | } |
183 | 183 | |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | * |
193 | 193 | * @return mysqli_result|bool |
194 | 194 | */ |
195 | - public static function pureQuery (string $query): mysqli_result|bool { |
|
195 | + public static function pureQuery(string $query): mysqli_result | bool { |
|
196 | 196 | return self::$connection->query($query); |
197 | 197 | } |
198 | 198 | |
@@ -211,7 +211,7 @@ discard block |
||
211 | 211 | * |
212 | 212 | * @return mysqli_result|bool |
213 | 213 | */ |
214 | - public static function query (string $query, array $vars = [], bool $need_result = true): mysqli_result|bool { |
|
214 | + public static function query(string $query, array $vars = [], bool $need_result = true): mysqli_result | bool { |
|
215 | 215 | $prepare = self::$connection->prepare($query); |
216 | 216 | $types = ''; |
217 | 217 | foreach ($vars as $var) { |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | $types .= 's'; |
226 | 226 | } |
227 | 227 | } |
228 | - $prepare->bind_param($types,...$vars); |
|
228 | + $prepare->bind_param($types, ...$vars); |
|
229 | 229 | if (!$prepare->execute()) { |
230 | 230 | logger::write(loggerTypes::WARNING, $prepare->error); |
231 | 231 | return false; |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | return $need_result ? $prepare->get_result() : true; |
234 | 234 | } |
235 | 235 | |
236 | - private static function makeArrayReady (string &$query, array $array, string $operator = ' AND '): array { |
|
236 | + private static function makeArrayReady(string &$query, array $array, string $operator = ' AND '): array { |
|
237 | 237 | $first = true; |
238 | 238 | $values = []; |
239 | 239 | foreach ($array as $name => $value) { |
@@ -249,7 +249,7 @@ discard block |
||
249 | 249 | return $values; |
250 | 250 | } |
251 | 251 | |
252 | - private static function makeQueryReady (string &$query, array $where = null, int $count = null, int $offset = null): array { |
|
252 | + private static function makeQueryReady(string &$query, array $where = null, int $count = null, int $offset = null): array { |
|
253 | 253 | $values = []; |
254 | 254 | if (!empty($where)) { |
255 | 255 | $query .= " WHERE"; |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | * |
277 | 277 | * @return mysqli_result|bool |
278 | 278 | */ |
279 | - public static function delete (string $table, array $where = null, int $count = null, int $offset = null): mysqli_result|bool { |
|
279 | + public static function delete(string $table, array $where = null, int $count = null, int $offset = null): mysqli_result | bool { |
|
280 | 280 | $query = "DELETE FROM `$table`"; |
281 | 281 | $res = self::makeQueryReady($query, $where, $count, $offset); |
282 | 282 | return self::query($query, $res, false); |
@@ -295,7 +295,7 @@ discard block |
||
295 | 295 | * |
296 | 296 | * @return mysqli_result|bool |
297 | 297 | */ |
298 | - public static function update (string $table, array $modify, array $where = null, int $count = null, int $offset = null): mysqli_result|bool { |
|
298 | + public static function update(string $table, array $modify, array $where = null, int $count = null, int $offset = null): mysqli_result | bool { |
|
299 | 299 | $query = "UPDATE `$table` SET"; |
300 | 300 | $values = self::makeArrayReady($query, $modify, ', '); |
301 | 301 | $res = self::makeQueryReady($query, $where, $count, $offset); |
@@ -313,11 +313,11 @@ discard block |
||
313 | 313 | * |
314 | 314 | * @return mysqli_result|bool |
315 | 315 | */ |
316 | - public static function insert (string $table, string|array $columns, array|string $values): mysqli_result|bool { |
|
316 | + public static function insert(string $table, string | array $columns, array | string $values): mysqli_result | bool { |
|
317 | 317 | $query = "INSERT INTO `$table`("; |
318 | - $query .= '`' . (is_string($columns) ? $columns : implode('`,`', $columns)) . '`) VALUES ('; |
|
318 | + $query .= '`'.(is_string($columns) ? $columns : implode('`,`', $columns)).'`) VALUES ('; |
|
319 | 319 | if (is_string($values)) $values = [$values]; |
320 | - $query .= '?' . str_repeat(',?', count($values) - 1) . ')'; |
|
320 | + $query .= '?'.str_repeat(',?', count($values) - 1).')'; |
|
321 | 321 | return self::query($query, $values, false); |
322 | 322 | } |
323 | 323 | |
@@ -336,13 +336,13 @@ discard block |
||
336 | 336 | * |
337 | 337 | * @return mysqli_result|bool |
338 | 338 | */ |
339 | - public static function select (string $table, array|string $columns = '*', array $where = null, int $count = null, int $offset = null): mysqli_result|bool { |
|
339 | + public static function select(string $table, array | string $columns = '*', array $where = null, int $count = null, int $offset = null): mysqli_result | bool { |
|
340 | 340 | $query = "SELECT "; |
341 | 341 | if ($columns == '*') { |
342 | 342 | $query .= "* "; |
343 | 343 | } |
344 | 344 | else { |
345 | - $query .= '`' . (is_string($columns) ? $columns : implode('`,`', $columns)) . '` '; |
|
345 | + $query .= '`'.(is_string($columns) ? $columns : implode('`,`', $columns)).'` '; |
|
346 | 346 | } |
347 | 347 | $query .= "FROM `$table`"; |
348 | 348 | $res = self::makeQueryReady($query, $where, $count, $offset); |
@@ -360,7 +360,7 @@ discard block |
||
360 | 360 | * |
361 | 361 | * @return null|bool|array |
362 | 362 | */ |
363 | - public static function selectArray (string $table, array|string $columns = '*', array $where = null): bool|array|null { |
|
363 | + public static function selectArray(string $table, array | string $columns = '*', array $where = null): bool | array | null { |
|
364 | 364 | $res = self::select($table, $columns, $where, 1); |
365 | 365 | if ($res) { |
366 | 366 | return $res->fetch_assoc(); |
@@ -377,7 +377,7 @@ discard block |
||
377 | 377 | * @param array|string $columns sets column that you want to retrieve , set '*' to retrieve all , default : '*' |
378 | 378 | * @param array|null $where Set your ifs default : null |
379 | 379 | */ |
380 | - public static function selectObject (string $table, array|string $columns = '*', array $where = null) { |
|
380 | + public static function selectObject(string $table, array | string $columns = '*', array $where = null) { |
|
381 | 381 | $res = self::select($table, $columns, $where, 1); |
382 | 382 | if ($res) { |
383 | 383 | return $res->fetch_object(); |
@@ -399,7 +399,7 @@ discard block |
||
399 | 399 | * |
400 | 400 | * @return bool|Generator |
401 | 401 | */ |
402 | - public static function selectEach (string $table, array|string $columns = '*', array $where = null, int $count = null, int $offset = null): bool|Generator { |
|
402 | + public static function selectEach(string $table, array | string $columns = '*', array $where = null, int $count = null, int $offset = null): bool | Generator { |
|
403 | 403 | $res = self::select($table, $columns, $where, $count, $offset); |
404 | 404 | if ($res) { |
405 | 405 | while ($row = $res->fetch_assoc()) yield $row; |