use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
#[cfg(feature = "json")]
mod json;
#[cfg(feature = "json")]
pub use json::JsonDataProvide;
#[cfg(feature = "sqlite")]
mod sqlite;
#[cfg(feature = "sqlite")]
pub use sqlite::SqliteDataProvide;
pub const TRANSFER_DATA_VERSION: u16 = 100;
#[derive(Debug, thiserror::Error)]
pub enum ModifyEntryError {
#[error("{0}")]
ValidationError(String),
#[error("{0}")]
DataError(#[from] anyhow::Error),
}
#[allow(async_fn_in_trait)]
pub trait DataProvider {
async fn load_all_entries(&self) -> anyhow::Result<Vec<Entry>>;
async fn add_entry(&self, entry: EntryDraft) -> Result<Entry, ModifyEntryError>;
async fn remove_entry(&self, entry_id: u32) -> anyhow::Result<()>;
async fn update_entry(&self, entry: Entry) -> Result<Entry, ModifyEntryError>;
async fn get_export_object(&self, entries_ids: &[u32]) -> anyhow::Result<EntriesDTO>;
async fn import_entries(&self, entries_dto: EntriesDTO) -> anyhow::Result<()> {
debug_assert_eq!(
TRANSFER_DATA_VERSION, entries_dto.version,
"Version mismatches check if there is a need to do a converting to the data"
);
for entry_draft in entries_dto.entries {
self.add_entry(entry_draft).await?;
}
Ok(())
}
async fn assign_priority_to_entries(&self, priority: u32) -> anyhow::Result<()>;
}
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct Entry {
pub id: u32,
pub date: DateTime<Utc>,
pub title: String,
pub content: String,
#[serde(default)]
pub tags: Vec<String>,
#[serde(default)]
pub priority: Option<u32>,
}
impl Entry {
#[allow(dead_code)]
pub fn new(
id: u32,
date: DateTime<Utc>,
title: String,
content: String,
tags: Vec<String>,
priority: Option<u32>,
) -> Self {
Self {
id,
date,
title,
content,
tags,
priority,
}
}
pub fn from_draft(id: u32, draft: EntryDraft) -> Self {
Self {
id,
date: draft.date,
title: draft.title,
content: draft.content,
tags: draft.tags,
priority: draft.priority,
}
}
}
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct EntryDraft {
pub date: DateTime<Utc>,
pub title: String,
pub content: String,
pub tags: Vec<String>,
pub priority: Option<u32>,
}
impl EntryDraft {
pub fn new(
date: DateTime<Utc>,
title: String,
tags: Vec<String>,
priority: Option<u32>,
) -> Self {
let content = String::new();
Self {
date,
title,
content,
tags,
priority,
}
}
pub fn from_entry(entry: Entry) -> Self {
Self {
date: entry.date,
title: entry.title,
content: entry.content,
tags: entry.tags,
priority: entry.priority,
}
}
}
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct EntriesDTO {
pub version: u16,
pub entries: Vec<EntryDraft>,
}
impl EntriesDTO {
pub fn new(entries: Vec<EntryDraft>) -> Self {
Self {
version: TRANSFER_DATA_VERSION,
entries,
}
}
}