Import upstream v0.16.22, stripped

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.
This commit is contained in:
2026-09-18 10:21:56 -07:00
commit 7dae9b29fd
1650 changed files with 485521 additions and 0 deletions
+67
View File
@@ -0,0 +1,67 @@
/*
* SPDX-FileCopyrightText: 2020 Stalwart Labs LLC <[email protected]>
*
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-SEL
*/
use crate::{HttpContext, HttpRequest, HttpSessionData};
use common::{
Server,
expr::{functions::ResolveVariable, *},
};
use compact_str::{ToCompactString, format_compact};
use hyper::StatusCode;
use registry::schema::enums::ExpressionVariable;
impl<'x> HttpContext<'x> {
pub fn new(session: &'x HttpSessionData, req: &'x HttpRequest) -> Self {
Self { session, req }
}
pub async fn has_endpoint_access(&self, server: &Server) -> StatusCode {
server
.eval_if(
&server.core.network.http.allowed_endpoint,
self,
self.session.session_id,
)
.await
.unwrap_or(StatusCode::OK)
}
}
impl ResolveVariable for HttpContext<'_> {
fn resolve_variable(&self, variable: ExpressionVariable) -> Variable<'_> {
match variable {
ExpressionVariable::RemoteIp => self.session.remote_ip.to_compact_string().into(),
ExpressionVariable::RemotePort => self.session.remote_port.into(),
ExpressionVariable::LocalIp => self.session.local_ip.to_compact_string().into(),
ExpressionVariable::LocalPort => self.session.local_port.into(),
ExpressionVariable::IsTls => self.session.is_tls.into(),
ExpressionVariable::Protocol => {
if self.session.is_tls { "https" } else { "http" }.into()
}
ExpressionVariable::Listener => self.session.instance.id.as_str().into(),
ExpressionVariable::Url => self.req.uri().to_compact_string().into(),
ExpressionVariable::Path => self.req.uri().path().into(),
ExpressionVariable::Method => self.req.method().as_str().into(),
ExpressionVariable::Headers => self
.req
.headers()
.iter()
.map(|(h, v)| {
Variable::String(
format_compact!("{}: {}", h.as_str(), v.to_str().unwrap_or_default())
.into(),
)
})
.collect::<Vec<_>>()
.into(),
_ => Variable::default(),
}
}
fn resolve_global(&self, _: &str) -> Variable<'_> {
Variable::Integer(0)
}
}