Skip to main content

active_call/handler/
handler.rs

1use crate::media::cache;
2use crate::synthesis::{SynthesisEvent, SynthesisOption};
3use crate::{
4    app::AppState,
5    call::{
6        ActiveCall, ActiveCallType, Command,
7        active_call::{ActiveCallGuard, CallParams, CallSpec},
8    },
9    handler::playbook,
10    playbook::{Playbook, PlaybookRunner},
11};
12use crate::{event::SessionEvent, media::track::TrackConfig};
13use axum::{
14    Json, Router,
15    extract::{Path, Query, State, WebSocketUpgrade, ws::Message},
16    response::sse::{Event, KeepAlive, Sse},
17    response::{IntoResponse, Response},
18    routing::{get, post},
19};
20use bytes::Bytes;
21use chrono::Utc;
22use futures::{SinkExt, StreamExt};
23use rustrtc::IceServer;
24use serde_json::json;
25use std::collections::HashMap;
26use std::{path::PathBuf, sync::Arc, time::Duration};
27use tokio::{join, select};
28use tokio_util::sync::CancellationToken;
29use tracing::{debug, info, trace, warn};
30use uuid::Uuid;
31
32fn filter_headers(
33    extras: &mut std::collections::HashMap<String, serde_json::Value>,
34    allowed_headers: &[String],
35) {
36    extras.retain(|k, _| allowed_headers.iter().any(|h| h.eq_ignore_ascii_case(k)));
37}
38
39pub fn call_router() -> Router<AppState> {
40    let r = Router::new()
41        .route("/call", get(ws_handler))
42        .route("/call/webrtc", get(webrtc_handler))
43        .route("/call/sip", get(sip_handler))
44        .route("/list", get(list_active_calls))
45        .route("/kill/{id}", get(kill_active_call))
46        .route("/events/{id}", get(stream_events))
47        .route("/command/{id}", post(send_command))
48        .route("/precache", post(precache));
49    r
50}
51
52pub fn iceservers_router() -> Router<AppState> {
53    let r = Router::new();
54    r.route("/iceservers", get(get_iceservers))
55}
56
57pub fn playbook_router() -> Router<AppState> {
58    Router::new()
59        .route("/api/playbooks", get(playbook::list_playbooks))
60        .route(
61            "/api/playbooks/{name}",
62            get(playbook::get_playbook).post(playbook::save_playbook),
63        )
64        .route(
65            "/api/playbook/run",
66            axum::routing::post(playbook::run_playbook),
67        )
68        .route("/api/records", get(playbook::list_records))
69}
70
71pub async fn ws_handler(
72    ws: WebSocketUpgrade,
73    State(state): State<AppState>,
74    Query(params): Query<CallParams>,
75) -> Response {
76    call_handler(ActiveCallType::WebSocket, ws, state, params).await
77}
78
79pub async fn sip_handler(
80    ws: WebSocketUpgrade,
81    State(state): State<AppState>,
82    Query(params): Query<CallParams>,
83) -> Response {
84    call_handler(ActiveCallType::Sip, ws, state, params).await
85}
86
87pub async fn webrtc_handler(
88    ws: WebSocketUpgrade,
89    State(state): State<AppState>,
90    Query(params): Query<CallParams>,
91) -> Response {
92    call_handler(ActiveCallType::Webrtc, ws, state, params).await
93}
94
95/// Core call handling logic that works with either WebSocket or mpsc channels
96///
97/// `extras` and `playbook_name` are session-scoped parameters passed directly
98/// by the caller (SIP handler, CLI, etc.) instead of through global maps.
99/// Returns the final call extras (including `_hangup_headers` if set) so the
100/// caller can use them for SIP BYE or other post-call processing.
101pub async fn call_handler_core(
102    call_type: ActiveCallType,
103    session_id: String,
104    app_state: AppState,
105    cancel_token: CancellationToken,
106    audio_receiver: tokio::sync::mpsc::UnboundedReceiver<Bytes>,
107    server_side_track: Option<String>,
108    dump_events: bool,
109    ping_interval: u64,
110    mut command_receiver: tokio::sync::mpsc::UnboundedReceiver<Command>,
111    event_sender_to_client: tokio::sync::mpsc::UnboundedSender<crate::event::SessionEvent>,
112    extras: Option<HashMap<String, serde_json::Value>>,
113    playbook_name: Option<String>,
114) -> Option<HashMap<String, serde_json::Value>> {
115    let _cancel_guard = cancel_token.clone().drop_guard();
116    let track_config = TrackConfig::default();
117
118    let active_call = Arc::new(ActiveCall::new(CallSpec {
119        call_type: call_type.clone(),
120        cancel_token: cancel_token.clone(),
121        session_id: session_id.clone(),
122        invitation: app_state.invitation.clone(),
123        app_state: app_state.clone(),
124        track_config,
125        audio_receiver: Some(audio_receiver),
126        dump_events,
127        server_side_track_id: server_side_track.clone(),
128        extras,
129    }));
130
131    // Load playbook: prefer direct parameter, fall back to pending_playbooks
132    // (pending_playbooks is used by the run_playbook HTTP endpoint)
133    {
134        let name_or_content = playbook_name.or_else(|| {
135            app_state
136                .pending_playbooks
137                .try_lock()
138                .ok()
139                .and_then(|mut pending| pending.remove(&session_id).map(|(val, _)| val))
140        });
141        if let Some(name_or_content) = name_or_content {
142            let playbook_result = if name_or_content.trim().starts_with("---") {
143                Playbook::parse(&name_or_content)
144            } else {
145                // If path already contains config/playbook, use it as-is; otherwise prepend it
146                let path = if name_or_content.starts_with("config/playbook/") {
147                    PathBuf::from(&name_or_content)
148                } else {
149                    PathBuf::from("config/playbook").join(&name_or_content)
150                };
151                Playbook::load(path).await
152            };
153
154            match playbook_result {
155                Ok(mut playbook) => {
156                    // Filter extracted headers if configured (only for SIP calls)
157                    if call_type == ActiveCallType::Sip {
158                        if let Some(sip_config) = &playbook.config.sip {
159                            if let Some(allowed_headers) = &sip_config.extract_headers {
160                                let extras = active_call.extras.rcu(|e| {
161                                    let mut e = HashMap::clone(e);
162                                    filter_headers(&mut e, allowed_headers);
163                                    e
164                                });
165                                // Store the list of SIP header keys for later template rendering
166                                let header_keys: Vec<String> = extras
167                                    .keys()
168                                    .filter(|k| !k.starts_with('_'))
169                                    .cloned()
170                                    .collect();
171                                active_call.set_extra(
172                                    "_sip_header_keys",
173                                    serde_json::to_value(&header_keys).unwrap_or_default(),
174                                );
175                                if let Ok(result) = playbook.render(&active_call.extras.load_full())
176                                {
177                                    playbook = result;
178                                }
179                            }
180                        }
181                    }
182
183                    match PlaybookRunner::new(playbook, active_call.clone()) {
184                        Ok(runner) => {
185                            crate::spawn(async move {
186                                runner.run().await;
187                            });
188                            let display_name = if name_or_content.trim().starts_with("---") {
189                                "custom content"
190                            } else {
191                                &name_or_content
192                            };
193                            info!(session_id, "Playbook runner started for {}", display_name);
194                        }
195                        Err(e) => {
196                            let display_name = if name_or_content.trim().starts_with("---") {
197                                "custom content"
198                            } else {
199                                &name_or_content
200                            };
201                            warn!(
202                                session_id,
203                                "Failed to create runner {}: {}", display_name, e
204                            )
205                        }
206                    }
207                }
208                Err(e) => {
209                    let display_name = if name_or_content.trim().starts_with("---") {
210                        "custom content"
211                    } else {
212                        &name_or_content
213                    };
214                    warn!(
215                        session_id,
216                        "Failed to load playbook {}: {}", display_name, e
217                    );
218                    let event = SessionEvent::Error {
219                        timestamp: crate::media::get_timestamp(),
220                        track_id: session_id.clone(),
221                        sender: "playbook".to_string(),
222                        error: format!("{}", e),
223                        code: None,
224                    };
225                    event_sender_to_client.send(event).ok();
226                    return None;
227                }
228            }
229        }
230    }
231
232    let recv_commands_loop = async {
233        while let Some(command) = command_receiver.recv().await {
234            if let Err(_) = active_call.enqueue_command(command).await {
235                break;
236            }
237        }
238    };
239
240    let mut event_receiver = active_call.event_sender.subscribe();
241    let send_events_loop = async {
242        loop {
243            match event_receiver.recv().await {
244                Ok(event) => {
245                    if let Err(_) = event_sender_to_client.send(event) {
246                        break;
247                    }
248                }
249                Err(tokio::sync::broadcast::error::RecvError::Lagged(_)) => continue,
250                Err(_) => break,
251            }
252        }
253    };
254
255    let send_ping_loop = async {
256        if ping_interval == 0 {
257            active_call.cancel_token.cancelled().await;
258            return;
259        }
260        let mut ticker = tokio::time::interval(Duration::from_secs(ping_interval));
261        loop {
262            ticker.tick().await;
263            let payload = Utc::now().to_rfc3339();
264            let event = SessionEvent::Ping {
265                timestamp: crate::media::get_timestamp(),
266                payload: Some(payload),
267            };
268            if let Err(_) = active_call.event_sender.send(event) {
269                break;
270            }
271        }
272    };
273
274    let guard = ActiveCallGuard::new(active_call.clone());
275    info!(
276        session_id,
277        active_calls = guard.active_calls,
278        ?call_type,
279        "new call started"
280    );
281    let receiver = active_call.new_receiver();
282
283    let (r, _) = join! {
284        active_call.clone().serve(receiver),
285        async {
286            select!{
287                _ = send_ping_loop => {},
288                _ = cancel_token.cancelled() => {},
289                _ = send_events_loop => { },
290                _ = recv_commands_loop => {
291                    info!(session_id, "Command receiver closed");
292                },
293            }
294            cancel_token.cancel();
295        }
296    };
297    // drain events
298    while let Ok(event) = event_receiver.try_recv() {
299        if let Err(_) = event_sender_to_client.send(event) {
300            break;
301        }
302    }
303    match r {
304        Ok(_) => info!(session_id, "call ended successfully"),
305        Err(e) => warn!(session_id, "call ended with error: {}", e),
306    }
307
308    // Capture final extras (including _hangup_headers) before cleanup
309    let final_extras = Some(active_call.extras.load_full().as_ref().clone());
310
311    active_call.cleanup().await.ok();
312    debug!(session_id, "Call handler core completed");
313
314    final_extras
315}
316
317pub async fn call_handler(
318    call_type: ActiveCallType,
319    ws: WebSocketUpgrade,
320    app_state: AppState,
321    params: CallParams,
322) -> Response {
323    let has_explicit_id = params.id.is_some();
324    let session_id = params
325        .id
326        .clone()
327        .unwrap_or_else(|| format!("s.{}", Uuid::new_v4().to_string()));
328    let server_side_track = params.server_side_track.clone();
329    let dump_events = params.dump_events.unwrap_or(true);
330    let ping_interval = params.ping_interval.unwrap_or(20);
331
332    // Only an empty `forward` may hop to peers. Any present value is local-only.
333    // `forward=true` probes 404 if the call is absent so the originator can try
334    // the next peer instead of creating a new call.
335    if has_explicit_id {
336        let found_locally = {
337            let active_calls = app_state.active_calls.lock().unwrap();
338            active_calls.contains_key(&session_id)
339        };
340        if !found_locally {
341            if params.forward.is_none() {
342                if let Some(peer_ws) =
343                    crate::handler::peer::try_forward(&app_state, &session_id, &params).await
344                {
345                    info!(session_id, "forwarding websocket to peer hosting the call");
346                    return ws.on_upgrade(move |socket| async move {
347                        crate::handler::peer::tunnel(socket, peer_ws).await;
348                    });
349                }
350            }
351            if params.forward == Some(true) {
352                warn!(
353                    session_id,
354                    "call not found on this node, rejecting forwarded request"
355                );
356                return (
357                    axum::http::StatusCode::NOT_FOUND,
358                    "call not found on this node",
359                )
360                    .into_response();
361            }
362        }
363    }
364
365    let resp = ws.on_upgrade(move |socket| async move {
366        let (mut ws_sender, mut ws_receiver) = socket.split();
367        let (audio_sender, audio_receiver) = tokio::sync::mpsc::unbounded_channel::<Bytes>();
368        let (command_sender, command_receiver) = tokio::sync::mpsc::unbounded_channel::<Command>();
369        let (event_sender_to_client, mut event_receiver_from_core) =
370            tokio::sync::mpsc::unbounded_channel::<crate::event::SessionEvent>();
371        let cancel_token = CancellationToken::new();
372
373        // Start core handler in background
374        let session_id_clone = session_id.clone();
375        let app_state_clone = app_state.clone();
376        let cancel_token_clone = cancel_token.clone();
377        crate::spawn(async move {
378            call_handler_core(
379                call_type,
380                session_id_clone,
381                app_state_clone,
382                cancel_token_clone,
383                audio_receiver,
384                server_side_track,
385                dump_events,
386                ping_interval.into(),
387                command_receiver,
388                event_sender_to_client,
389                None, // extras — not used for WebSocket calls
390                None, // playbook_name — falls back to pending_playbooks
391            )
392            .await;
393        });
394
395        // Handle WebSocket I/O
396        let recv_from_ws_loop = async {
397            while let Some(Ok(message)) = ws_receiver.next().await {
398                match message {
399                    Message::Text(text) => {
400                        let command = match serde_json::from_str::<Command>(&text) {
401                            Ok(cmd) => cmd,
402                            Err(e) => {
403                                warn!(session_id, %text, "Failed to parse command {}", e);
404                                continue;
405                            }
406                        };
407                        if let Err(_) = command_sender.send(command) {
408                            break;
409                        }
410                    }
411                    Message::Binary(bin) => {
412                        audio_sender.send(bin.into()).ok();
413                    }
414                    Message::Close(_) => {
415                        info!(session_id, "WebSocket closed by client");
416                        break;
417                    }
418                    _ => {}
419                }
420            }
421        };
422
423        let send_to_ws_loop = async {
424            while let Some(event) = event_receiver_from_core.recv().await {
425                trace!(session_id, %event, "Sending WS message");
426                let message = match event.into_ws_message() {
427                    Ok(msg) => msg,
428                    Err(e) => {
429                        warn!(session_id, error=%e, "Failed to serialize event to WS message");
430                        continue;
431                    }
432                };
433                if let Err(_) = ws_sender.send(message).await {
434                    info!(session_id, "WebSocket send failed, closing");
435                    break;
436                }
437            }
438        };
439
440        select! {
441            _ = recv_from_ws_loop => {
442                info!(session_id, "WebSocket receive loop ended");
443            },
444            _ = send_to_ws_loop => {
445                info!(session_id, "WebSocket send loop ended");
446            },
447        }
448
449        cancel_token.cancel();
450        ws_sender.flush().await.ok();
451        ws_sender.close().await.ok();
452        debug!(session_id, "WebSocket connection closed");
453    });
454    resp
455}
456
457pub(crate) async fn get_iceservers(State(state): State<AppState>) -> Response {
458    if let Some(ice_servers) = state.config.ice_servers.as_ref() {
459        return Json(ice_servers).into_response();
460    }
461    Json(vec![IceServer {
462        urls: vec!["stun:stun.l.google.com:19302".to_string()],
463        ..Default::default()
464    }])
465    .into_response()
466}
467
468pub(crate) async fn list_active_calls(State(state): State<AppState>) -> Response {
469    // Clone the call handles out of the registry lock first, then read each
470    // call's lock-free progress snapshot without holding the registry lock.
471    let calls = state
472        .active_calls
473        .lock()
474        .unwrap()
475        .iter()
476        .map(|(_, c)| c.clone())
477        .collect::<Vec<_>>();
478    let list = calls
479        .iter()
480        .map(|c| {
481            let progress = c.progress.load_full();
482            json!({
483                "id": c.session_id,
484                "callType": c.call_type,
485                "cs.option": progress.option,
486                "ringTime": progress.ring_time,
487                "startTime": progress.answer_time,
488            })
489        })
490        .collect::<Vec<_>>();
491    Json(serde_json::json!({ "active_calls": list })).into_response()
492}
493
494pub(crate) async fn kill_active_call(
495    Path(id): Path<String>,
496    State(state): State<AppState>,
497) -> Response {
498    let active_calls = state.active_calls.lock().unwrap();
499    if let Some(call) = active_calls.get(&id) {
500        call.cancel_token.cancel();
501        Json(serde_json::json!({ "status": "killed", "id": id })).into_response()
502    } else {
503        (
504            axum::http::StatusCode::NOT_FOUND,
505            Json(serde_json::json!({ "status": "not_found", "id": id })),
506        )
507            .into_response()
508    }
509}
510
511pub(crate) async fn stream_events(
512    Path(id): Path<String>,
513    State(state): State<AppState>,
514) -> Response {
515    let mut rx_events;
516    let mut rx_commands;
517    {
518        let active_calls = state.active_calls.lock().unwrap();
519        if let Some(call) = active_calls.get(&id) {
520            rx_events = call.event_sender.subscribe();
521            rx_commands = call.cmd_sender.subscribe();
522        } else {
523            return (axum::http::StatusCode::NOT_FOUND, "track not active").into_response();
524        }
525    }
526
527    let stream = async_stream::stream! {
528        loop {
529            let result = tokio::select! {
530                r = rx_events.recv() => r.map(|e| serde_json::to_string(&e).map(|json| Event::default().event("event").data(json))),
531                r = rx_commands.recv() => r.map(|c| serde_json::to_string(&c).map(|json| Event::default().event("command").data(json))),
532            };
533            match result {
534                Ok(Ok(sse_event)) => yield Ok::<Event, serde_json::Error>(sse_event),
535                Ok(Err(e)) => yield Err(e.into()),
536                Err(tokio::sync::broadcast::error::RecvError::Closed) => break,
537                Err(tokio::sync::broadcast::error::RecvError::Lagged(_)) => continue,
538            }
539        }
540    };
541
542    let mut response = Sse::new(stream)
543        .keep_alive(KeepAlive::default())
544        .into_response();
545    response.headers_mut().insert(
546        axum::http::header::CONTENT_TYPE,
547        "text/event-stream;charset=utf-8".parse().unwrap(),
548    );
549    response
550}
551
552pub(crate) async fn send_command(
553    Path(id): Path<String>,
554    State(state): State<AppState>,
555    Json(command): Json<Command>,
556) -> Response {
557    let active_calls = state.active_calls.lock().unwrap();
558    if let Some(call) = active_calls.get(&id) {
559        if let Ok(_) = call.cmd_sender.send(command) {
560            return Json(serde_json::json!({ "status": "sent", "id": id })).into_response();
561        }
562    }
563
564    (
565        axum::http::StatusCode::NOT_FOUND,
566        Json(serde_json::json!({ "status": "not_found", "id": id })),
567    )
568        .into_response()
569}
570
571/// Pre-generate and cache TTS audio without an active call.
572///
573/// Accepts a `Tts` command (same shape as `/command/{id}`): it synthesizes the
574/// text and stores the audio under the exact cache key the real `do_tts` would
575/// use. A later `Tts` with the same parameters then hits the cache instead of
576/// regenerating.
577///
578/// NOTE: the cache key is derived from the command parameters. For a cache hit
579/// the real command must use the same effective `option` (provider, samplerate,
580/// speaker, speed) — or pass an explicit `cacheKey`.
581pub(crate) async fn precache(
582    State(state): State<AppState>,
583    Json(command): Json<Command>,
584) -> Response {
585    let result = match command {
586        Command::Tts {
587            text,
588            speaker,
589            option,
590            cache_key,
591            ..
592        } => precache_tts(&state, text, speaker, option, cache_key).await,
593        _ => {
594            return (
595                axum::http::StatusCode::BAD_REQUEST,
596                Json(json!({ "status": "error", "error": "precache only accepts tts commands" })),
597            )
598                .into_response();
599        }
600    };
601
602    match result {
603        Ok((cache_key, bytes, existed)) => Json(json!({
604            "status": if existed { "exists" } else { "cached" },
605            "cacheKey": cache_key,
606            "bytes": bytes,
607        }))
608        .into_response(),
609        Err(e) => (
610            axum::http::StatusCode::INTERNAL_SERVER_ERROR,
611            Json(json!({ "status": "error", "error": e.to_string() })),
612        )
613            .into_response(),
614    }
615}
616
617/// Synthesize `text` and store the audio under the same cache key `do_tts` uses.
618/// Returns (cache_key, bytes_stored, already_existed).
619async fn precache_tts(
620    state: &AppState,
621    text: String,
622    speaker: Option<String>,
623    option: Option<SynthesisOption>,
624    cache_key: Option<String>,
625) -> anyhow::Result<(String, usize, bool)> {
626    let mut opt = option.ok_or_else(|| anyhow::anyhow!("tts precache requires an option"))?;
627    // Fold the top-level speaker into the option (same precedence as do_tts)
628    opt.speaker = speaker.or(opt.speaker);
629    opt.check_default();
630
631    let mut client = state.stream_engine.create_tts_client(false, &opt).await?;
632    // Cache key must match tts.rs::handle_cache exactly.
633    let sample_rate = opt.samplerate.unwrap_or(16000) as u32;
634    let cache_key = cache_key.unwrap_or_else(|| {
635        cache::generate_cache_key(
636            &format!("tts:{}{}", client.provider(), text),
637            sample_rate,
638            opt.speaker.as_ref(),
639            opt.speed,
640        )
641    });
642    if cache::is_cached(&cache_key).await.unwrap_or(false) {
643        return Ok((cache_key, 0, true));
644    }
645
646    let mut stream = client.start().await?;
647    client.synthesize(&text, Some(0), Some(opt.clone())).await?;
648    client.stop().await?;
649
650    let mut chunks: Vec<Bytes> = Vec::new();
651    let mut first_chunk = true;
652    while let Some((_seq, res)) = stream.next().await {
653        match res? {
654            SynthesisEvent::AudioChunk(mut chunk) => {
655                // Strip the 44-byte WAV header off the first chunk (same as tts.rs).
656                if first_chunk {
657                    if chunk.len() > 44 && chunk[..4] == [0x52, 0x49, 0x46, 0x46] {
658                        let _ = chunk.split_to(44);
659                    }
660                    first_chunk = false;
661                }
662                chunks.push(chunk);
663            }
664            SynthesisEvent::Finished => break,
665            _ => {}
666        }
667    }
668    if chunks.is_empty() {
669        return Err(anyhow::anyhow!("tts produced no audio"));
670    }
671    let bytes: usize = chunks.iter().map(|c| c.len()).sum();
672    cache::store_in_cache_vectored(&cache_key, &chunks).await?;
673    info!(cache_key = %cache_key, bytes, "precache: stored tts audio");
674    Ok((cache_key, bytes, false))
675}
676
677trait IntoWsMessage {
678    fn into_ws_message(self) -> Result<Message, serde_json::Error>;
679}
680
681impl IntoWsMessage for crate::event::SessionEvent {
682    fn into_ws_message(self) -> Result<Message, serde_json::Error> {
683        match self {
684            SessionEvent::Binary { data, .. } => Ok(Message::Binary(data.into())),
685            SessionEvent::Ping { timestamp, payload } => {
686                let payload = payload.unwrap_or_else(|| timestamp.to_string());
687                Ok(Message::Ping(payload.into()))
688            }
689            event => serde_json::to_string(&event).map(|payload| Message::Text(payload.into())),
690        }
691    }
692}
693
694#[cfg(test)]
695mod tests {
696    use super::*;
697    use serde_json::json;
698    use std::collections::HashMap;
699
700    #[test]
701    fn test_filter_headers() {
702        let mut extras = HashMap::new();
703        extras.insert("X-Tenant-ID".to_string(), json!("123"));
704        extras.insert("X-User-ID".to_string(), json!("456"));
705        extras.insert("Custom-Header".to_string(), json!("abc"));
706        extras.insert("Irrelevant-Header".to_string(), json!("ignore"));
707
708        // Test case-insensitive matching
709        let allowed = vec!["x-tenant-id".to_string(), "Custom-Header".to_string()];
710
711        filter_headers(&mut extras, &allowed);
712
713        assert!(extras.contains_key("X-Tenant-ID"));
714        assert!(extras.contains_key("Custom-Header"));
715        assert!(!extras.contains_key("X-User-ID"));
716        assert!(!extras.contains_key("Irrelevant-Header"));
717
718        // ensure values are preserved
719        assert_eq!(extras.get("X-Tenant-ID").unwrap(), &json!("123"));
720        assert_eq!(extras.get("Custom-Header").unwrap(), &json!("abc"));
721    }
722
723    #[tokio::test]
724    async fn test_call_handler_core_extras_are_session_scoped() {
725        use crate::app::AppStateBuilder;
726        use crate::call::{ActiveCallType, Command};
727        use crate::config::Config;
728
729        let mut config = Config::default();
730        config.udp_port = 0;
731        let app_state = AppStateBuilder::new()
732            .with_config(config)
733            .build()
734            .await
735            .expect("Failed to build app state");
736
737        let session_id = "test-session-scoped".to_string();
738        let cancel_token = CancellationToken::new();
739
740        // Pass extras directly as a parameter (not via global map)
741        let mut extras = HashMap::new();
742        extras.insert("X-Custom".to_string(), json!("value"));
743
744        let (_audio_sender, audio_receiver) = tokio::sync::mpsc::unbounded_channel::<Bytes>();
745        let (command_sender, command_receiver) = tokio::sync::mpsc::unbounded_channel::<Command>();
746        let (event_sender, _event_receiver) =
747            tokio::sync::mpsc::unbounded_channel::<crate::event::SessionEvent>();
748
749        // Send a Hangup command immediately to end the call
750        command_sender
751            .send(Command::Hangup {
752                reason: None,
753                initiator: None,
754                headers: None,
755                refer: None,
756            })
757            .ok();
758        drop(command_sender);
759
760        // Run call_handler_core with extras passed directly
761        let final_extras = call_handler_core(
762            ActiveCallType::Sip,
763            session_id.clone(),
764            app_state.clone(),
765            cancel_token,
766            audio_receiver,
767            None,
768            false,
769            0,
770            command_receiver,
771            event_sender,
772            Some(extras), // extras passed directly
773            None,         // no playbook
774        )
775        .await;
776
777        // Verify that final extras are returned and contain our custom header
778        assert!(final_extras.is_some(), "final extras should be returned");
779        let extras = final_extras.unwrap();
780        assert_eq!(
781            extras.get("X-Custom"),
782            Some(&json!("value")),
783            "session-scoped extras should be preserved"
784        );
785    }
786}