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
// SPDX-FileCopyrightText: 2022 Profian Inc. <opensource@profian.com>
// SPDX-License-Identifier: AGPL-3.0-only

use super::{Entity, Result};

use std::io::Read;
use std::ops::Deref;

use drawbridge_type::{Meta, TreeDirectory, TreeEntry, TreePath};

use mime::Mime;
use ureq::serde::Serialize;

pub struct Node<'a>(Entity<'a>);

impl<'a> Deref for Node<'a> {
    type Target = Entity<'a>;

    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl<'a> Node<'a> {
    pub fn new(entity: Entity<'a>, path: &TreePath) -> Self {
        if path.is_empty() {
            Self(entity)
        } else {
            Self(entity.child(&path.to_string()))
        }
    }

    pub fn create_bytes(&self, mime: &Mime, data: impl AsRef<[u8]>) -> Result<bool> {
        self.0.create_bytes(mime, data)
    }

    pub fn create_json(&self, mime: &Mime, val: &impl Serialize) -> Result<bool> {
        self.0.create_json(mime, val)
    }

    pub fn create_from(&self, meta: &Meta, rdr: impl Read) -> Result<bool> {
        self.0.create_from(meta, rdr)
    }

    pub fn create_directory<C>(&self, dir: &TreeDirectory<TreeEntry<C>>) -> Result<bool> {
        let mime = TreeDirectory::<C>::TYPE
            .parse()
            .expect("failed to parse tree directory media type");
        self.create_json(&mime, dir)
    }
}