Skip to content

Commit f9ed258

Browse files
committed
feat: sdk autocapture
1 parent 4db3ebc commit f9ed258

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

Cargo.lock

+3-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ zip = "2.2.2"
8181
cargo-llvm-cov = "0.6.15"
8282
pretty_assertions = "1.4.1"
8383

84-
edgee-sdk = "1.5.0"
84+
edgee-sdk = "1.6.0"
8585

8686
edgee-api-client = { version = "0.8.0", path = "crates/api-client" }
8787
edgee-server = { version = "0.8.0", path = "crates/server" }

crates/server/src/config.rs

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ use std::collections::HashSet;
22
use std::sync::OnceLock;
33

44
use edgee_components_runtime::config::ComponentsConfiguration;
5+
use edgee_sdk::Autocapture;
56
use serde::Deserialize;
67
use tracing::level_filters::LevelFilter;
78
use tracing::warn;
@@ -38,6 +39,7 @@ fn default_compute_config() -> ComputeConfiguration {
3839
proxy_only: false,
3940
enforce_no_store_policy: false,
4041
inject_sdk: false,
42+
autocapture: Autocapture::default(),
4143
}
4244
}
4345

@@ -191,6 +193,8 @@ pub struct ComputeConfiguration {
191193
pub enforce_no_store_policy: bool,
192194
#[serde(default)]
193195
pub inject_sdk: bool,
196+
#[serde(default)]
197+
pub autocapture: Autocapture,
194198
}
195199

196200
fn default_cookie_name() -> String {

crates/server/src/proxy/compute/html.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
use crate::config;
2+
13
#[derive(Debug, Default)]
24
pub struct Document {
35
pub data_collection_events: String,
@@ -168,7 +170,7 @@ pub fn parse_html(html: &str, host: &str) -> Document {
168170

169171
// if inline is true, then we need to inline the SDK
170172
if let (true, Some(sdk_url)) = (inline, &builder.sdk_src) {
171-
if let Ok(inlined_sdk) = edgee_sdk::get_sdk(sdk_url, host) {
173+
if let Ok(inlined_sdk) = edgee_sdk::get_sdk(sdk_url, host, config::get().compute.autocapture.clone()) {
172174
set_document_field!(builder, inlined_sdk, inlined_sdk);
173175
}
174176
}

crates/server/src/proxy/controller.rs

+1
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ pub fn sdk(ctx: IncomingContext) -> anyhow::Result<Response> {
196196
if let Ok(mut inlined_sdk) = edgee_sdk::get_sdk(
197197
ctx.request.get_path().as_str(),
198198
ctx.request.get_host().as_str(),
199+
config::get().compute.autocapture.clone(),
199200
) {
200201
inlined_sdk = inlined_sdk.replace("{{side}}", "c");
201202
Ok(http::Response::builder()

0 commit comments

Comments
 (0)