@@ -17,14 +17,14 @@ 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(): string|null { |
|
20 | + public static function init(): string | null { |
|
21 | 21 | return self::getUpdate(); |
22 | 22 | } |
23 | 23 | |
24 | - private static function getUpdate (): string|null { |
|
24 | + private static function getUpdate(): string | null { |
|
25 | 25 | $up = glob('*.update'); |
26 | 26 | if (!isset($up[0])) { |
27 | - logger::write('not authorized access denied. IP : '. $_SERVER['REMOTE_ADDR'] ?? 'unknown',loggerTypes::WARNING); |
|
27 | + logger::write('not authorized access denied. IP : '.$_SERVER['REMOTE_ADDR'] ?? 'unknown', loggerTypes::WARNING); |
|
28 | 28 | BPT::exit(); |
29 | 29 | } |
30 | 30 | $up = end($up); |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | } |
55 | 55 | |
56 | 56 | private static function create($file) { |
57 | - file_put_contents('receiver.php', '<?php $BPT = file_get_contents("php://input");$id = json_decode($BPT, true)[\'update_id\'];file_put_contents("{$_SERVER[\'REMOTE_ADDR\']}-$id.update",$BPT);exec("php ' . $file . ' > /dev/null &");'); |
|
57 | + file_put_contents('receiver.php', '<?php $BPT = file_get_contents("php://input");$id = json_decode($BPT, true)[\'update_id\'];file_put_contents("{$_SERVER[\'REMOTE_ADDR\']}-$id.update",$BPT);exec("php '.$file.' > /dev/null &");'); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | #[ArrayShape(['url' => "array|string|string[]", 'file' => "string"])] |
@@ -14,9 +14,9 @@ discard block |
||
14 | 14 | * curl class , for multiprocessing with curl tricks |
15 | 15 | */ |
16 | 16 | class curl extends webhook { |
17 | - public static function init (): string|null { |
|
17 | + public static function init(): string | null { |
|
18 | 18 | if (!self::checkIP()) { |
19 | - logger::write('not authorized access denied. IP : '. $_SERVER['REMOTE_ADDR'] ?? 'unknown',loggerTypes::WARNING); |
|
19 | + logger::write('not authorized access denied. IP : '.$_SERVER['REMOTE_ADDR'] ?? 'unknown', loggerTypes::WARNING); |
|
20 | 20 | BPT::exit(); |
21 | 21 | } |
22 | 22 | return self::getUpdate(); |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | return $_SERVER['REMOTE_ADDR'] === $_SERVER['SERVER_ADDR']; |
27 | 27 | } |
28 | 28 | |
29 | - private static function getUpdate (): string { |
|
29 | + private static function getUpdate(): string { |
|
30 | 30 | $input = json_decode(file_get_contents("php://input"), true); |
31 | 31 | webhook::telegramVerify($input['ip']); |
32 | 32 | return $input['update']; |
@@ -43,9 +43,9 @@ discard block |
||
43 | 43 | lock::set('BPT-MULTI-CURL'); |
44 | 44 | } |
45 | 45 | |
46 | - private static function getTimeout($url): float|int { |
|
46 | + private static function getTimeout($url): float | int { |
|
47 | 47 | $times = []; |
48 | - for ($i = 0; $i < 10; $i ++) { |
|
48 | + for ($i = 0; $i < 10; $i++) { |
|
49 | 49 | $ch = curl_init($url); |
50 | 50 | curl_setopt_array($ch, [CURLOPT_POSTFIELDS => json_encode([]), CURLOPT_TIMEOUT_MS => 100, CURLOPT_NOBODY => true, CURLOPT_RETURNTRANSFER => true, CURLOPT_SSL_VERIFYPEER => false, CURLOPT_SSL_VERIFYHOST => false, CURLOPT_CONNECTTIMEOUT_MS => 100, CURLOPT_HTTPHEADER => ['accept: application/json', 'content-type: application/json']]); |
51 | 51 | $start = microtime(true); |
@@ -56,8 +56,8 @@ discard block |
||
56 | 56 | return $timeout > 50 ? $timeout + 10 : 50; |
57 | 57 | } |
58 | 58 | |
59 | - private static function create($file,$timeout) { |
|
60 | - file_put_contents('receiver.php', '<?php http_response_code(200);ignore_user_abort();$ch = curl_init(\'' . $file . '\');curl_setopt_array($ch, [CURLOPT_POSTFIELDS => json_encode([\'update\'=>file_get_contents(\'php://input\'),\'ip\'=>$_SERVER[\'REMOTE_ADDR\']]), CURLOPT_TIMEOUT_MS => ' . $timeout . ', CURLOPT_RETURNTRANSFER => true, CURLOPT_SSL_VERIFYPEER => false, CURLOPT_SSL_VERIFYHOST => false, CURLOPT_CONNECTTIMEOUT_MS => ' . $timeout . ', CURLOPT_HTTPHEADER => [\'accept: application/json\', \'content-type: application/json\']]);curl_exec($ch);curl_close($ch);?>'); |
|
59 | + private static function create($file, $timeout) { |
|
60 | + file_put_contents('receiver.php', '<?php http_response_code(200);ignore_user_abort();$ch = curl_init(\''.$file.'\');curl_setopt_array($ch, [CURLOPT_POSTFIELDS => json_encode([\'update\'=>file_get_contents(\'php://input\'),\'ip\'=>$_SERVER[\'REMOTE_ADDR\']]), CURLOPT_TIMEOUT_MS => '.$timeout.', CURLOPT_RETURNTRANSFER => true, CURLOPT_SSL_VERIFYPEER => false, CURLOPT_SSL_VERIFYHOST => false, CURLOPT_CONNECTTIMEOUT_MS => '.$timeout.', CURLOPT_HTTPHEADER => [\'accept: application/json\', \'content-type: application/json\']]);curl_exec($ch);curl_close($ch);?>'); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | #[ArrayShape(['url' => "array|string|string[]", 'file' => "array|string|string[]"])] |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | /** |
20 | 20 | * @internal Only for BPT self usage , Don't use it in your source! |
21 | 21 | */ |
22 | - public static function init () { |
|
22 | + public static function init() { |
|
23 | 23 | if (settings::$multi) { |
24 | 24 | multi::init(); |
25 | 25 | } |
@@ -39,28 +39,28 @@ discard block |
||
39 | 39 | lock::deleteIfExist(['BPT-MULTI-EXEC', 'BPT-MULTI-CURL', 'getUpdate', 'getUpdateHook']); |
40 | 40 | } |
41 | 41 | |
42 | - protected static function setWebhook(string $url,string $secret = '') { |
|
42 | + protected static function setWebhook(string $url, string $secret = '') { |
|
43 | 43 | $res = BPT::setWebhook($url, settings::$certificate, max_connections: settings::$max_connection, allowed_updates: settings::$allowed_updates, drop_pending_updates: settings::$skip_old_updates, secret_token: $secret); |
44 | 44 | if (!BPT::$status) { |
45 | - logger::write("There is some problem happened , telegram response : \n".json_encode($res),loggerTypes::ERROR); |
|
46 | - BPT::exit(print_r($res,true)); |
|
45 | + logger::write("There is some problem happened , telegram response : \n".json_encode($res), loggerTypes::ERROR); |
|
46 | + BPT::exit(print_r($res, true)); |
|
47 | 47 | } |
48 | - logger::write('Webhook was set successfully',loggerTypes::INFO); |
|
48 | + logger::write('Webhook was set successfully', loggerTypes::INFO); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | protected static function checkURL() { |
52 | 52 | if (!(isset($_SERVER['SERVER_NAME']) && isset($_SERVER['REQUEST_URI']))) { |
53 | - logger::write('For using webhook receiver , you should open this file in your webserver(by domain)',loggerTypes::ERROR); |
|
53 | + logger::write('For using webhook receiver , you should open this file in your webserver(by domain)', loggerTypes::ERROR); |
|
54 | 54 | throw new bptException('WEBHOOK_NEED_URL'); |
55 | 55 | } |
56 | 56 | } |
57 | 57 | |
58 | 58 | protected static function setURL(): string { |
59 | 59 | if (isset($_GET['token'])) { |
60 | - logger::write("You can not specify token in url",loggerTypes::ERROR); |
|
60 | + logger::write("You can not specify token in url", loggerTypes::ERROR); |
|
61 | 61 | BPT::exit("You can not specify token in url"); |
62 | 62 | } |
63 | - return (isset(settings::$certificate) ? 'http://' : 'https://') . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']; |
|
63 | + return (isset(settings::$certificate) ? 'http://' : 'https://').$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']; |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | protected static function setCertificate() { |
@@ -75,8 +75,8 @@ discard block |
||
75 | 75 | self::checkURL(); |
76 | 76 | self::setCertificate(); |
77 | 77 | $url = self::setURL(); |
78 | - $secret = !empty(settings::$secret) ? settings::$secret : str_replace(':','---',settings::$token); |
|
79 | - self::setWebhook($url,$secret); |
|
78 | + $secret = !empty(settings::$secret) ? settings::$secret : str_replace(':', '---', settings::$token); |
|
79 | + self::setWebhook($url, $secret); |
|
80 | 80 | lock::save('BPT-HOOK', md5($secret)); |
81 | 81 | BPT::exit('Done'); |
82 | 82 | } |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | private static function checkSecret() { |
85 | 85 | $secret_hash = lock::read('BPT-HOOK'); |
86 | 86 | if ($secret_hash !== md5(self::getSecret())) { |
87 | - logger::write('This is not webhook set by BPT, webhook will reset',loggerTypes::WARNING); |
|
87 | + logger::write('This is not webhook set by BPT, webhook will reset', loggerTypes::WARNING); |
|
88 | 88 | self::processSetWebhook(); |
89 | 89 | } |
90 | 90 | } |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | * |
106 | 106 | * @return bool |
107 | 107 | */ |
108 | - public static function fastClose (int $timeout = 86400): bool { |
|
108 | + public static function fastClose(int $timeout = 86400): bool { |
|
109 | 109 | if (settings::$multi || !lock::exist('BPT-HOOK') || settings::$receiver !== \BPT\constants\receiver::WEBHOOK) { |
110 | 110 | return false; |
111 | 111 | } |