#gemini #gtk #gio #client #gemini-protocol #networking

ggemini

Glib/Gio-oriented network API for Gemini protocol

12 breaking releases

new 0.13.0 Dec 14, 2024
0.11.0 Dec 1, 2024
0.10.0 Nov 16, 2024

#1060 in Network programming

Download history 392/week @ 2024-10-18 536/week @ 2024-10-25 336/week @ 2024-11-01 25/week @ 2024-11-08 118/week @ 2024-11-15 18/week @ 2024-11-22 173/week @ 2024-11-29 171/week @ 2024-12-06

480 downloads per month
Used in yoda

MIT license

41KB
883 lines

ggemini

Glib/Gio-oriented network API for Gemini protocol

[!IMPORTANT] Project in development!

GGemini (or G-Gemini) library written as the client extension for Yoda, it also could be useful for other GTK-based applications with glib and gio (2.66+) dependency.

Install

cargo add ggemini

Usage

Example

use gtk::gio::*;
use gtk::glib::*;

use ggemini::client::{
    connection::{
        response::meta::{Mime, Status},
        Response,
    },
    Client, Error,
};

fn main() -> ExitCode {
    Client::new().request_async(
        Uri::parse("gemini://geminiprotocol.net/", UriFlags::NONE).unwrap(),
        Priority::DEFAULT,
        Cancellable::new(),
        None, // optional `GTlsCertificate`
        |result: Result<Response, Error>| match result {
            Ok(response) => {
                // route by status code
                match response.meta.status {
                    // is code 20, handle `GIOStream` by content type
                    Status::Success => match response.meta.mime.unwrap().value.as_str() {
                        // is gemtext, see ggemtext crate to parse
                        "text/gemini" => todo!(),
                        // other types
                        _ => todo!(),
                    },
                    _ => todo!(),
                }
            }
            Err(e) => todo!("{e}"),
        },
    );
    ExitCode::SUCCESS
}

See also

Dependencies

~7–15MB
~217K SLoC