1 unstable release

new 0.1.0 Oct 29, 2024

#1195 in Web programming

Download history 119/week @ 2024-10-27

119 downloads per month

MIT license

16KB
325 lines

Murl

Non-stringly-typed URLs.

Urls are often used as strings, but what they really are is a serialized structure with fields such as scheme, host, path and query_params. In fact, murl URLs do not contain their string representation inside them.

This crate provides the Url struct, which should be the preferred way to create and modify URLs instead of fallibly parsing and/or concatenating strings, without ever exposing the user to things like percent-encoding issues.

Examples

Infallibly creating a URL

use std::str::FromStr;
use std::collections::BTreeMap;
use murl::{Url, Scheme, Host, Label};
use camino::Utf8PathBuf;
// non-fallibly creating the url
let mut url = Url{
    scheme: Scheme::Https,
    host: Host { // the hostname is "example.com"
        name: Label::from_str("example").unwrap(),
        domains:  vec![
            Label::from_str("com").unwrap(),
        ]
    },
    port: Some(443),
    path: Utf8PathBuf::from("/some/path"),
    query: BTreeMap::from([ // query params are just strings. Escaping is done automatically
        ("key with spaces".into(), "val&with&ampersands".into()),
        ("key=with=equals".into(), "val#with#hashtag".into()),
    ]),
    fragment: None,
};
assert_eq!(
    url.to_string(),
    "https://example.com:443/some/path?key%20with%20spaces=val%26with%26ampersands&key%3Dwith%3Dequals=val%23with%23hashtag"
);

Parsing a URL from a string

If you get a string from a user or an external process, you can fallibly parse it via FromStr:

use std::str::FromStr;
use std::collections::BTreeMap;
use murl::{Url, Scheme, Host, Label};
use camino::Utf8PathBuf;

let parsed_url = Url::from_str("http://example.com/some/path?a=123").unwrap();
let expected = Url{
    scheme: Scheme::Http,
    host: Host{
        name: Label::from_str("example").unwrap(),
        domains: vec![
            Label::from_str("com").unwrap()
        ],
    },
    port: None,
    path: Utf8PathBuf::from("/some/path"),
    query: BTreeMap::from([
        ("a".to_owned(), "123".to_owned())
    ]),
    fragment: None,
};
assert_eq!(parsed_url, expected);

Dependencies

~0.4–1MB
~19K SLoC