Library
Module
Module type
Parameter
Class
Class type
This module provides the core abstraction, it does not depend on any platform code, and does not interact with the environment.
Gemini request. See Request.
Gemini response. See Response.
Status of a Gemini response. See Status.
Mime type of a document. See Mime.
Body of Gemini response. See Body.
module Gemtext : sig ... end
Implementation of the Gemini own native response format. Note that if a string containing line breaks (CR
or CRLF
) is given to functions heading
, list_item
and quote
only the first line will be formatted and the others treated as normal text. To avoid this behavior, see Mehari.paragraph
.
val paragraph : (string -> Gemtext.line) -> string -> Gemtext.t
paragraph to_gemtext str
is a convenient function to transform a string containing line breaks (CR
or CRLF
) into a Gemtext document.
open Mehari.Gemtext
let () = assert (Mehari.paragraph quote "hello\nworld" = [ quote "hello"; quote "world" ])
val target : 'a request -> string
Path of requested URL. For example, "/foo/bar".
val sni : 'a request -> string
Server name indication TLS extension.
val query : 'a request -> string option
User uri query.
val client_cert : 'a request -> X509.Certificate.t list
User client certificates.
val param : 'a request -> int -> string
param req n
retrieves the n
-th path parameter of req
.
Creates a new response
with given Mehari.status
.
val response_text : string -> response
val response_raw :
[ `Body of string | `Full of int * string * string ] ->
response
A wrapper around Gemini status codes.
val input : string status
val sensitive_input : string status
val redirect_temp : string status
val redirect_perm : string status
val temporary_failure : string status
val cgi_error : string status
val proxy_error : string status
val slow_down : int status
val perm_failure : string status
val not_found : string status
val gone : string status
val proxy_request_refused : string status
val bad_request : string status
val client_cert_req : string status
val cert_not_authorised : string status
val cert_not_valid : string status
val code_of_status : 'a status -> int
code_of_status s
is status code associated with status s
.
Mehari offers ways to keep client connections open forever and stream data in real time such as seq
and stream
functions when the flush
parameter is specified. It is important to note that most Gemini clients do not support streaming and should be used with caution. That's why this parameter is set to false
by default in all the functions that Mehari expose.
val lines : string list -> body
Creates a body
from given lines. Each line is written followed by a newline (LF
) character.
val page : title:string -> string -> body
page ~title content
creates a simple Gemtext body
of form:
# title
content
val seq : ?flush:bool -> string Stdlib.Seq.t -> body
Creates a body
from a string sequence. See A note on data stream response for a description of flush
parameter.
val stream : ?flush:bool -> ((string -> unit) -> unit) -> body
stream (fun consume -> ...)
creates a body
from a data stream. Each call to consume
write the given input on socket. Useful for stream data or file chunk in real time. See A note on data stream response for a description of flush
parameter.
val make_mime : ?charset:string -> string -> mime
make_mime ?charset mime
creates a mime
type from given charset
. Charset defaults to utf-8
if mime type begins with text/
.
val from_filename : ?charset:string -> string -> mime option
from_filename ?charset fname
tries to create a mime
by performing a mime lookup based on file extension of fname
.
Note that mime gemini
are not infered from files with .gmi
extension. See https://github.com/Psi-Prod/Mehari/issues/36.
val from_content :
?charset:string ->
tree:Conan.Tree.t ->
string ->
mime option
from_content ?charset ~tree c
tries to create a mime
type by performing a mime lookup based on content c
. tree
is the tree used to build the MIME database.
val no_mime : mime
Represents the absence of a mime. This is a shortcut for make_mime ""
.
val gemini : ?charset:string -> ?lang:string list -> unit -> mime
gemini ?charset ?lang ()
is text/gemini; charset=...; lang=...
.
val app_octet_stream : mime
app_octet_stream
is a shortcut for application/octet-stream
.
val plaintext : mime
plaintext
is a shortcut for text/plain; charset=utf-8
.
val text : string -> mime
text type
is a shortcut for text/type; charset=utf-8
.
module type NET = sig ... end
Module type containing all environment-dependent functions.
module type FS = sig ... end
Module type containing all file system dependent functions.