/* * SPDX-FileCopyrightText: 2020 Stalwart Labs LLC * * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-SEL */ use crate::{ object::{AnyId, DeserializeArguments, JmapObject, JmapObjectId, MaybeReference, parse_ref}, request::reference::MaybeIdReference, }; use jmap_tools::{Element, Key, Property}; use std::{borrow::Cow, str::FromStr}; use types::{blob::BlobId, id::Id}; #[derive(Debug, Clone, Default)] pub struct Sieve; #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)] pub enum SieveProperty { Id, Name, BlobId, IsActive, } #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)] pub enum SieveValue { Id(Id), BlobId(BlobId), IdReference(String), } impl Property for SieveProperty { fn try_parse(_: Option<&Key<'_, Self>>, value: &str) -> Option { SieveProperty::parse(value) } fn to_cow(&self) -> Cow<'static, str> { match self { SieveProperty::BlobId => "blobId", SieveProperty::Id => "id", SieveProperty::Name => "name", SieveProperty::IsActive => "isActive", } .into() } } impl Element for SieveValue { type Property = SieveProperty; fn try_parse

(key: &Key<'_, Self::Property>, value: &str) -> Option { if let Key::Property(prop) = key { match prop { SieveProperty::Id => match parse_ref(value) { MaybeReference::Value(v) => Some(SieveValue::Id(v)), MaybeReference::Reference(v) => Some(SieveValue::IdReference(v)), MaybeReference::ParseError => None, }, SieveProperty::BlobId => match parse_ref(value) { MaybeReference::Value(v) => Some(SieveValue::BlobId(v)), MaybeReference::Reference(v) => Some(SieveValue::IdReference(v)), MaybeReference::ParseError => None, }, _ => None, } } else { None } } fn to_cow(&self) -> Cow<'static, str> { match self { SieveValue::Id(id) => id.to_string().into(), SieveValue::BlobId(blob_id) => blob_id.to_string().into(), SieveValue::IdReference(r) => format!("#{r}").into(), } } } impl SieveProperty { fn parse(value: &str) -> Option { hashify::tiny_map!(value.as_bytes(), b"id" => SieveProperty::Id, b"name" => SieveProperty::Name, b"blobId" => SieveProperty::BlobId, b"isActive" => SieveProperty::IsActive, ) } } #[derive(Debug, Clone, Default)] pub struct SieveSetArguments { pub on_success_activate_script: Option>, pub on_success_deactivate_script: Option, } impl<'de> DeserializeArguments<'de> for SieveSetArguments { fn deserialize_argument(&mut self, key: &str, map: &mut A) -> Result<(), A::Error> where A: serde::de::MapAccess<'de>, { hashify::fnc_map!(key.as_bytes(), b"onSuccessActivateScript" => { self.on_success_activate_script = map.next_value()?; }, b"onSuccessDeactivateScript" => { self.on_success_deactivate_script = map.next_value()?; }, _ => { let _ = map.next_value::()?; } ); Ok(()) } } impl FromStr for SieveProperty { type Err = (); fn from_str(s: &str) -> Result { SieveProperty::parse(s).ok_or(()) } } impl JmapObject for Sieve { type Property = SieveProperty; type Element = SieveValue; type Id = Id; type Filter = SieveFilter; type Comparator = SieveComparator; type GetArguments = (); type SetArguments<'de> = SieveSetArguments; type QueryArguments = (); type CopyArguments = (); type ParseArguments = (); const ID_PROPERTY: Self::Property = SieveProperty::Id; } #[derive(Debug, Clone, PartialEq, Eq)] pub enum SieveFilter { Name(String), IsActive(bool), _T(String), } #[derive(Debug, Clone, PartialEq, Eq)] pub enum SieveComparator { Name, IsActive, _T(String), } impl<'de> DeserializeArguments<'de> for SieveFilter { fn deserialize_argument(&mut self, key: &str, map: &mut A) -> Result<(), A::Error> where A: serde::de::MapAccess<'de>, { hashify::fnc_map!(key.as_bytes(), b"name" => { *self = SieveFilter::Name(map.next_value()?); }, b"isActive" => { *self = SieveFilter::IsActive(map.next_value()?); }, _ => { *self = SieveFilter::_T(key.to_string()); let _ = map.next_value::()?; } ); Ok(()) } } impl<'de> DeserializeArguments<'de> for SieveComparator { fn deserialize_argument(&mut self, key: &str, map: &mut A) -> Result<(), A::Error> where A: serde::de::MapAccess<'de>, { if key == "property" { let value = map.next_value::>()?; hashify::fnc_map!(value.as_bytes(), b"name" => { *self = SieveComparator::Name; }, b"isActive" => { *self = SieveComparator::IsActive; }, _ => { *self = SieveComparator::_T(key.to_string()); } ); } else { let _ = map.next_value::()?; } Ok(()) } } impl Default for SieveFilter { fn default() -> Self { SieveFilter::_T("".to_string()) } } impl Default for SieveComparator { fn default() -> Self { SieveComparator::_T("".to_string()) } } impl From for SieveValue { fn from(id: Id) -> Self { SieveValue::Id(id) } } impl JmapObjectId for SieveValue { fn as_id(&self) -> Option { match self { SieveValue::Id(id) => Some(*id), _ => None, } } fn as_any_id(&self) -> Option { match self { SieveValue::Id(id) => Some(AnyId::Id(*id)), SieveValue::BlobId(id) => Some(AnyId::BlobId(id.clone())), SieveValue::IdReference(_) => None, } } fn as_id_ref(&self) -> Option<&str> { if let SieveValue::IdReference(r) = self { Some(r) } else { None } } fn try_set_id(&mut self, new_id: AnyId) -> bool { match new_id { AnyId::Id(id) => { *self = SieveValue::Id(id); } AnyId::BlobId(id) => { *self = SieveValue::BlobId(id); } } true } } impl JmapObjectId for SieveProperty { fn as_id(&self) -> Option { None } fn as_any_id(&self) -> Option { None } fn as_id_ref(&self) -> Option<&str> { None } fn try_set_id(&mut self, _: AnyId) -> bool { false } }