aboutsummaryrefslogtreecommitdiffstats
path: root/src/db.rs
blob: 51fecd14674e58508120c85a5ca0a1e3593d8358 (plain) (blame)
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
use crate::prelude::*;

use std::io::{Read as _, Write as _};
use tokio::io::{AsyncReadExt as _, AsyncWriteExt as _};

#[derive(
    serde::Serialize, serde::Deserialize, Debug, Clone, Eq, PartialEq,
)]
pub struct Entry {
    pub id: String,
    pub org_id: Option<String>,
    pub folder: Option<String>,
    pub name: String,
    pub username: Option<String>,
    pub password: Option<String>,
    pub notes: Option<String>,
    pub history: Vec<HistoryEntry>,
}

#[derive(
    serde::Serialize, serde::Deserialize, Debug, Clone, Eq, PartialEq,
)]
pub struct HistoryEntry {
    pub last_used_date: String,
    pub password: String,
}

#[derive(serde::Serialize, serde::Deserialize, Default, Debug)]
pub struct Db {
    pub access_token: Option<String>,
    pub refresh_token: Option<String>,

    pub iterations: Option<u32>,
    pub protected_key: Option<String>,

    pub entries: Vec<Entry>,
}

impl Db {
    pub fn new() -> Self {
        Self::default()
    }

    pub fn load(email: &str) -> Result<Self> {
        let mut fh = std::fs::File::open(Self::filename(email))
            .context(crate::error::LoadDb)?;
        let mut json = String::new();
        fh.read_to_string(&mut json).context(crate::error::LoadDb)?;
        let slf: Self =
            serde_json::from_str(&json).context(crate::error::LoadDbJson)?;
        Ok(slf)
    }

    pub async fn load_async(email: &str) -> Result<Self> {
        let mut fh = tokio::fs::File::open(Self::filename(email))
            .await
            .context(crate::error::LoadDbAsync)?;
        let mut json = String::new();
        fh.read_to_string(&mut json)
            .await
            .context(crate::error::LoadDbAsync)?;
        let slf: Self =
            serde_json::from_str(&json).context(crate::error::LoadDbJson)?;
        Ok(slf)
    }

    // XXX need to make this atomic
    pub fn save(&self, email: &str) -> Result<()> {
        let filename = Self::filename(email);
        // unwrap is safe here because Self::filename is explicitly
        // constructed as a filename in a directory
        std::fs::create_dir_all(filename.parent().unwrap())
            .context(crate::error::SaveDb)?;
        let mut fh =
            std::fs::File::create(filename).context(crate::error::SaveDb)?;
        fh.write_all(
            serde_json::to_string(self)
                .context(crate::error::SaveDbJson)?
                .as_bytes(),
        )
        .context(crate::error::SaveDb)?;
        Ok(())
    }

    // XXX need to make this atomic
    pub async fn save_async(&self, email: &str) -> Result<()> {
        let filename = Self::filename(email);
        // unwrap is safe here because Self::filename is explicitly
        // constructed as a filename in a directory
        tokio::fs::create_dir_all(filename.parent().unwrap())
            .await
            .context(crate::error::SaveDbAsync)?;
        let mut fh = tokio::fs::File::create(filename)
            .await
            .context(crate::error::SaveDbAsync)?;
        fh.write_all(
            serde_json::to_string(self)
                .context(crate::error::SaveDbJson)?
                .as_bytes(),
        )
        .await
        .context(crate::error::SaveDbAsync)?;
        Ok(())
    }

    pub fn remove(email: &str) -> Result<()> {
        let filename = Self::filename(email);
        let res = std::fs::remove_file(filename);
        if let Err(e) = &res {
            if e.kind() == std::io::ErrorKind::NotFound {
                return Ok(());
            }
        }
        res.context(crate::error::RemoveDb)?;
        Ok(())
    }

    pub fn needs_login(&self) -> bool {
        self.access_token.is_none()
            || self.refresh_token.is_none()
            || self.iterations.is_none()
            || self.protected_key.is_none()
    }

    fn filename(email: &str) -> std::path::PathBuf {
        crate::dirs::cache_dir().join(format!("{}.json", email))
    }
}