diff --git a/src/app/browser/main/tab/page.cpp b/src/app/browser/main/tab/page.cpp index 9e3a7fa..477edf4 100644 --- a/src/app/browser/main/tab/page.cpp +++ b/src/app/browser/main/tab/page.cpp @@ -48,8 +48,66 @@ Page::Page() Page::~Page() = default; -// Actions +// Public actions void Page::update() { - // navbar->get_request_value() @TODO + // Route by request protocol + if ("file" == navbar->get_request_scheme()) + { + // @TODO + } + + else if ("gemini" == navbar->get_request_scheme()) + { + connect( + navbar->get_request_host(), + navbar->get_request_port().empty() ? 1965 : stoi( + navbar->get_request_port() + ) + ); + } + + else + { + // @TODO + } } + +// Private helpers +void Page::connect( + const std::string & host, + int port +) { + try + { + socket_client = Gio::SocketClient::create(); + + socket_client->connect_to_host_async( + host, + port, + [this](const Glib::RefPtr & result) + { + try + { + auto socket = socket_client->connect_finish( + result + ); + + // @TODO read/write data + + socket->close(); + } + + catch (const Glib::Error & exception) + { + // @TODO exception.what(); + } + } + ); + } + + catch (const std::exception & exception) + { + // @TODO exception.what(); + } +} \ No newline at end of file diff --git a/src/app/browser/main/tab/page.hpp b/src/app/browser/main/tab/page.hpp index bbd61b5..766a764 100644 --- a/src/app/browser/main/tab/page.hpp +++ b/src/app/browser/main/tab/page.hpp @@ -6,6 +6,10 @@ #include #include +#include +#include +#include + namespace app::browser::main::tab { namespace page @@ -19,10 +23,16 @@ namespace app::browser::main::tab private: Glib::RefPtr action_group; + Glib::RefPtr socket_client; page::Navbar * navbar; page::Content * content; + void connect( + const std::string & host, + int port + ); + public: Page();