Enum ammonia::UrlRelative

source ·
#[non_exhaustive]
pub enum UrlRelative<'a> { Deny, PassThrough, RewriteWithBase(Url), RewriteWithRoot { root: Url, path: String, }, Custom(Box<dyn UrlRelativeEvaluate<'a>>), }
Expand description

Policy for relative URLs, that is, URLs that do not specify the scheme in full.

This policy kicks in, if set, for any attribute named src or href, as well as the data attribute of an object tag.

§Examples

§Deny

  • <a href="test"> is a file-relative URL, and will be removed
  • <a href="/test"> is a domain-relative URL, and will be removed
  • <a href="//example.com/test"> is a scheme-relative URL, and will be removed
  • <a href="http://example.com/test"> is an absolute URL, and will be kept

§PassThrough

No changes will be made to any URLs, except if a disallowed scheme is used.

§RewriteWithBase

If the base is set to http://notriddle.com/some-directory/some-file

  • <a href="test"> will be rewritten to <a href="http://notriddle.com/some-directory/test">
  • <a href="/test"> will be rewritten to <a href="http://notriddle.com/test">
  • <a href="//example.com/test"> will be rewritten to <a href="http://example.com/test">
  • <a href="http://example.com/test"> is an absolute URL, so it will be kept as-is

§Custom

Pass the relative URL to a function. If it returns Some(string), then that one gets used. Otherwise, it will remove the attribute (like Deny does).

use std::borrow::Cow;
fn is_absolute_path(url: &str) -> bool {
    let u = url.as_bytes();
    // `//a/b/c` is "protocol-relative", meaning "a" is a hostname
    // `/a/b/c` is an absolute path, and what we want to do stuff to.
    u.get(0) == Some(&b'/') && u.get(1) != Some(&b'/')
}
fn evaluate(url: &str) -> Option<Cow<str>> {
    if is_absolute_path(url) {
        Some(Cow::Owned(String::from("/root") + url))
    } else {
        Some(Cow::Borrowed(url))
    }
}
fn main() {
    let a = ammonia::Builder::new()
        .url_relative(ammonia::UrlRelative::Custom(Box::new(evaluate)))
        .clean("<a href=/test/path>fixed</a><a href=path>passed</a><a href=http://google.com/>skipped</a>")
        .to_string();
    assert_eq!(a, "<a href=\"/root/test/path\" rel=\"noopener noreferrer\">fixed</a><a href=\"path\" rel=\"noopener noreferrer\">passed</a><a href=\"http://google.com/\" rel=\"noopener noreferrer\">skipped</a>");
}

This function is only applied to relative URLs. To filter all of the URLs, use the not-yet-implemented Content Security Policy.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Deny

Relative URLs will be completely stripped from the document.

§

PassThrough

Relative URLs will be passed through unchanged.

§

RewriteWithBase(Url)

Relative URLs will be changed into absolute URLs, based on this base URL.

§

RewriteWithRoot

Fields

§root: Url

The URL that is treated as the root by the resolver.

§path: String

The “current path” used to resolve relative paths.

Force absolute and relative paths into a particular directory.

Since the resolver does not affect fully-qualified URLs, it doesn’t prevent users from linking wherever they want. This feature only serves to make content more portable.

§Examples

root path url result
https://github.com/rust-ammonia/ammonia/blob/master/ README.md https://github.com/rust-ammonia/ammonia/blob/master/README.md
https://github.com/rust-ammonia/ammonia/blob/master/ README.md / https://github.com/rust-ammonia/ammonia/blob/master/
https://github.com/rust-ammonia/ammonia/blob/master/ README.md /CONTRIBUTING.md https://github.com/rust-ammonia/ammonia/blob/master/CONTRIBUTING.md
https://github.com/rust-ammonia/ammonia/blob/master README.md https://github.com/rust-ammonia/ammonia/blob/README.md
https://github.com/rust-ammonia/ammonia/blob/master README.md / https://github.com/rust-ammonia/ammonia/blob/
https://github.com/rust-ammonia/ammonia/blob/master README.md /CONTRIBUTING.md https://github.com/rust-ammonia/ammonia/blob/CONTRIBUTING.md
https://github.com/rust-ammonia/ammonia/blob/master/ https://github.com/rust-ammonia/ammonia/blob/master/
https://github.com/rust-ammonia/ammonia/blob/master/ / https://github.com/rust-ammonia/ammonia/blob/master/
https://github.com/rust-ammonia/ammonia/blob/master/ /CONTRIBUTING.md https://github.com/rust-ammonia/ammonia/blob/master/CONTRIBUTING.md
https://github.com/ rust-ammonia/ammonia/blob/master/README.md https://github.com/rust-ammonia/ammonia/blob/master/README.md
https://github.com/ rust-ammonia/ammonia/blob/master/README.md / https://github.com/
https://github.com/ rust-ammonia/ammonia/blob/master/README.md CONTRIBUTING.md https://github.com/rust-ammonia/ammonia/blob/master/CONTRIBUTING.md
https://github.com/ rust-ammonia/ammonia/blob/master/README.md /CONTRIBUTING.md https://github.com/CONTRIBUTING.md
§

Custom(Box<dyn UrlRelativeEvaluate<'a>>)

Rewrite URLs with a custom function.

Trait Implementations§

source§

impl<'a> Debug for UrlRelative<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for UrlRelative<'a>

§

impl<'a> !RefUnwindSafe for UrlRelative<'a>

§

impl<'a> Send for UrlRelative<'a>

§

impl<'a> Sync for UrlRelative<'a>

§

impl<'a> Unpin for UrlRelative<'a>

§

impl<'a> !UnwindSafe for UrlRelative<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.