gleam/uri

Utilities for working with URIs

This module provides functions for working with URIs (for example, parsing URIs or encoding query strings). The functions in this module are implemented according to RFC 3986.

Query encoding (Form encoding) is defined in the w3c specification. https://www.w3.org/TR/html52/sec-forms.html#urlencoded-form-data

Types

Uri

Type representing holding the parsed components of an URI. All components of a URI are optional, except the path.

pub type Uri {
  Uri(
    scheme: Option(String),
    userinfo: Option(String),
    host: Option(String),
    port: Option(Int),
    path: String,
    query: Option(String),
    fragment: Option(String),
  )
}

Constructors

  • Uri( scheme: Option(String), userinfo: Option(String), host: Option(String), port: Option(Int), path: String, query: Option(String), fragment: Option(String), )

Functions

erl_parse

pub external fn erl_parse(String) -> Dynamic

parse

pub fn parse(string: String) -> Result(Uri, Nil)

Parses a complient URI string into the Uri Type. If the string is not a valid URI string then an error is returned.

The opposite operation is uri.to_string

parse_query

pub fn parse_query(
  query: String,
) -> Result(List(tuple(String, String)), Nil)

Parses an urlencoded query string into a list of key value pairs. Returns an error for invalid encoding.

The opposite operation is uri.query_to_string.

path_segments

pub fn path_segments(path: String) -> List(String)

Split the path section of a URI into it's constituent segments.

Removes empty segments and resolves dot-segments as specified in section 5.2 of the RFC.

query_to_string

pub fn query_to_string(
  query: List(tuple(String, String)),
) -> String

Encode a list of key value pairs as a URI query string.

The opposite operation is uri.parse_query.

to_string

pub fn to_string(uri: Uri) -> String

Encode a Uri value as a URI string.

The opposite operation is uri.parse.