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.
191 lines
4.6 KiB
Rust
191 lines
4.6 KiB
Rust
/*
|
|
* SPDX-FileCopyrightText: 2020 Stalwart Labs LLC <[email protected]>
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-SEL
|
|
*/
|
|
|
|
use crate::object::{AnyId, JmapObject, JmapObjectId};
|
|
use jmap_tools::{Element, JsonPointer, JsonPointerItem, Key, Property};
|
|
use std::{borrow::Cow, str::FromStr};
|
|
use types::id::Id;
|
|
|
|
#[derive(Debug, Clone, Default)]
|
|
pub struct Identity;
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
pub enum IdentityProperty {
|
|
Id,
|
|
Name,
|
|
Email,
|
|
ReplyTo,
|
|
Bcc,
|
|
TextSignature,
|
|
HtmlSignature,
|
|
MayDelete,
|
|
|
|
// Other
|
|
Pointer(JsonPointer<IdentityProperty>),
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
pub enum IdentityValue {
|
|
Id(Id),
|
|
}
|
|
|
|
impl Property for IdentityProperty {
|
|
fn try_parse(key: Option<&Key<'_, Self>>, value: &str) -> Option<Self> {
|
|
IdentityProperty::parse(value, key.is_none())
|
|
}
|
|
|
|
fn to_cow(&self) -> Cow<'static, str> {
|
|
match self {
|
|
IdentityProperty::Bcc => "bcc",
|
|
IdentityProperty::Email => "email",
|
|
IdentityProperty::HtmlSignature => "htmlSignature",
|
|
IdentityProperty::Id => "id",
|
|
IdentityProperty::MayDelete => "mayDelete",
|
|
IdentityProperty::Name => "name",
|
|
IdentityProperty::ReplyTo => "replyTo",
|
|
IdentityProperty::TextSignature => "textSignature",
|
|
IdentityProperty::Pointer(json_pointer) => return json_pointer.to_string().into(),
|
|
}
|
|
.into()
|
|
}
|
|
}
|
|
|
|
impl Element for IdentityValue {
|
|
type Property = IdentityProperty;
|
|
|
|
fn try_parse<P>(key: &Key<'_, Self::Property>, value: &str) -> Option<Self> {
|
|
if let Key::Property(prop) = key {
|
|
match prop.patch_or_prop() {
|
|
IdentityProperty::Id => Id::from_str(value).ok().map(IdentityValue::Id),
|
|
_ => None,
|
|
}
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
|
|
fn to_cow(&self) -> Cow<'static, str> {
|
|
match self {
|
|
IdentityValue::Id(id) => id.to_string().into(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl IdentityProperty {
|
|
fn parse(value: &str, allow_patch: bool) -> Option<Self> {
|
|
hashify::tiny_map!(value.as_bytes(),
|
|
b"id" => IdentityProperty::Id,
|
|
b"name" => IdentityProperty::Name,
|
|
b"email" => IdentityProperty::Email,
|
|
b"replyTo" => IdentityProperty::ReplyTo,
|
|
b"bcc" => IdentityProperty::Bcc,
|
|
b"textSignature" => IdentityProperty::TextSignature,
|
|
b"htmlSignature" => IdentityProperty::HtmlSignature,
|
|
b"mayDelete" => IdentityProperty::MayDelete,
|
|
)
|
|
.or_else(|| {
|
|
if allow_patch && value.contains('/') {
|
|
IdentityProperty::Pointer(JsonPointer::parse(value)).into()
|
|
} else {
|
|
None
|
|
}
|
|
})
|
|
}
|
|
|
|
fn patch_or_prop(&self) -> &IdentityProperty {
|
|
if let IdentityProperty::Pointer(ptr) = self
|
|
&& let Some(JsonPointerItem::Key(Key::Property(prop))) = ptr.last()
|
|
{
|
|
prop
|
|
} else {
|
|
self
|
|
}
|
|
}
|
|
}
|
|
|
|
impl FromStr for IdentityProperty {
|
|
type Err = ();
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
IdentityProperty::parse(s, false).ok_or(())
|
|
}
|
|
}
|
|
|
|
impl JmapObject for Identity {
|
|
type Property = IdentityProperty;
|
|
|
|
type Element = IdentityValue;
|
|
|
|
type Id = Id;
|
|
|
|
type Filter = ();
|
|
|
|
type Comparator = ();
|
|
|
|
type GetArguments = ();
|
|
|
|
type SetArguments<'de> = ();
|
|
|
|
type QueryArguments = ();
|
|
|
|
type CopyArguments = ();
|
|
|
|
type ParseArguments = ();
|
|
|
|
const ID_PROPERTY: Self::Property = IdentityProperty::Id;
|
|
}
|
|
|
|
impl From<Id> for IdentityValue {
|
|
fn from(id: Id) -> Self {
|
|
IdentityValue::Id(id)
|
|
}
|
|
}
|
|
|
|
impl JmapObjectId for IdentityValue {
|
|
fn as_id(&self) -> Option<Id> {
|
|
match self {
|
|
IdentityValue::Id(id) => Some(*id),
|
|
}
|
|
}
|
|
|
|
fn as_any_id(&self) -> Option<AnyId> {
|
|
match self {
|
|
IdentityValue::Id(id) => Some(AnyId::Id(*id)),
|
|
}
|
|
}
|
|
|
|
fn as_id_ref(&self) -> Option<&str> {
|
|
None
|
|
}
|
|
|
|
fn try_set_id(&mut self, new_id: AnyId) -> bool {
|
|
if let AnyId::Id(id) = new_id {
|
|
*self = IdentityValue::Id(id);
|
|
true
|
|
} else {
|
|
false
|
|
}
|
|
}
|
|
}
|
|
|
|
impl JmapObjectId for IdentityProperty {
|
|
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
|
|
}
|
|
}
|