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
// Copyright 2023-2024 Hugo Osvaldo Barrera
//
// SPDX-License-Identifier: EUPL-1.2
#![deny(clippy::pedantic)]
#![deny(clippy::unwrap_used)]
#![allow(clippy::module_name_repetitions)]
#![forbid(unsafe_code)]
//! Implementation of a common API for reading and writing items on different underlying
//! storage implementations.
//!
//! Storages can contain `icalendar` components, `vcard` entries, or other content types where
//! items are either immutable or have unique ids.
//!
//! # Storage
//!
//! A [`Storage`] contains a set of collections, where each collection can contain many items, but
//! not other collections. This restriction matches the semantics of caldav/carddav and also object
//! stores like S3.
//!
//! This crate currently includes the following implementations:
//!
//! - [`CalDavStorage`]: a caldav server, where each collection is an individual calendar, and
//! each item is an individual event or todo in a calendar.
//! - [`CardDavStorage`]: a caldav server, where each collection is an individual address book, and
//! each item is an individual contact card.
//! - [`ReadOnlyStorage`]: wraps around another `Storage` instance, returning an error of kind
//! [`ErrorKind::ReadOnly`] for any write operation.
//! - [`VdirStorage`] a local directory, where each collection is a directory and each
//! item is a file.
//! - [`WebCal`]: An icalendar file loaded via HTTP(s). This storage is implicitly read-only.
//!
//! The `Storage` type and the logic for synchronisation of storages is is agnostic to the content
//! type inside collections, and can synchronise collections with any type of content. When
//! synchronising two storages, items with the same UID on both sides are synchronised with each
//! other. Interpreting content of items in order to extract these UIDs is done via the generic `I`
//! parameter, which implements the necessary operations for a specific content type of a given
//! storage instance.
//!
//! [`Storage`]: crate::base::Storage
//! [`CalDavStorage`]: crate::caldav::CalDavStorage
//! [`CardDavStorage`]: crate::carddav::CardDavStorage
//! [`ReadOnlyStorage`]: crate::readonly::ReadOnlyStorage
//! [`VdirStorage`]: crate::vdir::VdirStorage
//! [`WebCal`]: crate::webcal::WebCalStorage
//!
//! ## Collections, Hrefs and Collections Ids
//!
//! As mentioned above, collections cannot be nested (note for IMAP: having an `INBOX` collection
//! and an `INBOX/Feeds` collection is perfectly valid).
//!
//! A collection has an `href` and usually has an `id`.
//!
//! The `href` attribute is the path to an item inside a storage instance. Its value is storage
//! dependant, meaning that when a collection is synchronised to another storage, it may have a
//! different `href` on each side.
//!
//! The `id` for a collection is not storage-specific. When synchronising two storages, the default
//! approach is to synchronise items across collections with the same `id`. The `id` of a
//! collection is entirely dependant on its `href`, and should never change.
//!
//! The [`Href`] alias is used to refer to `href`s to avoid ambiguity. [`Href`] instances should be
//! treated as an opaque value and not given any special meaning outside of this crate.
//!
//! See also: [`CollectionId`].
//!
//! ## Items
//!
//! See [`Item`](crate::base::Item).
//!
//! ## Properties
//!
//! Storages expose properties for collections. Property types vary depending on a Storage's items,
//! although items themselves cannot have properties.
//!
//! Calendars have a `Colour`, `Description`, `DisplayName` and `Order`
//!
//! Address Books have `DisplayName` and `Description`.
//!
//! ## Entity tags
//!
//! An `Etag` is a value that changes whenever an item has changed in a collection. It is inspired
//! on the HTTP header with the same name (used extensively in WebDav). See [`Etag`].
use std::{backtrace::Backtrace, str::FromStr};
mod atomic;
pub mod base;
pub mod caldav;
pub mod carddav;
mod dav;
pub mod disco;
pub mod readonly;
mod simple_component;
pub mod sync;
mod util;
pub mod vdir;
pub mod watch;
pub mod webcal;
type Result<T, E = crate::Error> = std::result::Result<T, E>;
/// Variants used to categorise [`Error`] instances.
#[derive(Debug, PartialEq)]
pub enum ErrorKind {
DoesNotExist,
NotACollection,
NotAStorage,
AccessDenied,
Io,
InvalidData,
InvalidInput,
ReadOnly,
CollectionNotEmpty,
PreconditionFailed,
/// The requested operation is not possible on this specific instance.
Unavailable,
/// This storage implementation does not support a required feature.
Unsupported,
// #[deprecated]
Uncategorised,
}
impl ErrorKind {
/// Create a new error of this kind.
///
/// This is merely a convenience shortcut to [`Error::new`].
fn error<E>(self, source: E) -> Error
where
E: Into<Box<dyn std::error::Error + Send + Sync>>,
{
Error::new(self, source)
}
#[must_use]
const fn as_str(&self) -> &'static str {
match self {
ErrorKind::DoesNotExist => "resource does not exist",
ErrorKind::NotACollection => "resource exists, but is not a collection",
ErrorKind::NotAStorage => "resource exists, but is not a storage",
ErrorKind::AccessDenied => "access to the resource was denied",
ErrorKind::Io => "input/output error",
ErrorKind::InvalidData => "operation returned data, but it is not valid",
ErrorKind::InvalidInput => "input data is invalid",
ErrorKind::ReadOnly => "the resource is read-only",
ErrorKind::CollectionNotEmpty => "the collection is not empty",
ErrorKind::PreconditionFailed => "a required condition was not met",
ErrorKind::Unavailable => "the operation is not possible on this instance",
ErrorKind::Unsupported => "the operation is not supported",
ErrorKind::Uncategorised => "uncategorised error",
}
}
}
/// A common error type used by all Storage implementations.
///
/// See also [`ErrorKind`].
#[derive(Debug)]
pub struct Error {
kind: ErrorKind,
source: Option<Box<dyn std::error::Error + Send + Sync>>,
backtrace: Backtrace,
}
impl Error {
fn new<E>(kind: ErrorKind, source: E) -> Error
where
E: Into<Box<dyn std::error::Error + Send + Sync>>,
{
Error {
kind,
source: Some(source.into()),
backtrace: Backtrace::capture(),
}
}
pub fn backtrace(&self) -> &Backtrace {
&self.backtrace
}
}
impl From<ErrorKind> for Error {
fn from(kind: ErrorKind) -> Self {
Error {
kind,
source: None,
backtrace: Backtrace::capture(),
}
}
}
impl From<std::io::Error> for Error {
fn from(value: std::io::Error) -> Self {
let kind = match value.kind() {
std::io::ErrorKind::NotFound => ErrorKind::DoesNotExist,
std::io::ErrorKind::PermissionDenied => ErrorKind::AccessDenied,
std::io::ErrorKind::InvalidInput => ErrorKind::InvalidInput,
std::io::ErrorKind::InvalidData => ErrorKind::InvalidData,
_ => ErrorKind::Io,
};
Error {
kind,
source: Some(value.into()),
backtrace: Backtrace::capture(),
}
}
}
impl std::fmt::Display for ErrorKind {
fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
fmt.write_str(self.as_str())
}
}
impl std::fmt::Display for Error {
fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self.source {
Some(ref s) => write!(fmt, "{}: {}", self.kind, s),
None => self.kind.fmt(fmt),
}
}
}
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match &self.source {
Some(e) => Some(e.as_ref()),
None => None,
}
}
}
/// An identifier for a specific version of a resource.
///
/// Each time that a resource is read, it will return its current `Etag`. The `Etag` is a unique
/// identifier for the current version. An `Etag` value is specific to a specific storage
/// implementation and instance. E.g.: they are opaque values that have no meaning across storages.
///
/// This is strongly inspired on the [HTTP header of the same name][MDN].
///
/// It is assumed that all `Etag` values are valid UTF-8 strings. As of HTTP 1.1, all header values
/// are restricted to visible characters in the ASCII range, so this is not a problem for CalDav or
/// CardDav storages. Other storages with no native `Etag` concept should attempt to use the most
/// suitable approximation.
///
/// [MDN]: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag
#[derive(Debug, PartialEq, Clone)]
pub struct Etag(String);
impl Etag {
#[must_use]
pub fn as_str(&self) -> &str {
return self.0.as_str();
}
}
impl<T> From<T> for Etag
where
String: From<T>,
{
fn from(value: T) -> Self {
Etag(value.into())
}
}
impl AsRef<str> for Etag {
fn as_ref(&self) -> &str {
&self.0
}
}
impl std::fmt::Display for Etag {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.write_str(&self.0)
}
}
/// The path to the item inside the collection.
///
/// For example, for carddav collections this is the path of the entry inside the collection. For
/// [`vdir::VdirStorage`], this the file's relative path, etc. `Href`s MUST be valid UTF-8 sequences.
/// Implementations MUST define their `Href` in a way that it is possible to infer:
///
/// - Whether an Href belongs to a collection or an item.
/// - For an item, to which collection it belongs.
///
/// Whether an `href` is relative to a collection or absolute is storage dependant. As such, this
/// should be treated as an opaque string by consumers of this library.
pub type Href = String;
/// An identifier for a collection.
///
/// Collection identifiers are a short string that uniquely identify a collection inside a storage.
/// They are based on the `href` of a collection, which never changes. The `CollectionId` is
/// intended as a more human-friendly substitute for collection `href`s.
///
/// The following limitations exist, given that such values would produce ambiguous results with
/// the implementation of [`VdirStorage`], [`CalDavStorage`], and [`CardDavStorage`]:
///
/// - A `CollectionId` cannot contain a `/` (slash)
/// - A `CollectionId` cannot be exactly `..` (double period).
/// - A `CollectionId` cannot be exactly `.` (a single period).
///
/// [`VdirStorage`]: crate::vdir::VdirStorage
/// [`CalDavStorage`]: crate::caldav::CalDavStorage
/// [`CardDavStorage`]: crate::carddav::CardDavStorage
///
/// # Creating instances
///
/// Instances of `CollectionId` always contain previously validated data.
///
/// See: [`CollectionId::try_from`] and [`CollectionId::from_str`].
#[derive(PartialEq, Debug, Clone, Eq, Hash)]
pub struct CollectionId {
// INVARIANT: matches rules in documentation above.
inner: String,
}
impl CollectionId {
#[inline]
fn validate(value: &str) -> std::result::Result<(), CollectionIdError> {
if value.chars().any(|c| c == '/') {
return Err(CollectionIdError::Slash);
}
if value == ".." {
return Err(CollectionIdError::DoublePeriod);
}
if value == "." {
return Err(CollectionIdError::SinglePeriod);
}
Ok(())
}
}
impl AsRef<str> for CollectionId {
fn as_ref(&self) -> &str {
self.inner.as_ref()
}
}
impl From<CollectionId> for String {
fn from(value: CollectionId) -> String {
value.inner
}
}
impl std::fmt::Display for CollectionId {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
self.inner.fmt(f)
}
}
#[derive(Debug, thiserror::Error)]
pub enum CollectionIdError {
#[error("collection id must not contain a slash")]
Slash,
#[error("collection id must not be '..'")]
DoublePeriod,
#[error("collection id must not be '.'")]
SinglePeriod,
}
impl FromStr for CollectionId {
type Err = CollectionIdError;
/// Creates a new `CollectionId` with the input data.
///
/// When converting a `String`, use [`CollectionId::try_from`] instead to avoid re-allocating
/// the string data.
///
/// # Example
///
/// ```
/// # use vstorage::CollectionId;
/// let collection_id: CollectionId = "personal".parse().unwrap();
/// ```
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
Self::validate(s)?;
Ok(CollectionId {
inner: s.to_string(),
})
}
}
impl TryFrom<String> for CollectionId {
type Error = CollectionIdError;
/// Converts a `String` instance into a `CollectionId`.
///
/// Note that manually allocating a `String` before calling this method is an anti-pattern; the
/// cost of the re-allocation is paid even if the validation fails. For converting [`&str`],
/// see [`CollectionId::from_str`].
fn try_from(value: String) -> std::result::Result<Self, Self::Error> {
Self::validate(&value)?;
Ok(CollectionId { inner: value })
}
}