aven-core 0.1.12

Core library for the Aven local-first task manager
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
use std::fmt;
use std::process::Command;
use std::str::FromStr;

use getrandom::fill as fill_random;
use serde::{Deserialize, Deserializer, Serialize};
use sqlx::database::Database;
use sqlx::decode::Decode;
use sqlx::encode::{Encode, IsNull};
use sqlx::error::BoxDynError;
use sqlx::sqlite::{Sqlite, SqliteTypeInfo, SqliteValueRef};
use sqlx::types::Type;

pub const BASE32: &[u8] = b"0123456789ABCDEFGHJKMNPQRSTVWXYZ";

#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize)]
#[serde(transparent)]
pub struct WorkspaceId(String);

#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize)]
#[serde(transparent)]
pub struct ProjectId(String);

#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize)]
#[serde(transparent)]
pub struct TaskId(String);

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct InvalidWorkspaceId;

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct InvalidProjectId;

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct InvalidTaskId;

#[allow(clippy::new_without_default)]
impl WorkspaceId {
    pub fn new() -> Self {
        Self(new_id())
    }

    pub fn as_str(&self) -> &str {
        &self.0
    }
}

#[allow(clippy::new_without_default)]
impl ProjectId {
    pub fn new() -> Self {
        Self(new_id())
    }

    pub fn as_str(&self) -> &str {
        &self.0
    }
}

#[allow(clippy::new_without_default)]
impl TaskId {
    pub fn new() -> Self {
        Self(new_id())
    }

    pub fn as_str(&self) -> &str {
        &self.0
    }
}

impl std::ops::Deref for TaskId {
    type Target = str;

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

impl AsRef<str> for TaskId {
    fn as_ref(&self) -> &str {
        self.as_str()
    }
}

impl std::borrow::Borrow<str> for TaskId {
    fn borrow(&self) -> &str {
        self.as_str()
    }
}

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

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

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

impl fmt::Display for InvalidWorkspaceId {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter.write_str("workspace ID must be 16 Crockford Base32 characters")
    }
}

impl fmt::Display for InvalidProjectId {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter.write_str("project ID must be 16 Crockford Base32 characters")
    }
}

impl fmt::Display for InvalidTaskId {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter.write_str("task ID must be 16 Crockford Base32 characters")
    }
}

impl std::error::Error for InvalidWorkspaceId {}
impl std::error::Error for InvalidProjectId {}
impl std::error::Error for InvalidTaskId {}

impl FromStr for WorkspaceId {
    type Err = InvalidWorkspaceId;

    fn from_str(value: &str) -> Result<Self, Self::Err> {
        if value.len() == 16 && value.bytes().all(|byte| BASE32.contains(&byte)) {
            Ok(Self(value.to_string()))
        } else {
            Err(InvalidWorkspaceId)
        }
    }
}

impl FromStr for ProjectId {
    type Err = InvalidProjectId;

    fn from_str(value: &str) -> Result<Self, Self::Err> {
        if value.len() == 16 && value.bytes().all(|byte| BASE32.contains(&byte)) {
            Ok(Self(value.to_string()))
        } else {
            Err(InvalidProjectId)
        }
    }
}

impl FromStr for TaskId {
    type Err = InvalidTaskId;

    fn from_str(value: &str) -> Result<Self, Self::Err> {
        if value.len() == 16 && value.bytes().all(|byte| BASE32.contains(&byte)) {
            Ok(Self(value.to_string()))
        } else {
            Err(InvalidTaskId)
        }
    }
}

impl TryFrom<String> for WorkspaceId {
    type Error = InvalidWorkspaceId;

    fn try_from(value: String) -> Result<Self, Self::Error> {
        value.parse()
    }
}

impl TryFrom<String> for ProjectId {
    type Error = InvalidProjectId;

    fn try_from(value: String) -> Result<Self, Self::Error> {
        value.parse()
    }
}

impl TryFrom<String> for TaskId {
    type Error = InvalidTaskId;

    fn try_from(value: String) -> Result<Self, Self::Error> {
        value.parse()
    }
}

impl<'de> Deserialize<'de> for WorkspaceId {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: Deserializer<'de>,
    {
        String::deserialize(deserializer)?
            .parse()
            .map_err(serde::de::Error::custom)
    }
}

impl<'de> Deserialize<'de> for ProjectId {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: Deserializer<'de>,
    {
        String::deserialize(deserializer)?
            .parse()
            .map_err(serde::de::Error::custom)
    }
}

impl<'de> Deserialize<'de> for TaskId {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: Deserializer<'de>,
    {
        String::deserialize(deserializer)?
            .parse()
            .map_err(serde::de::Error::custom)
    }
}

impl Type<Sqlite> for WorkspaceId {
    fn type_info() -> SqliteTypeInfo {
        <String as Type<Sqlite>>::type_info()
    }
}

impl Type<Sqlite> for ProjectId {
    fn type_info() -> SqliteTypeInfo {
        <String as Type<Sqlite>>::type_info()
    }
}

impl Type<Sqlite> for TaskId {
    fn type_info() -> SqliteTypeInfo {
        <String as Type<Sqlite>>::type_info()
    }
}

impl Encode<'_, Sqlite> for WorkspaceId {
    fn encode_by_ref(
        &self,
        buffer: &mut <Sqlite as Database>::ArgumentBuffer,
    ) -> Result<IsNull, BoxDynError> {
        <String as Encode<Sqlite>>::encode_by_ref(&self.0, buffer)
    }
}

impl Encode<'_, Sqlite> for ProjectId {
    fn encode_by_ref(
        &self,
        buffer: &mut <Sqlite as Database>::ArgumentBuffer,
    ) -> Result<IsNull, BoxDynError> {
        <String as Encode<Sqlite>>::encode_by_ref(&self.0, buffer)
    }
}

impl Encode<'_, Sqlite> for TaskId {
    fn encode_by_ref(
        &self,
        buffer: &mut <Sqlite as Database>::ArgumentBuffer,
    ) -> Result<IsNull, BoxDynError> {
        <String as Encode<Sqlite>>::encode_by_ref(&self.0, buffer)
    }
}

impl<'row> Decode<'row, Sqlite> for WorkspaceId {
    fn decode(value: SqliteValueRef<'row>) -> Result<Self, BoxDynError> {
        String::decode(value)?.parse().map_err(Into::into)
    }
}

impl<'row> Decode<'row, Sqlite> for ProjectId {
    fn decode(value: SqliteValueRef<'row>) -> Result<Self, BoxDynError> {
        String::decode(value)?.parse().map_err(Into::into)
    }
}

impl<'row> Decode<'row, Sqlite> for TaskId {
    fn decode(value: SqliteValueRef<'row>) -> Result<Self, BoxDynError> {
        String::decode(value)?.parse().map_err(Into::into)
    }
}

pub fn now() -> String {
    let output = Command::new("date")
        .arg("-u")
        .arg("+%Y-%m-%dT%H:%M:%SZ")
        .output();
    output
        .ok()
        .and_then(|out| String::from_utf8(out.stdout).ok())
        .map(|s| s.trim().to_string())
        .filter(|s| !s.is_empty())
        .unwrap_or_else(|| "1970-01-01T00:00:00Z".to_string())
}

pub fn new_id() -> String {
    let mut bytes = [0u8; 10];
    fill_random(&mut bytes).expect("fill random bytes");
    encode_crockford(&bytes)
}

pub fn encode_crockford(bytes: &[u8; 10]) -> String {
    let mut value = u128::from_be_bytes([
        0, 0, 0, 0, 0, 0, bytes[0], bytes[1], bytes[2], bytes[3], bytes[4], bytes[5], bytes[6],
        bytes[7], bytes[8], bytes[9],
    ]);
    let mut chars = [b'0'; 16];
    for i in (0..16).rev() {
        chars[i] = BASE32[(value & 31) as usize];
        value >>= 5;
    }
    String::from_utf8(chars.to_vec()).expect("base32 is utf8")
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::test_support::test_conn;

    #[test]
    fn workspace_ids_validate_domain_id_shape() {
        assert!("0123456789ABCDEF".parse::<WorkspaceId>().is_ok());
        assert!("0123456789ABCDE".parse::<WorkspaceId>().is_err());
        assert!("0123456789abcdef".parse::<WorkspaceId>().is_err());
        assert!("0123456789ABCDEI".parse::<WorkspaceId>().is_err());
    }

    #[test]
    fn workspace_ids_serialize_as_validated_strings() {
        let id: WorkspaceId = serde_json::from_str("\"0123456789ABCDEF\"").unwrap();
        assert_eq!(serde_json::to_string(&id).unwrap(), "\"0123456789ABCDEF\"");
        assert!(serde_json::from_str::<WorkspaceId>("\"invalid\"").is_err());
    }

    #[test]
    fn project_ids_validate_domain_id_shape() {
        assert!("0123456789ABCDEF".parse::<ProjectId>().is_ok());
        assert!("0123456789ABCDE".parse::<ProjectId>().is_err());
        assert!("0123456789abcdef".parse::<ProjectId>().is_err());
        assert!("0123456789ABCDEI".parse::<ProjectId>().is_err());
    }

    #[test]
    fn project_ids_serialize_as_validated_strings() {
        let id: ProjectId = serde_json::from_str("\"0123456789ABCDEF\"").unwrap();
        assert_eq!(serde_json::to_string(&id).unwrap(), "\"0123456789ABCDEF\"");
        assert!(serde_json::from_str::<ProjectId>("\"invalid\"").is_err());
    }

    #[test]
    fn task_ids_validate_domain_id_shape() {
        assert!("0123456789ABCDEF".parse::<TaskId>().is_ok());
        assert!("0123456789ABCDE".parse::<TaskId>().is_err());
        assert!("0123456789abcdef".parse::<TaskId>().is_err());
        assert!("0123456789ABCDEI".parse::<TaskId>().is_err());
    }

    #[test]
    fn task_ids_serialize_as_validated_strings() {
        let id: TaskId = serde_json::from_str("\"0123456789ABCDEF\"").unwrap();
        assert_eq!(serde_json::to_string(&id).unwrap(), "\"0123456789ABCDEF\"");
        assert!(serde_json::from_str::<TaskId>("\"invalid\"").is_err());
    }

    #[tokio::test]
    async fn task_ids_bind_and_decode_as_sqlite_text() {
        let (_temp, mut conn) = test_conn().await;
        let id: TaskId = "0123456789ABCDEF".parse().unwrap();
        let decoded = sqlx::query_scalar::<_, TaskId>("SELECT ?")
            .bind(&id)
            .fetch_one(&mut *conn)
            .await
            .unwrap();
        assert_eq!(decoded, id);

        let invalid = sqlx::query_scalar::<_, TaskId>("SELECT 'invalid'")
            .fetch_one(&mut *conn)
            .await;
        assert!(invalid.is_err());
    }

    #[tokio::test]
    async fn project_ids_bind_and_decode_as_sqlite_text() {
        let (_temp, mut conn) = test_conn().await;
        let id: ProjectId = "0123456789ABCDEF".parse().unwrap();
        let decoded = sqlx::query_scalar::<_, ProjectId>("SELECT ?")
            .bind(&id)
            .fetch_one(&mut *conn)
            .await
            .unwrap();
        assert_eq!(decoded, id);

        let invalid = sqlx::query_scalar::<_, ProjectId>("SELECT 'invalid'")
            .fetch_one(&mut *conn)
            .await;
        assert!(invalid.is_err());
    }

    #[tokio::test]
    async fn workspace_ids_bind_and_decode_as_sqlite_text() {
        let (_temp, mut conn) = test_conn().await;
        let id: WorkspaceId = "0123456789ABCDEF".parse().unwrap();
        let decoded = sqlx::query_scalar::<_, WorkspaceId>("SELECT ?")
            .bind(&id)
            .fetch_one(&mut *conn)
            .await
            .unwrap();
        assert_eq!(decoded, id);

        let invalid = sqlx::query_scalar::<_, WorkspaceId>("SELECT 'invalid'")
            .fetch_one(&mut *conn)
            .await;
        assert!(invalid.is_err());
    }
}