Upstream commit: 474dd0229cb20cf513036619781ed97bd8073c3f Enterprise-only files removed or emptied: 63 Enterprise-only snippets removed: 117 in 50 files Dangling module declarations removed: 5 Cargo edits turning enterprise off: 14 Verification: clean Enterprise feature gates left for rebuilt features: 19 in 18 files Produced by tools/fork/strip.py. The full report is in docs/fork/strip-reports/ on main.
285 lines
7.1 KiB
Rust
285 lines
7.1 KiB
Rust
/*
|
|
* SPDX-FileCopyrightText: 2020 Stalwart Labs LLC <[email protected]>
|
|
*
|
|
* 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<Self> {
|
|
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<P>(key: &Key<'_, Self::Property>, value: &str) -> Option<Self> {
|
|
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<Self> {
|
|
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<MaybeIdReference<Id>>,
|
|
pub on_success_deactivate_script: Option<bool>,
|
|
}
|
|
|
|
impl<'de> DeserializeArguments<'de> for SieveSetArguments {
|
|
fn deserialize_argument<A>(&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::<serde::de::IgnoredAny>()?;
|
|
}
|
|
);
|
|
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl FromStr for SieveProperty {
|
|
type Err = ();
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
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<A>(&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::<serde::de::IgnoredAny>()?;
|
|
}
|
|
);
|
|
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl<'de> DeserializeArguments<'de> for SieveComparator {
|
|
fn deserialize_argument<A>(&mut self, key: &str, map: &mut A) -> Result<(), A::Error>
|
|
where
|
|
A: serde::de::MapAccess<'de>,
|
|
{
|
|
if key == "property" {
|
|
let value = map.next_value::<Cow<str>>()?;
|
|
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::<serde::de::IgnoredAny>()?;
|
|
}
|
|
|
|
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<Id> for SieveValue {
|
|
fn from(id: Id) -> Self {
|
|
SieveValue::Id(id)
|
|
}
|
|
}
|
|
|
|
impl JmapObjectId for SieveValue {
|
|
fn as_id(&self) -> Option<Id> {
|
|
match self {
|
|
SieveValue::Id(id) => Some(*id),
|
|
_ => None,
|
|
}
|
|
}
|
|
|
|
fn as_any_id(&self) -> Option<AnyId> {
|
|
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<Id> {
|
|
None
|
|
}
|
|
|
|
fn as_any_id(&self) -> Option<AnyId> {
|
|
None
|
|
}
|
|
|
|
fn as_id_ref(&self) -> Option<&str> {
|
|
None
|
|
}
|
|
|
|
fn try_set_id(&mut self, _: AnyId) -> bool {
|
|
false
|
|
}
|
|
}
|