You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
meli/melib/src/sieve/runtime/actions/action_editheader.rs

203 lines
6.9 KiB
Rust

/*
* Copyright (c) 2020-2023, Stalwart Labs Ltd.
*
* This file is part of the Stalwart Sieve Interpreter.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
* in the LICENSE file at the top-level directory of this distribution.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* You can be released from the requirements of the AGPLv3 license by
* purchasing a commercial license. Please contact licensing@stalw.art
* for more details.
*/
use std::borrow::Cow;
use mail_parser::{Header, HeaderName, HeaderValue};
use crate::sieve::{
compiler::grammar::{
actions::{
action_editheader::{AddHeader, DeleteHeader},
action_mime::MimeOpts,
},
MatchType,
},
runtime::Variable,
Context,
};
impl AddHeader {
pub(crate) fn exec(&self, ctx: &mut Context) {
let header_name_ = ctx.eval_value(&self.field_name).into_cow();
let mut header_name = String::with_capacity(header_name_.len());
for ch in header_name_.chars() {
if ch.is_alphanumeric() || ch == '-' {
header_name.push(ch);
}
}
if !header_name.is_empty() {
if let Some(header_name) = HeaderName::parse(header_name) {
if !ctx.runtime.protected_headers.contains(&header_name) {
ctx.has_changes = true;
ctx.insert_header(
ctx.part,
header_name,
ctx.eval_value(&self.value)
.into_cow()
.as_ref()
.remove_crlf(ctx.runtime.max_header_size),
self.last,
)
}
}
}
}
}
impl DeleteHeader {
pub(crate) fn exec(&self, ctx: &mut Context) {
let header_name = if let Some(header_name) =
HeaderName::parse(ctx.eval_value(&self.field_name).into_cow())
{
header_name
} else {
return;
};
let value_patterns = ctx.eval_values(&self.value_patterns);
let mut deleted_headers = Vec::new();
let mut deleted_bytes = 0;
if ctx.runtime.protected_headers.contains(&header_name) {
return;
}
ctx.find_headers(
&[header_name],
self.index,
self.mime_anychild,
|header, part_id, header_pos| {
if !value_patterns.is_empty() {
let did_match = ctx.find_header_values(header, &MimeOpts::None, |value| {
for (pattern_expr, pattern) in
value_patterns.iter().zip(self.value_patterns.iter())
{
if match &self.match_type {
MatchType::Is => {
self.comparator.is(&Variable::from(value), pattern_expr)
}
MatchType::Contains => self
.comparator
.contains(value, pattern_expr.to_cow().as_ref()),
MatchType::Value(rel_match) => self.comparator.relational(
rel_match,
&Variable::from(value),
pattern_expr,
),
MatchType::Matches(_) => self.comparator.matches(
value,
pattern_expr.to_cow().as_ref(),
0,
&mut Vec::new(),
),
MatchType::Regex(_) => self.comparator.regex(
pattern,
pattern_expr,
value,
0,
&mut Vec::new(),
),
MatchType::Count(_) => false,
MatchType::List => false,
} {
return true;
}
}
false
});
if !did_match {
return false;
}
}
if header.offset_end != 0 {
deleted_bytes += header.offset_end - header.offset_field;
} else {
deleted_bytes += header.name.as_str().len() + header.value.len() + 4;
}
deleted_headers.push((part_id, header_pos));
false
},
);
if !deleted_headers.is_empty() {
ctx.has_changes = true;
for (part_id, header_pos) in deleted_headers.iter().rev() {
ctx.message.parts[*part_id].headers.remove(*header_pos);
}
}
ctx.message_size -= deleted_bytes;
}
}
pub(crate) trait RemoveCrLf {
fn remove_crlf(&self, max_len: usize) -> String;
}
impl RemoveCrLf for &str {
fn remove_crlf(&self, max_len: usize) -> String {
let mut header_value = String::with_capacity(self.len());
for ch in self.chars() {
if !['\n', '\r'].contains(&ch) {
if header_value.len() + ch.len_utf8() <= max_len {
header_value.push(ch);
} else {
return header_value;
}
}
}
header_value
}
}
impl<'x> Context<'x> {
pub(crate) fn insert_header(
&mut self,
part_id: usize,
header_name: HeaderName<'x>,
header_value: impl Into<Cow<'static, str>>,
last: bool,
) {
let header_value = header_value.into();
self.message_size += header_name.len() + header_value.len() + 4;
let header = Header {
name: header_name,
value: HeaderValue::Text(header_value),
offset_start: 0,
offset_end: 0,
offset_field: 0,
};
if !last {
self.message.parts[part_id].headers.insert(0, header);
} else {
self.message.parts[part_id].headers.push(header);
}
}
}