// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2023 // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #pragma once #include "telegram-bot-api/ClientManager.h" #include "telegram-bot-api/Query.h" #include "td/net/HttpInboundConnection.h" #include "td/net/HttpQuery.h" #include "td/actor/actor.h" #include "td/utils/buffer.h" #include "td/utils/Slice.h" #include "td/utils/Status.h" #include namespace telegram_bot_api { struct SharedData; class HttpConnection final : public td::HttpInboundConnection::Callback { public: explicit HttpConnection(td::ActorId client_manager, std::shared_ptr shared_data) : client_manager_(client_manager), shared_data_(std::move(shared_data)) { } void handle(td::unique_ptr http_query, td::ActorOwn connection) final; private: td::ActorId client_manager_; td::ActorOwn connection_; std::shared_ptr shared_data_; void hangup() final { connection_.release(); stop(); } void on_query_finished(td::Result> r_query); void send_response(int http_status_code, td::BufferSlice &&content, int retry_after); void send_http_error(int http_status_code, td::Slice description); }; } // namespace telegram_bot_api