š¾ Archived View for gemini.omarpolo.com āŗ post āŗ gemini-clojure.gmi captured on 2022-06-03 at 22:47:32. Gemini links have been rewritten to link to archived content
ā¬ ļø Previous capture (2022-01-08)
ā”ļø Next capture (2023-01-29)
-=-=-=-=-=-=-
Written while listening to āGood Advicesā by R.E.M..
Published: 2021-10-16
Tagged with:
Iād like to announce ācom.omarpolo/geminiā: a new clojure library to make Gemini requests.
com.omarpolo/gemini: A Clojure library to make Gemini requests
Itās also available on clojars, so go download it! :D
I needed something to ping antenna when I publish things on this blog. The site is assembled using some clojure scripts (not the most idiomatic clojure youād read, but it works) and Iām already shelling out to rsync for the upload. To ping antenna I wanted to do something natively.
Gemini is a simple protocol, isnāt it? Writing something from scratch should be simple, right?
It wasnāt simple, at least for me. I kinda get sleepy when I have to dig into the Java stdlib to learn how to do things. And I donāt know how to do networking at all in java, so there was a lot that I needed to learn.
I ended up writing a Java class, not because itās required but because itās easier. It exposes a really simple and barebone APIs to make Gemini requests and then wrote a more idiomatic (I hope) clojure wrapper around.
Speaking of Java, disabling the certificate validation wasnāt exactly straightforward (you need to provide your own X509ExtendedTrustManager) and quite surprisingly it doesnāt do SNI by default.
The magic spell to force a SSLSocket to do SNI is to
var params = new SSLParameters(); params.setServerNames(Collections.singletonList(new SNIHostName(host))) /* ā¦ */ var socket = ā¦; socket.setSSLParameters(params);
I was able to contribute back the same trick to jgemini, a Java graphical Gemini browser.
jgemini: A Java-based graphical browser for the Gemini protocol
The main function is āfetchā. It takes a map and return a map. So clojure-ish.
The feature list is pretty short honestly:
and thereās a major drawback: the ācloseā function must be called to clean things up. Thereās a āwith-requestā macro (similar to āwith-openā) that should help.
Itās easy to stream a request since Iām exporting the BufferedReader to clojure clients, you can just read from it. In combo with my gemtext library, itās possible to stream text/gemini!
com.omarpolo/gemtext: text/gemini for clojure/clojurescript
Gemini is simple, so there isnāt very much more to do. I planning to provide a function to control the certificates, so that one can implement TOFU on top of this library, but thatās that.
Iām still not completely happy of the provided APIs, but they doesnāt seem too bad and I donāt have a clue on how to improve them. Iām open to suggestions thought ;)
-- text: CC0 1.0; code: public domain (unless specified otherwise). No copyright here.
For comments, write at < blog at omarpolo dot com > or @op@bsd.network in the fediverse.