identity_core/common/
string_or_url.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use std::convert::Infallible;
use std::fmt::Display;
use std::str::FromStr;

use serde::Deserialize;
use serde::Serialize;

use super::Url;

/// A type that represents either an arbitrary string or a URL.
#[derive(Debug, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, Serialize, Deserialize)]
#[serde(untagged)]
pub enum StringOrUrl {
  /// A well-formed URL.
  Url(Url),
  /// An arbitrary UTF-8 string.
  String(String),
}

impl StringOrUrl {
  /// Parses a [`StringOrUrl`] from a string.
  pub fn parse(s: &str) -> Result<Self, Infallible> {
    s.parse()
  }
  /// Returns a [`Url`] reference if `self` is [`StringOrUrl::Url`].
  pub fn as_url(&self) -> Option<&Url> {
    match self {
      Self::Url(url) => Some(url),
      _ => None,
    }
  }

  /// Returns a [`str`] reference if `self` is [`StringOrUrl::String`].
  pub fn as_string(&self) -> Option<&str> {
    match self {
      Self::String(s) => Some(s),
      _ => None,
    }
  }

  /// Returns whether `self` is a [`StringOrUrl::Url`].
  pub fn is_url(&self) -> bool {
    matches!(self, Self::Url(_))
  }

  /// Returns whether `self` is a [`StringOrUrl::String`].
  pub fn is_string(&self) -> bool {
    matches!(self, Self::String(_))
  }
}

impl Default for StringOrUrl {
  fn default() -> Self {
    StringOrUrl::String(String::default())
  }
}

impl Display for StringOrUrl {
  fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
    match self {
      Self::Url(url) => write!(f, "{url}"),
      Self::String(s) => write!(f, "{s}"),
    }
  }
}

impl FromStr for StringOrUrl {
  // Cannot fail.
  type Err = Infallible;
  fn from_str(s: &str) -> Result<Self, Self::Err> {
    Ok(
      s.parse::<Url>()
        .map(Self::Url)
        .unwrap_or_else(|_| Self::String(s.to_string())),
    )
  }
}

impl AsRef<str> for StringOrUrl {
  fn as_ref(&self) -> &str {
    match self {
      Self::String(s) => s,
      Self::Url(url) => url.as_str(),
    }
  }
}

impl From<Url> for StringOrUrl {
  fn from(value: Url) -> Self {
    Self::Url(value)
  }
}

impl From<String> for StringOrUrl {
  fn from(value: String) -> Self {
    Self::String(value)
  }
}

impl From<StringOrUrl> for String {
  fn from(value: StringOrUrl) -> Self {
    match value {
      StringOrUrl::String(s) => s,
      StringOrUrl::Url(url) => url.into_string(),
    }
  }
}

#[cfg(test)]
mod tests {
  use super::*;

  #[derive(Debug, Serialize, Deserialize)]
  struct TestData {
    string_or_url: StringOrUrl,
  }

  impl Default for TestData {
    fn default() -> Self {
      Self {
        string_or_url: StringOrUrl::Url(TEST_URL.parse().unwrap()),
      }
    }
  }

  const TEST_URL: &str = "file:///tmp/file.txt";

  #[test]
  fn deserialization_works() {
    let test_data: TestData = serde_json::from_value(serde_json::json!({ "string_or_url": TEST_URL })).unwrap();
    let target_url: Url = TEST_URL.parse().unwrap();
    assert_eq!(test_data.string_or_url.as_url(), Some(&target_url));
  }

  #[test]
  fn serialization_works() {
    assert_eq!(
      serde_json::to_value(TestData::default()).unwrap(),
      serde_json::json!({ "string_or_url": TEST_URL })
    )
  }

  #[test]
  fn parsing_works() {
    assert!(TEST_URL.parse::<StringOrUrl>().unwrap().is_url());
    assert!("I'm a random string :)".parse::<StringOrUrl>().unwrap().is_string());
  }
}