2021-02-20 00:10:05 +01:00
|
|
|
use std::error::Error;
|
2021-03-05 23:32:42 +01:00
|
|
|
use std::collections::{HashMap, HashSet};
|
2021-03-18 23:59:06 +01:00
|
|
|
use std::sync::{Arc, Mutex};
|
2021-02-18 12:02:04 +01:00
|
|
|
|
2021-02-25 00:47:39 +01:00
|
|
|
use async_trait::async_trait;
|
2021-02-18 12:02:04 +01:00
|
|
|
|
2021-03-01 23:39:16 +01:00
|
|
|
use crate::item::Item;
|
|
|
|
use crate::item::ItemId;
|
2021-03-22 22:06:43 +01:00
|
|
|
use crate::item::VersionTag;
|
2021-03-05 23:32:42 +01:00
|
|
|
use crate::calendar::CalendarId;
|
2021-03-31 08:32:28 +02:00
|
|
|
use crate::calendar::SupportedComponents;
|
2021-02-18 12:02:04 +01:00
|
|
|
|
2021-02-25 00:47:39 +01:00
|
|
|
#[async_trait]
|
2021-03-28 01:22:24 +01:00
|
|
|
pub trait CalDavSource<T: BaseCalendar> {
|
2021-02-25 00:47:39 +01:00
|
|
|
/// Returns the current calendars that this source contains
|
|
|
|
/// This function may trigger an update (that can be a long process, or that can even fail, e.g. in case of a remote server)
|
2021-03-18 23:59:06 +01:00
|
|
|
async fn get_calendars(&self) -> Result<HashMap<CalendarId, Arc<Mutex<T>>>, Box<dyn Error>>;
|
2021-03-05 23:32:42 +01:00
|
|
|
/// Returns the calendar matching the ID
|
2021-03-21 19:27:55 +01:00
|
|
|
async fn get_calendar(&self, id: &CalendarId) -> Option<Arc<Mutex<T>>>;
|
2021-04-03 09:24:20 +02:00
|
|
|
/// Insert a calendar if it did not exist, and return it
|
|
|
|
async fn insert_calendar(&mut self, new_calendar: T) -> Result<Arc<Mutex<T>>, Box<dyn Error>>;
|
2021-02-18 12:02:04 +01:00
|
|
|
}
|
2021-02-28 18:00:37 +01:00
|
|
|
|
2021-03-28 01:22:24 +01:00
|
|
|
/// This trait contains functions that are common to all calendars
|
2021-03-21 19:05:22 +01:00
|
|
|
#[async_trait]
|
2021-03-28 01:22:24 +01:00
|
|
|
pub trait BaseCalendar {
|
2021-03-01 23:39:16 +01:00
|
|
|
/// Returns the calendar name
|
|
|
|
fn name(&self) -> &str;
|
|
|
|
|
2021-03-05 23:32:42 +01:00
|
|
|
/// Returns the calendar unique ID
|
|
|
|
fn id(&self) -> &CalendarId;
|
2021-03-01 23:39:16 +01:00
|
|
|
|
|
|
|
/// Returns the supported kinds of components for this calendar
|
|
|
|
fn supported_components(&self) -> crate::calendar::SupportedComponents;
|
|
|
|
|
|
|
|
/// Add an item into this calendar
|
2021-03-24 09:15:55 +01:00
|
|
|
async fn add_item(&mut self, item: Item) -> Result<(), Box<dyn Error>>;
|
2021-03-01 23:39:16 +01:00
|
|
|
|
2021-03-02 00:21:58 +01:00
|
|
|
/// Returns whether this calDAV calendar supports to-do items
|
|
|
|
fn supports_todo(&self) -> bool {
|
|
|
|
self.supported_components().contains(crate::calendar::SupportedComponents::TODO)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns whether this calDAV calendar supports calendar items
|
|
|
|
fn supports_events(&self) -> bool {
|
|
|
|
self.supported_components().contains(crate::calendar::SupportedComponents::EVENT)
|
|
|
|
}
|
2021-03-28 01:22:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Functions availabe for calendars that are backed by a CalDAV server
|
|
|
|
#[async_trait]
|
|
|
|
pub trait DavCalendar : BaseCalendar {
|
|
|
|
/// Get the IDs and the version tags of every item in this calendar
|
|
|
|
async fn get_item_version_tags(&self) -> Result<HashMap<ItemId, VersionTag>, Box<dyn Error>>;
|
|
|
|
|
2021-04-02 09:35:45 +02:00
|
|
|
/// Returns a particular item
|
|
|
|
async fn get_item_by_id(&self, id: &ItemId) -> Result<Option<Item>, Box<dyn Error>>;
|
|
|
|
|
2021-03-28 01:22:24 +01:00
|
|
|
/// Delete an item
|
|
|
|
async fn delete_item(&mut self, item_id: &ItemId) -> Result<(), Box<dyn Error>>;
|
2021-03-02 00:21:58 +01:00
|
|
|
|
2021-03-22 22:06:43 +01:00
|
|
|
/// Get the IDs of all current items in this calendar
|
|
|
|
async fn get_item_ids(&self) -> Result<HashSet<ItemId>, Box<dyn Error>> {
|
|
|
|
let items = self.get_item_version_tags().await?;
|
|
|
|
Ok(items.iter()
|
|
|
|
.map(|(id, _tag)| id.clone())
|
|
|
|
.collect())
|
|
|
|
}
|
2021-03-01 23:39:16 +01:00
|
|
|
}
|
|
|
|
|
2021-03-28 01:22:24 +01:00
|
|
|
|
|
|
|
/// Functions availabe for calendars we have full knowledge of
|
2021-03-01 23:39:16 +01:00
|
|
|
///
|
2021-03-28 01:22:24 +01:00
|
|
|
/// Usually, these are local calendars fully backed by a local folder
|
2021-03-21 19:05:22 +01:00
|
|
|
#[async_trait]
|
2021-03-28 01:22:24 +01:00
|
|
|
pub trait CompleteCalendar : BaseCalendar {
|
2021-04-03 09:23:20 +02:00
|
|
|
/// Create a new calendar
|
2021-03-31 08:32:28 +02:00
|
|
|
fn new(name: String, id: CalendarId, supported_components: SupportedComponents) -> Self;
|
|
|
|
|
2021-03-28 01:22:24 +01:00
|
|
|
/// Get the IDs of all current items in this calendar
|
|
|
|
async fn get_item_ids(&self) -> Result<HashSet<ItemId>, Box<dyn Error>>;
|
|
|
|
|
|
|
|
/// Returns all items that this calendar contains
|
2021-03-21 19:58:37 +01:00
|
|
|
async fn get_items(&self) -> Result<HashMap<ItemId, &Item>, Box<dyn Error>>;
|
2021-03-01 23:39:16 +01:00
|
|
|
|
2021-03-29 23:46:21 +02:00
|
|
|
/// Returns a particular item
|
|
|
|
async fn get_item_by_id_ref<'a>(&'a self, id: &ItemId) -> Option<&'a Item>;
|
|
|
|
|
2021-03-28 01:22:24 +01:00
|
|
|
/// Returns a particular item
|
|
|
|
async fn get_item_by_id_mut<'a>(&'a mut self, id: &ItemId) -> Option<&'a mut Item>;
|
|
|
|
|
|
|
|
/// Mark an item for deletion.
|
|
|
|
/// This is required so that the upcoming sync will know it should also also delete this task from the server
|
|
|
|
/// (and then call [`immediately_delete_item`] once it has been successfully deleted on the server)
|
|
|
|
async fn mark_for_deletion(&mut self, item_id: &ItemId) -> Result<(), Box<dyn Error>>;
|
|
|
|
|
|
|
|
/// Immediately remove an item. See [`mark_for_deletion`]
|
|
|
|
async fn immediately_delete_item(&mut self, item_id: &ItemId) -> Result<(), Box<dyn Error>>;
|
|
|
|
}
|