1#![forbid(unsafe_code)]
2#![doc = include_str!("../README.md")]
3
4use core::{fmt, str::FromStr};
5use std::error::Error;
6
7#[derive(Clone, Copy, Debug, Eq, PartialEq)]
9pub enum ApiPrimitiveError {
10 Empty,
12 Invalid,
14 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 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 pub fn parse(value: impl AsRef<str>) -> Result<Self, ApiPrimitiveError> {
62 Self::new(value)
63 }
64
65 #[must_use]
67 pub fn as_str(&self) -> &str {
68 &self.0
69 }
70
71 #[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!(ApiResourceName);
109text_newtype!(ApiResourceId);
110text_newtype!(ApiResourceCollection);
111text_newtype!(ApiResourcePath);
112text_newtype!(ApiResourceRelationship);
113
114#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
116pub enum ApiResourceAction {
117 Read,
119 List,
121 Create,
123 Update,
125 Delete,
127 Archive,
129 Restore,
131}
132
133impl ApiResourceAction {
134 #[must_use]
136 pub const fn as_str(self) -> &'static str {
137 match self {
138 Self::Read => "read",
139 Self::List => "list",
140 Self::Create => "create",
141 Self::Update => "update",
142 Self::Delete => "delete",
143 Self::Archive => "archive",
144 Self::Restore => "restore",
145 }
146 }
147}
148
149impl Default for ApiResourceAction {
150 fn default() -> Self {
151 Self::Read
152 }
153}
154
155impl fmt::Display for ApiResourceAction {
156 fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
157 formatter.write_str(self.as_str())
158 }
159}
160
161impl FromStr for ApiResourceAction {
162 type Err = ApiPrimitiveError;
163
164 fn from_str(value: &str) -> Result<Self, Self::Err> {
165 let trimmed = value.trim();
166 if trimmed.is_empty() {
167 return Err(ApiPrimitiveError::Empty);
168 }
169 let normalized = trimmed.to_ascii_lowercase().replace('_', "-");
170 match normalized.as_str() {
171 "read" => Ok(Self::Read),
172 "list" => Ok(Self::List),
173 "create" => Ok(Self::Create),
174 "update" => Ok(Self::Update),
175 "delete" => Ok(Self::Delete),
176 "archive" => Ok(Self::Archive),
177 "restore" => Ok(Self::Restore),
178 _ => Err(ApiPrimitiveError::Unknown),
179 }
180 }
181}
182
183#[derive(Clone, Debug, Eq, PartialEq)]
185pub struct PrimitiveMetadata {
186 name: ApiResourceName,
187 kind: ApiResourceAction,
188}
189
190impl PrimitiveMetadata {
191 #[must_use]
193 pub const fn new(name: ApiResourceName, kind: ApiResourceAction) -> Self {
194 Self { name, kind }
195 }
196
197 #[must_use]
199 pub const fn name(&self) -> &ApiResourceName {
200 &self.name
201 }
202
203 #[must_use]
205 pub const fn kind(&self) -> ApiResourceAction {
206 self.kind
207 }
208}
209
210#[cfg(test)]
211mod tests {
212 use super::*;
213
214 #[test]
215 fn parses_and_displays_text() -> Result<(), ApiPrimitiveError> {
216 let value = ApiResourceName::new("users")?;
217
218 assert_eq!(value.as_str(), "users");
219 assert_eq!(value.to_string(), "users");
220 assert_eq!("users".parse::<ApiResourceName>()?, value);
221 Ok(())
222 }
223
224 #[test]
225 fn rejects_empty_text() {
226 assert_eq!(ApiResourceName::new(""), Err(ApiPrimitiveError::Empty));
227 }
228
229 #[test]
230 fn parses_and_displays_labels() -> Result<(), ApiPrimitiveError> {
231 let kind = "read".parse::<ApiResourceAction>()?;
232
233 assert_eq!(kind, ApiResourceAction::Read);
234 assert_eq!(kind.to_string(), "read");
235 Ok(())
236 }
237
238 #[test]
239 fn creates_metadata() -> Result<(), ApiPrimitiveError> {
240 let metadata =
241 PrimitiveMetadata::new(ApiResourceName::new("users")?, ApiResourceAction::default());
242
243 assert_eq!(metadata.name().as_str(), "users");
244 assert_eq!(metadata.kind(), ApiResourceAction::default());
245 Ok(())
246 }
247}