mirror of
https://github.com/stalwartlabs/stalwart.git
synced 2026-03-17 14:34:03 +00:00
70 lines
2.1 KiB
Rust
70 lines
2.1 KiB
Rust
/*
|
|
* SPDX-FileCopyrightText: 2020 Stalwart Labs LLC <hello@stalw.art>
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-SEL
|
|
*/
|
|
|
|
use super::{ArchivedSieveScript, SieveScript};
|
|
use common::storage::index::{IndexValue, IndexableAndSerializableObject, IndexableObject};
|
|
use types::{collection::SyncCollection, field::SieveField};
|
|
|
|
impl IndexableObject for SieveScript {
|
|
fn index_values(&self) -> impl Iterator<Item = IndexValue<'_>> {
|
|
[
|
|
IndexValue::Index {
|
|
field: SieveField::Name.into(),
|
|
value: self.name.as_str().to_lowercase().into(),
|
|
},
|
|
IndexValue::Index {
|
|
field: SieveField::IsActive.into(),
|
|
value: if self.is_active { &[1u8] } else { &[0u8] }
|
|
.as_slice()
|
|
.into(),
|
|
},
|
|
IndexValue::Blob {
|
|
value: self.blob_hash.clone(),
|
|
},
|
|
IndexValue::LogItem {
|
|
sync_collection: SyncCollection::SieveScript,
|
|
prefix: None,
|
|
},
|
|
IndexValue::Quota { used: self.size },
|
|
]
|
|
.into_iter()
|
|
}
|
|
}
|
|
|
|
impl IndexableAndSerializableObject for SieveScript {
|
|
fn is_versioned() -> bool {
|
|
false
|
|
}
|
|
}
|
|
|
|
impl IndexableObject for &ArchivedSieveScript {
|
|
fn index_values(&self) -> impl Iterator<Item = IndexValue<'_>> {
|
|
[
|
|
IndexValue::Index {
|
|
field: SieveField::Name.into(),
|
|
value: self.name.to_lowercase().into(),
|
|
},
|
|
IndexValue::Index {
|
|
field: SieveField::IsActive.into(),
|
|
value: if self.is_active { &[1u8] } else { &[0u8] }
|
|
.as_slice()
|
|
.into(),
|
|
},
|
|
IndexValue::Blob {
|
|
value: (&self.blob_hash).into(),
|
|
},
|
|
IndexValue::LogItem {
|
|
sync_collection: SyncCollection::SieveScript,
|
|
prefix: None,
|
|
},
|
|
IndexValue::Quota {
|
|
used: u32::from(self.size),
|
|
},
|
|
]
|
|
.into_iter()
|
|
}
|
|
}
|