archival 0.15.0

The simplest CMS in existence
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
use anyhow::Result;
use indefinite::indefinite;
use serde::{Deserialize, Serialize};
use std::{
    fmt::{Debug, Display},
    hash::Hash,
};
#[cfg(feature = "typescript")]
use typescript_type_def::TypeDef;

use crate::{
    object::Object, util::integer_decode, value_path::ValuePath, Archival, FieldValue,
    FileSystemAPI,
};

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Hash)]
#[cfg_attr(feature = "typescript", derive(TypeDef))]
pub enum ArchivalEvent {
    RenameObject(RenameObjectEvent),
    AddObject(AddObjectEvent),
    AddRootObject(AddRootObjectEvent),
    DeleteObject(DeleteObjectEvent),
    EditField(EditFieldEvent),
    EditOrder(EditOrderEvent),
    AddChild(AddChildEvent),
    RemoveChild(RemoveChildEvent),
}

impl ArchivalEvent {
    pub fn object_name(&self) -> &str {
        match self {
            ArchivalEvent::AddObject(evt) => &evt.object,
            ArchivalEvent::AddRootObject(evt) => &evt.object,
            ArchivalEvent::DeleteObject(evt) => &evt.object,
            ArchivalEvent::EditField(evt) => &evt.object,
            ArchivalEvent::EditOrder(evt) => &evt.object,
            ArchivalEvent::AddChild(evt) => &evt.object,
            ArchivalEvent::RemoveChild(evt) => &evt.object,
            ArchivalEvent::RenameObject(evt) => &evt.object,
        }
    }
    /// Get the current filename of a given event. Note that for renames, this
    /// will return the current filename, not the name it was renamed from, as
    /// this method is usually used to find an (existing) file.
    pub fn filename(&self) -> &str {
        match self {
            ArchivalEvent::AddObject(evt) => &evt.filename,
            ArchivalEvent::AddRootObject(evt) => &evt.object,
            ArchivalEvent::DeleteObject(evt) => &evt.filename,
            ArchivalEvent::EditField(evt) => &evt.filename,
            ArchivalEvent::EditOrder(evt) => &evt.filename,
            ArchivalEvent::AddChild(evt) => &evt.filename,
            ArchivalEvent::RemoveChild(evt) => &evt.filename,
            ArchivalEvent::RenameObject(evt) => &evt.to,
        }
    }
}

impl ArchivalEvent {
    pub fn content<F>(&self, archival: &Archival<F>) -> Result<String>
    where
        F: FileSystemAPI + Clone + Debug,
    {
        match self {
            ArchivalEvent::DeleteObject(_) => {
                archival.object_file(self.object_name(), self.filename())
            }
            ArchivalEvent::RenameObject(evt) => archival.object_file(&evt.object, &evt.from),
            ArchivalEvent::AddObject(evt) => {
                let obj_def = archival.get_object_definition(&evt.object)?;
                let object =
                    Object::from_def(obj_def, &evt.filename, evt.order, evt.values.clone())?;
                Ok(object.to_toml(obj_def)?)
            }
            ArchivalEvent::AddRootObject(evt) => {
                let obj_def = archival.get_object_definition(&evt.object)?;
                let object = Object::from_def(obj_def, &evt.object, None, evt.values.clone())?;
                Ok(object.to_toml(obj_def)?)
            }
            evt => archival.object_file(evt.object_name(), evt.filename()),
        }
    }
}

impl Display for ArchivalEvent {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "{}",
            match self {
                ArchivalEvent::AddObject(evt) => {
                    format!("Add {} '{}'", indefinite(&evt.object), evt.filename)
                }
                ArchivalEvent::AddRootObject(evt) => {
                    format!("Add {}", evt.object)
                }
                ArchivalEvent::DeleteObject(evt) =>
                    format!("Delete {} '{}'", evt.object, evt.filename),
                ArchivalEvent::EditField(evt) => format!(
                    "Change field {} in {} '{}'",
                    evt.field, evt.object, evt.filename
                ),
                ArchivalEvent::EditOrder(evt) => {
                    format!("Update order of {} '{}'", evt.object, evt.filename)
                }
                ArchivalEvent::AddChild(evt) => {
                    let child_name = &evt
                        .path
                        .first()
                        .expect("AddChild has no object")
                        .to_string();
                    format!(
                        "Add {} child to {} '{}'",
                        indefinite(child_name),
                        evt.object,
                        evt.filename
                    )
                }
                ArchivalEvent::RemoveChild(evt) => {
                    let child_name = &evt
                        .path
                        .first()
                        .expect("RemoveChild has no object")
                        .to_string();
                    format!(
                        "Remove {} child from {} '{}'",
                        indefinite(child_name),
                        evt.object,
                        evt.filename
                    )
                }
                ArchivalEvent::RenameObject(evt) => {
                    format!(
                        "Rename {} '{}' to '{}'",
                        indefinite(&evt.object),
                        evt.from,
                        evt.to
                    )
                }
            }
        )
    }
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(TypeDef))]
pub enum ArchivalEventResponse {
    None,
    Index(usize),
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Hash)]
#[cfg_attr(feature = "typescript", derive(TypeDef))]
pub struct EditFieldEvent {
    pub object: String,
    pub filename: String,
    pub path: ValuePath,
    pub field: String,
    pub value: Option<FieldValue>,
    pub source: Option<String>,
}
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[cfg_attr(feature = "typescript", derive(TypeDef))]
pub struct EditOrderEvent {
    pub object: String,
    pub filename: String,
    pub order: Option<f64>,
    pub source: Option<String>,
}

impl Hash for EditOrderEvent {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.object.hash(state);
        self.filename.hash(state);
        self.order.map(integer_decode).hash(state);
        self.source.hash(state);
    }
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Hash)]
#[cfg_attr(feature = "typescript", derive(TypeDef))]
pub struct DeleteObjectEvent {
    pub object: String,
    pub filename: String,
    pub source: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Hash)]
#[cfg_attr(feature = "typescript", derive(TypeDef))]
pub struct AddObjectValue {
    pub path: ValuePath,
    pub value: FieldValue,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[cfg_attr(feature = "typescript", derive(TypeDef))]
pub struct AddObjectEvent {
    pub object: String,
    pub filename: String,
    pub order: Option<f64>,
    pub values: Vec<AddObjectValue>,
}

impl Hash for AddObjectEvent {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.object.hash(state);
        self.filename.hash(state);
        self.order.map(integer_decode).hash(state);
        self.values.hash(state);
    }
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Hash)]
#[cfg_attr(feature = "typescript", derive(TypeDef))]
pub struct AddRootObjectEvent {
    pub object: String,
    pub values: Vec<AddObjectValue>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Hash)]
#[cfg_attr(feature = "typescript", derive(TypeDef))]
pub struct AddChildEvent {
    pub object: String,
    pub filename: String,
    pub path: ValuePath,
    pub values: Vec<AddObjectValue>,
    /// If not provided, this will just append to the end of the child list.
    pub index: Option<usize>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Hash)]
#[cfg_attr(feature = "typescript", derive(TypeDef))]
pub struct RemoveChildEvent {
    pub object: String,
    pub filename: String,
    pub path: ValuePath,
    pub source: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Hash)]
#[cfg_attr(feature = "typescript", derive(TypeDef))]
pub struct RenameObjectEvent {
    pub object: String,
    pub from: String,
    pub to: String,
}

#[cfg(test)]
#[cfg(feature = "typescript")]
mod export_types {
    use std::fs;
    use typescript_type_def::{write_definition_file, DefinitionFileOptions};

    use super::*;

    #[test]
    fn run() {
        let mut buf = Vec::new();
        let options = DefinitionFileOptions {
            header: Some("// AUTO-GENERATED by typescript-type-def\n"),
            root_namespace: None,
        };
        write_definition_file::<_, ArchivalEvent>(&mut buf, options).unwrap();
        fs::write("./events.d.ts", buf).expect("Failed to write file");
    }
}

#[cfg(test)]
mod content_tests {
    use super::*;
    use crate::{file_system::unpack_zip, Archival, MemoryFileSystem};
    use anyhow::Result;

    fn setup_test_archival() -> Result<Archival<MemoryFileSystem>> {
        let mut fs = MemoryFileSystem::default();
        let zip = include_bytes!("../tests/fixtures/archival-website.zip");
        unpack_zip(zip.to_vec(), &mut fs)?;
        Archival::new(fs)
    }

    #[test]
    fn test_delete_object_content() -> Result<()> {
        let archival = setup_test_archival()?;
        let event = ArchivalEvent::DeleteObject(DeleteObjectEvent {
            object: "section".to_string(),
            filename: "first".to_string(),
            source: None,
        });
        let content = event.content(&archival)?;
        assert!(!content.is_empty());
        assert!(content.contains("name"));
        Ok(())
    }

    #[test]
    fn test_rename_object_content() -> Result<()> {
        let archival = setup_test_archival()?;
        let event = ArchivalEvent::RenameObject(RenameObjectEvent {
            object: "section".to_string(),
            from: "first".to_string(),
            to: "renamed".to_string(),
        });
        let content = event.content(&archival)?;
        assert!(!content.is_empty());
        assert!(content.contains("name"));
        Ok(())
    }

    #[test]
    fn test_add_object_content() -> Result<()> {
        let archival = setup_test_archival()?;
        let event = ArchivalEvent::AddObject(AddObjectEvent {
            object: "childlist".to_string(),
            filename: "new-childlist".to_string(),
            order: Some(5.0),
            values: vec![AddObjectValue {
                path: ValuePath::from_string("name"),
                value: FieldValue::String("New Child List".to_string()),
            }],
        });
        let content = event.content(&archival)?;
        assert!(!content.is_empty());
        assert!(content.contains("New Child List"));
        assert!(content.contains("order = 5"));
        Ok(())
    }

    #[test]
    fn test_add_root_object_content() -> Result<()> {
        let archival = setup_test_archival()?;
        let event = ArchivalEvent::AddRootObject(AddRootObjectEvent {
            object: "childlist".to_string(),
            values: vec![AddObjectValue {
                path: ValuePath::from_string("name"),
                value: FieldValue::String("Root List".to_string()),
            }],
        });
        let content = event.content(&archival)?;
        assert!(!content.is_empty());
        println!("content: {content}");
        assert!(content.contains("Root List"));
        Ok(())
    }

    #[test]
    fn test_edit_field_content() -> Result<()> {
        let archival = setup_test_archival()?;
        let event = ArchivalEvent::EditField(EditFieldEvent {
            object: "section".to_string(),
            filename: "first".to_string(),
            path: ValuePath::empty(),
            field: "name".to_string(),
            value: Some(FieldValue::String("Updated Name".to_string())),
            source: None,
        });
        let content = event.content(&archival)?;
        assert!(!content.is_empty());
        assert!(content.contains("name"));
        Ok(())
    }

    #[test]
    fn test_edit_order_content() -> Result<()> {
        let archival = setup_test_archival()?;
        let event = ArchivalEvent::EditOrder(EditOrderEvent {
            object: "section".to_string(),
            filename: "first".to_string(),
            order: Some(10.0),
            source: None,
        });
        let content = event.content(&archival)?;
        assert!(!content.is_empty());
        assert!(content.contains("name"));
        Ok(())
    }

    #[test]
    fn test_add_child_content() -> Result<()> {
        let archival = setup_test_archival()?;
        let event = ArchivalEvent::AddChild(AddChildEvent {
            object: "post".to_string(),
            filename: "a-post".to_string(),
            path: ValuePath::default().append(ValuePath::key("links")),
            values: vec![AddObjectValue {
                path: ValuePath::from_string("url"),
                value: FieldValue::String("https://example.com".to_string()),
            }],
            index: None,
        });
        let content = event.content(&archival)?;
        assert!(!content.is_empty());
        Ok(())
    }

    #[test]
    fn test_remove_child_content() -> Result<()> {
        let archival = setup_test_archival()?;
        let event = ArchivalEvent::RemoveChild(RemoveChildEvent {
            object: "post".to_string(),
            filename: "a-post".to_string(),
            path: ValuePath::default()
                .append(ValuePath::key("links"))
                .append(ValuePath::index(0)),
            source: None,
        });
        let content = event.content(&archival)?;
        assert!(!content.is_empty());
        Ok(())
    }
}