use-astro 0.0.1

Astro framework metadata primitives for RustUse
Documentation
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
#![forbid(unsafe_code)]
#![doc = include_str!("../README.md")]

use core::{fmt, str::FromStr};
use std::error::Error;

/// Astro version-family labels.
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub enum AstroVersionFamily {
    Astro2,
    Astro3,
    Astro4,
    Astro5,
}

impl AstroVersionFamily {
    /// Returns the version-family label.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Astro2 => "astro2",
            Self::Astro3 => "astro3",
            Self::Astro4 => "astro4",
            Self::Astro5 => "astro5",
        }
    }
}

impl fmt::Display for AstroVersionFamily {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter.write_str(self.as_str())
    }
}

impl FromStr for AstroVersionFamily {
    type Err = AstroTextError;

    fn from_str(input: &str) -> Result<Self, Self::Err> {
        match normalized_label(input)?.as_str() {
            "astro2" | "2" => Ok(Self::Astro2),
            "astro3" | "3" => Ok(Self::Astro3),
            "astro4" | "4" => Ok(Self::Astro4),
            "astro5" | "5" => Ok(Self::Astro5),
            _ => Err(AstroTextError::UnknownLabel),
        }
    }
}

/// Astro file-kind labels.
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub enum AstroFileKind {
    Page,
    Layout,
    Component,
    Content,
    Endpoint,
    Middleware,
    Config,
}

impl AstroFileKind {
    /// Returns the file-kind label.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Page => "page",
            Self::Layout => "layout",
            Self::Component => "component",
            Self::Content => "content",
            Self::Endpoint => "endpoint",
            Self::Middleware => "middleware",
            Self::Config => "config",
        }
    }
}

impl fmt::Display for AstroFileKind {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter.write_str(self.as_str())
    }
}

impl FromStr for AstroFileKind {
    type Err = AstroTextError;

    fn from_str(input: &str) -> Result<Self, Self::Err> {
        match normalized_label(input)?.as_str() {
            "page" => Ok(Self::Page),
            "layout" => Ok(Self::Layout),
            "component" => Ok(Self::Component),
            "content" => Ok(Self::Content),
            "endpoint" => Ok(Self::Endpoint),
            "middleware" => Ok(Self::Middleware),
            "config" => Ok(Self::Config),
            _ => Err(AstroTextError::UnknownLabel),
        }
    }
}

/// Astro directory labels.
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub enum AstroDirectoryKind {
    Pages,
    Layouts,
    Components,
    Content,
    Public,
    Src,
    Integrations,
}

impl AstroDirectoryKind {
    /// Returns the directory label.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Pages => "pages",
            Self::Layouts => "layouts",
            Self::Components => "components",
            Self::Content => "content",
            Self::Public => "public",
            Self::Src => "src",
            Self::Integrations => "integrations",
        }
    }
}

impl fmt::Display for AstroDirectoryKind {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter.write_str(self.as_str())
    }
}

impl FromStr for AstroDirectoryKind {
    type Err = AstroTextError;

    fn from_str(input: &str) -> Result<Self, Self::Err> {
        match normalized_label(input)?.as_str() {
            "pages" => Ok(Self::Pages),
            "layouts" => Ok(Self::Layouts),
            "components" => Ok(Self::Components),
            "content" => Ok(Self::Content),
            "public" => Ok(Self::Public),
            "src" => Ok(Self::Src),
            "integrations" => Ok(Self::Integrations),
            _ => Err(AstroTextError::UnknownLabel),
        }
    }
}

/// Astro rendering mode labels.
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub enum AstroRenderingMode {
    Static,
    Server,
    Hybrid,
}

impl AstroRenderingMode {
    /// Returns the rendering mode label.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Static => "static",
            Self::Server => "server",
            Self::Hybrid => "hybrid",
        }
    }
}

impl fmt::Display for AstroRenderingMode {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter.write_str(self.as_str())
    }
}

impl FromStr for AstroRenderingMode {
    type Err = AstroTextError;

    fn from_str(input: &str) -> Result<Self, Self::Err> {
        match normalized_label(input)?.as_str() {
            "static" => Ok(Self::Static),
            "server" | "ssr" => Ok(Self::Server),
            "hybrid" => Ok(Self::Hybrid),
            _ => Err(AstroTextError::UnknownLabel),
        }
    }
}

/// Common Astro config file labels.
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub enum AstroConfigFile {
    AstroConfigJs,
    AstroConfigMjs,
    AstroConfigTs,
    AstroConfigMts,
}

impl AstroConfigFile {
    /// Returns the config file label.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::AstroConfigJs => "astro.config.js",
            Self::AstroConfigMjs => "astro.config.mjs",
            Self::AstroConfigTs => "astro.config.ts",
            Self::AstroConfigMts => "astro.config.mts",
        }
    }
}

impl fmt::Display for AstroConfigFile {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter.write_str(self.as_str())
    }
}

impl FromStr for AstroConfigFile {
    type Err = AstroTextError;

    fn from_str(input: &str) -> Result<Self, Self::Err> {
        match normalized_label(input)?.as_str() {
            "astroconfigjs" | "astro.config.js" => Ok(Self::AstroConfigJs),
            "astroconfigmjs" | "astro.config.mjs" => Ok(Self::AstroConfigMjs),
            "astroconfigts" | "astro.config.ts" => Ok(Self::AstroConfigTs),
            "astroconfigmts" | "astro.config.mts" => Ok(Self::AstroConfigMts),
            _ => Err(AstroTextError::UnknownLabel),
        }
    }
}

/// Validated Astro integration name metadata.
#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct AstroIntegrationName(String);

impl AstroIntegrationName {
    /// Creates Astro integration name metadata.
    ///
    /// # Errors
    ///
    /// Returns [`AstroTextError`] when `input` is empty, contains whitespace, or has unsupported characters.
    pub fn new(input: &str) -> Result<Self, AstroTextError> {
        validate_text(input, is_integration_character).map(Self)
    }

    /// Returns the integration name.
    #[must_use]
    pub fn as_str(&self) -> &str {
        &self.0
    }
}

impl fmt::Display for AstroIntegrationName {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter.write_str(self.as_str())
    }
}

impl FromStr for AstroIntegrationName {
    type Err = AstroTextError;

    fn from_str(input: &str) -> Result<Self, Self::Err> {
        Self::new(input)
    }
}

impl TryFrom<&str> for AstroIntegrationName {
    type Error = AstroTextError;

    fn try_from(value: &str) -> Result<Self, Self::Error> {
        Self::new(value)
    }
}

/// Validated Astro content collection name metadata.
#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct AstroContentCollectionName(String);

impl AstroContentCollectionName {
    /// Creates Astro content collection name metadata.
    ///
    /// # Errors
    ///
    /// Returns [`AstroTextError`] when `input` is empty, contains whitespace, or has unsupported characters.
    pub fn new(input: &str) -> Result<Self, AstroTextError> {
        validate_text(input, is_collection_character).map(Self)
    }

    /// Returns the content collection name.
    #[must_use]
    pub fn as_str(&self) -> &str {
        &self.0
    }
}

impl fmt::Display for AstroContentCollectionName {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter.write_str(self.as_str())
    }
}

impl FromStr for AstroContentCollectionName {
    type Err = AstroTextError;

    fn from_str(input: &str) -> Result<Self, Self::Err> {
        Self::new(input)
    }
}

impl TryFrom<&str> for AstroContentCollectionName {
    type Error = AstroTextError;

    fn try_from(value: &str) -> Result<Self, Self::Error> {
        Self::new(value)
    }
}

/// Error returned when Astro metadata text is invalid.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum AstroTextError {
    Empty,
    ContainsWhitespace,
    InvalidCharacter { character: char },
    UnknownLabel,
}

impl fmt::Display for AstroTextError {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Empty => formatter.write_str("Astro metadata text cannot be empty"),
            Self::ContainsWhitespace => {
                formatter.write_str("Astro metadata text cannot contain whitespace")
            }
            Self::InvalidCharacter { character } => {
                write!(formatter, "invalid Astro metadata character `{character}`")
            }
            Self::UnknownLabel => formatter.write_str("unknown Astro metadata label"),
        }
    }
}

impl Error for AstroTextError {}

fn validate_text(input: &str, is_allowed: fn(char) -> bool) -> Result<String, AstroTextError> {
    let trimmed = input.trim();
    if trimmed.is_empty() {
        return Err(AstroTextError::Empty);
    }
    if trimmed.chars().any(char::is_whitespace) {
        return Err(AstroTextError::ContainsWhitespace);
    }
    if let Some(character) = trimmed.chars().find(|character| !is_allowed(*character)) {
        return Err(AstroTextError::InvalidCharacter { character });
    }
    Ok(trimmed.to_string())
}

const fn is_integration_character(character: char) -> bool {
    character.is_ascii_alphanumeric() || matches!(character, '@' | '/' | '.' | '_' | '-')
}

const fn is_collection_character(character: char) -> bool {
    character.is_ascii_alphanumeric() || matches!(character, '_' | '-')
}

fn normalized_label(input: &str) -> Result<String, AstroTextError> {
    let trimmed = input.trim();
    if trimmed.is_empty() {
        return Err(AstroTextError::Empty);
    }
    Ok(trimmed
        .chars()
        .filter(|character| !matches!(character, '-' | '_' | ' '))
        .flat_map(char::to_lowercase)
        .collect())
}

#[cfg(test)]
mod tests {
    use super::{
        AstroConfigFile, AstroContentCollectionName, AstroDirectoryKind, AstroFileKind,
        AstroIntegrationName, AstroRenderingMode, AstroTextError, AstroVersionFamily,
    };

    #[test]
    fn validates_integration_names() -> Result<(), AstroTextError> {
        let integration = AstroIntegrationName::new("@astrojs/mdx")?;
        assert_eq!(integration.as_str(), "@astrojs/mdx");
        assert_eq!(AstroIntegrationName::new(""), Err(AstroTextError::Empty));
        assert_eq!(
            AstroIntegrationName::new("astro mdx"),
            Err(AstroTextError::ContainsWhitespace)
        );
        assert_eq!(
            AstroIntegrationName::new("astro💫"),
            Err(AstroTextError::InvalidCharacter { character: '💫' })
        );
        Ok(())
    }

    #[test]
    fn validates_collection_names() -> Result<(), AstroTextError> {
        let collection = AstroContentCollectionName::new("blog_posts")?;
        assert_eq!(collection.as_str(), "blog_posts");
        assert_eq!(
            AstroContentCollectionName::new("blog/posts"),
            Err(AstroTextError::InvalidCharacter { character: '/' })
        );
        Ok(())
    }

    #[test]
    fn parses_labels() -> Result<(), AstroTextError> {
        assert_eq!(
            "astro5".parse::<AstroVersionFamily>()?,
            AstroVersionFamily::Astro5
        );
        assert_eq!("page".parse::<AstroFileKind>()?, AstroFileKind::Page);
        assert_eq!(
            "src".parse::<AstroDirectoryKind>()?,
            AstroDirectoryKind::Src
        );
        assert_eq!(
            "server".parse::<AstroRenderingMode>()?,
            AstroRenderingMode::Server
        );
        assert_eq!(
            "astro.config.ts".parse::<AstroConfigFile>()?,
            AstroConfigFile::AstroConfigTs
        );
        assert_eq!(AstroRenderingMode::Hybrid.to_string(), "hybrid");
        Ok(())
    }
}