// ارسال به تلگرام function wptt_send_to_telegram($message, $chat_id = null) { $bots = get_option('wptt_bots', []); $chat_ids = get_option('wptt_chat_ids', ''); if (empty($bots) || empty($chat_ids)) { wptt_add_log('خطا: توکن ربات یا آیدی چت خالیه.'); return false; } $bot_token = $bots[0]['token'] ?? ''; // اول $chat_ids رو به رشته تبدیل میکنیم if (is_array($chat_ids)) { $chat_ids = implode(',', $chat_ids); } // حالا از $chat_ids استفاده میکنیم $target_chat = $chat_id ?: (!empty($chat_ids) && is_string($chat_ids) ? trim(explode(',', $chat_ids)[0]) : ''); if (empty($bot_token) || empty($target_chat)) { wptt_add_log('خطا: توکن یا چت هدف نامعتبر.'); return false; } $url = "https://api.telegram.org/bot$bot_token/sendMessage"; $params = [ 'chat_id' => $target_chat, 'text' => $message, 'parse_mode' => 'Markdown', ]; $args = [ 'body' => $params, 'sslverify' => false, 'timeout' => 30, ]; if (get_option('wptt_proxy_enable', 0)) { $proxy_address = get_option('wptt_proxy_address', ''); $proxy_port = get_option('wptt_proxy_port', ''); if (!empty($proxy_address) && !empty($proxy_port)) { $args['proxy'] = [ 'address' => $proxy_address, 'port' => $proxy_port, 'type' => 'HTTP', ]; wptt_add_log("استفاده از پراکسی: $proxy_address:$proxy_port"); } else { wptt_add_log('خطا: آدرس یا پورت پراکسی خالیه.'); } } wptt_add_log("در حال ارسال به $target_chat: $url"); $response = wp_remote_post($url, $args); if (is_wp_error($response)) { wptt_add_log('خطا در ارسال: ' . $response->get_error_message()); return false; } $body = json_decode(wp_remote_retrieve_body($response), true); if ($body['ok']) { wptt_add_log("ارسال موفق به $target_chat"); return true; } else { wptt_add_log('خطا در ارسال: ' . ($body['description'] ?? 'نامشخص')); return false; } }
باران احمدی به عنوان هنرپیشه در مجموعه نمایش خانگی بی گناه حضور داشته است.