Skip to main content

use_content_negotiation/
lib.rs

1#![forbid(unsafe_code)]
2#![doc = include_str!("../README.md")]
3
4use core::{fmt, str::FromStr};
5use std::error::Error;
6
7/// Error returned when API primitive text or labels are invalid.
8#[derive(Clone, Copy, Debug, Eq, PartialEq)]
9pub enum ApiPrimitiveError {
10    /// The supplied value was empty after trimming.
11    Empty,
12    /// The supplied value used syntax this crate rejects.
13    Invalid,
14    /// The supplied label was not recognized.
15    Unknown,
16}
17
18impl fmt::Display for ApiPrimitiveError {
19    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
20        match self {
21            Self::Empty => formatter.write_str("API primitive value cannot be empty"),
22            Self::Invalid => formatter.write_str("invalid API primitive value"),
23            Self::Unknown => formatter.write_str("unknown API primitive label"),
24        }
25    }
26}
27
28impl Error for ApiPrimitiveError {}
29
30fn validate_api_text(value: &str) -> Result<&str, ApiPrimitiveError> {
31    let trimmed = value.trim();
32    if trimmed.is_empty() {
33        return Err(ApiPrimitiveError::Empty);
34    }
35    if trimmed.chars().any(char::is_control) {
36        return Err(ApiPrimitiveError::Invalid);
37    }
38    Ok(trimmed)
39}
40
41macro_rules! text_newtype {
42    ($name:ident) => {
43        #[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
44        pub struct $name(String);
45
46        impl $name {
47            /// Creates validated text metadata.
48            ///
49            /// # Errors
50            ///
51            /// Returns [ApiPrimitiveError] when the value is empty or contains control characters.
52            pub fn new(value: impl AsRef<str>) -> Result<Self, ApiPrimitiveError> {
53                validate_api_text(value.as_ref()).map(|value| Self(value.to_owned()))
54            }
55
56            /// Parses validated text metadata.
57            ///
58            /// # Errors
59            ///
60            /// Returns [ApiPrimitiveError] when validation fails.
61            pub fn parse(value: impl AsRef<str>) -> Result<Self, ApiPrimitiveError> {
62                Self::new(value)
63            }
64
65            /// Returns the stored text.
66            #[must_use]
67            pub fn as_str(&self) -> &str {
68                &self.0
69            }
70
71            /// Consumes the value and returns the stored text.
72            #[must_use]
73            pub fn into_string(self) -> String {
74                self.0
75            }
76        }
77
78        impl AsRef<str> for $name {
79            fn as_ref(&self) -> &str {
80                self.as_str()
81            }
82        }
83
84        impl fmt::Display for $name {
85            fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
86                formatter.write_str(self.as_str())
87            }
88        }
89
90        impl FromStr for $name {
91            type Err = ApiPrimitiveError;
92
93            fn from_str(value: &str) -> Result<Self, Self::Err> {
94                Self::new(value)
95            }
96        }
97
98        impl TryFrom<&str> for $name {
99            type Error = ApiPrimitiveError;
100
101            fn try_from(value: &str) -> Result<Self, Self::Error> {
102                Self::new(value)
103            }
104        }
105    };
106}
107
108text_newtype!(AcceptedMediaType);
109text_newtype!(ContentPreference);
110text_newtype!(LanguagePreference);
111text_newtype!(EncodingPreference);
112
113/// Content negotiation preference kind labels.
114#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
115pub enum PreferenceKind {
116    /// A stable label variant.
117    MediaType,
118    /// A stable label variant.
119    Language,
120    /// A stable label variant.
121    Encoding,
122}
123
124impl PreferenceKind {
125    /// Returns the stable label.
126    #[must_use]
127    pub const fn as_str(self) -> &'static str {
128        match self {
129            Self::MediaType => "media-type",
130            Self::Language => "language",
131            Self::Encoding => "encoding",
132        }
133    }
134}
135
136impl Default for PreferenceKind {
137    fn default() -> Self {
138        Self::MediaType
139    }
140}
141
142impl fmt::Display for PreferenceKind {
143    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
144        formatter.write_str(self.as_str())
145    }
146}
147
148impl FromStr for PreferenceKind {
149    type Err = ApiPrimitiveError;
150
151    fn from_str(value: &str) -> Result<Self, Self::Err> {
152        let trimmed = value.trim();
153        if trimmed.is_empty() {
154            return Err(ApiPrimitiveError::Empty);
155        }
156        let normalized = trimmed.to_ascii_lowercase().replace('_', "-");
157        match normalized.as_str() {
158            "media-type" => Ok(Self::MediaType),
159            "language" => Ok(Self::Language),
160            "encoding" => Ok(Self::Encoding),
161            _ => Err(ApiPrimitiveError::Unknown),
162        }
163    }
164}
165
166/// Lightweight metadata tying this crate's primary text and label together.
167#[derive(Clone, Debug, Eq, PartialEq)]
168pub struct PrimitiveMetadata {
169    name: AcceptedMediaType,
170    kind: PreferenceKind,
171}
172
173impl PrimitiveMetadata {
174    /// Creates primitive metadata.
175    #[must_use]
176    pub const fn new(name: AcceptedMediaType, kind: PreferenceKind) -> Self {
177        Self { name, kind }
178    }
179
180    /// Returns the primary text value.
181    #[must_use]
182    pub const fn name(&self) -> &AcceptedMediaType {
183        &self.name
184    }
185
186    /// Returns the primary label.
187    #[must_use]
188    pub const fn kind(&self) -> PreferenceKind {
189        self.kind
190    }
191}
192
193/// A quality value scaled from 0 to 1000.
194#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
195pub struct QualityValue(u16);
196
197impl QualityValue {
198    /// Creates a quality value from a 0-1000 scaled integer.
199    pub const fn from_millis(value: u16) -> Result<Self, ApiPrimitiveError> {
200        if value <= 1000 {
201            Ok(Self(value))
202        } else {
203            Err(ApiPrimitiveError::Invalid)
204        }
205    }
206
207    /// Returns the scaled integer representation.
208    #[must_use]
209    pub const fn millis(self) -> u16 {
210        self.0
211    }
212}
213
214impl Default for QualityValue {
215    fn default() -> Self {
216        Self(1000)
217    }
218}
219
220#[cfg(test)]
221mod tests {
222    use super::*;
223
224    #[test]
225    fn parses_and_displays_text() -> Result<(), ApiPrimitiveError> {
226        let value = AcceptedMediaType::new("application/json")?;
227
228        assert_eq!(value.as_str(), "application/json");
229        assert_eq!(value.to_string(), "application/json");
230        assert_eq!("application/json".parse::<AcceptedMediaType>()?, value);
231        Ok(())
232    }
233
234    #[test]
235    fn rejects_empty_text() {
236        assert_eq!(AcceptedMediaType::new(""), Err(ApiPrimitiveError::Empty));
237    }
238
239    #[test]
240    fn parses_and_displays_labels() -> Result<(), ApiPrimitiveError> {
241        let kind = "media-type".parse::<PreferenceKind>()?;
242
243        assert_eq!(kind, PreferenceKind::MediaType);
244        assert_eq!(kind.to_string(), "media-type");
245        Ok(())
246    }
247
248    #[test]
249    fn creates_metadata() -> Result<(), ApiPrimitiveError> {
250        let metadata = PrimitiveMetadata::new(
251            AcceptedMediaType::new("application/json")?,
252            PreferenceKind::default(),
253        );
254
255        assert_eq!(metadata.name().as_str(), "application/json");
256        assert_eq!(metadata.kind(), PreferenceKind::default());
257        Ok(())
258    }
259}