diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index ee16c0f8..5b20345e 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -5,6 +5,8 @@ on: - cron: "0 6 * * 1" # Weekly Monday 6 AM UTC workflow_dispatch: pull_request: + branches: + - main paths: - "src/channels/web/**" - "tests/e2e/**" @@ -50,9 +52,11 @@ jobs: - group: core files: "tests/e2e/scenarios/test_connection.py tests/e2e/scenarios/test_chat.py tests/e2e/scenarios/test_sse_reconnect.py tests/e2e/scenarios/test_html_injection.py tests/e2e/scenarios/test_csp.py" - group: features - files: "tests/e2e/scenarios/test_skills.py tests/e2e/scenarios/test_tool_approval.py" + files: "tests/e2e/scenarios/test_skills.py tests/e2e/scenarios/test_tool_approval.py tests/e2e/scenarios/test_webhook.py" - group: extensions - files: "tests/e2e/scenarios/test_extensions.py tests/e2e/scenarios/test_extension_oauth.py tests/e2e/scenarios/test_telegram_token_validation.py tests/e2e/scenarios/test_wasm_lifecycle.py tests/e2e/scenarios/test_tool_execution.py tests/e2e/scenarios/test_pairing.py tests/e2e/scenarios/test_oauth_credential_fallback.py tests/e2e/scenarios/test_routine_oauth_credential_injection.py" + files: "tests/e2e/scenarios/test_extensions.py tests/e2e/scenarios/test_extension_oauth.py tests/e2e/scenarios/test_telegram_token_validation.py tests/e2e/scenarios/test_telegram_hot_activation.py tests/e2e/scenarios/test_wasm_lifecycle.py tests/e2e/scenarios/test_tool_execution.py tests/e2e/scenarios/test_pairing.py tests/e2e/scenarios/test_mcp_auth_flow.py tests/e2e/scenarios/test_oauth_credential_fallback.py tests/e2e/scenarios/test_routine_oauth_credential_injection.py" + - group: routines + files: "tests/e2e/scenarios/test_owner_scope.py tests/e2e/scenarios/test_routine_event_batch.py" steps: - uses: actions/checkout@v6 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c3ceb8b6..00488c70 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,10 @@ jobs: matrix: include: - name: all-features - flags: "--features postgres,libsql,html-to-markdown" + # Keep product feature coverage broad without pulling in the + # test-only `integration` feature, which is exercised separately + # in the heavy integration job below. + flags: "--no-default-features --features postgres,libsql,html-to-markdown,bedrock,import" - name: default flags: "" - name: libsql-only @@ -39,6 +42,26 @@ jobs: - name: Run Tests run: cargo test ${{ matrix.flags }} -- --nocapture + heavy-integration-tests: + name: Heavy Integration Tests + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v6 + - name: Install Rust + uses: dtolnay/rust-toolchain@stable + with: + targets: wasm32-wasip2 + - uses: Swatinem/rust-cache@v2 + with: + key: heavy-integration + - name: Build Telegram WASM channel + run: cargo build --manifest-path channels-src/telegram/Cargo.toml --target wasm32-wasip2 --release + - name: Run thread scheduling integration tests + run: cargo test --no-default-features --features libsql,integration --test e2e_thread_scheduling -- --nocapture + - name: Run Telegram thread-scope regression test + run: cargo test --features integration --test telegram_auth_integration test_private_messages_use_chat_id_as_thread_scope -- --exact + telegram-tests: name: Telegram Channel Tests if: > @@ -65,7 +88,7 @@ jobs: matrix: include: - name: all-features - flags: "--all-features" + flags: "--no-default-features --features postgres,libsql,html-to-markdown,bedrock,import" - name: default flags: "" - name: libsql-only @@ -149,7 +172,7 @@ jobs: name: Run Tests runs-on: ubuntu-latest if: always() - needs: [tests, telegram-tests, wasm-wit-compat, docker-build, windows-build, version-check, bench-compile] + needs: [tests, heavy-integration-tests, telegram-tests, wasm-wit-compat, docker-build, windows-build, version-check, bench-compile] steps: - run: | # Unit tests must always pass @@ -157,6 +180,10 @@ jobs: echo "Unit tests failed" exit 1 fi + if [[ "${{ needs.heavy-integration-tests.result }}" != "success" ]]; then + echo "Heavy integration tests failed" + exit 1 + fi # Gated jobs: must pass on promotion PRs / push, skipped on developer PRs for job in telegram-tests wasm-wit-compat docker-build windows-build version-check bench-compile; do case "$job" in diff --git a/Cargo.toml b/Cargo.toml index aef4e687..b396b18d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -222,11 +222,17 @@ postgres = [ "rust_decimal/db-tokio-postgres", ] libsql = ["dep:libsql"] +# Opt-in feature for especially heavy integration-test targets that run in a +# dedicated CI job instead of the default Rust test matrix. integration = [] html-to-markdown = ["dep:html-to-markdown-rs", "dep:readabilityrs"] bedrock = ["dep:aws-config", "dep:aws-sdk-bedrockruntime", "dep:aws-smithy-types"] import = ["dep:json5", "libsql"] +[[test]] +name = "e2e_thread_scheduling" +required-features = ["libsql", "integration"] + [[test]] name = "html_to_markdown" required-features = ["html-to-markdown"] diff --git a/FEATURE_PARITY.md b/FEATURE_PARITY.md index db4ab92a..85348de5 100644 --- a/FEATURE_PARITY.md +++ b/FEATURE_PARITY.md @@ -20,9 +20,9 @@ This document tracks feature parity between IronClaw (Rust implementation) and O |---------|----------|----------|-------| | Hub-and-spoke architecture | ✅ | ✅ | Web gateway as central hub | | WebSocket control plane | ✅ | ✅ | Gateway with WebSocket + SSE | -| Single-user system | ✅ | ✅ | | +| Single-user system | ✅ | ✅ | Explicit instance owner scope for persistent routines, secrets, jobs, settings, extensions, and workspace memory | | Multi-agent routing | ✅ | ❌ | Workspace isolation per-agent | -| Session-based messaging | ✅ | ✅ | Per-sender sessions | +| Session-based messaging | ✅ | ✅ | Owner scope is separate from sender identity and conversation scope | | Loopback-first networking | ✅ | ✅ | HTTP binds to 0.0.0.0 but can be configured | ### Owner: _Unassigned_ @@ -66,9 +66,9 @@ This document tracks feature parity between IronClaw (Rust implementation) and O | CLI/TUI | ✅ | ✅ | - | Ratatui-based TUI | | HTTP webhook | ✅ | ✅ | - | axum with secret validation | | REPL (simple) | ✅ | ✅ | - | For testing | -| WASM channels | ❌ | ✅ | - | IronClaw innovation | +| WASM channels | ❌ | ✅ | - | IronClaw innovation; host resolves owner scope vs sender identity | | WhatsApp | ✅ | ❌ | P1 | Baileys (Web), same-phone mode with echo detection | -| Telegram | ✅ | ✅ | - | WASM channel(MTProto), DM pairing, caption, /start, bot_username, DM topics | +| Telegram | ✅ | ✅ | - | WASM channel(MTProto), DM pairing, caption, /start, bot_username, DM topics, setup-time owner auto-verification, owner-scoped persistence | | Discord | ✅ | ❌ | P2 | discord.js, thread parent binding inheritance | | Signal | ✅ | ✅ | P2 | signal-cli daemonPC, SSE listener HTTP/JSON-R, user/group allowlists, DM pairing | | Slack | ✅ | ✅ | - | WASM tool | diff --git a/channels-src/telegram/src/lib.rs b/channels-src/telegram/src/lib.rs index 936197bc..a095ccb3 100644 --- a/channels-src/telegram/src/lib.rs +++ b/channels-src/telegram/src/lib.rs @@ -102,7 +102,6 @@ struct TelegramMessage { sticker: Option, /// Forum topic ID. Present when the message is sent inside a forum topic. - /// https://core.telegram.org/bots/api#message #[serde(default)] message_thread_id: Option, @@ -207,10 +206,6 @@ struct TelegramChat { /// Title for groups/channels. title: Option, - /// True when the supergroup has topics (forum mode) enabled. - #[serde(default)] - is_forum: Option, - /// Username for private chats. username: Option, } @@ -508,8 +503,7 @@ impl Guest for TelegramChannel { // Delete any existing webhook before polling. Telegram returns success // when no webhook exists, so any error here (e.g. 401) means a bad token. - delete_webhook() - .map_err(|e| format!("Bot token validation failed: {}", e))?; + delete_webhook().map_err(|e| format!("Bot token validation failed: {}", e))?; } // Configure polling only if not in webhook mode @@ -697,7 +691,12 @@ impl Guest for TelegramChannel { let metadata: TelegramMessageMetadata = serde_json::from_str(&response.metadata_json) .map_err(|e| format!("Failed to parse metadata: {}", e))?; - send_response(metadata.chat_id, &response, Some(metadata.message_id), metadata.message_thread_id) + send_response( + metadata.chat_id, + &response, + Some(metadata.message_id), + metadata.message_thread_id, + ) } fn on_broadcast(user_id: String, response: AgentResponse) -> Result<(), String> { @@ -734,8 +733,6 @@ impl Guest for TelegramChannel { "action": "typing" }); - // sendChatAction requires message_thread_id even for the General - // topic (id=1), unlike sendMessage which rejects it. if let Some(thread_id) = metadata.message_thread_id { payload["message_thread_id"] = serde_json::Value::Number(thread_id.into()); } @@ -766,9 +763,13 @@ impl Guest for TelegramChannel { } TelegramStatusAction::Notify(prompt) => { // Send user-visible status updates for actionable events. - if let Err(first_err) = - send_message(metadata.chat_id, &prompt, Some(metadata.message_id), None, metadata.message_thread_id) - { + if let Err(first_err) = send_message( + metadata.chat_id, + &prompt, + Some(metadata.message_id), + None, + metadata.message_thread_id, + ) { channel_host::log( channel_host::LogLevel::Warn, &format!( @@ -777,7 +778,13 @@ impl Guest for TelegramChannel { ), ); - if let Err(retry_err) = send_message(metadata.chat_id, &prompt, None, None, metadata.message_thread_id) { + if let Err(retry_err) = send_message( + metadata.chat_id, + &prompt, + None, + None, + metadata.message_thread_id, + ) { channel_host::log( channel_host::LogLevel::Debug, &format!( @@ -822,9 +829,8 @@ impl std::fmt::Display for SendError { /// Normalize `message_thread_id` for outbound API calls. /// -/// Telegram rejects `sendMessage` (and other send methods) when -/// `message_thread_id = 1` (the "General" topic). Return `None` in that -/// case so the field is omitted from the payload. +/// Telegram rejects `sendMessage` and file-send methods when +/// `message_thread_id = 1` (the "General" topic), so omit it in that case. fn normalize_thread_id(thread_id: Option) -> Option { thread_id.filter(|&id| id != 1) } @@ -950,19 +956,20 @@ fn download_telegram_file(file_id: &str) -> Result, String> { ); let headers = serde_json::json!({}); - let result = - channel_host::http_request("GET", &get_file_url, &headers.to_string(), None, None); + let result = channel_host::http_request("GET", &get_file_url, &headers.to_string(), None, None); let response = result.map_err(|e| format!("getFile request failed: {}", e))?; if response.status != 200 { let body_str = String::from_utf8_lossy(&response.body); - return Err(format!("getFile returned {}: {}", response.status, body_str)); + return Err(format!( + "getFile returned {}: {}", + response.status, body_str + )); } - let api_response: TelegramApiResponse = - serde_json::from_slice(&response.body) - .map_err(|e| format!("Failed to parse getFile response: {}", e))?; + let api_response: TelegramApiResponse = serde_json::from_slice(&response.body) + .map_err(|e| format!("Failed to parse getFile response: {}", e))?; if !api_response.ok { return Err(format!( @@ -992,16 +999,12 @@ fn download_telegram_file(file_id: &str) -> Result, String> { file_path ); - let result = - channel_host::http_request("GET", &download_url, &headers.to_string(), None, None); + let result = channel_host::http_request("GET", &download_url, &headers.to_string(), None, None); let response = result.map_err(|e| format!("File download failed: {}", e))?; if response.status != 200 { - return Err(format!( - "File download returned status {}", - response.status - )); + return Err(format!("File download returned status {}", response.status)); } // Post-download size guard: Telegram metadata file_size is optional, @@ -1088,7 +1091,14 @@ fn send_photo( data.len() ), ); - return send_document(chat_id, filename, mime_type, data, reply_to_message_id, message_thread_id); + return send_document( + chat_id, + filename, + mime_type, + data, + reply_to_message_id, + message_thread_id, + ); } let boundary = format!("ironclaw-{}", channel_host::now_millis()); @@ -1096,10 +1106,20 @@ fn send_photo( write_multipart_field(&mut body, &boundary, "chat_id", &chat_id.to_string()); if let Some(msg_id) = reply_to_message_id { - write_multipart_field(&mut body, &boundary, "reply_to_message_id", &msg_id.to_string()); + write_multipart_field( + &mut body, + &boundary, + "reply_to_message_id", + &msg_id.to_string(), + ); } if let Some(thread_id) = message_thread_id { - write_multipart_field(&mut body, &boundary, "message_thread_id", &thread_id.to_string()); + write_multipart_field( + &mut body, + &boundary, + "message_thread_id", + &thread_id.to_string(), + ); } write_multipart_file(&mut body, &boundary, "photo", filename, mime_type, data); body.extend_from_slice(format!("--{}--\r\n", boundary).as_bytes()); @@ -1151,10 +1171,20 @@ fn send_document( write_multipart_field(&mut body, &boundary, "chat_id", &chat_id.to_string()); if let Some(msg_id) = reply_to_message_id { - write_multipart_field(&mut body, &boundary, "reply_to_message_id", &msg_id.to_string()); + write_multipart_field( + &mut body, + &boundary, + "reply_to_message_id", + &msg_id.to_string(), + ); } if let Some(thread_id) = message_thread_id { - write_multipart_field(&mut body, &boundary, "message_thread_id", &thread_id.to_string()); + write_multipart_field( + &mut body, + &boundary, + "message_thread_id", + &thread_id.to_string(), + ); } write_multipart_file(&mut body, &boundary, "document", filename, mime_type, data); body.extend_from_slice(format!("--{}--\r\n", boundary).as_bytes()); @@ -1191,12 +1221,7 @@ fn send_document( } /// Image MIME types that Telegram's sendPhoto API supports. -const PHOTO_MIME_TYPES: &[&str] = &[ - "image/jpeg", - "image/png", - "image/gif", - "image/webp", -]; +const PHOTO_MIME_TYPES: &[&str] = &["image/jpeg", "image/png", "image/gif", "image/webp"]; /// Send a full agent response (attachments + text) to a chat. /// @@ -1218,13 +1243,23 @@ fn send_response( } // Try Markdown, fall back to plain text on parse errors - match send_message(chat_id, &response.content, reply_to_message_id, Some("Markdown"), message_thread_id) { + match send_message( + chat_id, + &response.content, + reply_to_message_id, + Some("Markdown"), + message_thread_id, + ) { Ok(_) => Ok(()), - Err(SendError::ParseEntities(_)) => { - send_message(chat_id, &response.content, reply_to_message_id, None, message_thread_id) - .map(|_| ()) - .map_err(|e| format!("Plain-text retry also failed: {}", e)) - } + Err(SendError::ParseEntities(_)) => send_message( + chat_id, + &response.content, + reply_to_message_id, + None, + message_thread_id, + ) + .map(|_| ()) + .map_err(|e| format!("Plain-text retry also failed: {}", e)), Err(e) => Err(e.to_string()), } } @@ -1392,7 +1427,10 @@ fn register_webhook(tunnel_url: &str, webhook_secret: Option<&str>) -> Result<() let context = if retried { " (after retry)" } else { "" }; channel_host::log( channel_host::LogLevel::Info, - &format!("Webhook registered successfully{}: {}", context, webhook_url), + &format!( + "Webhook registered successfully{}: {}", + context, webhook_url + ), ); Ok(()) @@ -1412,7 +1450,7 @@ fn send_pairing_reply(chat_id: i64, code: &str) -> Result<(), String> { ), None, Some("Markdown"), - None, // Pairing happens in DMs, not forum topics + None, ) .map(|_| ()) .map_err(|e| e.to_string()) @@ -1494,7 +1532,9 @@ fn extract_attachments(message: &TelegramMessage) -> Vec { if let Some(ref doc) = message.document { attachments.push(make_inbound_attachment( doc.file_id.clone(), - doc.mime_type.clone().unwrap_or_else(|| "application/octet-stream".to_string()), + doc.mime_type + .clone() + .unwrap_or_else(|| "application/octet-stream".to_string()), doc.file_name.clone(), doc.file_size.map(|s| s as u64), Some(get_file_url(&doc.file_id)), @@ -1507,7 +1547,10 @@ fn extract_attachments(message: &TelegramMessage) -> Vec { if let Some(ref audio) = message.audio { attachments.push(make_inbound_attachment( audio.file_id.clone(), - audio.mime_type.clone().unwrap_or_else(|| "audio/mpeg".to_string()), + audio + .mime_type + .clone() + .unwrap_or_else(|| "audio/mpeg".to_string()), audio.file_name.clone(), audio.file_size.map(|s| s as u64), Some(get_file_url(&audio.file_id)), @@ -1520,7 +1563,10 @@ fn extract_attachments(message: &TelegramMessage) -> Vec { if let Some(ref video) = message.video { attachments.push(make_inbound_attachment( video.file_id.clone(), - video.mime_type.clone().unwrap_or_else(|| "video/mp4".to_string()), + video + .mime_type + .clone() + .unwrap_or_else(|| "video/mp4".to_string()), video.file_name.clone(), video.file_size.map(|s| s as u64), Some(get_file_url(&video.file_id)), @@ -1745,25 +1791,14 @@ fn handle_message(message: TelegramMessage) { let is_private = message.chat.chat_type == "private"; - // Owner validation: when owner_id is set, only that user can message - let owner_id_str = channel_host::workspace_read(OWNER_ID_PATH).filter(|s| !s.is_empty()); + let owner_id = channel_host::workspace_read(OWNER_ID_PATH) + .filter(|s| !s.is_empty()) + .and_then(|s| s.parse::().ok()); + let is_owner = owner_id == Some(from.id); - if let Some(ref id_str) = owner_id_str { - if let Ok(owner_id) = id_str.parse::() { - if from.id != owner_id { - channel_host::log( - channel_host::LogLevel::Debug, - &format!( - "Dropping message from non-owner user {} (owner: {})", - from.id, owner_id - ), - ); - return; - } - } - } else { - // No owner_id: apply authorization based on dm_policy and allow_from - // This applies to both private and group chats when owner_id is null + if !is_owner { + // Non-owner senders remain guests. Apply authorization based on + // dm_policy / allow_from before letting them chat in their own scope. let dm_policy = channel_host::workspace_read(DM_POLICY_PATH).unwrap_or_else(|| "pairing".to_string()); @@ -1830,8 +1865,6 @@ fn handle_message(message: TelegramMessage) { } } - let bot_username = channel_host::workspace_read(BOT_USERNAME_PATH).unwrap_or_default(); - // For group chats, only respond if bot was mentioned or respond_to_all is enabled if !is_private { let respond_to_all = channel_host::workspace_read(RESPOND_TO_ALL_GROUP_PATH) @@ -1841,6 +1874,7 @@ fn handle_message(message: TelegramMessage) { if !respond_to_all { let has_command = content.starts_with('/'); + let bot_username = channel_host::workspace_read(BOT_USERNAME_PATH).unwrap_or_default(); let has_bot_mention = if bot_username.is_empty() { content.contains('@') } else { @@ -1876,18 +1910,7 @@ fn handle_message(message: TelegramMessage) { let metadata_json = serde_json::to_string(&metadata).unwrap_or_else(|_| "{}".to_string()); - // Compute thread_id for forum topics: "chat_id:topic_id" to prevent - // collisions across different groups (topic IDs are only unique per chat). - // Only use message_thread_id when the chat is a forum — non-forum groups - // also carry message_thread_id for reply threads, which are not topics. - let thread_id = if message.chat.is_forum == Some(true) { - message.message_thread_id.map(|topic_id| { - format!("{}:{}", message.chat.id, topic_id) - }) - } else { - None - }; - + let bot_username = channel_host::workspace_read(BOT_USERNAME_PATH).unwrap_or_default(); let content_to_emit = match content_to_emit_for_agent( &content, if bot_username.is_empty() { @@ -1907,7 +1930,7 @@ fn handle_message(message: TelegramMessage) { user_id: from.id.to_string(), user_name: Some(user_name), content: content_to_emit, - thread_id, + thread_id: Some(message.chat.id.to_string()), metadata_json, attachments, }); @@ -2507,7 +2530,11 @@ mod tests { assert_eq!(attachments[0].id, "large_id"); // Largest photo assert_eq!(attachments[0].mime_type, "image/jpeg"); assert_eq!(attachments[0].size_bytes, Some(54321)); - assert!(attachments[0].source_url.as_ref().unwrap().contains("large_id")); + assert!(attachments[0] + .source_url + .as_ref() + .unwrap() + .contains("large_id")); } #[test] @@ -2559,9 +2586,7 @@ mod tests { attachments[0].filename.as_deref(), Some("voice_voice_xyz.ogg") ); - assert!(attachments[0] - .extras_json - .contains("\"duration_secs\":5")); + assert!(attachments[0].extras_json.contains("\"duration_secs\":5")); } #[test] @@ -2707,18 +2732,33 @@ mod tests { }; // PDFs and Office docs should be downloaded - assert!(is_downloadable_document(&make("application/pdf", Some("report.pdf")))); + assert!(is_downloadable_document(&make( + "application/pdf", + Some("report.pdf") + ))); assert!(is_downloadable_document(&make( "application/vnd.openxmlformats-officedocument.wordprocessingml.document", Some("doc.docx"), ))); - assert!(is_downloadable_document(&make("text/plain", Some("notes.txt")))); + assert!(is_downloadable_document(&make( + "text/plain", + Some("notes.txt") + ))); // Voice, image, audio, video should NOT be downloaded - assert!(!is_downloadable_document(&make("audio/ogg", Some("voice_123.ogg")))); + assert!(!is_downloadable_document(&make( + "audio/ogg", + Some("voice_123.ogg") + ))); assert!(!is_downloadable_document(&make("image/jpeg", None))); - assert!(!is_downloadable_document(&make("audio/mpeg", Some("song.mp3")))); - assert!(!is_downloadable_document(&make("video/mp4", Some("clip.mp4")))); + assert!(!is_downloadable_document(&make( + "audio/mpeg", + Some("song.mp3") + ))); + assert!(!is_downloadable_document(&make( + "video/mp4", + Some("clip.mp4") + ))); } #[test] @@ -2726,100 +2766,4 @@ mod tests { // Verify the constant is 20 MB, matching the Slack channel limit assert_eq!(MAX_DOWNLOAD_SIZE_BYTES, 20 * 1024 * 1024); } - - // === Forum Topics (thread_id) tests === - - #[test] - fn test_parse_forum_message_with_thread_id() { - let json = r#"{ - "message_id": 100, - "message_thread_id": 42, - "is_topic_message": true, - "from": {"id": 1, "is_bot": false, "first_name": "A"}, - "chat": {"id": -1001234567890, "type": "supergroup", "is_forum": true}, - "text": "Hello from a topic" - }"#; - let msg: TelegramMessage = serde_json::from_str(json).unwrap(); - assert_eq!(msg.message_thread_id, Some(42)); - assert_eq!(msg.is_topic_message, Some(true)); - assert_eq!(msg.chat.is_forum, Some(true)); - } - - #[test] - fn test_parse_non_forum_message_backward_compat() { - let json = r#"{ - "message_id": 1, - "from": {"id": 1, "is_bot": false, "first_name": "A"}, - "chat": {"id": 1, "type": "private"}, - "text": "Hello" - }"#; - let msg: TelegramMessage = serde_json::from_str(json).unwrap(); - assert_eq!(msg.message_thread_id, None); - assert_eq!(msg.is_topic_message, None); - assert_eq!(msg.chat.is_forum, None); - } - - #[test] - fn test_metadata_with_message_thread_id() { - let metadata = TelegramMessageMetadata { - chat_id: -1001234567890, - message_id: 100, - user_id: 42, - is_private: false, - message_thread_id: Some(7), - }; - let json = serde_json::to_string(&metadata).unwrap(); - let parsed: TelegramMessageMetadata = serde_json::from_str(&json).unwrap(); - assert_eq!(parsed.message_thread_id, Some(7)); - } - - #[test] - fn test_metadata_backward_compat_no_thread_id() { - // Old metadata JSON without message_thread_id should deserialize with None - let json = r#"{"chat_id":123,"message_id":1,"user_id":42,"is_private":true}"#; - let metadata: TelegramMessageMetadata = serde_json::from_str(json).unwrap(); - assert_eq!(metadata.message_thread_id, None); - } - - #[test] - fn test_metadata_thread_id_not_serialized_when_none() { - let metadata = TelegramMessageMetadata { - chat_id: 123, - message_id: 1, - user_id: 42, - is_private: true, - message_thread_id: None, - }; - let json = serde_json::to_string(&metadata).unwrap(); - assert!(!json.contains("message_thread_id")); - } - - #[test] - fn test_thread_id_composition() { - // Verify "chat_id:topic_id" format for forum topics - let chat_id: i64 = -1001234567890; - let topic_id: i64 = 42; - let thread_id = format!("{}:{}", chat_id, topic_id); - assert_eq!(thread_id, "-1001234567890:42"); - } - - #[test] - fn test_normalize_thread_id_general_topic() { - // General topic (id=1) must be omitted — Telegram rejects sendMessage - // with message_thread_id=1. - assert_eq!(normalize_thread_id(Some(1)), None); - } - - #[test] - fn test_normalize_thread_id_regular_topic() { - // Non-General topics pass through unchanged - assert_eq!(normalize_thread_id(Some(42)), Some(42)); - assert_eq!(normalize_thread_id(Some(123)), Some(123)); - } - - #[test] - fn test_normalize_thread_id_none() { - // None stays None - assert_eq!(normalize_thread_id(None), None); - } } diff --git a/crates/ironclaw_safety/src/policy.rs b/crates/ironclaw_safety/src/policy.rs index f731d687..d1784b98 100644 --- a/crates/ironclaw_safety/src/policy.rs +++ b/crates/ironclaw_safety/src/policy.rs @@ -324,7 +324,7 @@ mod tests { let violations = policy.check(&payload); let elapsed = start.elapsed(); assert!( - elapsed.as_millis() < 100, + elapsed.as_millis() < 500, "excessive_urls pattern took {}ms on 100KB near-miss", elapsed.as_millis() ); @@ -349,7 +349,7 @@ mod tests { let violations = policy.check(&payload); let elapsed = start.elapsed(); assert!( - elapsed.as_millis() < 100, + elapsed.as_millis() < 500, "obfuscated_string pattern took {}ms on 100KB near-miss", elapsed.as_millis() ); @@ -370,7 +370,7 @@ mod tests { let _violations = policy.check(&payload); let elapsed = start.elapsed(); assert!( - elapsed.as_millis() < 100, + elapsed.as_millis() < 500, "shell_injection pattern took {}ms on 100KB near-miss", elapsed.as_millis() ); @@ -387,7 +387,7 @@ mod tests { let _violations = policy.check(&payload); let elapsed = start.elapsed(); assert!( - elapsed.as_millis() < 100, + elapsed.as_millis() < 500, "sql_pattern took {}ms on 100KB near-miss", elapsed.as_millis() ); @@ -405,7 +405,7 @@ mod tests { let _violations = policy.check(&payload); let elapsed = start.elapsed(); assert!( - elapsed.as_millis() < 100, + elapsed.as_millis() < 500, "crypto_private_key pattern took {}ms on 100KB near-miss", elapsed.as_millis() ); @@ -423,7 +423,7 @@ mod tests { let _violations = policy.check(&payload); let elapsed = start.elapsed(); assert!( - elapsed.as_millis() < 100, + elapsed.as_millis() < 500, "system_file_access pattern took {}ms on 100KB near-miss", elapsed.as_millis() ); @@ -441,7 +441,7 @@ mod tests { let _violations = policy.check(&payload); let elapsed = start.elapsed(); assert!( - elapsed.as_millis() < 100, + elapsed.as_millis() < 500, "encoded_exploit pattern took {}ms on 100KB near-miss", elapsed.as_millis() ); diff --git a/migrations/V13__owner_scope_notify_targets.sql b/migrations/V13__owner_scope_notify_targets.sql new file mode 100644 index 00000000..4c7064fa --- /dev/null +++ b/migrations/V13__owner_scope_notify_targets.sql @@ -0,0 +1,11 @@ +-- Remove the legacy 'default' sentinel from routine notifications. +-- A NULL notify_user now means "resolve the configured owner's last-seen +-- channel target at send time." + +ALTER TABLE routines + ALTER COLUMN notify_user DROP NOT NULL, + ALTER COLUMN notify_user DROP DEFAULT; + +UPDATE routines +SET notify_user = NULL +WHERE notify_user = 'default'; diff --git a/migrations/V6__routines.sql b/migrations/V6__routines.sql index 36f63cb2..9697251c 100644 --- a/migrations/V6__routines.sql +++ b/migrations/V6__routines.sql @@ -26,7 +26,7 @@ CREATE TABLE routines ( -- Notification preferences notify_channel TEXT, -- NULL = use default - notify_user TEXT NOT NULL DEFAULT 'default', + notify_user TEXT, notify_on_success BOOLEAN NOT NULL DEFAULT false, notify_on_failure BOOLEAN NOT NULL DEFAULT true, notify_on_attention BOOLEAN NOT NULL DEFAULT true, diff --git a/registry/channels/discord.json b/registry/channels/discord.json index 6f5cd4e7..50ef85ee 100644 --- a/registry/channels/discord.json +++ b/registry/channels/discord.json @@ -2,7 +2,7 @@ "name": "discord", "display_name": "Discord Channel", "kind": "channel", - "version": "0.2.0", + "version": "0.2.1", "wit_version": "0.3.0", "description": "Talk to your agent in Discord", "keywords": [ diff --git a/registry/channels/feishu.json b/registry/channels/feishu.json index cbdf7da2..0446a442 100644 --- a/registry/channels/feishu.json +++ b/registry/channels/feishu.json @@ -2,7 +2,7 @@ "name": "feishu", "display_name": "Feishu / Lark Channel", "kind": "channel", - "version": "0.1.0", + "version": "0.1.1", "wit_version": "0.3.0", "description": "Talk to your agent through a Feishu or Lark bot", "keywords": [ diff --git a/registry/channels/telegram.json b/registry/channels/telegram.json index 36be1fc7..e44061e5 100644 --- a/registry/channels/telegram.json +++ b/registry/channels/telegram.json @@ -2,7 +2,7 @@ "name": "telegram", "display_name": "Telegram Channel", "kind": "channel", - "version": "0.2.3", + "version": "0.2.4", "wit_version": "0.3.0", "description": "Talk to your agent through a Telegram bot", "keywords": [ diff --git a/registry/tools/github.json b/registry/tools/github.json index e84f756d..e775ac82 100644 --- a/registry/tools/github.json +++ b/registry/tools/github.json @@ -2,7 +2,7 @@ "name": "github", "display_name": "GitHub", "kind": "tool", - "version": "0.2.0", + "version": "0.2.1", "wit_version": "0.3.0", "description": "GitHub integration for issues, PRs, repos, and code search", "keywords": [ diff --git a/registry/tools/web-search.json b/registry/tools/web-search.json index 4da5744b..1722c391 100644 --- a/registry/tools/web-search.json +++ b/registry/tools/web-search.json @@ -2,7 +2,7 @@ "name": "web-search", "display_name": "Web Search", "kind": "tool", - "version": "0.2.0", + "version": "0.2.1", "wit_version": "0.3.0", "description": "Search the web using Brave Search API", "keywords": [ diff --git a/src/agent/agent_loop.rs b/src/agent/agent_loop.rs index 4b7ed538..83d971ef 100644 --- a/src/agent/agent_loop.rs +++ b/src/agent/agent_loop.rs @@ -22,7 +22,7 @@ use crate::channels::{ChannelManager, IncomingMessage, OutgoingResponse}; use crate::config::{AgentConfig, HeartbeatConfig, RoutineConfig, SkillsConfig}; use crate::context::ContextManager; use crate::db::Database; -use crate::error::Error; +use crate::error::{ChannelError, Error}; use crate::extensions::ExtensionManager; use crate::hooks::HookRegistry; use crate::llm::LlmProvider; @@ -54,10 +54,75 @@ pub(crate) fn truncate_for_preview(output: &str, max_chars: usize) -> String { } } +#[cfg(test)] +fn resolve_routine_notification_user(metadata: &serde_json::Value) -> Option { + resolve_owner_scope_notification_user( + metadata.get("notify_user").and_then(|value| value.as_str()), + metadata.get("owner_id").and_then(|value| value.as_str()), + ) +} + +fn trimmed_option(value: Option<&str>) -> Option { + value + .map(str::trim) + .filter(|value| !value.is_empty()) + .map(ToOwned::to_owned) +} + +fn resolve_owner_scope_notification_user( + explicit_user: Option<&str>, + owner_fallback: Option<&str>, +) -> Option { + trimmed_option(explicit_user).or_else(|| trimmed_option(owner_fallback)) +} + +async fn resolve_channel_notification_user( + extension_manager: Option<&Arc>, + channel: Option<&str>, + explicit_user: Option<&str>, + owner_fallback: Option<&str>, +) -> Option { + if let Some(user) = trimmed_option(explicit_user) { + return Some(user); + } + + if let Some(channel_name) = trimmed_option(channel) + && let Some(extension_manager) = extension_manager + && let Some(target) = extension_manager + .notification_target_for_channel(&channel_name) + .await + { + return Some(target); + } + + resolve_owner_scope_notification_user(explicit_user, owner_fallback) +} + +async fn resolve_routine_notification_target( + extension_manager: Option<&Arc>, + metadata: &serde_json::Value, +) -> Option { + resolve_channel_notification_user( + extension_manager, + metadata + .get("notify_channel") + .and_then(|value| value.as_str()), + metadata.get("notify_user").and_then(|value| value.as_str()), + metadata.get("owner_id").and_then(|value| value.as_str()), + ) + .await +} + +fn should_fallback_routine_notification(error: &ChannelError) -> bool { + !matches!(error, ChannelError::MissingRoutingTarget { .. }) +} + /// Core dependencies for the agent. /// /// Bundles the shared components to reduce argument count. pub struct AgentDeps { + /// Resolved durable owner scope for the instance. + pub owner_id: String, pub store: Option>, pub llm: Arc, /// Cheap/fast LLM for lightweight tasks (heartbeat, routing, evaluation). @@ -102,6 +167,18 @@ pub struct Agent { } impl Agent { + pub(super) fn owner_id(&self) -> &str { + if let Some(workspace) = self.deps.workspace.as_ref() { + debug_assert_eq!( + workspace.user_id(), + self.deps.owner_id, + "workspace.user_id() must stay aligned with deps.owner_id" + ); + } + + &self.deps.owner_id + } + /// Create a new agent. /// /// Optionally accepts pre-created `ContextManager` and `SessionManager` for sharing @@ -264,6 +341,7 @@ impl Agent { )); let repair_interval = self.config.repair_check_interval; let repair_channels = self.channels.clone(); + let repair_owner_id = self.owner_id().to_string(); let repair_handle = tokio::spawn(async move { loop { tokio::time::sleep(repair_interval).await; @@ -311,7 +389,9 @@ impl Agent { if let Some(msg) = notification { let response = OutgoingResponse::text(format!("Self-Repair: {}", msg)); - let _ = repair_channels.broadcast_all("default", response).await; + let _ = repair_channels + .broadcast_all(&repair_owner_id, response) + .await; } } @@ -325,7 +405,9 @@ impl Agent { "Self-Repair: Tool '{}' repaired: {}", tool.name, message )); - let _ = repair_channels.broadcast_all("default", response).await; + let _ = repair_channels + .broadcast_all(&repair_owner_id, response) + .await; } Ok(result) => { tracing::info!("Tool repair result: {:?}", result); @@ -362,8 +444,12 @@ impl Agent { .timezone .clone() .or_else(|| Some(self.config.default_timezone.clone())); - if let (Some(user), Some(channel)) = - (&hb_config.notify_user, &hb_config.notify_channel) + let heartbeat_notify_user = resolve_owner_scope_notification_user( + hb_config.notify_user.as_deref(), + Some(self.owner_id()), + ); + if let Some(channel) = &hb_config.notify_channel + && let Some(user) = heartbeat_notify_user.as_deref() { config = config.with_notify(user, channel); } @@ -374,15 +460,22 @@ impl Agent { // Spawn notification forwarder that routes through channel manager let notify_channel = hb_config.notify_channel.clone(); - let notify_user = hb_config.notify_user.clone(); + let notify_target = resolve_channel_notification_user( + self.deps.extension_manager.as_ref(), + hb_config.notify_channel.as_deref(), + hb_config.notify_user.as_deref(), + Some(self.owner_id()), + ) + .await; + let notify_user = heartbeat_notify_user; let channels = self.channels.clone(); tokio::spawn(async move { while let Some(response) = notify_rx.recv().await { - let user = notify_user.as_deref().unwrap_or("default"); - // Try the configured channel first, fall back to // broadcasting on all channels. - let targeted_ok = if let Some(ref channel) = notify_channel { + let targeted_ok = if let Some(ref channel) = notify_channel + && let Some(ref user) = notify_target + { channels .broadcast(channel, user, response.clone()) .await @@ -391,7 +484,7 @@ impl Agent { false }; - if !targeted_ok { + if !targeted_ok && let Some(ref user) = notify_user { let results = channels.broadcast_all(user, response).await; for (ch, result) in results { if let Err(e) = result { @@ -460,32 +553,60 @@ impl Agent { // Spawn notification forwarder (mirrors heartbeat pattern) let channels = self.channels.clone(); + let extension_manager = self.deps.extension_manager.clone(); tokio::spawn(async move { while let Some(response) = notify_rx.recv().await { - let user = response - .metadata - .get("notify_user") - .and_then(|v| v.as_str()) - .unwrap_or("default") - .to_string(); let notify_channel = response .metadata .get("notify_channel") .and_then(|v| v.as_str()) .map(|s| s.to_string()); + let fallback_user = resolve_owner_scope_notification_user( + response + .metadata + .get("notify_user") + .and_then(|v| v.as_str()), + response.metadata.get("owner_id").and_then(|v| v.as_str()), + ); + let Some(user) = resolve_routine_notification_target( + extension_manager.as_ref(), + &response.metadata, + ) + .await + else { + tracing::warn!( + notify_channel = ?notify_channel, + "Skipping routine notification with no explicit target or owner scope" + ); + continue; + }; // Try the configured channel first, fall back to // broadcasting on all channels. let targeted_ok = if let Some(ref channel) = notify_channel { - channels - .broadcast(channel, &user, response.clone()) - .await - .is_ok() + match channels.broadcast(channel, &user, response.clone()).await { + Ok(()) => true, + Err(e) => { + let should_fallback = + should_fallback_routine_notification(&e); + tracing::warn!( + channel = %channel, + user = %user, + error = %e, + should_fallback, + "Failed to send routine notification to configured channel" + ); + if !should_fallback { + continue; + } + false + } + } } else { false }; - if !targeted_ok { + if !targeted_ok && let Some(user) = fallback_user { let results = channels.broadcast_all(&user, response).await; for (ch, result) in results { if let Err(e) = result { @@ -572,6 +693,29 @@ impl Agent { // Store successfully extracted document text in workspace for indexing self.store_extracted_documents(&message).await; + // Event-triggered routines consume plain user input before it enters + // the normal chat/tool pipeline. This avoids a duplicate turn where + // the main agent responds and the routine also fires on the same + // inbound message. + if !message.is_internal + && matches!( + SubmissionParser::parse(&message.content), + Submission::UserInput { .. } + ) + && let Some(ref engine) = routine_engine_for_loop + { + let fired = engine.check_event_triggers(&message).await; + if fired > 0 { + tracing::debug!( + channel = %message.channel, + user = %message.user_id, + fired, + "Consumed inbound user message with matching event-triggered routine(s)" + ); + continue; + } + } + match self.handle_message(&message).await { Ok(Some(response)) if !response.is_empty() => { // Hook: BeforeOutbound — allow hooks to modify or suppress outbound @@ -644,14 +788,6 @@ impl Agent { } } } - - // Check event triggers (cheap in-memory regex, fires async if matched) - if let Some(ref engine) = routine_engine_for_loop { - let fired = engine.check_event_triggers(&message).await; - if fired > 0 { - tracing::debug!("Fired {} event-triggered routines", fired); - } - } } // Cleanup @@ -768,10 +904,7 @@ impl Agent { // For Signal, use signal_target from metadata (group:ID or phone number), // otherwise fall back to user_id let target = message - .metadata - .get("signal_target") - .and_then(|v| v.as_str()) - .map(|s| s.to_string()) + .routing_target() .unwrap_or_else(|| message.user_id.clone()); self.tools() .set_message_tool_context(Some(message.channel.clone()), Some(target)) @@ -811,7 +944,7 @@ impl Agent { } // Hydrate thread from DB if it's a historical thread not in memory - if let Some(ref external_thread_id) = message.thread_id { + if let Some(external_thread_id) = message.conversation_scope() { tracing::trace!( message_id = %message.id, thread_id = %external_thread_id, @@ -832,7 +965,7 @@ impl Agent { .resolve_thread( &message.user_id, &message.channel, - message.thread_id.as_deref(), + message.conversation_scope(), ) .await; tracing::debug!( @@ -985,7 +1118,11 @@ impl Agent { #[cfg(test)] mod tests { - use super::truncate_for_preview; + use super::{ + resolve_routine_notification_user, should_fallback_routine_notification, + truncate_for_preview, + }; + use crate::error::ChannelError; #[test] fn test_truncate_short_input() { @@ -1048,4 +1185,55 @@ mod tests { // 'h','e','l','l','o',' ','世','界' = 8 chars assert_eq!(result, "hello 世界..."); } + + #[test] + fn resolve_routine_notification_user_prefers_explicit_target() { + let metadata = serde_json::json!({ + "notify_user": "12345", + "owner_id": "owner-scope", + }); + + let resolved = resolve_routine_notification_user(&metadata); + assert_eq!(resolved.as_deref(), Some("12345")); // safety: test-only assertion + } + + #[test] + fn resolve_routine_notification_user_falls_back_to_owner_scope() { + let metadata = serde_json::json!({ + "notify_user": null, + "owner_id": "owner-scope", + }); + + let resolved = resolve_routine_notification_user(&metadata); + assert_eq!(resolved.as_deref(), Some("owner-scope")); // safety: test-only assertion + } + + #[test] + fn resolve_routine_notification_user_rejects_missing_values() { + let metadata = serde_json::json!({ + "notify_user": " ", + }); + + assert_eq!(resolve_routine_notification_user(&metadata), None); // safety: test-only assertion + } + + #[test] + fn targeted_routine_notifications_do_not_fallback_without_owner_route() { + let error = ChannelError::MissingRoutingTarget { + name: "telegram".to_string(), + reason: "No stored owner routing target for channel 'telegram'.".to_string(), + }; + + assert!(!should_fallback_routine_notification(&error)); // safety: test-only assertion + } + + #[test] + fn targeted_routine_notifications_may_fallback_for_other_errors() { + let error = ChannelError::SendFailed { + name: "telegram".to_string(), + reason: "timeout talking to channel".to_string(), + }; + + assert!(should_fallback_routine_notification(&error)); // safety: test-only assertion + } } diff --git a/src/agent/commands.rs b/src/agent/commands.rs index 90266d0b..75c99359 100644 --- a/src/agent/commands.rs +++ b/src/agent/commands.rs @@ -836,7 +836,10 @@ impl Agent { // 1. Persist to DB if available. if let Some(store) = self.store() { let value = serde_json::Value::String(model.to_string()); - if let Err(e) = store.set_setting("default", "selected_model", &value).await { + if let Err(e) = store + .set_setting(self.owner_id(), "selected_model", &value) + .await + { tracing::warn!("Failed to persist model to DB: {}", e); } } diff --git a/src/agent/dispatcher.rs b/src/agent/dispatcher.rs index 9e6747f2..9be0d654 100644 --- a/src/agent/dispatcher.rs +++ b/src/agent/dispatcher.rs @@ -140,13 +140,15 @@ impl Agent { // Create a JobContext for tool execution (chat doesn't have a real job) let mut job_ctx = - JobContext::with_user(&message.user_id, "chat", "Interactive chat session"); + JobContext::with_user(&message.user_id, "chat", "Interactive chat session") + .with_requester_id(&message.sender_id); job_ctx.http_interceptor = self.deps.http_interceptor.clone(); job_ctx.user_timezone = user_tz.name().to_string(); job_ctx.metadata = serde_json::json!({ "notify_channel": message.channel, "notify_user": message.user_id, "notify_thread_id": message.thread_id, + "notify_metadata": message.metadata, }); // Build system prompts once for this turn. Two variants: with tools @@ -1175,6 +1177,7 @@ mod tests { /// Build a minimal `Agent` for unit testing (no DB, no workspace, no extensions). fn make_test_agent() -> Agent { let deps = AgentDeps { + owner_id: "default".to_string(), store: None, llm: Arc::new(StaticLlmProvider), cheap_llm: None, @@ -2014,6 +2017,7 @@ mod tests { /// `max_tool_iterations` override. fn make_test_agent_with_llm(llm: Arc, max_tool_iterations: usize) -> Agent { let deps = AgentDeps { + owner_id: "default".to_string(), store: None, llm, cheap_llm: None, @@ -2127,6 +2131,7 @@ mod tests { let max_iter = 3; let agent = { let deps = AgentDeps { + owner_id: "default".to_string(), store: None, llm, cheap_llm: None, diff --git a/src/agent/heartbeat.rs b/src/agent/heartbeat.rs index 77bdeadb..ec4cd5e9 100644 --- a/src/agent/heartbeat.rs +++ b/src/agent/heartbeat.rs @@ -402,7 +402,11 @@ impl HeartbeatRunner { return; }; - let user_id = self.config.notify_user_id.as_deref().unwrap_or("default"); + let user_id = self + .config + .notify_user_id + .as_deref() + .unwrap_or_else(|| self.workspace.user_id()); // Persist to heartbeat conversation and get thread_id let thread_id = if let Some(ref store) = self.store { @@ -431,6 +435,7 @@ impl HeartbeatRunner { attachments: Vec::new(), metadata: serde_json::json!({ "source": "heartbeat", + "owner_id": self.workspace.user_id(), }), }; diff --git a/src/agent/routine.rs b/src/agent/routine.rs index 0389ac1e..f3850fa0 100644 --- a/src/agent/routine.rs +++ b/src/agent/routine.rs @@ -422,8 +422,8 @@ impl Default for RoutineGuardrails { pub struct NotifyConfig { /// Channel to notify on (None = default/broadcast all). pub channel: Option, - /// User to notify. - pub user: String, + /// Explicit target to notify. None means "resolve the owner's last-seen target". + pub user: Option, /// Notify when routine produces actionable output. pub on_attention: bool, /// Notify when routine errors. @@ -436,7 +436,7 @@ impl Default for NotifyConfig { fn default() -> Self { Self { channel: None, - user: "default".to_string(), + user: None, on_attention: true, on_failure: true, on_success: false, diff --git a/src/agent/routine_engine.rs b/src/agent/routine_engine.rs index c37ba7ce..519f16c2 100644 --- a/src/agent/routine_engine.rs +++ b/src/agent/routine_engine.rs @@ -172,6 +172,11 @@ impl RoutineEngine { EventMatcher::Message { routine, regex } => (routine, regex), EventMatcher::System { .. } => continue, }; + + if routine.user_id != message.user_id { + continue; + } + // Channel filter if let Trigger::Event { channel: Some(ch), .. @@ -650,6 +655,7 @@ async fn execute_routine(ctx: EngineContext, routine: Routine, run: RoutineRun) send_notification( &ctx.notify_tx, &routine.notify, + &routine.user_id, &routine.name, status, summary.as_deref(), @@ -694,7 +700,8 @@ async fn execute_full_job( reason: "scheduler not available".to_string(), })?; - let mut metadata = serde_json::json!({ "max_iterations": max_iterations }); + let mut metadata = + serde_json::json!({ "max_iterations": max_iterations, "owner_id": routine.user_id }); // Carry the routine's notify config in job metadata so the message tool // can resolve channel/target per-job without global state mutation. if let Some(channel) = &routine.notify.channel { @@ -1207,6 +1214,7 @@ async fn execute_routine_tool( async fn send_notification( tx: &mpsc::Sender, notify: &NotifyConfig, + owner_id: &str, routine_name: &str, status: RunStatus, summary: Option<&str>, @@ -1243,6 +1251,7 @@ async fn send_notification( "source": "routine", "routine_name": routine_name, "status": status.to_string(), + "owner_id": owner_id, "notify_user": notify.user, "notify_channel": notify.channel, }), diff --git a/src/agent/submission.rs b/src/agent/submission.rs index 46336133..a3ae2524 100644 --- a/src/agent/submission.rs +++ b/src/agent/submission.rs @@ -427,6 +427,14 @@ impl SubmissionResult { message: message.into(), } } + + /// Create a non-error status message (e.g., for blocking states like approval waiting). + /// Uses Ok variant to avoid "Error:" prefix in rendering. + pub fn pending(message: impl Into) -> Self { + Self::Ok { + message: Some(message.into()), + } + } } #[cfg(test)] diff --git a/src/agent/thread_ops.rs b/src/agent/thread_ops.rs index 7aa499ae..877a4e27 100644 --- a/src/agent/thread_ops.rs +++ b/src/agent/thread_ops.rs @@ -187,13 +187,18 @@ impl Agent { ); // First check thread state without holding lock during I/O - let thread_state = { + let (thread_state, approval_context) = { let sess = session.lock().await; let thread = sess .threads .get(&thread_id) .ok_or_else(|| Error::from(crate::error::JobError::NotFound { id: thread_id }))?; - thread.state + let approval_context = thread.pending_approval.as_ref().map(|a| { + let desc_preview = + crate::agent::agent_loop::truncate_for_preview(&a.description, 80); + (a.tool_name.clone(), desc_preview) + }); + (thread.state, approval_context) }; tracing::debug!( @@ -221,9 +226,13 @@ impl Agent { thread_id = %thread_id, "Thread awaiting approval, rejecting new input" ); - return Ok(SubmissionResult::error( - "Waiting for approval. Use /interrupt to cancel.", - )); + let msg = match approval_context { + Some((tool_name, desc_preview)) => format!( + "Waiting for approval: {tool_name} — {desc_preview}. Use /interrupt to cancel." + ), + None => "Waiting for approval. Use /interrupt to cancel.".to_string(), + }; + return Ok(SubmissionResult::pending(msg)); } ThreadState::Completed => { tracing::warn!( @@ -924,7 +933,8 @@ impl Agent { // Execute the approved tool and continue the loop let mut job_ctx = - JobContext::with_user(&message.user_id, "chat", "Interactive chat session"); + JobContext::with_user(&message.user_id, "chat", "Interactive chat session") + .with_requester_id(&message.sender_id); job_ctx.http_interceptor = self.deps.http_interceptor.clone(); // Prefer a valid timezone from the approval message, fall back to the // resolved timezone stored when the approval was originally requested. @@ -1916,4 +1926,103 @@ mod tests { created_at: chrono::Utc::now(), } } + + #[tokio::test] + async fn test_awaiting_approval_rejection_includes_tool_context() { + // Test that when a thread is in AwaitingApproval state and receives a new message, + // process_user_input rejects it with a non-error status that includes tool context. + use crate::agent::session::{PendingApproval, Session, Thread, ThreadState}; + use uuid::Uuid; + + let session_id = Uuid::new_v4(); + let thread_id = Uuid::new_v4(); + let mut thread = Thread::with_id(thread_id, session_id); + + // Set thread to AwaitingApproval with a pending tool approval + let pending = PendingApproval { + request_id: Uuid::new_v4(), + tool_name: "shell".to_string(), + parameters: serde_json::json!({"command": "echo hello"}), + display_parameters: serde_json::json!({"command": "[REDACTED]"}), + description: "Execute: echo hello".to_string(), + tool_call_id: "call_0".to_string(), + context_messages: vec![], + deferred_tool_calls: vec![], + user_timezone: None, + }; + thread.await_approval(pending); + + let mut session = Session::new("test-user"); + session.threads.insert(thread_id, thread); + + // Verify thread is in AwaitingApproval state + assert_eq!( + session.threads[&thread_id].state, + ThreadState::AwaitingApproval + ); + + let result = extract_approval_message(&session, thread_id); + + // Verify result is an Ok with a message (not an Error) + match result { + Ok(Some(msg)) => { + // Should NOT start with "Error:" + assert!( + !msg.to_lowercase().starts_with("error:"), + "Approval rejection should not have 'Error:' prefix. Got: {}", + msg + ); + + // Should contain "waiting for approval" + assert!( + msg.to_lowercase().contains("waiting for approval"), + "Should contain 'waiting for approval'. Got: {}", + msg + ); + + // Should contain the tool name + assert!( + msg.contains("shell"), + "Should contain tool name 'shell'. Got: {}", + msg + ); + + // Should contain the description (or truncated version) + assert!( + msg.contains("echo hello"), + "Should contain description 'echo hello'. Got: {}", + msg + ); + } + _ => panic!("Expected approval rejection message"), + } + } + + // Helper function to extract the approval message without needing a full Agent instance + fn extract_approval_message( + session: &crate::agent::session::Session, + thread_id: Uuid, + ) -> Result, crate::error::Error> { + let thread = session.threads.get(&thread_id).ok_or_else(|| { + crate::error::Error::from(crate::error::JobError::NotFound { id: thread_id }) + })?; + + if thread.state == ThreadState::AwaitingApproval { + let approval_context = thread.pending_approval.as_ref().map(|a| { + let desc_preview = + crate::agent::agent_loop::truncate_for_preview(&a.description, 80); + (a.tool_name.clone(), desc_preview) + }); + + let msg = match approval_context { + Some((tool_name, desc_preview)) => format!( + "Waiting for approval: {tool_name} — {desc_preview}. Use /interrupt to cancel." + ), + None => "Waiting for approval. Use /interrupt to cancel.".to_string(), + }; + Ok(Some(msg)) + } else { + Ok(None) + } + } } diff --git a/src/app.rs b/src/app.rs index 3c7db63f..5ccfc5f2 100644 --- a/src/app.rs +++ b/src/app.rs @@ -140,12 +140,14 @@ impl AppBuilder { self.handles = Some(handles); // Post-init: migrate disk config, reload config from DB, attach session, cleanup - if let Err(e) = crate::bootstrap::migrate_disk_to_db(db.as_ref(), "default").await { + if let Err(e) = + crate::bootstrap::migrate_disk_to_db(db.as_ref(), &self.config.owner_id).await + { tracing::warn!("Disk-to-DB settings migration failed: {}", e); } let toml_path = self.toml_path.as_deref(); - match Config::from_db_with_toml(db.as_ref(), "default", toml_path).await { + match Config::from_db_with_toml(db.as_ref(), &self.config.owner_id, toml_path).await { Ok(db_config) => { self.config = db_config; tracing::debug!("Configuration reloaded from database"); @@ -158,7 +160,9 @@ impl AppBuilder { } } - self.session.attach_store(db.clone(), "default").await; + self.session + .attach_store(db.clone(), &self.config.owner_id) + .await; // Fire-and-forget housekeeping — no need to block startup. let db_cleanup = db.clone(); @@ -193,9 +197,10 @@ impl AppBuilder { let store: Option<&(dyn crate::db::SettingsStore + Sync)> = self.db.as_ref().map(|db| db.as_ref() as _); let toml_path = self.toml_path.as_deref(); + let owner_id = self.config.owner_id.clone(); if let Err(e) = self .config - .re_resolve_llm(store, "default", toml_path) + .re_resolve_llm(store, &owner_id, toml_path) .await { tracing::warn!( @@ -224,15 +229,17 @@ impl AppBuilder { if let Some(ref secrets) = store { // Inject LLM API keys from encrypted storage - crate::config::inject_llm_keys_from_secrets(secrets.as_ref(), "default").await; + crate::config::inject_llm_keys_from_secrets(secrets.as_ref(), &self.config.owner_id) + .await; // Re-resolve only the LLM config with newly available keys. let store: Option<&(dyn crate::db::SettingsStore + Sync)> = self.db.as_ref().map(|db| db.as_ref() as _); let toml_path = self.toml_path.as_deref(); + let owner_id = self.config.owner_id.clone(); if let Err(e) = self .config - .re_resolve_llm(store, "default", toml_path) + .re_resolve_llm(store, &owner_id, toml_path) .await { tracing::warn!("Failed to re-resolve LLM config after secret injection: {e}"); @@ -304,7 +311,7 @@ impl AppBuilder { // Register memory tools if database is available let workspace = if let Some(ref db) = self.db { - let mut ws = Workspace::new_with_db("default", db.clone()) + let mut ws = Workspace::new_with_db(&self.config.owner_id, db.clone()) .with_search_config(&self.config.search); if let Some(ref emb) = embeddings { ws = ws.with_embeddings(emb.clone()); @@ -471,10 +478,11 @@ impl AppBuilder { let tools = Arc::clone(tools); let mcp_sm = Arc::clone(&mcp_session_manager); let pm = Arc::clone(&mcp_process_manager); + let owner_id = self.config.owner_id.clone(); let companion_mcp_server = companion_mcp_server.clone(); async move { let servers_result = if let Some(ref d) = db { - load_mcp_servers_from_db(d.as_ref(), "default").await + load_mcp_servers_from_db(d.as_ref(), &owner_id).await } else { crate::tools::mcp::config::load_mcp_servers().await }; @@ -505,6 +513,7 @@ impl AppBuilder { let secrets = secrets_store.clone(); let tools = Arc::clone(&tools); let pm = Arc::clone(&pm); + let owner_id = owner_id.clone(); join_set.spawn(async move { let server_name = server.name.clone(); @@ -516,7 +525,7 @@ impl AppBuilder { nearai_api_key, &pm, secrets, - "default", + &owner_id, ) .await { @@ -660,7 +669,7 @@ impl AppBuilder { self.config.wasm.tools_dir.clone(), self.config.channels.wasm_channels_dir.clone(), self.config.tunnel.public_url.clone(), - "default".to_string(), + self.config.owner_id.clone(), self.db.clone(), companion_mcp_server, catalog_entries.clone(), diff --git a/src/channels/channel.rs b/src/channels/channel.rs index ed8c28ff..43e35688 100644 --- a/src/channels/channel.rs +++ b/src/channels/channel.rs @@ -67,14 +67,24 @@ pub struct IncomingMessage { pub id: Uuid, /// Channel this message came from. pub channel: String, - /// User identifier within the channel. + /// Storage/persistence scope for this interaction. + /// + /// For owner-capable channels this is the stable instance owner ID when the + /// configured owner is speaking; otherwise it can be a guest/sender-scoped + /// identifier to preserve isolation. pub user_id: String, + /// Stable instance owner scope for this IronClaw deployment. + pub owner_id: String, + /// Channel-specific sender/actor identifier. + pub sender_id: String, /// Optional display name. pub user_name: Option, /// Message content. pub content: String, /// Thread/conversation ID for threaded conversations. pub thread_id: Option, + /// Stable channel/chat/thread scope for this conversation. + pub conversation_scope_id: Option, /// When the message was received. pub received_at: DateTime, /// Channel-specific metadata. @@ -84,9 +94,8 @@ pub struct IncomingMessage { /// File or media attachments on this message. pub attachments: Vec, /// Internal-only flag: message was generated inside the process (e.g. job - /// monitor) and must bypass the normal user-input pipeline. This field is - /// **not** settable via `with_metadata()` — only trusted code paths inside - /// the binary can set it, preventing external channels from spoofing it. + /// monitor) and must bypass the normal user-input pipeline. This field is + /// not settable via metadata, so external channels cannot spoof it. pub(crate) is_internal: bool, } @@ -97,13 +106,17 @@ impl IncomingMessage { user_id: impl Into, content: impl Into, ) -> Self { + let user_id = user_id.into(); Self { id: Uuid::new_v4(), channel: channel.into(), - user_id: user_id.into(), + owner_id: user_id.clone(), + sender_id: user_id.clone(), + user_id, user_name: None, content: content.into(), thread_id: None, + conversation_scope_id: None, received_at: Utc::now(), metadata: serde_json::Value::Null, timezone: None, @@ -114,7 +127,27 @@ impl IncomingMessage { /// Set the thread ID. pub fn with_thread(mut self, thread_id: impl Into) -> Self { - self.thread_id = Some(thread_id.into()); + let thread_id = thread_id.into(); + self.conversation_scope_id = Some(thread_id.clone()); + self.thread_id = Some(thread_id); + self + } + + /// Set the stable owner scope for this message. + pub fn with_owner_id(mut self, owner_id: impl Into) -> Self { + self.owner_id = owner_id.into(); + self + } + + /// Set the channel-specific sender/actor identifier. + pub fn with_sender_id(mut self, sender_id: impl Into) -> Self { + self.sender_id = sender_id.into(); + self + } + + /// Set the conversation scope for this message. + pub fn with_conversation_scope(mut self, scope_id: impl Into) -> Self { + self.conversation_scope_id = Some(scope_id.into()); self } @@ -147,6 +180,49 @@ impl IncomingMessage { self.is_internal = true; self } + + /// Effective conversation scope, falling back to thread_id for legacy callers. + pub fn conversation_scope(&self) -> Option<&str> { + self.conversation_scope_id + .as_deref() + .or(self.thread_id.as_deref()) + } + + /// Best-effort routing target for proactive replies on the current channel. + pub fn routing_target(&self) -> Option { + routing_target_from_metadata(&self.metadata).or_else(|| { + if self.sender_id.is_empty() { + None + } else { + Some(self.sender_id.clone()) + } + }) + } +} + +/// Extract a channel-specific proactive routing target from message metadata. +pub fn routing_target_from_metadata(metadata: &serde_json::Value) -> Option { + metadata + .get("signal_target") + .and_then(|value| match value { + serde_json::Value::String(s) => Some(s.clone()), + serde_json::Value::Number(n) => Some(n.to_string()), + _ => None, + }) + .or_else(|| { + metadata.get("chat_id").and_then(|value| match value { + serde_json::Value::String(s) => Some(s.clone()), + serde_json::Value::Number(n) => Some(n.to_string()), + _ => None, + }) + }) + .or_else(|| { + metadata.get("target").and_then(|value| match value { + serde_json::Value::String(s) => Some(s.clone()), + serde_json::Value::Number(n) => Some(n.to_string()), + _ => None, + }) + }) } /// Stream of incoming messages. diff --git a/src/channels/http.rs b/src/channels/http.rs index 5c173bf2..9f39f46e 100644 --- a/src/channels/http.rs +++ b/src/channels/http.rs @@ -133,7 +133,8 @@ impl HttpChannel { #[derive(Debug, Deserialize)] struct WebhookRequest { - /// User or client identifier (ignored, user is fixed by server config). + /// Optional caller or client identifier for sender-scoped routing. + /// The channel owner/storage scope remains fixed by server config. #[serde(default)] user_id: Option, /// Message content. @@ -403,12 +404,38 @@ async fn process_authenticated_request( state: Arc, req: WebhookRequest, ) -> axum::response::Response { - let _ = req.user_id.as_ref().map(|user_id| { - tracing::debug!( - provided_user_id = %user_id, - "HTTP webhook request provided user_id, ignoring in favor of configured user_id" - ); - }); + let normalized_user_id = req + .user_id + .as_deref() + .map(str::trim) + .filter(|user_id| !user_id.is_empty()); + + match (req.user_id.as_deref(), normalized_user_id) { + (Some(raw_user_id), Some(user_id)) if raw_user_id != user_id => { + tracing::debug!( + provided_user_id = %raw_user_id, + normalized_sender_id = %user_id, + configured_owner_id = %state.user_id, + "HTTP webhook request provided user_id; trimming and using it as sender_id while keeping the configured owner scope" + ); + } + (Some(user_id), Some(_)) => { + tracing::debug!( + provided_user_id = %user_id, + configured_owner_id = %state.user_id, + "HTTP webhook request provided user_id; using it as sender_id while keeping the configured owner scope" + ); + } + (Some(raw_user_id), None) => { + tracing::debug!( + provided_user_id = %raw_user_id, + configured_owner_id = %state.user_id, + "HTTP webhook request provided a blank user_id; falling back to the configured owner scope for sender_id" + ); + } + (None, None) => {} + (None, Some(_)) => unreachable!("normalized user_id requires a raw user_id"), + } if req.content.len() > MAX_CONTENT_BYTES { return ( @@ -514,11 +541,13 @@ async fn process_authenticated_request( Vec::new() }; - let mut msg = IncomingMessage::new("http", &state.user_id, &req.content).with_metadata( - serde_json::json!({ + let sender_id = normalized_user_id.unwrap_or(&state.user_id).to_string(); + let mut msg = IncomingMessage::new("http", &state.user_id, &req.content) + .with_owner_id(&state.user_id) + .with_sender_id(sender_id) + .with_metadata(serde_json::json!({ "wait_for_response": wait_for_response, - }), - ); + })); if !attachments.is_empty() { msg = msg.with_attachments(attachments); @@ -682,6 +711,7 @@ mod tests { use axum::body::Body; use axum::http::{HeaderValue, Request}; use secrecy::SecretString; + use tokio_stream::StreamExt; use tower::ServiceExt; use super::*; @@ -820,6 +850,70 @@ mod tests { assert_eq!(resp.status(), StatusCode::UNAUTHORIZED); } + #[tokio::test] + async fn webhook_blank_user_id_falls_back_to_owner_scope() { + let secret = "test-secret-123"; + let channel = test_channel(Some(secret)); + let mut stream = channel.start().await.unwrap(); + let app = channel.routes(); + + let body = serde_json::json!({ + "content": "hello", + "user_id": " " + }); + let body_bytes = serde_json::to_vec(&body).unwrap(); + let signature = compute_signature(secret, &body_bytes); + let req = Request::builder() + .method("POST") + .uri("/webhook") + .header("content-type", "application/json") + .header("x-hub-signature-256", signature) + .body(Body::from(body_bytes)) + .unwrap(); + + let resp = app.oneshot(req).await.unwrap(); + assert_eq!(resp.status(), StatusCode::OK); + + let msg = tokio::time::timeout(std::time::Duration::from_secs(1), stream.next()) + .await + .expect("timed out waiting for webhook message") + .expect("stream should yield a webhook message"); + assert_eq!(msg.sender_id, "http"); + assert_eq!(msg.owner_id, "http"); + } + + #[tokio::test] + async fn webhook_user_id_is_trimmed_before_becoming_sender_id() { + let secret = "test-secret-123"; + let channel = test_channel(Some(secret)); + let mut stream = channel.start().await.unwrap(); + let app = channel.routes(); + + let body = serde_json::json!({ + "content": "hello", + "user_id": " alice " + }); + let body_bytes = serde_json::to_vec(&body).unwrap(); + let signature = compute_signature(secret, &body_bytes); + let req = Request::builder() + .method("POST") + .uri("/webhook") + .header("content-type", "application/json") + .header("x-hub-signature-256", signature) + .body(Body::from(body_bytes)) + .unwrap(); + + let resp = app.oneshot(req).await.unwrap(); + assert_eq!(resp.status(), StatusCode::OK); + + let msg = tokio::time::timeout(std::time::Duration::from_secs(1), stream.next()) + .await + .expect("timed out waiting for webhook message") + .expect("stream should yield a webhook message"); + assert_eq!(msg.sender_id, "alice"); + assert_eq!(msg.owner_id, "http"); + } + /// Regression test for issue #869: RwLock read guard was held across /// tx.send(msg).await in `process_message()`, blocking shutdown() from /// acquiring the write lock when the channel buffer was full. diff --git a/src/channels/mod.rs b/src/channels/mod.rs index 289b64c7..c0230692 100644 --- a/src/channels/mod.rs +++ b/src/channels/mod.rs @@ -39,7 +39,7 @@ mod webhook_server; pub use channel::{ AttachmentKind, Channel, ChannelSecretUpdater, IncomingAttachment, IncomingMessage, - MessageStream, OutgoingResponse, StatusUpdate, + MessageStream, OutgoingResponse, StatusUpdate, routing_target_from_metadata, }; pub use http::{HttpChannel, HttpChannelState}; pub use manager::ChannelManager; diff --git a/src/channels/repl.rs b/src/channels/repl.rs index 230d5e92..40d66919 100644 --- a/src/channels/repl.rs +++ b/src/channels/repl.rs @@ -200,6 +200,8 @@ fn format_json_params(params: &serde_json::Value, indent: &str) -> String { /// REPL channel with line editing and markdown rendering. pub struct ReplChannel { + /// Stable owner scope for this REPL instance. + user_id: String, /// Optional single message to send (for -m flag). single_message: Option, /// Debug mode flag (shared with input thread). @@ -213,7 +215,13 @@ pub struct ReplChannel { impl ReplChannel { /// Create a new REPL channel. pub fn new() -> Self { + Self::with_user_id("default") + } + + /// Create a new REPL channel for a specific owner scope. + pub fn with_user_id(user_id: impl Into) -> Self { Self { + user_id: user_id.into(), single_message: None, debug_mode: Arc::new(AtomicBool::new(false)), is_streaming: Arc::new(AtomicBool::new(false)), @@ -223,7 +231,13 @@ impl ReplChannel { /// Create a REPL channel that sends a single message and exits. pub fn with_message(message: String) -> Self { + Self::with_message_for_user("default", message) + } + + /// Create a REPL channel that sends a single message for a specific owner scope and exits. + pub fn with_message_for_user(user_id: impl Into, message: String) -> Self { Self { + user_id: user_id.into(), single_message: Some(message), debug_mode: Arc::new(AtomicBool::new(false)), is_streaming: Arc::new(AtomicBool::new(false)), @@ -292,6 +306,7 @@ impl Channel for ReplChannel { async fn start(&self) -> Result { let (tx, rx) = mpsc::channel(32); let single_message = self.single_message.clone(); + let user_id = self.user_id.clone(); let debug_mode = Arc::clone(&self.debug_mode); let suppress_banner = Arc::clone(&self.suppress_banner); let esc_interrupt_triggered_for_thread = Arc::new(AtomicBool::new(false)); @@ -301,11 +316,11 @@ impl Channel for ReplChannel { // Single message mode: send it and return if let Some(msg) = single_message { - let incoming = IncomingMessage::new("repl", "default", &msg).with_timezone(&sys_tz); + let incoming = IncomingMessage::new("repl", &user_id, &msg).with_timezone(&sys_tz); let _ = tx.blocking_send(incoming); // Ensure the agent exits after handling exactly one turn in -m mode, // even when other channels (gateway/http) are enabled. - let _ = tx.blocking_send(IncomingMessage::new("repl", "default", "/quit")); + let _ = tx.blocking_send(IncomingMessage::new("repl", &user_id, "/quit")); return; } @@ -366,7 +381,7 @@ impl Channel for ReplChannel { "/quit" | "/exit" => { // Forward shutdown command so the agent loop exits even // when other channels (e.g. web gateway) are still active. - let msg = IncomingMessage::new("repl", "default", "/quit") + let msg = IncomingMessage::new("repl", &user_id, "/quit") .with_timezone(&sys_tz); let _ = tx.blocking_send(msg); break; @@ -389,7 +404,7 @@ impl Channel for ReplChannel { } let msg = - IncomingMessage::new("repl", "default", line).with_timezone(&sys_tz); + IncomingMessage::new("repl", &user_id, line).with_timezone(&sys_tz); if tx.blocking_send(msg).is_err() { break; } @@ -397,14 +412,14 @@ impl Channel for ReplChannel { Err(ReadlineError::Interrupted) => { if esc_interrupt_triggered_for_thread.swap(false, Ordering::Relaxed) { // Esc: interrupt current operation and keep REPL open. - let msg = IncomingMessage::new("repl", "default", "/interrupt") + let msg = IncomingMessage::new("repl", &user_id, "/interrupt") .with_timezone(&sys_tz); if tx.blocking_send(msg).is_err() { break; } } else { // Ctrl+C (VINTR): request graceful shutdown. - let msg = IncomingMessage::new("repl", "default", "/quit") + let msg = IncomingMessage::new("repl", &user_id, "/quit") .with_timezone(&sys_tz); let _ = tx.blocking_send(msg); break; @@ -416,7 +431,7 @@ impl Channel for ReplChannel { // immediately — just drop the REPL thread silently so other // channels (gateway, telegram, …) keep running. if std::io::stdin().is_terminal() { - let msg = IncomingMessage::new("repl", "default", "/quit") + let msg = IncomingMessage::new("repl", &user_id, "/quit") .with_timezone(&sys_tz); let _ = tx.blocking_send(msg); } diff --git a/src/channels/wasm/loader.rs b/src/channels/wasm/loader.rs index c261193e..6329428f 100644 --- a/src/channels/wasm/loader.rs +++ b/src/channels/wasm/loader.rs @@ -27,6 +27,7 @@ pub struct WasmChannelLoader { pairing_store: Arc, settings_store: Option>, secrets_store: Option>, + owner_scope_id: String, } impl WasmChannelLoader { @@ -35,12 +36,14 @@ impl WasmChannelLoader { runtime: Arc, pairing_store: Arc, settings_store: Option>, + owner_scope_id: impl Into, ) -> Self { Self { runtime, pairing_store, settings_store, secrets_store: None, + owner_scope_id: owner_scope_id.into(), } } @@ -149,6 +152,7 @@ impl WasmChannelLoader { self.runtime.clone(), prepared, capabilities, + self.owner_scope_id.clone(), config_json, self.pairing_store.clone(), self.settings_store.clone(), @@ -487,7 +491,8 @@ mod tests { async fn test_loader_invalid_name() { let config = WasmChannelRuntimeConfig::for_testing(); let runtime = Arc::new(WasmChannelRuntime::new(config).unwrap()); - let loader = WasmChannelLoader::new(runtime, Arc::new(PairingStore::new()), None); + let loader = + WasmChannelLoader::new(runtime, Arc::new(PairingStore::new()), None, "default"); let dir = TempDir::new().unwrap(); let wasm_path = dir.path().join("test.wasm"); @@ -505,7 +510,8 @@ mod tests { async fn load_from_dir_returns_empty_when_dir_missing() { let config = WasmChannelRuntimeConfig::for_testing(); let runtime = Arc::new(WasmChannelRuntime::new(config).unwrap()); - let loader = WasmChannelLoader::new(runtime, Arc::new(PairingStore::new()), None); + let loader = + WasmChannelLoader::new(runtime, Arc::new(PairingStore::new()), None, "default"); let dir = TempDir::new().unwrap(); let missing = dir.path().join("nonexistent_channels_dir"); diff --git a/src/channels/wasm/mod.rs b/src/channels/wasm/mod.rs index 0d4a6c3f..882709a9 100644 --- a/src/channels/wasm/mod.rs +++ b/src/channels/wasm/mod.rs @@ -69,7 +69,7 @@ //! let runtime = WasmChannelRuntime::new(config)?; //! //! // Load channels from directory -//! let loader = WasmChannelLoader::new(runtime); +//! let loader = WasmChannelLoader::new(runtime, pairing_store, settings_store, owner_scope_id); //! let channels = loader.load_from_dir(Path::new("~/.ironclaw/channels/")).await?; //! //! // Add to channel manager @@ -90,6 +90,7 @@ pub mod setup; pub(crate) mod signature; #[allow(dead_code)] pub(crate) mod storage; +mod telegram_host_config; mod wrapper; // Core types @@ -107,4 +108,5 @@ pub use schema::{ ChannelCapabilitiesFile, ChannelConfig, SecretSetupSchema, SetupSchema, WebhookSchema, }; pub use setup::{WasmChannelSetup, inject_channel_credentials, setup_wasm_channels}; +pub(crate) use telegram_host_config::{TELEGRAM_CHANNEL_NAME, bot_username_setting_key}; pub use wrapper::{HttpResponse, SharedWasmChannel, WasmChannel}; diff --git a/src/channels/wasm/router.rs b/src/channels/wasm/router.rs index 9b0f3da1..8005ccea 100644 --- a/src/channels/wasm/router.rs +++ b/src/channels/wasm/router.rs @@ -672,6 +672,7 @@ mod tests { runtime, prepared, capabilities, + "default", "{}".to_string(), Arc::new(PairingStore::new()), None, diff --git a/src/channels/wasm/setup.rs b/src/channels/wasm/setup.rs index b9deb526..2b9703dc 100644 --- a/src/channels/wasm/setup.rs +++ b/src/channels/wasm/setup.rs @@ -7,8 +7,9 @@ use std::collections::HashSet; use std::sync::Arc; use crate::channels::wasm::{ - LoadedChannel, RegisteredEndpoint, SharedWasmChannel, WasmChannel, WasmChannelLoader, - WasmChannelRouter, WasmChannelRuntime, WasmChannelRuntimeConfig, create_wasm_channel_router, + LoadedChannel, RegisteredEndpoint, SharedWasmChannel, TELEGRAM_CHANNEL_NAME, WasmChannel, + WasmChannelLoader, WasmChannelRouter, WasmChannelRuntime, WasmChannelRuntimeConfig, + bot_username_setting_key, create_wasm_channel_router, }; use crate::config::Config; use crate::db::Database; @@ -48,7 +49,8 @@ pub async fn setup_wasm_channels( let mut loader = WasmChannelLoader::new( Arc::clone(&runtime), Arc::clone(&pairing_store), - settings_store, + settings_store.clone(), + config.owner_id.clone(), ); if let Some(secrets) = secrets_store { loader = loader.with_secrets_store(Arc::clone(secrets)); @@ -70,7 +72,14 @@ pub async fn setup_wasm_channels( let mut channel_names: Vec = Vec::new(); for loaded in results.loaded { - let (name, channel) = register_channel(loaded, config, secrets_store, &wasm_router).await; + let (name, channel) = register_channel( + loaded, + config, + secrets_store, + settings_store.as_ref(), + &wasm_router, + ) + .await; channel_names.push(name.clone()); channels.push((name, channel)); } @@ -104,10 +113,16 @@ async fn register_channel( loaded: LoadedChannel, config: &Config, secrets_store: &Option>, + settings_store: Option<&Arc>, wasm_router: &Arc, ) -> (String, Box) { let channel_name = loaded.name().to_string(); tracing::info!("Loaded WASM channel: {}", channel_name); + let owner_actor_id = config + .channels + .wasm_channel_owner_ids + .get(channel_name.as_str()) + .map(ToString::to_string); let secret_name = loaded.webhook_secret_name(); let sig_key_secret_name = loaded.signature_key_secret_name(); @@ -115,7 +130,7 @@ async fn register_channel( let webhook_secret = if let Some(secrets) = secrets_store { secrets - .get_decrypted("default", &secret_name) + .get_decrypted(&config.owner_id, &secret_name) .await .ok() .map(|s| s.expose().to_string()) @@ -133,7 +148,7 @@ async fn register_channel( require_secret: webhook_secret.is_some(), }]; - let channel_arc = Arc::new(loaded.channel); + let channel_arc = Arc::new(loaded.channel.with_owner_actor_id(owner_actor_id.clone())); // Inject runtime config (tunnel URL, webhook secret, owner_id). { @@ -161,6 +176,15 @@ async fn register_channel( config_updates.insert("owner_id".to_string(), serde_json::json!(owner_id)); } + if channel_name == TELEGRAM_CHANNEL_NAME + && let Some(store) = settings_store + && let Ok(Some(serde_json::Value::String(username))) = store + .get_setting("default", &bot_username_setting_key(&channel_name)) + .await + && !username.trim().is_empty() + { + config_updates.insert("bot_username".to_string(), serde_json::json!(username)); + } // Inject channel-specific secrets into config for channels that need // credentials in API request bodies (e.g., Feishu token exchange). // The credential injection system only replaces placeholders in URLs @@ -198,7 +222,7 @@ async fn register_channel( // Register Ed25519 signature key if declared in capabilities. if let Some(ref sig_key_name) = sig_key_secret_name && let Some(secrets) = secrets_store - && let Ok(key_secret) = secrets.get_decrypted("default", sig_key_name).await + && let Ok(key_secret) = secrets.get_decrypted(&config.owner_id, sig_key_name).await { match wasm_router .register_signature_key(&channel_name, key_secret.expose()) @@ -216,7 +240,9 @@ async fn register_channel( // Register HMAC signing secret if declared in capabilities. if let Some(ref hmac_secret_name) = hmac_secret_name && let Some(secrets) = secrets_store - && let Ok(secret) = secrets.get_decrypted("default", hmac_secret_name).await + && let Ok(secret) = secrets + .get_decrypted(&config.owner_id, hmac_secret_name) + .await { wasm_router .register_hmac_secret(&channel_name, secret.expose()) @@ -231,6 +257,7 @@ async fn register_channel( .as_ref() .map(|s| s.as_ref() as &dyn SecretsStore), &channel_name, + &config.owner_id, ) .await { @@ -268,6 +295,7 @@ pub async fn inject_channel_credentials( channel: &Arc, secrets: Option<&dyn SecretsStore>, channel_name: &str, + owner_id: &str, ) -> anyhow::Result { if channel_name.trim().is_empty() { return Ok(0); @@ -279,7 +307,7 @@ pub async fn inject_channel_credentials( // 1. Try injecting from persistent secrets store if available if let Some(secrets) = secrets { let all_secrets = secrets - .list("default") + .list(owner_id) .await .map_err(|e| anyhow::anyhow!("Failed to list secrets: {}", e))?; @@ -290,7 +318,7 @@ pub async fn inject_channel_credentials( continue; } - let decrypted = match secrets.get_decrypted("default", &secret_meta.name).await { + let decrypted = match secrets.get_decrypted(owner_id, &secret_meta.name).await { Ok(d) => d, Err(e) => { tracing::warn!( diff --git a/src/channels/wasm/telegram_host_config.rs b/src/channels/wasm/telegram_host_config.rs new file mode 100644 index 00000000..79c27c0b --- /dev/null +++ b/src/channels/wasm/telegram_host_config.rs @@ -0,0 +1,6 @@ +pub const TELEGRAM_CHANNEL_NAME: &str = "telegram"; +const TELEGRAM_BOT_USERNAME_SETTING_PREFIX: &str = "channels.wasm_channel_bot_usernames"; + +pub fn bot_username_setting_key(channel_name: &str) -> String { + format!("{TELEGRAM_BOT_USERNAME_SETTING_PREFIX}.{channel_name}") +} diff --git a/src/channels/wasm/wrapper.rs b/src/channels/wasm/wrapper.rs index 1529da41..6ca79831 100644 --- a/src/channels/wasm/wrapper.rs +++ b/src/channels/wasm/wrapper.rs @@ -709,6 +709,12 @@ pub struct WasmChannel { /// Settings store for persisting broadcast metadata across restarts. settings_store: Option>, + /// Stable owner scope for persistent data and owner-target routing. + owner_scope_id: String, + + /// Channel-specific actor ID that maps to the instance owner on this channel. + owner_actor_id: Option, + /// Secrets store for host-based credential injection. /// Used to pre-resolve credentials before each WASM callback. secrets_store: Option>, @@ -719,6 +725,7 @@ pub struct WasmChannel { /// method and the static polling helper share one implementation. async fn do_update_broadcast_metadata( channel_name: &str, + owner_scope_id: &str, metadata: &str, last_broadcast_metadata: &tokio::sync::RwLock>, settings_store: Option<&Arc>, @@ -731,7 +738,7 @@ async fn do_update_broadcast_metadata( if changed && let Some(store) = settings_store { let key = format!("channel_broadcast_metadata_{}", channel_name); let value = serde_json::Value::String(metadata.to_string()); - if let Err(e) = store.set_setting("default", &key, &value).await { + if let Err(e) = store.set_setting(owner_scope_id, &key, &value).await { tracing::warn!( channel = %channel_name, "Failed to persist broadcast metadata: {}", @@ -741,12 +748,70 @@ async fn do_update_broadcast_metadata( } } +fn resolve_message_scope( + owner_scope_id: &str, + owner_actor_id: Option<&str>, + sender_id: &str, +) -> (String, bool) { + if owner_actor_id.is_some_and(|owner_actor_id| owner_actor_id == sender_id) { + (owner_scope_id.to_string(), true) + } else { + (sender_id.to_string(), false) + } +} + +fn uses_owner_broadcast_target(user_id: &str, owner_scope_id: &str) -> bool { + user_id == owner_scope_id +} + +fn missing_routing_target_error(name: &str, reason: String) -> ChannelError { + ChannelError::MissingRoutingTarget { + name: name.to_string(), + reason, + } +} + +fn resolve_owner_broadcast_target( + channel_name: &str, + metadata: &str, +) -> Result { + let metadata: serde_json::Value = serde_json::from_str(metadata).map_err(|e| { + missing_routing_target_error( + channel_name, + format!("Invalid stored owner routing metadata: {e}"), + ) + })?; + + crate::channels::routing_target_from_metadata(&metadata).ok_or_else(|| { + missing_routing_target_error( + channel_name, + format!( + "Stored owner routing metadata for channel '{}' is missing a delivery target.", + channel_name + ), + ) + }) +} + +fn apply_emitted_metadata(mut msg: IncomingMessage, metadata_json: &str) -> IncomingMessage { + if let Ok(metadata) = serde_json::from_str(metadata_json) { + msg = msg.with_metadata(metadata); + if msg.conversation_scope().is_none() + && let Some(scope_id) = crate::channels::routing_target_from_metadata(&msg.metadata) + { + msg = msg.with_conversation_scope(scope_id); + } + } + msg +} + impl WasmChannel { /// Create a new WASM channel. pub fn new( runtime: Arc, prepared: Arc, capabilities: ChannelCapabilities, + owner_scope_id: impl Into, config_json: String, pairing_store: Arc, settings_store: Option>, @@ -773,6 +838,8 @@ impl WasmChannel { workspace_store: Arc::new(ChannelWorkspaceStore::new()), last_broadcast_metadata: Arc::new(tokio::sync::RwLock::new(None)), settings_store, + owner_scope_id: owner_scope_id.into(), + owner_actor_id: None, secrets_store: None, } } @@ -787,6 +854,30 @@ impl WasmChannel { self } + /// Bind this channel to the external actor that maps to the configured owner. + pub fn with_owner_actor_id(mut self, owner_actor_id: Option) -> Self { + self.owner_actor_id = owner_actor_id; + self + } + + /// Attach a message stream for integration tests. + /// + /// This primes any startup-persisted workspace state, but tolerates + /// callback-level startup failures so tests can exercise webhook parsing + /// and message emission without depending on external network access. + #[cfg(feature = "integration")] + #[doc(hidden)] + pub async fn start_message_stream_for_test(&self) -> Result { + self.prime_startup_state_for_test().await?; + + let (tx, rx) = mpsc::channel(256); + *self.message_tx.write().await = Some(tx); + let (shutdown_tx, _shutdown_rx) = oneshot::channel(); + *self.shutdown_tx.write().await = Some(shutdown_tx); + + Ok(Box::pin(ReceiverStream::new(rx))) + } + /// Update the channel config before starting. /// /// Merges the provided values into the existing config JSON. @@ -826,6 +917,29 @@ impl WasmChannel { self.credentials.read().await.clone() } + #[cfg(feature = "integration")] + async fn prime_startup_state_for_test(&self) -> Result<(), WasmChannelError> { + if self.prepared.component().is_none() { + return Ok(()); + } + + let (start_result, mut host_state) = self.execute_on_start_with_state().await?; + self.log_on_start_host_state(&mut host_state); + + match start_result { + Ok(_) => Ok(()), + Err(WasmChannelError::CallbackFailed { reason, .. }) => { + tracing::warn!( + channel = %self.name, + reason = %reason, + "Ignoring startup callback failure in test-only message stream bootstrap" + ); + Ok(()) + } + Err(e) => Err(e), + } + } + /// Get the channel name. pub fn channel_name(&self) -> &str { &self.name @@ -843,6 +957,7 @@ impl WasmChannel { async fn update_broadcast_metadata(&self, metadata: &str) { do_update_broadcast_metadata( &self.name, + &self.owner_scope_id, metadata, &self.last_broadcast_metadata, self.settings_store.as_ref(), @@ -854,7 +969,7 @@ impl WasmChannel { async fn load_broadcast_metadata(&self) { if let Some(ref store) = self.settings_store { match store - .get_setting("default", &self.broadcast_metadata_key()) + .get_setting(&self.owner_scope_id, &self.broadcast_metadata_key()) .await { Ok(Some(serde_json::Value::String(meta))) => { @@ -864,7 +979,30 @@ impl WasmChannel { "Restored broadcast metadata from settings" ); } - Ok(_) => {} + Ok(_) => { + if self.owner_scope_id != "default" { + match store + .get_setting("default", &self.broadcast_metadata_key()) + .await + { + Ok(Some(serde_json::Value::String(meta))) => { + *self.last_broadcast_metadata.write().await = Some(meta); + tracing::debug!( + channel = %self.name, + "Restored legacy owner broadcast metadata from default scope" + ); + } + Ok(_) => {} + Err(e) => { + tracing::warn!( + channel = %self.name, + "Failed to load legacy broadcast metadata: {}", + e + ); + } + } + } + } Err(e) => { tracing::warn!( channel = %self.name, @@ -1035,6 +1173,85 @@ impl WasmChannel { ) } + fn log_on_start_host_state(&self, host_state: &mut ChannelHostState) { + for entry in host_state.take_logs() { + match entry.level { + crate::tools::wasm::LogLevel::Error => { + tracing::error!(channel = %self.name, "{}", entry.message); + } + crate::tools::wasm::LogLevel::Warn => { + tracing::warn!(channel = %self.name, "{}", entry.message); + } + _ => { + tracing::debug!(channel = %self.name, "{}", entry.message); + } + } + } + } + + async fn execute_on_start_with_state( + &self, + ) -> Result<(Result, ChannelHostState), WasmChannelError> { + let runtime = Arc::clone(&self.runtime); + let prepared = Arc::clone(&self.prepared); + let capabilities = Self::inject_workspace_reader(&self.capabilities, &self.workspace_store); + let config_json = self.config_json.read().await.clone(); + let timeout = self.runtime.config().callback_timeout; + let channel_name = self.name.clone(); + let credentials = self.get_credentials().await; + let host_credentials = resolve_channel_host_credentials( + &self.capabilities, + self.secrets_store.as_deref(), + &self.owner_scope_id, + ) + .await; + let pairing_store = self.pairing_store.clone(); + let workspace_store = self.workspace_store.clone(); + + tokio::time::timeout(timeout, async move { + tokio::task::spawn_blocking(move || { + let mut store = Self::create_store( + &runtime, + &prepared, + &capabilities, + credentials, + host_credentials, + pairing_store, + )?; + let instance = Self::instantiate_component(&runtime, &prepared, &mut store)?; + + let channel_iface = instance.near_agent_channel(); + let config_result = channel_iface + .call_on_start(&mut store, &config_json) + .map_err(|e| Self::map_wasm_error(e, &prepared.name, prepared.limits.fuel)) + .and_then(|wasm_result| match wasm_result { + Ok(wit_config) => Ok(convert_channel_config(wit_config)), + Err(err_msg) => Err(WasmChannelError::CallbackFailed { + name: prepared.name.clone(), + reason: err_msg, + }), + }); + + let mut host_state = + Self::extract_host_state(&mut store, &prepared.name, &capabilities); + let pending_writes = host_state.take_pending_writes(); + workspace_store.commit_writes(&pending_writes); + + Ok::<_, WasmChannelError>((config_result, host_state)) + }) + .await + .map_err(|e| WasmChannelError::ExecutionPanicked { + name: channel_name.clone(), + reason: e.to_string(), + })? + }) + .await + .map_err(|_| WasmChannelError::Timeout { + name: self.name.clone(), + callback: "on_start".to_string(), + })? + } + /// Execute the on_start callback. /// /// Returns the channel configuration for HTTP endpoint registration. @@ -1057,96 +1274,17 @@ impl WasmChannel { }); } - let runtime = Arc::clone(&self.runtime); - let prepared = Arc::clone(&self.prepared); - let capabilities = Self::inject_workspace_reader(&self.capabilities, &self.workspace_store); - let config_json = self.config_json.read().await.clone(); - let timeout = self.runtime.config().callback_timeout; - let channel_name = self.name.clone(); - let credentials = self.get_credentials().await; - let host_credentials = - resolve_channel_host_credentials(&self.capabilities, self.secrets_store.as_deref()) - .await; - let pairing_store = self.pairing_store.clone(); - let workspace_store = self.workspace_store.clone(); + let (config_result, mut host_state) = self.execute_on_start_with_state().await?; + self.log_on_start_host_state(&mut host_state); - // Execute in blocking task with timeout - let result = tokio::time::timeout(timeout, async move { - tokio::task::spawn_blocking(move || { - let mut store = Self::create_store( - &runtime, - &prepared, - &capabilities, - credentials, - host_credentials, - pairing_store, - )?; - let instance = Self::instantiate_component(&runtime, &prepared, &mut store)?; - - // Call on_start using the generated typed interface - let channel_iface = instance.near_agent_channel(); - let wasm_result = channel_iface - .call_on_start(&mut store, &config_json) - .map_err(|e| Self::map_wasm_error(e, &prepared.name, prepared.limits.fuel))?; - - // Convert the result - let config = match wasm_result { - Ok(wit_config) => convert_channel_config(wit_config), - Err(err_msg) => { - return Err(WasmChannelError::CallbackFailed { - name: prepared.name.clone(), - reason: err_msg, - }); - } - }; - - let mut host_state = - Self::extract_host_state(&mut store, &prepared.name, &capabilities); - - // Commit pending workspace writes to the persistent store - let pending_writes = host_state.take_pending_writes(); - workspace_store.commit_writes(&pending_writes); - - Ok((config, host_state)) - }) - .await - .map_err(|e| WasmChannelError::ExecutionPanicked { - name: channel_name.clone(), - reason: e.to_string(), - })? - }) - .await; - - match result { - Ok(Ok((config, mut host_state))) => { - // Surface WASM guest logs (errors/warnings from webhook setup, etc.) - for entry in host_state.take_logs() { - match entry.level { - crate::tools::wasm::LogLevel::Error => { - tracing::error!(channel = %self.name, "{}", entry.message); - } - crate::tools::wasm::LogLevel::Warn => { - tracing::warn!(channel = %self.name, "{}", entry.message); - } - _ => { - tracing::debug!(channel = %self.name, "{}", entry.message); - } - } - } - tracing::info!( - channel = %self.name, - display_name = %config.display_name, - endpoints = config.http_endpoints.len(), - "WASM channel on_start completed" - ); - Ok(config) - } - Ok(Err(e)) => Err(e), - Err(_) => Err(WasmChannelError::Timeout { - name: self.name.clone(), - callback: "on_start".to_string(), - }), - } + let config = config_result?; + tracing::info!( + channel = %self.name, + display_name = %config.display_name, + endpoints = config.http_endpoints.len(), + "WASM channel on_start completed" + ); + Ok(config) } /// Execute the on_http_request callback. @@ -1204,9 +1342,12 @@ impl WasmChannel { let capabilities = Self::inject_workspace_reader(&self.capabilities, &self.workspace_store); let timeout = self.runtime.config().callback_timeout; let credentials = self.get_credentials().await; - let host_credentials = - resolve_channel_host_credentials(&self.capabilities, self.secrets_store.as_deref()) - .await; + let host_credentials = resolve_channel_host_credentials( + &self.capabilities, + self.secrets_store.as_deref(), + &self.owner_scope_id, + ) + .await; let pairing_store = self.pairing_store.clone(); let workspace_store = self.workspace_store.clone(); @@ -1307,9 +1448,12 @@ impl WasmChannel { let timeout = self.runtime.config().callback_timeout; let channel_name = self.name.clone(); let credentials = self.get_credentials().await; - let host_credentials = - resolve_channel_host_credentials(&self.capabilities, self.secrets_store.as_deref()) - .await; + let host_credentials = resolve_channel_host_credentials( + &self.capabilities, + self.secrets_store.as_deref(), + &self.owner_scope_id, + ) + .await; let pairing_store = self.pairing_store.clone(); let workspace_store = self.workspace_store.clone(); @@ -1414,9 +1558,12 @@ impl WasmChannel { let timeout = self.runtime.config().callback_timeout; let channel_name = self.name.clone(); let credentials = self.get_credentials().await; - let host_credentials = - resolve_channel_host_credentials(&self.capabilities, self.secrets_store.as_deref()) - .await; + let host_credentials = resolve_channel_host_credentials( + &self.capabilities, + self.secrets_store.as_deref(), + &self.owner_scope_id, + ) + .await; let pairing_store = self.pairing_store.clone(); // Prepare response data @@ -1555,9 +1702,12 @@ impl WasmChannel { let timeout = self.runtime.config().callback_timeout; let channel_name = self.name.clone(); let credentials = self.get_credentials().await; - let host_credentials = - resolve_channel_host_credentials(&self.capabilities, self.secrets_store.as_deref()) - .await; + let host_credentials = resolve_channel_host_credentials( + &self.capabilities, + self.secrets_store.as_deref(), + &self.owner_scope_id, + ) + .await; let pairing_store = self.pairing_store.clone(); let user_id = user_id.to_string(); @@ -1659,9 +1809,12 @@ impl WasmChannel { let timeout = self.runtime.config().callback_timeout; let channel_name = self.name.clone(); let credentials = self.get_credentials().await; - let host_credentials = - resolve_channel_host_credentials(&self.capabilities, self.secrets_store.as_deref()) - .await; + let host_credentials = resolve_channel_host_credentials( + &self.capabilities, + self.secrets_store.as_deref(), + &self.owner_scope_id, + ) + .await; let pairing_store = self.pairing_store.clone(); let Some(wit_update) = status_to_wit(status, metadata) else { @@ -1831,6 +1984,7 @@ impl WasmChannel { let repeater_host_credentials = resolve_channel_host_credentials( &self.capabilities, self.secrets_store.as_deref(), + &self.owner_scope_id, ) .await; let pairing_store = self.pairing_store.clone(); @@ -2027,8 +2181,16 @@ impl WasmChannel { } } + let (resolved_user_id, is_owner_sender) = resolve_message_scope( + &self.owner_scope_id, + self.owner_actor_id.as_deref(), + &emitted.user_id, + ); + // Convert to IncomingMessage - let mut msg = IncomingMessage::new(&self.name, &emitted.user_id, &emitted.content); + let mut msg = IncomingMessage::new(&self.name, &resolved_user_id, &emitted.content) + .with_owner_id(&self.owner_scope_id) + .with_sender_id(&emitted.user_id); if let Some(name) = emitted.user_name { msg = msg.with_user_name(name); @@ -2060,9 +2222,9 @@ impl WasmChannel { } // Parse metadata JSON - if let Ok(metadata) = serde_json::from_str(&emitted.metadata_json) { - msg = msg.with_metadata(metadata); - // Store for broadcast routing (chat_id etc.) + msg = apply_emitted_metadata(msg, &emitted.metadata_json); + if is_owner_sender { + // Store for owner-target routing (chat_id etc.). self.update_broadcast_metadata(&emitted.metadata_json).await; } @@ -2112,6 +2274,8 @@ impl WasmChannel { let last_broadcast_metadata = self.last_broadcast_metadata.clone(); let settings_store = self.settings_store.clone(); let poll_secrets_store = self.secrets_store.clone(); + let owner_scope_id = self.owner_scope_id.clone(); + let owner_actor_id = self.owner_actor_id.clone(); tokio::spawn(async move { let mut interval_timer = tokio::time::interval(interval); @@ -2129,6 +2293,7 @@ impl WasmChannel { let host_credentials = resolve_channel_host_credentials( &poll_capabilities, poll_secrets_store.as_deref(), + &owner_scope_id, ) .await; @@ -2150,12 +2315,16 @@ impl WasmChannel { // Process any emitted messages if !emitted_messages.is_empty() && let Err(e) = Self::dispatch_emitted_messages( - &channel_name, + EmitDispatchContext { + channel_name: &channel_name, + owner_scope_id: &owner_scope_id, + owner_actor_id: owner_actor_id.as_deref(), + message_tx: &message_tx, + rate_limiter: &rate_limiter, + last_broadcast_metadata: &last_broadcast_metadata, + settings_store: settings_store.as_ref(), + }, emitted_messages, - &message_tx, - &rate_limiter, - &last_broadcast_metadata, - settings_store.as_ref(), ).await { tracing::warn!( channel = %channel_name, @@ -2277,25 +2446,21 @@ impl WasmChannel { /// This is a static helper used by the polling loop since it doesn't have /// access to `&self`. async fn dispatch_emitted_messages( - channel_name: &str, + dispatch: EmitDispatchContext<'_>, messages: Vec, - message_tx: &RwLock>>, - rate_limiter: &RwLock, - last_broadcast_metadata: &tokio::sync::RwLock>, - settings_store: Option<&Arc>, ) -> Result<(), WasmChannelError> { tracing::info!( - channel = %channel_name, + channel = %dispatch.channel_name, message_count = messages.len(), "Processing emitted messages from polling callback" ); // Clone sender to avoid holding RwLock read guard across send().await in the loop let tx = { - let tx_guard = message_tx.read().await; + let tx_guard = dispatch.message_tx.read().await; let Some(tx) = tx_guard.as_ref() else { tracing::error!( - channel = %channel_name, + channel = %dispatch.channel_name, count = messages.len(), "Messages emitted but no sender available - channel may not be started!" ); @@ -2307,20 +2472,29 @@ impl WasmChannel { for emitted in messages { // Check rate limit — acquire and release the write lock before send().await { - let mut limiter = rate_limiter.write().await; + let mut limiter = dispatch.rate_limiter.write().await; if !limiter.check_and_record() { tracing::warn!( - channel = %channel_name, + channel = %dispatch.channel_name, "Message emission rate limited" ); return Err(WasmChannelError::EmitRateLimited { - name: channel_name.to_string(), + name: dispatch.channel_name.to_string(), }); } } + let (resolved_user_id, is_owner_sender) = resolve_message_scope( + dispatch.owner_scope_id, + dispatch.owner_actor_id, + &emitted.user_id, + ); + // Convert to IncomingMessage - let mut msg = IncomingMessage::new(channel_name, &emitted.user_id, &emitted.content); + let mut msg = + IncomingMessage::new(dispatch.channel_name, &resolved_user_id, &emitted.content) + .with_owner_id(dispatch.owner_scope_id) + .with_sender_id(&emitted.user_id); if let Some(name) = emitted.user_name { msg = msg.with_user_name(name); @@ -2351,22 +2525,22 @@ impl WasmChannel { msg = msg.with_attachments(incoming_attachments); } - // Parse metadata JSON - if let Ok(metadata) = serde_json::from_str(&emitted.metadata_json) { - msg = msg.with_metadata(metadata); - // Store for broadcast routing (chat_id etc.) + msg = apply_emitted_metadata(msg, &emitted.metadata_json); + if is_owner_sender { + // Store for owner-target routing (chat_id etc.) do_update_broadcast_metadata( - channel_name, + dispatch.channel_name, + dispatch.owner_scope_id, &emitted.metadata_json, - last_broadcast_metadata, - settings_store, + dispatch.last_broadcast_metadata, + dispatch.settings_store, ) .await; } // Send to stream — no locks held across this await tracing::info!( - channel = %channel_name, + channel = %dispatch.channel_name, user_id = %emitted.user_id, content_len = emitted.content.len(), attachment_count = msg.attachments.len(), @@ -2375,14 +2549,14 @@ impl WasmChannel { if tx.send(msg).await.is_err() { tracing::error!( - channel = %channel_name, + channel = %dispatch.channel_name, "Failed to send polled message, channel closed" ); break; } tracing::info!( - channel = %channel_name, + channel = %dispatch.channel_name, "Message successfully sent to agent queue" ); } @@ -2391,6 +2565,16 @@ impl WasmChannel { } } +struct EmitDispatchContext<'a> { + channel_name: &'a str, + owner_scope_id: &'a str, + owner_actor_id: Option<&'a str>, + message_tx: &'a RwLock>>, + rate_limiter: &'a RwLock, + last_broadcast_metadata: &'a tokio::sync::RwLock>, + settings_store: Option<&'a Arc>, +} + #[async_trait] impl Channel for WasmChannel { fn name(&self) -> &str { @@ -2490,8 +2674,11 @@ impl Channel for WasmChannel { // The original metadata contains channel-specific routing info (e.g., Telegram chat_id) // that the WASM channel needs to send the reply to the correct destination. let metadata_json = serde_json::to_string(&msg.metadata).unwrap_or_default(); - // Store for broadcast routing (chat_id etc.) - self.update_broadcast_metadata(&metadata_json).await; + // Store for owner-target routing (chat_id etc.) only when the configured + // owner is the actor in this conversation. + if msg.user_id == self.owner_scope_id { + self.update_broadcast_metadata(&metadata_json).await; + } self.call_on_respond( msg.id, &response.content, @@ -2514,8 +2701,24 @@ impl Channel for WasmChannel { response: OutgoingResponse, ) -> Result<(), ChannelError> { self.cancel_typing_task().await; + let resolved_target = if uses_owner_broadcast_target(user_id, &self.owner_scope_id) { + let metadata = self.last_broadcast_metadata.read().await.clone().ok_or_else(|| { + missing_routing_target_error( + &self.name, + format!( + "No stored owner routing target for channel '{}'. Send a message from the owner on this channel first.", + self.name + ), + ) + })?; + + resolve_owner_broadcast_target(&self.name, &metadata)? + } else { + user_id.to_string() + }; + self.call_on_broadcast( - user_id, + &resolved_target, &response.content, response.thread_id.as_deref(), &response.attachments, @@ -2931,6 +3134,7 @@ fn extract_host_from_url(url: &str) -> Option { async fn resolve_channel_host_credentials( capabilities: &ChannelCapabilities, store: Option<&(dyn SecretsStore + Send + Sync)>, + owner_scope_id: &str, ) -> Vec { let store = match store { Some(s) => s, @@ -2957,7 +3161,10 @@ async fn resolve_channel_host_credentials( continue; } - let secret = match store.get_decrypted("default", &mapping.secret_name).await { + let secret = match store + .get_decrypted(owner_scope_id, &mapping.secret_name) + .await + { Ok(s) => s, Err(e) => { tracing::debug!( @@ -3076,12 +3283,18 @@ mod tests { use crate::channels::wasm::runtime::{ PreparedChannelModule, WasmChannelRuntime, WasmChannelRuntimeConfig, }; - use crate::channels::wasm::wrapper::{HttpResponse, WasmChannel}; + use crate::channels::wasm::wrapper::{ + EmitDispatchContext, HttpResponse, WasmChannel, uses_owner_broadcast_target, + }; use crate::pairing::PairingStore; use crate::testing::credentials::TEST_TELEGRAM_BOT_TOKEN; use crate::tools::wasm::ResourceLimits; fn create_test_channel() -> WasmChannel { + create_test_channel_with_owner_scope("default") + } + + fn create_test_channel_with_owner_scope(owner_scope_id: &str) -> WasmChannel { let config = WasmChannelRuntimeConfig::for_testing(); let runtime = Arc::new(WasmChannelRuntime::new(config).unwrap()); @@ -3098,6 +3311,7 @@ mod tests { runtime, prepared, capabilities, + owner_scope_id, "{}".to_string(), Arc::new(PairingStore::new()), None, @@ -3185,7 +3399,7 @@ mod tests { ) .await; - assert!(result.is_ok()); + assert!(result.is_ok()); // safety: test-only assertion assert!(result.unwrap().is_empty()); } @@ -3209,28 +3423,32 @@ mod tests { let last_broadcast_metadata = Arc::new(tokio::sync::RwLock::new(None)); let result = WasmChannel::dispatch_emitted_messages( - "test-channel", + EmitDispatchContext { + channel_name: "test-channel", + owner_scope_id: "default", + owner_actor_id: None, + message_tx: &message_tx, + rate_limiter: &rate_limiter, + last_broadcast_metadata: &last_broadcast_metadata, + settings_store: None, + }, messages, - &message_tx, - &rate_limiter, - &last_broadcast_metadata, - None, ) .await; - assert!(result.is_ok()); + assert!(result.is_ok()); // safety: test-only assertion // Verify messages were sent - let msg1 = rx.try_recv().expect("Should receive first message"); - assert_eq!(msg1.user_id, "user1"); - assert_eq!(msg1.content, "Hello from polling!"); + let msg1 = rx.try_recv().expect("Should receive first message"); // safety: test-only assertion + assert_eq!(msg1.user_id, "user1"); // safety: test-only assertion + assert_eq!(msg1.content, "Hello from polling!"); // safety: test-only assertion - let msg2 = rx.try_recv().expect("Should receive second message"); - assert_eq!(msg2.user_id, "user2"); - assert_eq!(msg2.content, "Another message"); + let msg2 = rx.try_recv().expect("Should receive second message"); // safety: test-only assertion + assert_eq!(msg2.user_id, "user2"); // safety: test-only assertion + assert_eq!(msg2.content, "Another message"); // safety: test-only assertion // No more messages - assert!(rx.try_recv().is_err()); + assert!(rx.try_recv().is_err()); // safety: test-only assertion } #[tokio::test] @@ -3250,12 +3468,16 @@ mod tests { // Should return Ok even without a sender (logs warning but doesn't fail) let last_broadcast_metadata = Arc::new(tokio::sync::RwLock::new(None)); let result = WasmChannel::dispatch_emitted_messages( - "test-channel", + EmitDispatchContext { + channel_name: "test-channel", + owner_scope_id: "default", + owner_actor_id: None, + message_tx: &message_tx, + rate_limiter: &rate_limiter, + last_broadcast_metadata: &last_broadcast_metadata, + settings_store: None, + }, messages, - &message_tx, - &rate_limiter, - &last_broadcast_metadata, - None, ) .await; @@ -3284,6 +3506,7 @@ mod tests { runtime, prepared, capabilities, + "default", "{}".to_string(), Arc::new(PairingStore::new()), None, @@ -4255,42 +4478,172 @@ mod tests { let last_broadcast_metadata = Arc::new(tokio::sync::RwLock::new(None)); let result = WasmChannel::dispatch_emitted_messages( - "test-channel", + EmitDispatchContext { + channel_name: "test-channel", + owner_scope_id: "default", + owner_actor_id: None, + message_tx: &message_tx, + rate_limiter: &rate_limiter, + last_broadcast_metadata: &last_broadcast_metadata, + settings_store: None, + }, messages, - &message_tx, - &rate_limiter, - &last_broadcast_metadata, - None, ) .await; - assert!(result.is_ok()); + assert!(result.is_ok()); // safety: test-only assertion - let msg = rx.try_recv().expect("Should receive message"); - assert_eq!(msg.content, "Check these files"); - assert_eq!(msg.attachments.len(), 2); + let msg = rx.try_recv().expect("Should receive message"); // safety: test-only assertion + assert_eq!(msg.content, "Check these files"); // safety: test-only assertion + assert_eq!(msg.attachments.len(), 2); // safety: test-only assertion // Verify first attachment - assert_eq!(msg.attachments[0].id, "photo123"); - assert_eq!(msg.attachments[0].mime_type, "image/jpeg"); - assert_eq!(msg.attachments[0].filename, Some("cat.jpg".to_string())); - assert_eq!(msg.attachments[0].size_bytes, Some(50_000)); + assert_eq!(msg.attachments[0].id, "photo123"); // safety: test-only assertion + assert_eq!(msg.attachments[0].mime_type, "image/jpeg"); // safety: test-only assertion + assert_eq!(msg.attachments[0].filename, Some("cat.jpg".to_string())); // safety: test-only assertion + assert_eq!(msg.attachments[0].size_bytes, Some(50_000)); // safety: test-only assertion assert_eq!( msg.attachments[0].source_url, Some("https://api.telegram.org/file/photo123".to_string()) - ); + ); // safety: test-only assertion // Verify second attachment - assert_eq!(msg.attachments[1].id, "doc456"); - assert_eq!(msg.attachments[1].mime_type, "application/pdf"); + assert_eq!(msg.attachments[1].id, "doc456"); // safety: test-only assertion + assert_eq!(msg.attachments[1].mime_type, "application/pdf"); // safety: test-only assertion assert_eq!( msg.attachments[1].extracted_text, Some("Report contents...".to_string()) - ); + ); // safety: test-only assertion assert_eq!( msg.attachments[1].storage_key, Some("store/doc456".to_string()) - ); + ); // safety: test-only assertion + } + + #[tokio::test] + async fn test_dispatch_emitted_messages_owner_binding_sets_owner_scope() { + use crate::channels::wasm::host::EmittedMessage; + + let (tx, mut rx) = tokio::sync::mpsc::channel(10); + let message_tx = Arc::new(tokio::sync::RwLock::new(Some(tx))); + let rate_limiter = Arc::new(tokio::sync::RwLock::new( + crate::channels::wasm::host::ChannelEmitRateLimiter::new( + crate::channels::wasm::capabilities::EmitRateLimitConfig::default(), + ), + )); + let last_broadcast_metadata = Arc::new(tokio::sync::RwLock::new(None)); + + let messages = vec![ + EmittedMessage::new("telegram-owner", "Hello from owner") + .with_metadata(r#"{"chat_id":12345}"#), + ]; + + let result = WasmChannel::dispatch_emitted_messages( + EmitDispatchContext { + channel_name: "telegram", + owner_scope_id: "owner-scope", + owner_actor_id: Some("telegram-owner"), + message_tx: &message_tx, + rate_limiter: &rate_limiter, + last_broadcast_metadata: &last_broadcast_metadata, + settings_store: None, + }, + messages, + ) + .await; + + assert!(result.is_ok()); // safety: test-only assertion + + let msg = rx.try_recv().expect("Should receive message"); // safety: test-only assertion + assert_eq!(msg.user_id, "owner-scope"); // safety: test-only assertion + assert_eq!(msg.owner_id, "owner-scope"); // safety: test-only assertion + assert_eq!(msg.sender_id, "telegram-owner"); // safety: test-only assertion + assert_eq!(msg.conversation_scope(), Some("12345")); // safety: test-only assertion + let stored_metadata = last_broadcast_metadata.read().await.clone(); + assert_eq!(stored_metadata.as_deref(), Some(r#"{"chat_id":12345}"#)); // safety: test-only assertion + } + + #[tokio::test] + async fn test_dispatch_emitted_messages_guest_sender_stays_isolated() { + use crate::channels::wasm::host::EmittedMessage; + + let (tx, mut rx) = tokio::sync::mpsc::channel(10); + let message_tx = Arc::new(tokio::sync::RwLock::new(Some(tx))); + let rate_limiter = Arc::new(tokio::sync::RwLock::new( + crate::channels::wasm::host::ChannelEmitRateLimiter::new( + crate::channels::wasm::capabilities::EmitRateLimitConfig::default(), + ), + )); + let last_broadcast_metadata = Arc::new(tokio::sync::RwLock::new(None)); + + let messages = vec![ + EmittedMessage::new("guest-42", "Hello from guest").with_metadata(r#"{"chat_id":999}"#), + ]; + + let result = WasmChannel::dispatch_emitted_messages( + EmitDispatchContext { + channel_name: "telegram", + owner_scope_id: "owner-scope", + owner_actor_id: Some("telegram-owner"), + message_tx: &message_tx, + rate_limiter: &rate_limiter, + last_broadcast_metadata: &last_broadcast_metadata, + settings_store: None, + }, + messages, + ) + .await; + + assert!(result.is_ok()); // safety: test-only assertion + + let msg = rx.try_recv().expect("Should receive message"); // safety: test-only assertion + assert_eq!(msg.user_id, "guest-42"); // safety: test-only assertion + assert_eq!(msg.owner_id, "owner-scope"); // safety: test-only assertion + assert_eq!(msg.sender_id, "guest-42"); // safety: test-only assertion + assert_eq!(msg.conversation_scope(), Some("999")); // safety: test-only assertion + assert!(last_broadcast_metadata.read().await.is_none()); // safety: test-only assertion + } + + #[tokio::test] + async fn test_broadcast_owner_scope_uses_stored_owner_metadata() { + let channel = create_test_channel_with_owner_scope("owner-scope") + .with_owner_actor_id(Some("telegram-owner".to_string())); + + *channel.last_broadcast_metadata.write().await = Some(r#"{"chat_id":12345}"#.to_string()); + + let result = channel + .broadcast( + "owner-scope", + crate::channels::OutgoingResponse::text("hello owner"), + ) + .await; + + assert!(result.is_ok()); // safety: test-only assertion + } + + #[test] + fn test_default_target_is_not_treated_as_owner_scope() { + assert!(!uses_owner_broadcast_target("default", "owner-scope")); // safety: test-only assertion + assert!(uses_owner_broadcast_target("default", "default")); // safety: test-only assertion + } + + #[tokio::test] + async fn test_broadcast_owner_scope_requires_stored_metadata() { + let channel = create_test_channel_with_owner_scope("owner-scope") + .with_owner_actor_id(Some("telegram-owner".to_string())); + + let result = channel + .broadcast( + "owner-scope", + crate::channels::OutgoingResponse::text("hello owner"), + ) + .await; + + assert!(result.is_err()); // safety: test-only assertion + let err = result.unwrap_err().to_string(); + let mentions_missing_owner_route = + err.contains("Send a message from the owner on this channel first"); + assert!(mentions_missing_owner_route); // safety: test-only assertion } #[tokio::test] @@ -4310,20 +4663,24 @@ mod tests { let last_broadcast_metadata = Arc::new(tokio::sync::RwLock::new(None)); let result = WasmChannel::dispatch_emitted_messages( - "test-channel", + EmitDispatchContext { + channel_name: "test-channel", + owner_scope_id: "default", + owner_actor_id: None, + message_tx: &message_tx, + rate_limiter: &rate_limiter, + last_broadcast_metadata: &last_broadcast_metadata, + settings_store: None, + }, messages, - &message_tx, - &rate_limiter, - &last_broadcast_metadata, - None, ) .await; - assert!(result.is_ok()); + assert!(result.is_ok()); // safety: test-only assertion - let msg = rx.try_recv().expect("Should receive message"); - assert_eq!(msg.content, "Just text, no attachments"); - assert!(msg.attachments.is_empty()); + let msg = rx.try_recv().expect("Should receive message"); // safety: test-only assertion + assert_eq!(msg.content, "Just text, no attachments"); // safety: test-only assertion + assert!(msg.attachments.is_empty()); // safety: test-only assertion } #[test] diff --git a/src/channels/web/handlers/chat.rs b/src/channels/web/handlers/chat.rs index 909a252c..5cb2b9ea 100644 --- a/src/channels/web/handlers/chat.rs +++ b/src/channels/web/handlers/chat.rs @@ -162,15 +162,30 @@ pub async fn chat_auth_token_handler( .await { Ok(result) => { - clear_auth_mode(&state).await; + let mut resp = ActionResponse::ok(result.message.clone()); + resp.activated = Some(result.activated); + resp.auth_url = result.auth_url.clone(); + resp.verification = result.verification.clone(); + resp.instructions = result.verification.as_ref().map(|v| v.instructions.clone()); - state.sse.broadcast(SseEvent::AuthCompleted { - extension_name: req.extension_name.clone(), - success: true, - message: result.message.clone(), - }); + if result.verification.is_some() { + state.sse.broadcast(SseEvent::AuthRequired { + extension_name: req.extension_name.clone(), + instructions: Some(result.message), + auth_url: None, + setup_url: None, + }); + } else { + clear_auth_mode(&state).await; - Ok(Json(ActionResponse::ok(result.message))) + state.sse.broadcast(SseEvent::AuthCompleted { + extension_name: req.extension_name.clone(), + success: true, + message: result.message, + }); + } + + Ok(Json(resp)) } Err(e) => { let msg = e.to_string(); diff --git a/src/channels/web/handlers/extensions.rs b/src/channels/web/handlers/extensions.rs index 3c490eac..855fba3e 100644 --- a/src/channels/web/handlers/extensions.rs +++ b/src/channels/web/handlers/extensions.rs @@ -25,34 +25,34 @@ pub async fn extensions_list_handler( .map_err(|e| (StatusCode::INTERNAL_SERVER_ERROR, e.to_string()))?; let pairing_store = crate::pairing::PairingStore::new(); + let mut owner_bound_channels = std::collections::HashSet::new(); + for ext in &installed { + if ext.kind == crate::extensions::ExtensionKind::WasmChannel + && ext_mgr.has_wasm_channel_owner_binding(&ext.name).await + { + owner_bound_channels.insert(ext.name.clone()); + } + } let extensions = installed .into_iter() .map(|ext| { let activation_status = if ext.kind == crate::extensions::ExtensionKind::WasmChannel { - Some(if ext.activation_error.is_some() { - "failed".to_string() - } else if !ext.authenticated { - "installed".to_string() - } else if ext.active { - let has_paired = pairing_store - .read_allow_from(&ext.name) - .map(|list| !list.is_empty()) - .unwrap_or(false); - if has_paired { - "active".to_string() - } else { - "pairing".to_string() - } - } else { - "configured".to_string() - }) + let has_paired = pairing_store + .read_allow_from(&ext.name) + .map(|list| !list.is_empty()) + .unwrap_or(false); + crate::channels::web::types::classify_wasm_channel_activation( + &ext, + has_paired, + owner_bound_channels.contains(&ext.name), + ) } else if ext.kind == crate::extensions::ExtensionKind::ChannelRelay { Some(if ext.active { - "active".to_string() + crate::channels::web::types::ExtensionActivationStatus::Active } else if ext.authenticated { - "configured".to_string() + crate::channels::web::types::ExtensionActivationStatus::Configured } else { - "installed".to_string() + crate::channels::web::types::ExtensionActivationStatus::Installed }) } else { None diff --git a/src/channels/web/server.rs b/src/channels/web/server.rs index 86325b26..34b1205c 100644 --- a/src/channels/web/server.rs +++ b/src/channels/web/server.rs @@ -26,7 +26,6 @@ use tower_http::set_header::SetResponseHeaderLayer; use uuid::Uuid; use crate::agent::SessionManager; -use crate::agent::routine::{Trigger, next_cron_fire}; use crate::bootstrap::ironclaw_base_dir; use crate::channels::IncomingMessage; use crate::channels::relay::DEFAULT_RELAY_NAME; @@ -36,6 +35,7 @@ use crate::channels::web::handlers::jobs::{ jobs_events_handler, jobs_list_handler, jobs_prompt_handler, jobs_restart_handler, jobs_summary_handler, }; +use crate::channels::web::handlers::routines::{routines_delete_handler, routines_toggle_handler}; use crate::channels::web::handlers::skills::{ skills_install_handler, skills_list_handler, skills_remove_handler, skills_search_handler, }; @@ -1163,19 +1163,43 @@ async fn chat_auth_token_handler( .configure_token(&req.extension_name, &req.token) .await { - Ok(result) if result.activated => { - // Clear auth mode on the active thread - clear_auth_mode(&state).await; + Ok(result) => { + let mut resp = if result.verification.is_some() || result.activated { + ActionResponse::ok(result.message.clone()) + } else { + ActionResponse::fail(result.message.clone()) + }; + resp.activated = Some(result.activated); + resp.auth_url = result.auth_url.clone(); + resp.verification = result.verification.clone(); + resp.instructions = result.verification.as_ref().map(|v| v.instructions.clone()); - state.sse.broadcast(SseEvent::AuthCompleted { - extension_name: req.extension_name.clone(), - success: true, - message: result.message.clone(), - }); + if result.verification.is_some() { + state.sse.broadcast(SseEvent::AuthRequired { + extension_name: req.extension_name.clone(), + instructions: Some(result.message), + auth_url: None, + setup_url: None, + }); + } else if result.activated { + // Clear auth mode on the active thread + clear_auth_mode(&state).await; - Ok(Json(ActionResponse::ok(result.message))) + state.sse.broadcast(SseEvent::AuthCompleted { + extension_name: req.extension_name.clone(), + success: true, + message: result.message, + }); + } else { + state.sse.broadcast(SseEvent::AuthCompleted { + extension_name: req.extension_name.clone(), + success: false, + message: result.message, + }); + } + + Ok(Json(resp)) } - Ok(result) => Ok(Json(ActionResponse::fail(result.message))), Err(e) => { let msg = e.to_string(); // Re-emit auth_required for retry on validation errors @@ -1818,29 +1842,34 @@ async fn extensions_list_handler( .map_err(|e| (StatusCode::INTERNAL_SERVER_ERROR, e.to_string()))?; let pairing_store = crate::pairing::PairingStore::new(); + let mut owner_bound_channels = std::collections::HashSet::new(); + for ext in &installed { + if ext.kind == crate::extensions::ExtensionKind::WasmChannel + && ext_mgr.has_wasm_channel_owner_binding(&ext.name).await + { + owner_bound_channels.insert(ext.name.clone()); + } + } let extensions = installed .into_iter() .map(|ext| { let activation_status = if ext.kind == crate::extensions::ExtensionKind::WasmChannel { - Some(if ext.activation_error.is_some() { - "failed".to_string() - } else if !ext.authenticated { - // No credentials configured yet. - "installed".to_string() - } else if ext.active { - // Check pairing status for active channels. - let has_paired = pairing_store - .read_allow_from(&ext.name) - .map(|list| !list.is_empty()) - .unwrap_or(false); - if has_paired { - "active".to_string() - } else { - "pairing".to_string() - } + let has_paired = pairing_store + .read_allow_from(&ext.name) + .map(|list| !list.is_empty()) + .unwrap_or(false); + crate::channels::web::types::classify_wasm_channel_activation( + &ext, + has_paired, + owner_bound_channels.contains(&ext.name), + ) + } else if ext.kind == crate::extensions::ExtensionKind::ChannelRelay { + Some(if ext.active { + ExtensionActivationStatus::Active + } else if ext.authenticated { + ExtensionActivationStatus::Configured } else { - // Authenticated but not yet active. - "configured".to_string() + ExtensionActivationStatus::Installed }) } else { None @@ -2205,20 +2234,24 @@ async fn extensions_setup_submit_handler( match ext_mgr.configure(&name, &req.secrets).await { Ok(result) => { - // Broadcast completion status so chat UI can dismiss success cases while - // leaving failed auth/configuration flows visible for correction. - state.sse.broadcast(SseEvent::AuthCompleted { - extension_name: name.clone(), - success: result.activated, - message: result.message.clone(), - }); - let mut resp = if result.activated { + let mut resp = if result.verification.is_some() || result.activated { ActionResponse::ok(result.message) } else { ActionResponse::fail(result.message) }; resp.activated = Some(result.activated); - resp.auth_url = result.auth_url; + resp.auth_url = result.auth_url.clone(); + resp.verification = result.verification.clone(); + resp.instructions = result.verification.as_ref().map(|v| v.instructions.clone()); + if result.verification.is_none() { + // Broadcast auth_completed so the chat UI can dismiss any in-progress + // auth card or setup modal that was triggered by tool_auth/tool_activate. + state.sse.broadcast(SseEvent::AuthCompleted { + extension_name: name.clone(), + success: result.activated, + message: resp.message.clone(), + }); + } Ok(Json(resp)) } Err(e) => Ok(Json(ActionResponse::fail(e.to_string()))), @@ -2430,83 +2463,6 @@ async fn routines_trigger_handler( }))) } -#[derive(Deserialize)] -struct ToggleRequest { - enabled: Option, -} - -async fn routines_toggle_handler( - State(state): State>, - Path(id): Path, - body: Option>, -) -> Result, (StatusCode, String)> { - let store = state.store.as_ref().ok_or(( - StatusCode::SERVICE_UNAVAILABLE, - "Database not available".to_string(), - ))?; - - let routine_id = Uuid::parse_str(&id) - .map_err(|_| (StatusCode::BAD_REQUEST, "Invalid routine ID".to_string()))?; - - let mut routine = store - .get_routine(routine_id) - .await - .map_err(|e| (StatusCode::INTERNAL_SERVER_ERROR, e.to_string()))? - .ok_or((StatusCode::NOT_FOUND, "Routine not found".to_string()))?; - - let was_enabled = routine.enabled; - // If a specific value was provided, use it; otherwise toggle. - routine.enabled = match body { - Some(Json(req)) => req.enabled.unwrap_or(!routine.enabled), - None => !routine.enabled, - }; - - if routine.enabled - && !was_enabled - && let Trigger::Cron { schedule, timezone } = &routine.trigger - { - routine.next_fire_at = next_cron_fire(schedule, timezone.as_deref()) - .map_err(|e| (StatusCode::INTERNAL_SERVER_ERROR, e.to_string()))?; - } - - store - .update_routine(&routine) - .await - .map_err(|e| (StatusCode::INTERNAL_SERVER_ERROR, e.to_string()))?; - - Ok(Json(serde_json::json!({ - "status": if routine.enabled { "enabled" } else { "disabled" }, - "routine_id": routine_id, - }))) -} - -async fn routines_delete_handler( - State(state): State>, - Path(id): Path, -) -> Result, (StatusCode, String)> { - let store = state.store.as_ref().ok_or(( - StatusCode::SERVICE_UNAVAILABLE, - "Database not available".to_string(), - ))?; - - let routine_id = Uuid::parse_str(&id) - .map_err(|_| (StatusCode::BAD_REQUEST, "Invalid routine ID".to_string()))?; - - let deleted = store - .delete_routine(routine_id) - .await - .map_err(|e| (StatusCode::INTERNAL_SERVER_ERROR, e.to_string()))?; - - if deleted { - Ok(Json(serde_json::json!({ - "status": "deleted", - "routine_id": routine_id, - }))) - } else { - Err((StatusCode::NOT_FOUND, "Routine not found".to_string())) - } -} - async fn routines_runs_handler( State(state): State>, Path(id): Path, @@ -2743,7 +2699,11 @@ struct GatewayStatusResponse { #[cfg(test)] mod tests { use super::*; + use crate::channels::web::types::{ + ExtensionActivationStatus, classify_wasm_channel_activation, + }; use crate::cli::oauth_defaults; + use crate::extensions::{ExtensionKind, InstalledExtension}; use crate::testing::credentials::TEST_GATEWAY_CRYPTO_KEY; #[test] @@ -2822,6 +2782,85 @@ mod tests { assert!(turns.is_empty()); } + #[test] + fn test_wasm_channel_activation_status_owner_bound_counts_as_active() -> Result<(), String> { + let ext = InstalledExtension { + name: "telegram".to_string(), + kind: ExtensionKind::WasmChannel, + display_name: Some("Telegram".to_string()), + description: None, + url: None, + authenticated: true, + active: true, + tools: Vec::new(), + needs_setup: true, + has_auth: false, + installed: true, + activation_error: None, + version: None, + }; + + let owner_bound = classify_wasm_channel_activation(&ext, false, true); + if owner_bound != Some(ExtensionActivationStatus::Active) { + return Err(format!( + "owner-bound channel should be active, got {:?}", + owner_bound + )); + } + + let unbound = classify_wasm_channel_activation(&ext, false, false); + if unbound != Some(ExtensionActivationStatus::Pairing) { + return Err(format!( + "unbound channel should be pairing, got {:?}", + unbound + )); + } + + Ok(()) + } + + #[test] + fn test_channel_relay_activation_status_is_preserved() -> Result<(), String> { + let relay = InstalledExtension { + name: "signal".to_string(), + kind: ExtensionKind::ChannelRelay, + display_name: Some("Signal".to_string()), + description: None, + url: None, + authenticated: true, + active: false, + tools: Vec::new(), + needs_setup: true, + has_auth: false, + installed: true, + activation_error: None, + version: None, + }; + + let status = if relay.kind == crate::extensions::ExtensionKind::WasmChannel { + classify_wasm_channel_activation(&relay, false, false) + } else if relay.kind == crate::extensions::ExtensionKind::ChannelRelay { + Some(if relay.active { + ExtensionActivationStatus::Active + } else if relay.authenticated { + ExtensionActivationStatus::Configured + } else { + ExtensionActivationStatus::Installed + }) + } else { + None + }; + + if status != Some(ExtensionActivationStatus::Configured) { + return Err(format!( + "channel relay should retain configured status, got {:?}", + status + )); + } + + Ok(()) + } + // --- OAuth callback handler tests --- /// Build a minimal `GatewayState` for testing the OAuth callback handler. @@ -2935,6 +2974,92 @@ mod tests { ); } + #[tokio::test] + async fn test_extensions_setup_submit_telegram_verification_does_not_broadcast_auth_required() { + use axum::body::Body; + use tokio::time::{Duration, timeout}; + use tower::ServiceExt; + + let secrets = test_secrets_store(); + let (ext_mgr, _wasm_tools_dir, wasm_channels_dir) = test_ext_mgr(secrets); + + std::fs::write( + wasm_channels_dir.path().join("telegram.wasm"), + b"\0asm fake", + ) + .expect("write fake telegram wasm"); + let caps = serde_json::json!({ + "type": "channel", + "name": "telegram", + "setup": { + "required_secrets": [ + { + "name": "telegram_bot_token", + "prompt": "Enter your Telegram Bot API token (from @BotFather)" + } + ] + } + }); + std::fs::write( + wasm_channels_dir.path().join("telegram.capabilities.json"), + serde_json::to_string(&caps).expect("serialize telegram caps"), + ) + .expect("write telegram caps"); + + ext_mgr + .set_test_telegram_pending_verification("iclaw-7qk2m9", Some("test_hot_bot")) + .await; + + let state = test_gateway_state(Some(ext_mgr)); + let mut receiver = state.sse.sender().subscribe(); + let app = Router::new() + .route( + "/api/extensions/{name}/setup", + post(extensions_setup_submit_handler), + ) + .with_state(state); + + let req_body = serde_json::json!({ + "secrets": { + "telegram_bot_token": "123456789:ABCdefGhI" + } + }); + let req = axum::http::Request::builder() + .method("POST") + .uri("/api/extensions/telegram/setup") + .header("content-type", "application/json") + .body(Body::from(req_body.to_string())) + .expect("request"); + + let resp = ServiceExt::>::oneshot(app, req) + .await + .expect("response"); + assert_eq!(resp.status(), StatusCode::OK); + + let body = axum::body::to_bytes(resp.into_body(), 1024 * 64) + .await + .expect("body"); + let parsed: serde_json::Value = serde_json::from_slice(&body).expect("json response"); + assert_eq!(parsed["success"], serde_json::Value::Bool(true)); + assert_eq!(parsed["activated"], serde_json::Value::Bool(false)); + assert_eq!(parsed["verification"]["code"], "iclaw-7qk2m9"); + + let deadline = tokio::time::Instant::now() + Duration::from_millis(100); + loop { + let remaining = deadline.saturating_duration_since(tokio::time::Instant::now()); + if remaining.is_zero() { + break; + } + match timeout(remaining, receiver.recv()).await { + Ok(Ok(crate::channels::web::types::SseEvent::AuthRequired { .. })) => { + panic!("verification responses should not emit auth_required SSE events") + } + Ok(Ok(_)) => continue, + Ok(Err(_)) | Err(_) => break, + } + } + } + fn expired_flow_created_at() -> Option { std::time::Instant::now() .checked_sub(oauth_defaults::OAUTH_FLOW_EXPIRY + std::time::Duration::from_secs(1)) diff --git a/src/channels/web/static/app.js b/src/channels/web/static/app.js index d32968a9..9d931500 100644 --- a/src/channels/web/static/app.js +++ b/src/channels/web/static/app.js @@ -527,7 +527,6 @@ function enableChatInput() { const btn = document.getElementById('send-btn'); if (input) { input.disabled = false; - input.placeholder = I18n.t('chat.inputPlaceholder'); } if (btn) btn.disabled = false; } @@ -1205,11 +1204,13 @@ function showJobCard(data) { // --- Auth card --- function handleAuthRequired(data) { - setAuthFlowPending(true, data.instructions); if (data.auth_url) { + setAuthFlowPending(true, data.instructions); // OAuth flow: show the global auth prompt with an OAuth button + optional token paste field. showAuthCard(data); } else { + if (getConfigureOverlay(data.extension_name)) return; + setAuthFlowPending(true, data.instructions); // Setup flow: fetch the extension's credential schema and show the multi-field // configure modal (the same UI used by the Extensions tab "Setup" button). showConfigureModal(data.extension_name); @@ -1433,13 +1434,11 @@ function setAuthFlowPending(pending, instructions) { if (authFlowPending) { input.disabled = true; btn.disabled = true; - input.placeholder = instructions || 'Complete extension auth to continue chatting'; return; } if (!currentThreadIsReadOnly) { input.disabled = false; btn.disabled = false; - input.placeholder = I18n.t('chat.inputPlaceholder'); } } @@ -2712,8 +2711,11 @@ function renderConfigureModal(name, secrets) { const overlay = document.createElement('div'); overlay.className = 'configure-overlay'; overlay.setAttribute('data-extension-name', name); + overlay.dataset.telegramVerificationState = 'idle'; overlay.addEventListener('click', (e) => { - if (e.target === overlay) closeConfigureModal(); + if (e.target !== overlay) return; + if (name === 'telegram' && overlay.dataset.telegramVerificationState === 'waiting') return; + closeConfigureModal(); }); const modal = document.createElement('div'); @@ -2723,6 +2725,13 @@ function renderConfigureModal(name, secrets) { header.textContent = I18n.t('config.title', { name: name }); modal.appendChild(header); + if (name === 'telegram') { + const hint = document.createElement('div'); + hint.className = 'configure-hint'; + hint.textContent = I18n.t('config.telegramOwnerHint'); + modal.appendChild(hint); + } + const form = document.createElement('div'); form.className = 'configure-form'; @@ -2730,6 +2739,7 @@ function renderConfigureModal(name, secrets) { for (const secret of secrets) { const field = document.createElement('div'); field.className = 'configure-field'; + field.dataset.secretName = secret.name; const label = document.createElement('label'); label.textContent = secret.prompt; @@ -2774,6 +2784,16 @@ function renderConfigureModal(name, secrets) { modal.appendChild(form); + const error = document.createElement('div'); + error.className = 'configure-inline-error'; + error.style.display = 'none'; + modal.appendChild(error); + + const status = document.createElement('div'); + status.className = 'configure-inline-status'; + status.style.display = 'none'; + modal.appendChild(status); + const actions = document.createElement('div'); actions.className = 'configure-actions'; @@ -2796,7 +2816,110 @@ function renderConfigureModal(name, secrets) { if (fields.length > 0) fields[0].input.focus(); } -function submitConfigureModal(name, fields) { +function renderTelegramVerificationChallenge(overlay, verification) { + if (!overlay || !verification) return; + const modal = overlay.querySelector('.configure-modal'); + if (!modal) return; + const telegramField = modal.querySelector('.configure-field[data-secret-name="telegram_bot_token"]'); + + let panel = modal.querySelector('.configure-verification'); + if (!panel) { + panel = document.createElement('div'); + panel.className = 'configure-verification'; + } + if (telegramField && telegramField.parentNode) { + telegramField.insertAdjacentElement('afterend', panel); + } else { + modal.insertBefore( + panel, + modal.querySelector('.configure-inline-error') || modal.querySelector('.configure-actions') + ); + } + + panel.innerHTML = ''; + + const title = document.createElement('div'); + title.className = 'configure-verification-title'; + title.textContent = I18n.t('config.telegramChallengeTitle'); + panel.appendChild(title); + + const instructions = document.createElement('div'); + instructions.className = 'configure-verification-instructions'; + instructions.textContent = verification.instructions; + panel.appendChild(instructions); + + const commandLabel = document.createElement('div'); + commandLabel.className = 'configure-verification-instructions'; + commandLabel.textContent = I18n.t('config.telegramCommandLabel'); + panel.appendChild(commandLabel); + + const command = document.createElement('code'); + command.className = 'configure-verification-code'; + command.textContent = '/start ' + verification.code; + panel.appendChild(command); + + if (verification.deep_link) { + const link = document.createElement('a'); + link.className = 'configure-verification-link'; + link.href = verification.deep_link; + link.target = '_blank'; + link.rel = 'noreferrer noopener'; + link.textContent = I18n.t('config.telegramOpenBot'); + panel.appendChild(link); + } +} + +function getConfigurePrimaryButton(overlay) { + return overlay && overlay.querySelector('.configure-actions button.btn-ext.activate'); +} + +function getConfigureCancelButton(overlay) { + return overlay && overlay.querySelector('.configure-actions button.btn-ext.remove'); +} + +function setConfigureInlineError(overlay, message) { + const error = overlay && overlay.querySelector('.configure-inline-error'); + if (!error) return; + error.textContent = message || ''; + error.style.display = message ? 'block' : 'none'; +} + +function clearConfigureInlineError(overlay) { + setConfigureInlineError(overlay, ''); +} + +function setConfigureInlineStatus(overlay, message) { + const status = overlay && overlay.querySelector('.configure-inline-status'); + if (!status) return; + status.textContent = message || ''; + status.style.display = message ? 'block' : 'none'; +} + +function setTelegramConfigureState(overlay, fields, state) { + if (!overlay) return; + overlay.dataset.telegramVerificationState = state; + + const primaryBtn = getConfigurePrimaryButton(overlay); + const cancelBtn = getConfigureCancelButton(overlay); + const waiting = state === 'waiting'; + const retry = state === 'retry'; + + setConfigureInlineStatus(overlay, waiting ? I18n.t('config.telegramOwnerWaiting') : ''); + + if (primaryBtn) { + primaryBtn.style.display = waiting ? 'none' : ''; + primaryBtn.disabled = false; + primaryBtn.textContent = retry ? I18n.t('config.telegramStartOver') : I18n.t('config.save'); + } + if (cancelBtn) cancelBtn.disabled = waiting; +} + +function startTelegramAutoVerify(name, fields) { + window.setTimeout(() => submitConfigureModal(name, fields, { telegramAutoVerify: true }), 0); +} + +function submitConfigureModal(name, fields, options) { + options = options || {}; const secrets = {}; for (const f of fields) { if (f.input.value.trim()) { @@ -2804,10 +2927,16 @@ function submitConfigureModal(name, fields) { } } - // Disable buttons to prevent double-submit const overlay = getConfigureOverlay(name) || document.querySelector('.configure-overlay'); + const isTelegram = name === 'telegram'; + clearConfigureInlineError(overlay); + + // Disable buttons to prevent double-submit var btns = overlay ? overlay.querySelectorAll('.configure-actions button') : []; btns.forEach(function(b) { b.disabled = true; }); + if (overlay && isTelegram) { + setTelegramConfigureState(overlay, fields, 'waiting'); + } apiFetch('/api/extensions/' + encodeURIComponent(name) + '/setup', { method: 'POST', @@ -2815,6 +2944,23 @@ function submitConfigureModal(name, fields) { }) .then((res) => { if (res.success) { + if (res.verification && isTelegram) { + renderTelegramVerificationChallenge(overlay, res.verification); + fields.forEach(function(f) { f.input.value = ''; }); + setTelegramConfigureState(overlay, fields, 'waiting'); + // Once the verification challenge is rendered inline, the global auth lock + // should not keep the chat composer disabled for this setup-driven flow. + setAuthFlowPending(false); + enableChatInput(); + if (!options.telegramAutoVerify) { + startTelegramAutoVerify(name, fields); + return; + } + setTelegramConfigureState(overlay, fields, 'retry'); + setConfigureInlineError(overlay, I18n.t('config.telegramStartOverHint')); + return; + } + closeConfigureModal(); if (res.auth_url) { showAuthCard({ @@ -2830,11 +2976,29 @@ function submitConfigureModal(name, fields) { } else { // Keep modal open so the user can correct their input and retry. btns.forEach(function(b) { b.disabled = false; }); + setConfigureInlineError(overlay, res.message || 'Configuration failed'); + if (isTelegram) { + const hasVerification = overlay && overlay.querySelector('.configure-verification'); + if (options.telegramAutoVerify || hasVerification) { + setTelegramConfigureState(overlay, fields, 'retry'); + } else { + setTelegramConfigureState(overlay, fields, 'idle'); + } + } showToast(res.message || 'Configuration failed', 'error'); } }) .catch((err) => { btns.forEach(function(b) { b.disabled = false; }); + setConfigureInlineError(overlay, 'Configuration failed: ' + err.message); + if (isTelegram) { + const hasVerification = overlay && overlay.querySelector('.configure-verification'); + if (options.telegramAutoVerify || hasVerification) { + setTelegramConfigureState(overlay, fields, 'retry'); + } else { + setTelegramConfigureState(overlay, fields, 'idle'); + } + } showToast('Configuration failed: ' + err.message, 'error'); }); } @@ -2843,6 +3007,10 @@ function closeConfigureModal(extensionName) { if (typeof extensionName !== 'string') extensionName = null; const existing = getConfigureOverlay(extensionName); if (existing) existing.remove(); + if (!document.querySelector('.configure-overlay') && !document.querySelector('.auth-card')) { + setAuthFlowPending(false); + enableChatInput(); + } } // Validate that a server-supplied OAuth URL is HTTPS before opening a popup. diff --git a/src/channels/web/static/i18n/en.js b/src/channels/web/static/i18n/en.js index b637f144..49bec762 100644 --- a/src/channels/web/static/i18n/en.js +++ b/src/channels/web/static/i18n/en.js @@ -342,6 +342,13 @@ I18n.register('en', { // Configure 'config.title': 'Configure {name}', + 'config.telegramOwnerHint': 'After saving, IronClaw will show a one-time code. Send `/start CODE` to your bot in Telegram and IronClaw will finish setup automatically.', + 'config.telegramChallengeTitle': 'Telegram owner verification', + 'config.telegramOwnerWaiting': 'Waiting for Telegram owner verification...', + 'config.telegramCommandLabel': 'Send this in Telegram:', + 'config.telegramStartOver': 'Start over', + 'config.telegramStartOverHint': 'Telegram verification did not complete. Click Start over to generate a new code and try again.', + 'config.telegramOpenBot': 'Open bot in Telegram', 'config.optional': ' (optional)', 'config.alreadySet': '(already set — leave empty to keep)', 'config.alreadyConfigured': 'Already configured', diff --git a/src/channels/web/static/i18n/zh-CN.js b/src/channels/web/static/i18n/zh-CN.js index 8a7fd520..d31cc0df 100644 --- a/src/channels/web/static/i18n/zh-CN.js +++ b/src/channels/web/static/i18n/zh-CN.js @@ -342,6 +342,12 @@ I18n.register('zh-CN', { // 配置 'config.title': '配置 {name}', + 'config.telegramOwnerHint': '保存后,IronClaw 会显示一次性验证码。将 `/start CODE` 发送给你的 Telegram 机器人,IronClaw 会自动完成设置。', + 'config.telegramChallengeTitle': 'Telegram 所有者验证', + 'config.telegramOwnerWaiting': '正在等待 Telegram 所有者验证...', + 'config.telegramCommandLabel': '请在 Telegram 中发送:', + 'config.telegramStartOver': '重新开始', + 'config.telegramStartOverHint': 'Telegram 验证未完成。点击“重新开始”以生成新的验证码并重试。', 'config.optional': '(可选)', 'config.alreadySet': '(已设置 — 留空以保持不变)', 'config.alreadyConfigured': '已配置', diff --git a/src/channels/web/static/style.css b/src/channels/web/static/style.css index 0ba5766f..06d9665a 100644 --- a/src/channels/web/static/style.css +++ b/src/channels/web/static/style.css @@ -2896,6 +2896,84 @@ body { color: var(--text-primary); } +.configure-hint { + margin: 0 0 16px 0; + padding: 10px 12px; + border-radius: 8px; + background: var(--bg-secondary); + border: 1px solid var(--border); + color: var(--text-secondary); + font-size: 13px; + line-height: 1.5; +} + +.configure-verification { + display: flex; + flex-direction: column; + gap: 10px; + margin: 16px 0 0 0; + padding: 12px; + border-radius: 8px; + background: var(--bg-secondary); + border: 1px solid var(--border); +} + +.configure-verification-title { + font-size: 13px; + font-weight: 600; + color: var(--text-primary); +} + +.configure-verification-instructions { + font-size: 13px; + line-height: 1.5; + color: var(--text-secondary); +} + +.configure-verification-code { + display: inline-block; + width: fit-content; + padding: 6px 10px; + border-radius: 6px; + background: rgba(255, 255, 255, 0.06); + border: 1px solid var(--border); + color: var(--text-primary); + font-size: 13px; +} + +.configure-verification-link { + width: fit-content; + color: var(--accent, var(--text-link, #4ea3ff)); + font-size: 13px; + text-decoration: none; +} + +.configure-verification-link:hover { + text-decoration: underline; +} + +.configure-inline-error { + margin: 16px 0 0 0; + padding: 10px 12px; + border-radius: 8px; + background: rgba(220, 38, 38, 0.12); + border: 1px solid rgba(220, 38, 38, 0.35); + color: #fca5a5; + font-size: 13px; + line-height: 1.5; +} + +.configure-inline-status { + margin: 16px 0 0 0; + padding: 10px 12px; + border-radius: 8px; + background: var(--bg-secondary); + border: 1px solid var(--border); + color: var(--text-secondary); + font-size: 13px; + line-height: 1.5; +} + .configure-form { display: flex; flex-direction: column; diff --git a/src/channels/web/types.rs b/src/channels/web/types.rs index 129a7071..3fad9f35 100644 --- a/src/channels/web/types.rs +++ b/src/channels/web/types.rs @@ -410,6 +410,40 @@ pub struct TransitionInfo { // --- Extensions --- +#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)] +#[serde(rename_all = "snake_case")] +pub enum ExtensionActivationStatus { + Installed, + Configured, + Pairing, + Active, + Failed, +} + +pub fn classify_wasm_channel_activation( + ext: &crate::extensions::InstalledExtension, + has_paired: bool, + has_owner_binding: bool, +) -> Option { + if ext.kind != crate::extensions::ExtensionKind::WasmChannel { + return None; + } + + Some(if ext.activation_error.is_some() { + ExtensionActivationStatus::Failed + } else if !ext.authenticated { + ExtensionActivationStatus::Installed + } else if ext.active { + if has_paired || has_owner_binding { + ExtensionActivationStatus::Active + } else { + ExtensionActivationStatus::Pairing + } + } else { + ExtensionActivationStatus::Configured + }) +} + #[derive(Debug, Serialize)] pub struct ExtensionInfo { pub name: String, @@ -428,9 +462,9 @@ pub struct ExtensionInfo { /// Whether this extension has an auth configuration (OAuth or manual token). #[serde(default)] pub has_auth: bool, - /// WASM channel activation status: "installed", "configured", "active", "failed". + /// WASM channel activation status. #[serde(skip_serializing_if = "Option::is_none")] - pub activation_status: Option, + pub activation_status: Option, /// Human-readable error when activation_status is "failed". #[serde(skip_serializing_if = "Option::is_none")] pub activation_error: Option, @@ -503,6 +537,9 @@ pub struct ActionResponse { /// Whether the channel was successfully activated after setup. #[serde(skip_serializing_if = "Option::is_none")] pub activated: Option, + /// Pending manual verification challenge (for Telegram owner binding, etc.). + #[serde(skip_serializing_if = "Option::is_none")] + pub verification: Option, } impl ActionResponse { @@ -514,6 +551,7 @@ impl ActionResponse { awaiting_token: None, instructions: None, activated: None, + verification: None, } } @@ -525,6 +563,7 @@ impl ActionResponse { awaiting_token: None, instructions: None, activated: None, + verification: None, } } } diff --git a/src/channels/web/ws.rs b/src/channels/web/ws.rs index 7287902e..7bf50e52 100644 --- a/src/channels/web/ws.rs +++ b/src/channels/web/ws.rs @@ -265,14 +265,25 @@ async fn handle_client_message( if let Some(ref ext_mgr) = state.extension_manager { match ext_mgr.configure_token(&extension_name, &token).await { Ok(result) => { - crate::channels::web::server::clear_auth_mode(state).await; - state - .sse - .broadcast(crate::channels::web::types::SseEvent::AuthCompleted { - extension_name, - success: true, - message: result.message, - }); + if result.verification.is_some() { + state.sse.broadcast( + crate::channels::web::types::SseEvent::AuthRequired { + extension_name: extension_name.clone(), + instructions: Some(result.message), + auth_url: None, + setup_url: None, + }, + ); + } else { + crate::channels::web::server::clear_auth_mode(state).await; + state.sse.broadcast( + crate::channels::web::types::SseEvent::AuthCompleted { + extension_name, + success: true, + message: result.message, + }, + ); + } } Err(e) => { let msg = format!("Auth failed: {}", e); diff --git a/src/cli/doctor.rs b/src/cli/doctor.rs index ee0b2be8..dfc04de7 100644 --- a/src/cli/doctor.rs +++ b/src/cli/doctor.rs @@ -405,10 +405,11 @@ fn check_routines_config() -> CheckResult { fn check_gateway_config(settings: &Settings) -> CheckResult { // Use the same resolve() path as runtime so invalid env values // (e.g. GATEWAY_PORT=abc) are caught here too. - let tunnel_enabled = crate::config::TunnelConfig::resolve(settings) - .map(|t| t.is_enabled()) - .unwrap_or(false); - match crate::config::ChannelsConfig::resolve(settings, tunnel_enabled) { + let owner_id = match crate::config::resolve_owner_id(settings) { + Ok(owner_id) => owner_id, + Err(e) => return CheckResult::Fail(format!("config error: {e}")), + }; + match crate::config::ChannelsConfig::resolve(settings, &owner_id) { Ok(channels) => match channels.gateway { Some(gw) => { if gw.auth_token.is_some() { diff --git a/src/cli/routines.rs b/src/cli/routines.rs index 852fc41f..dd8a2fa3 100644 --- a/src/cli/routines.rs +++ b/src/cli/routines.rs @@ -292,6 +292,16 @@ async fn list( // ── Create ────────────────────────────────────────────────── +fn cli_notify_config(notify_channel: Option) -> NotifyConfig { + NotifyConfig { + channel: notify_channel, + user: None, + on_attention: true, + on_failure: true, + on_success: false, + } +} + #[allow(clippy::too_many_arguments)] async fn create( db: &Arc, @@ -338,13 +348,7 @@ async fn create( max_concurrent: 1, dedup_window: None, }, - notify: NotifyConfig { - channel: notify_channel, - user: user_id.to_string(), - on_attention: true, - on_failure: true, - on_success: false, - }, + notify: cli_notify_config(notify_channel), last_run_at: None, next_fire_at: next_fire, run_count: 0, @@ -729,4 +733,14 @@ mod tests { // Must be valid UTF-8 (would have panicked otherwise). assert!(result.is_char_boundary(result.len())); } + + #[test] + fn cli_notify_config_defaults_to_runtime_target_resolution() { + let notify = cli_notify_config(Some("telegram".to_string())); + assert_eq!(notify.channel.as_deref(), Some("telegram")); // safety: test-only assertion + assert_eq!(notify.user, None); // safety: test-only assertion + assert!(notify.on_attention); // safety: test-only assertion + assert!(notify.on_failure); // safety: test-only assertion + assert!(!notify.on_success); // safety: test-only assertion + } } diff --git a/src/config/channels.rs b/src/config/channels.rs index 511f31c7..6b1058a0 100644 --- a/src/config/channels.rs +++ b/src/config/channels.rs @@ -91,36 +91,24 @@ pub struct SignalConfig { } impl ChannelsConfig { - /// Resolve channels config following `env > settings > default` for every field. - pub(crate) fn resolve(settings: &Settings, tunnel_enabled: bool) -> Result { + pub(crate) fn resolve(settings: &Settings, owner_id: &str) -> Result { let cs = &settings.channels; - // --- HTTP webhook --- - // HTTP is enabled when env vars are set OR settings has it enabled. let http_enabled_by_env = optional_env("HTTP_PORT")?.is_some() || optional_env("HTTP_HOST")?.is_some(); - // When a tunnel is configured, default to loopback since external - // traffic arrives through the tunnel. Without a tunnel the webhook - // server needs to accept connections from the network directly. - let default_host = if tunnel_enabled { - "127.0.0.1" - } else { - "0.0.0.0" - }; let http = if http_enabled_by_env || cs.http_enabled { Some(HttpConfig { host: optional_env("HTTP_HOST")? .or_else(|| cs.http_host.clone()) - .unwrap_or_else(|| default_host.to_string()), + .unwrap_or_else(|| "0.0.0.0".to_string()), port: parse_optional_env("HTTP_PORT", cs.http_port.unwrap_or(8080))?, webhook_secret: optional_env("HTTP_WEBHOOK_SECRET")?.map(SecretString::from), - user_id: optional_env("HTTP_USER_ID")?.unwrap_or_else(|| "http".to_string()), + user_id: owner_id.to_string(), }) } else { None }; - // --- Web gateway --- let gateway_enabled = parse_bool_env("GATEWAY_ENABLED", cs.gateway_enabled)?; let gateway = if gateway_enabled { Some(GatewayConfig { @@ -133,33 +121,29 @@ impl ChannelsConfig { )?, auth_token: optional_env("GATEWAY_AUTH_TOKEN")? .or_else(|| cs.gateway_auth_token.clone()), - user_id: optional_env("GATEWAY_USER_ID")? - .or_else(|| cs.gateway_user_id.clone()) - .unwrap_or_else(|| "default".to_string()), + user_id: owner_id.to_string(), }) } else { None }; - // --- Signal --- let signal_url = optional_env("SIGNAL_HTTP_URL")?.or_else(|| cs.signal_http_url.clone()); let signal = if let Some(http_url) = signal_url { let account = optional_env("SIGNAL_ACCOUNT")? .or_else(|| cs.signal_account.clone()) .ok_or(ConfigError::InvalidValue { key: "SIGNAL_ACCOUNT".to_string(), - message: "SIGNAL_ACCOUNT is required when Signal is enabled".to_string(), + message: "SIGNAL_ACCOUNT is required when SIGNAL_HTTP_URL is set".to_string(), })?; - let allow_from_str = - optional_env("SIGNAL_ALLOW_FROM")?.or_else(|| cs.signal_allow_from.clone()); - let allow_from = match allow_from_str { - None => vec![account.clone()], - Some(s) => s - .split(',') - .map(|e| e.trim().to_string()) - .filter(|s| !s.is_empty()) - .collect(), - }; + let allow_from = + match optional_env("SIGNAL_ALLOW_FROM")?.or_else(|| cs.signal_allow_from.clone()) { + None => vec![account.clone()], + Some(s) => s + .split(',') + .map(|e| e.trim().to_string()) + .filter(|s| !s.is_empty()) + .collect(), + }; let dm_policy = optional_env("SIGNAL_DM_POLICY")? .or_else(|| cs.signal_dm_policy.clone()) .unwrap_or_else(|| "pairing".to_string()); @@ -201,18 +185,8 @@ impl ChannelsConfig { None }; - // --- CLI --- let cli_enabled = parse_bool_env("CLI_ENABLED", cs.cli_enabled)?; - // --- WASM channels --- - let wasm_channels_dir = optional_env("WASM_CHANNELS_DIR")? - .map(PathBuf::from) - .or_else(|| cs.wasm_channels_dir.clone()) - .unwrap_or_else(default_channels_dir); - - let wasm_channels_enabled = - parse_bool_env("WASM_CHANNELS_ENABLED", cs.wasm_channels_enabled)?; - Ok(Self { cli: CliConfig { enabled: cli_enabled, @@ -220,8 +194,14 @@ impl ChannelsConfig { http, gateway, signal, - wasm_channels_dir, - wasm_channels_enabled, + wasm_channels_dir: optional_env("WASM_CHANNELS_DIR")? + .map(PathBuf::from) + .or_else(|| cs.wasm_channels_dir.clone()) + .unwrap_or_else(default_channels_dir), + wasm_channels_enabled: parse_bool_env( + "WASM_CHANNELS_ENABLED", + cs.wasm_channels_enabled, + )?, wasm_channel_owner_ids: { let mut ids = cs.wasm_channel_owner_ids.clone(); // Backwards compat: TELEGRAM_OWNER_ID env var @@ -252,6 +232,8 @@ fn default_channels_dir() -> PathBuf { #[cfg(test)] mod tests { use crate::config::channels::*; + use crate::config::helpers::ENV_MUTEX; + use crate::settings::Settings; #[test] fn cli_config_fields() { @@ -398,69 +380,6 @@ mod tests { assert!(!cfg.wasm_channels_enabled); } - /// When a tunnel is active and HTTP_HOST is not explicitly set, the - /// webhook server should default to loopback to avoid unnecessary exposure. - #[test] - fn http_host_defaults_to_loopback_with_tunnel() { - // Set HTTP_PORT to trigger HttpConfig creation, but leave HTTP_HOST unset - // so the default kicks in. - unsafe { - std::env::set_var("HTTP_PORT", "9999"); - std::env::remove_var("HTTP_HOST"); - } - let settings = crate::settings::Settings::default(); - let cfg = ChannelsConfig::resolve(&settings, true).unwrap(); - unsafe { - std::env::remove_var("HTTP_PORT"); - } - let http = cfg.http.expect("HttpConfig should be present"); - assert_eq!( - http.host, "127.0.0.1", - "tunnel active should default to loopback" - ); - assert_eq!(http.port, 9999); - } - - /// Without a tunnel, the webhook server defaults to 0.0.0.0 so external - /// services can reach it directly. - #[test] - fn http_host_defaults_to_all_interfaces_without_tunnel() { - unsafe { - std::env::set_var("HTTP_PORT", "9998"); - std::env::remove_var("HTTP_HOST"); - } - let settings = crate::settings::Settings::default(); - let cfg = ChannelsConfig::resolve(&settings, false).unwrap(); - unsafe { - std::env::remove_var("HTTP_PORT"); - } - let http = cfg.http.expect("HttpConfig should be present"); - assert_eq!( - http.host, "0.0.0.0", - "no tunnel should default to all interfaces" - ); - } - - /// An explicit HTTP_HOST always wins regardless of tunnel state. - #[test] - fn explicit_http_host_overrides_tunnel_default() { - unsafe { - std::env::set_var("HTTP_PORT", "9997"); - std::env::set_var("HTTP_HOST", "192.168.1.50"); - } - let settings = crate::settings::Settings::default(); - let cfg = ChannelsConfig::resolve(&settings, true).unwrap(); - unsafe { - std::env::remove_var("HTTP_PORT"); - std::env::remove_var("HTTP_HOST"); - } - let http = cfg.http.expect("HttpConfig should be present"); - assert_eq!( - http.host, "192.168.1.50", - "explicit host should override tunnel default" - ); - } - #[test] fn default_channels_dir_ends_with_channels() { let dir = default_channels_dir(); @@ -471,242 +390,43 @@ mod tests { } #[test] - fn default_gateway_port_constant() { - assert_eq!(DEFAULT_GATEWAY_PORT, 3000); - } - - /// With default settings and no env vars, gateway should use defaults. - #[test] - fn resolve_gateway_defaults_from_settings() { - let _lock = crate::config::helpers::ENV_MUTEX.lock(); - // Clear env vars that would interfere - unsafe { - std::env::remove_var("GATEWAY_ENABLED"); - std::env::remove_var("GATEWAY_HOST"); - std::env::remove_var("GATEWAY_PORT"); - std::env::remove_var("GATEWAY_AUTH_TOKEN"); - std::env::remove_var("GATEWAY_USER_ID"); - std::env::remove_var("HTTP_PORT"); - std::env::remove_var("HTTP_HOST"); - std::env::remove_var("SIGNAL_HTTP_URL"); - std::env::remove_var("CLI_ENABLED"); - std::env::remove_var("WASM_CHANNELS_DIR"); - std::env::remove_var("WASM_CHANNELS_ENABLED"); - std::env::remove_var("TELEGRAM_OWNER_ID"); - } - - let settings = crate::settings::Settings::default(); - let cfg = ChannelsConfig::resolve(&settings, false).unwrap(); - - let gw = cfg.gateway.expect("gateway should be enabled by default"); - assert_eq!(gw.host, "127.0.0.1"); - assert_eq!(gw.port, DEFAULT_GATEWAY_PORT); - assert!(gw.auth_token.is_none()); - assert_eq!(gw.user_id, "default"); - } - - /// Settings values should be used when no env vars are set. - #[test] - fn resolve_gateway_from_settings() { - let _lock = crate::config::helpers::ENV_MUTEX.lock(); - unsafe { - std::env::remove_var("GATEWAY_ENABLED"); - std::env::remove_var("GATEWAY_HOST"); - std::env::remove_var("GATEWAY_PORT"); - std::env::remove_var("GATEWAY_AUTH_TOKEN"); - std::env::remove_var("GATEWAY_USER_ID"); - std::env::remove_var("HTTP_PORT"); - std::env::remove_var("HTTP_HOST"); - std::env::remove_var("SIGNAL_HTTP_URL"); - std::env::remove_var("CLI_ENABLED"); - std::env::remove_var("WASM_CHANNELS_DIR"); - std::env::remove_var("WASM_CHANNELS_ENABLED"); - std::env::remove_var("TELEGRAM_OWNER_ID"); - } - - let mut settings = crate::settings::Settings::default(); - settings.channels.gateway_port = Some(4000); - settings.channels.gateway_host = Some("0.0.0.0".to_string()); - settings.channels.gateway_auth_token = Some("db-token-123".to_string()); - settings.channels.gateway_user_id = Some("myuser".to_string()); - - let cfg = ChannelsConfig::resolve(&settings, false).unwrap(); - let gw = cfg.gateway.expect("gateway should be enabled"); - assert_eq!(gw.port, 4000); - assert_eq!(gw.host, "0.0.0.0"); - assert_eq!(gw.auth_token.as_deref(), Some("db-token-123")); - assert_eq!(gw.user_id, "myuser"); - } - - /// Env vars should override settings values. - #[test] - fn resolve_env_overrides_settings() { - let _lock = crate::config::helpers::ENV_MUTEX.lock(); - unsafe { - std::env::set_var("GATEWAY_PORT", "5000"); - std::env::set_var("GATEWAY_HOST", "10.0.0.1"); - std::env::set_var("GATEWAY_AUTH_TOKEN", "env-token"); - std::env::remove_var("GATEWAY_ENABLED"); - std::env::remove_var("GATEWAY_USER_ID"); - std::env::remove_var("HTTP_PORT"); - std::env::remove_var("HTTP_HOST"); - std::env::remove_var("SIGNAL_HTTP_URL"); - std::env::remove_var("CLI_ENABLED"); - std::env::remove_var("WASM_CHANNELS_DIR"); - std::env::remove_var("WASM_CHANNELS_ENABLED"); - std::env::remove_var("TELEGRAM_OWNER_ID"); - } - - let mut settings = crate::settings::Settings::default(); - settings.channels.gateway_port = Some(4000); - settings.channels.gateway_host = Some("0.0.0.0".to_string()); - settings.channels.gateway_auth_token = Some("db-token".to_string()); - - let cfg = ChannelsConfig::resolve(&settings, false).unwrap(); - let gw = cfg.gateway.expect("gateway should be enabled"); - assert_eq!(gw.port, 5000, "env should override settings"); - assert_eq!(gw.host, "10.0.0.1", "env should override settings"); - assert_eq!( - gw.auth_token.as_deref(), - Some("env-token"), - "env should override settings" - ); - - // Cleanup - unsafe { - std::env::remove_var("GATEWAY_PORT"); - std::env::remove_var("GATEWAY_HOST"); - std::env::remove_var("GATEWAY_AUTH_TOKEN"); - } - } - - /// CLI enabled should fall back to settings. - #[test] - fn resolve_cli_enabled_from_settings() { - let _lock = crate::config::helpers::ENV_MUTEX.lock(); - unsafe { - std::env::remove_var("CLI_ENABLED"); - std::env::remove_var("GATEWAY_ENABLED"); - std::env::remove_var("GATEWAY_HOST"); - std::env::remove_var("GATEWAY_PORT"); - std::env::remove_var("GATEWAY_AUTH_TOKEN"); - std::env::remove_var("GATEWAY_USER_ID"); - std::env::remove_var("HTTP_PORT"); - std::env::remove_var("HTTP_HOST"); - std::env::remove_var("SIGNAL_HTTP_URL"); - std::env::remove_var("WASM_CHANNELS_DIR"); - std::env::remove_var("WASM_CHANNELS_ENABLED"); - std::env::remove_var("TELEGRAM_OWNER_ID"); - } - - let mut settings = crate::settings::Settings::default(); - settings.channels.cli_enabled = false; - - let cfg = ChannelsConfig::resolve(&settings, false).unwrap(); - assert!(!cfg.cli.enabled, "settings should disable CLI"); - } - - /// HTTP channel should activate when settings has it enabled. - #[test] - fn resolve_http_from_settings() { - let _lock = crate::config::helpers::ENV_MUTEX.lock(); - unsafe { - std::env::remove_var("HTTP_PORT"); - std::env::remove_var("HTTP_HOST"); - std::env::remove_var("HTTP_WEBHOOK_SECRET"); - std::env::remove_var("HTTP_USER_ID"); - std::env::remove_var("GATEWAY_ENABLED"); - std::env::remove_var("GATEWAY_HOST"); - std::env::remove_var("GATEWAY_PORT"); - std::env::remove_var("GATEWAY_AUTH_TOKEN"); - std::env::remove_var("GATEWAY_USER_ID"); - std::env::remove_var("SIGNAL_HTTP_URL"); - std::env::remove_var("CLI_ENABLED"); - std::env::remove_var("WASM_CHANNELS_DIR"); - std::env::remove_var("WASM_CHANNELS_ENABLED"); - std::env::remove_var("TELEGRAM_OWNER_ID"); - } - - let mut settings = crate::settings::Settings::default(); + fn resolve_uses_settings_channel_values_with_owner_scope_user_ids() { + let _guard = ENV_MUTEX.lock().unwrap_or_else(|e| e.into_inner()); + let mut settings = Settings::default(); settings.channels.http_enabled = true; - settings.channels.http_port = Some(9090); - settings.channels.http_host = Some("10.0.0.1".to_string()); + settings.channels.http_host = Some("127.0.0.2".to_string()); + settings.channels.http_port = Some(8181); + settings.channels.gateway_enabled = true; + settings.channels.gateway_host = Some("127.0.0.3".to_string()); + settings.channels.gateway_port = Some(9191); + settings.channels.gateway_auth_token = Some("tok".to_string()); + settings.channels.signal_http_url = Some("http://127.0.0.1:8080".to_string()); + settings.channels.signal_account = Some("+15551234567".to_string()); + settings.channels.signal_allow_from = Some("+15551234567,+15557654321".to_string()); + settings.channels.wasm_channels_dir = Some(PathBuf::from("/tmp/settings-channels")); + settings.channels.wasm_channels_enabled = false; - let cfg = ChannelsConfig::resolve(&settings, false).unwrap(); - let http = cfg.http.expect("HTTP should be enabled from settings"); - assert_eq!(http.port, 9090); - assert_eq!(http.host, "10.0.0.1"); - } + let cfg = ChannelsConfig::resolve(&settings, "owner-scope").expect("resolve"); - /// Settings round-trip through DB map for new gateway fields. - #[test] - fn settings_gateway_fields_db_roundtrip() { - let mut settings = crate::settings::Settings::default(); - settings.channels.gateway_port = Some(4000); - settings.channels.gateway_host = Some("0.0.0.0".to_string()); - settings.channels.gateway_auth_token = Some("tok-abc".to_string()); - settings.channels.gateway_user_id = Some("myuser".to_string()); - settings.channels.cli_enabled = false; + let http = cfg.http.expect("http config"); + assert_eq!(http.host, "127.0.0.2"); + assert_eq!(http.port, 8181); + assert_eq!(http.user_id, "owner-scope"); - let map = settings.to_db_map(); - let restored = crate::settings::Settings::from_db_map(&map); + let gateway = cfg.gateway.expect("gateway config"); + assert_eq!(gateway.host, "127.0.0.3"); + assert_eq!(gateway.port, 9191); + assert_eq!(gateway.auth_token.as_deref(), Some("tok")); + assert_eq!(gateway.user_id, "owner-scope"); + + let signal = cfg.signal.expect("signal config"); + assert_eq!(signal.account, "+15551234567"); + assert_eq!(signal.allow_from, vec!["+15551234567", "+15557654321"]); - assert_eq!(restored.channels.gateway_port, Some(4000)); - assert_eq!(restored.channels.gateway_host.as_deref(), Some("0.0.0.0")); assert_eq!( - restored.channels.gateway_auth_token.as_deref(), - Some("tok-abc") + cfg.wasm_channels_dir, + PathBuf::from("/tmp/settings-channels") ); - assert_eq!(restored.channels.gateway_user_id.as_deref(), Some("myuser")); - assert!(!restored.channels.cli_enabled); - } - - /// Invalid boolean env values must produce errors, not silently degrade. - #[test] - fn resolve_rejects_invalid_bool_env() { - let _lock = crate::config::helpers::ENV_MUTEX.lock(); - let settings = crate::settings::Settings::default(); - - // GATEWAY_ENABLED=maybe should error - unsafe { - std::env::set_var("GATEWAY_ENABLED", "maybe"); - std::env::remove_var("HTTP_PORT"); - std::env::remove_var("HTTP_HOST"); - std::env::remove_var("SIGNAL_HTTP_URL"); - std::env::remove_var("CLI_ENABLED"); - std::env::remove_var("WASM_CHANNELS_ENABLED"); - std::env::remove_var("GATEWAY_PORT"); - std::env::remove_var("GATEWAY_HOST"); - std::env::remove_var("GATEWAY_AUTH_TOKEN"); - std::env::remove_var("GATEWAY_USER_ID"); - std::env::remove_var("WASM_CHANNELS_DIR"); - std::env::remove_var("TELEGRAM_OWNER_ID"); - } - let result = ChannelsConfig::resolve(&settings, false); - assert!(result.is_err(), "GATEWAY_ENABLED=maybe should be rejected"); - - // CLI_ENABLED=on should error - unsafe { - std::env::remove_var("GATEWAY_ENABLED"); - std::env::set_var("CLI_ENABLED", "on"); - } - let result = ChannelsConfig::resolve(&settings, false); - assert!(result.is_err(), "CLI_ENABLED=on should be rejected"); - - // WASM_CHANNELS_ENABLED=yes should error - unsafe { - std::env::remove_var("CLI_ENABLED"); - std::env::set_var("WASM_CHANNELS_ENABLED", "yes"); - } - let result = ChannelsConfig::resolve(&settings, false); - assert!( - result.is_err(), - "WASM_CHANNELS_ENABLED=yes should be rejected" - ); - - // Cleanup - unsafe { - std::env::remove_var("WASM_CHANNELS_ENABLED"); - } + assert!(!cfg.wasm_channels_enabled); } } diff --git a/src/config/llm.rs b/src/config/llm.rs index 4ad24399..64bf4ab8 100644 --- a/src/config/llm.rs +++ b/src/config/llm.rs @@ -38,6 +38,8 @@ impl LlmConfig { provider: None, bedrock: None, request_timeout_secs: 120, + cheap_model: None, + smart_routing_cascade: false, } } @@ -168,6 +170,14 @@ impl LlmConfig { let request_timeout_secs = parse_optional_env("LLM_REQUEST_TIMEOUT_SECS", 120)?; + // Generic cheap model (works with any backend). + // Falls back to NearAI-specific cheap_model in provider chain logic. + let cheap_model = optional_env("LLM_CHEAP_MODEL")?; + + // Generic smart routing cascade flag. + // Defaults to true. Overrides NearAI-specific smart_routing_cascade. + let smart_routing_cascade = parse_optional_env("SMART_ROUTING_CASCADE", true)?; + Ok(Self { backend: if is_nearai { "nearai".to_string() @@ -183,6 +193,8 @@ impl LlmConfig { provider, bedrock, request_timeout_secs, + cheap_model, + smart_routing_cascade, }) } diff --git a/src/config/mod.rs b/src/config/mod.rs index 1c81329e..38c80880 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -26,7 +26,7 @@ mod tunnel; mod wasm; use std::collections::HashMap; -use std::sync::{LazyLock, Mutex}; +use std::sync::{LazyLock, Mutex, Once}; use crate::error::ConfigError; use crate::settings::Settings; @@ -74,10 +74,12 @@ pub use self::helpers::{env_or_override, set_runtime_env}; /// their data. Whichever runs first initialises the map; the second merges in. static INJECTED_VARS: LazyLock>> = LazyLock::new(|| Mutex::new(HashMap::new())); +static WARNED_EXPLICIT_DEFAULT_OWNER_ID: Once = Once::new(); /// Main configuration for the agent. #[derive(Debug, Clone)] pub struct Config { + pub owner_id: String, pub database: DatabaseConfig, pub llm: LlmConfig, pub embeddings: EmbeddingsConfig, @@ -118,6 +120,7 @@ impl Config { installed_skills_dir: std::path::PathBuf, ) -> Self { Self { + owner_id: "default".to_string(), database: DatabaseConfig { backend: DatabaseBackend::LibSql, url: secrecy::SecretString::from("unused://test".to_string()), @@ -228,13 +231,7 @@ impl Config { pub async fn from_env_with_toml( toml_path: Option<&std::path::Path>, ) -> Result { - let _ = dotenvy::dotenv(); - crate::bootstrap::load_ironclaw_env(); - let mut settings = Settings::load(); - - // Overlay TOML config file (values win over JSON settings) - Self::apply_toml_overlay(&mut settings, toml_path)?; - + let settings = load_bootstrap_settings(toml_path)?; Self::build(&settings).await } @@ -306,16 +303,15 @@ impl Config { /// Build config from settings (shared by from_env and from_db). async fn build(settings: &Settings) -> Result { - // Resolve tunnel first so channels can default to loopback when a - // tunnel handles external exposure (no need to bind 0.0.0.0). - let tunnel = TunnelConfig::resolve(settings)?; + let owner_id = resolve_owner_id(settings)?; Ok(Self { + owner_id: owner_id.clone(), database: DatabaseConfig::resolve()?, llm: LlmConfig::resolve(settings)?, embeddings: EmbeddingsConfig::resolve(settings)?, - channels: ChannelsConfig::resolve(settings, tunnel.is_enabled())?, - tunnel, + tunnel: TunnelConfig::resolve(settings)?, + channels: ChannelsConfig::resolve(settings, &owner_id)?, agent: AgentConfig::resolve(settings)?, safety: resolve_safety_config(settings)?, wasm: WasmConfig::resolve(settings)?, @@ -337,6 +333,43 @@ impl Config { } } +pub(crate) fn load_bootstrap_settings( + toml_path: Option<&std::path::Path>, +) -> Result { + let _ = dotenvy::dotenv(); + crate::bootstrap::load_ironclaw_env(); + + let mut settings = Settings::load(); + Config::apply_toml_overlay(&mut settings, toml_path)?; + Ok(settings) +} + +pub(crate) fn resolve_owner_id(settings: &Settings) -> Result { + let env_owner_id = self::helpers::optional_env("IRONCLAW_OWNER_ID")?; + let settings_owner_id = settings.owner_id.clone(); + let configured_owner_id = env_owner_id.clone().or(settings_owner_id.clone()); + + let owner_id = configured_owner_id + .map(|value| value.trim().to_string()) + .filter(|value| !value.is_empty()) + .unwrap_or_else(|| "default".to_string()); + + if owner_id == "default" + && (env_owner_id.is_some() + || settings_owner_id + .as_deref() + .is_some_and(|value| !value.trim().is_empty())) + { + WARNED_EXPLICIT_DEFAULT_OWNER_ID.call_once(|| { + tracing::warn!( + "IRONCLAW_OWNER_ID resolved to the legacy 'default' scope explicitly; durable state will keep legacy owner behavior" + ); + }); + } + + Ok(owner_id) +} + /// Load API keys from the encrypted secrets store into a thread-safe overlay. /// /// This bridges the gap between secrets stored during onboarding and the diff --git a/src/config/transcription.rs b/src/config/transcription.rs index b0f76066..da2bac25 100644 --- a/src/config/transcription.rs +++ b/src/config/transcription.rs @@ -9,11 +9,15 @@ use crate::settings::Settings; pub struct TranscriptionConfig { /// Whether audio transcription is enabled. pub enabled: bool, - /// Provider: "openai" (default). + /// Provider: "openai" (default) or "chat_completions". pub provider: String, /// OpenAI API key (reuses OPENAI_API_KEY). pub openai_api_key: Option, - /// Model to use (default: "whisper-1"). + /// Explicit transcription API key (overrides provider-specific keys). + pub api_key: Option, + /// LLM API key (reuses LLM_API_KEY, used as fallback for chat_completions). + pub llm_api_key: Option, + /// Model to use (default depends on provider). pub model: String, /// Base URL override for the transcription API. pub base_url: Option, @@ -25,6 +29,8 @@ impl Default for TranscriptionConfig { enabled: false, provider: "openai".to_string(), openai_api_key: None, + api_key: None, + llm_api_key: None, model: "whisper-1".to_string(), base_url: None, } @@ -42,8 +48,15 @@ impl TranscriptionConfig { optional_env("TRANSCRIPTION_PROVIDER")?.unwrap_or_else(|| "openai".to_string()); let openai_api_key = optional_env("OPENAI_API_KEY")?.map(SecretString::from); + let api_key = optional_env("TRANSCRIPTION_API_KEY")?.map(SecretString::from); + let llm_api_key = optional_env("LLM_API_KEY")?.map(SecretString::from); - let model = optional_env("TRANSCRIPTION_MODEL")?.unwrap_or_else(|| "whisper-1".to_string()); + let default_model = match provider.as_str() { + "chat_completions" => "google/gemini-2.0-flash-001", + _ => "whisper-1", + }; + let model = + optional_env("TRANSCRIPTION_MODEL")?.unwrap_or_else(|| default_model.to_string()); let base_url = optional_env("TRANSCRIPTION_BASE_URL")?; @@ -51,29 +64,67 @@ impl TranscriptionConfig { enabled, provider, openai_api_key, + api_key, + llm_api_key, model, base_url, }) } + /// Resolve the API key for the configured provider. + /// + /// Priority: `TRANSCRIPTION_API_KEY` > provider-specific key. + fn resolve_api_key(&self) -> Option<&SecretString> { + self.api_key + .as_ref() + .or_else(|| match self.provider.as_str() { + "chat_completions" => self.llm_api_key.as_ref().or(self.openai_api_key.as_ref()), + _ => self.openai_api_key.as_ref(), + }) + } + /// Create the transcription provider if enabled and configured. pub fn create_provider(&self) -> Option> { if !self.enabled { return None; } - // Currently only OpenAI Whisper is supported; more providers can be - // added here with a match on self.provider. - let api_key = self.openai_api_key.as_ref()?; - tracing::info!(model = %self.model, "Audio transcription enabled via OpenAI Whisper"); + let api_key = self.resolve_api_key()?; - let mut provider = crate::transcription::OpenAiWhisperProvider::new(api_key.clone()) - .with_model(&self.model); + match self.provider.as_str() { + "chat_completions" => { + tracing::info!( + model = %self.model, + "Audio transcription enabled via Chat Completions API" + ); - if let Some(ref base_url) = self.base_url { - provider = provider.with_base_url(base_url); + let mut provider = crate::transcription::ChatCompletionsTranscriptionProvider::new( + api_key.clone(), + ) + .with_model(&self.model); + + if let Some(ref base_url) = self.base_url { + provider = provider.with_base_url(base_url); + } + + Some(Box::new(provider)) + } + _ => { + tracing::info!( + model = %self.model, + "Audio transcription enabled via OpenAI Whisper" + ); + + let mut provider = + crate::transcription::OpenAiWhisperProvider::new(api_key.clone()) + .with_model(&self.model); + + if let Some(ref base_url) = self.base_url { + provider = provider.with_base_url(base_url); + } + + Some(Box::new(provider)) + } } - - Some(Box::new(provider)) } } diff --git a/src/context/manager.rs b/src/context/manager.rs index 764f189a..6eb63260 100644 --- a/src/context/manager.rs +++ b/src/context/manager.rs @@ -46,11 +46,17 @@ impl ContextManager { description: impl Into, ) -> Result { // Hold write lock for the entire check-insert to prevent TOCTOU races - // where two concurrent calls both pass the active_count check. + // where two concurrent calls both pass the parallel_count check. let mut contexts = self.contexts.write().await; - let active_count = contexts.values().filter(|c| c.state.is_active()).count(); + // Only count jobs that consume execution slots (Pending, InProgress, Stuck). + // Completed and Submitted jobs are no longer actively executing and shouldn't + // block new job creation. + let parallel_count = contexts + .values() + .filter(|c| c.state.is_parallel_blocking()) + .count(); - if active_count >= self.max_jobs { + if parallel_count >= self.max_jobs { return Err(JobError::MaxJobsExceeded { max: self.max_jobs }); } @@ -965,4 +971,218 @@ mod tests { // And it's in the initial state (Pending), not modified by concurrent workers assert_eq!(returned_ctx.state, crate::context::JobState::Pending); // safety: test code } + + #[tokio::test] + async fn sequential_routines_unlimited_completed_not_counted() { + // TEST: Sequential (non-parallel) routines should NOT be limited by max_jobs. + // + // Completed/Submitted jobs should NOT count toward the parallel job limit, + // since they're no longer actively consuming execution resources. + // + // Scenario: Create 10 sequential routines, each completing before the next starts. + // Currently FAILS because Completed jobs still count as "active". + // After fix, should PASS because only Pending/InProgress/Stuck count. + + let manager = ContextManager::new(5); // max 5 truly parallel jobs + + // Try to create and complete 10 sequential routines + for i in 0..10 { + let result = manager + .create_job(format!("Sequential Routine {}", i), "one at a time") + .await; + + match result { + Ok(job_id) => { + // Simulate execution: Pending -> InProgress -> Completed + manager + .update_context(job_id, |ctx| { + ctx.transition_to(crate::context::JobState::InProgress, None) + }) + .await + .unwrap() + .unwrap(); + + manager + .update_context(job_id, |ctx| { + ctx.transition_to(crate::context::JobState::Completed, None) + }) + .await + .unwrap() + .unwrap(); + + println!("✓ Routine {} created and completed", i); + } + Err(JobError::MaxJobsExceeded { max }) => { + panic!( + "✗ Routine {} FAILED to create: MaxJobsExceeded (max={}).\n\ + This shows the bug: Completed jobs from routines 0-4 are still counting \ + toward the limit even though they're not running.\n\ + After the fix, this test should pass because Completed jobs won't count.", + i, max + ); + } + Err(e) => { + panic!("Unexpected error for routine {}: {:?}", i, e); + } + } + } + + // If we reach here, all 10 routines succeeded (bug is fixed) + assert_eq!(manager.all_jobs().await.len(), 10); + println!("✓ SUCCESS: All 10 sequential routines created despite max_jobs=5 limit"); + println!(" This is correct: Completed jobs don't count toward parallel limit"); + } + + #[tokio::test] + async fn parallel_jobs_limit_enforced_for_active_jobs() { + // TEST: Parallel (simultaneous) jobs ARE limited by max_jobs. + // + // Jobs in Pending/InProgress/Stuck states consume execution slots. + // The 6th truly-active job should fail because the limit is 5. + // + // This test verifies the limit DOES work correctly for parallel execution. + + let manager = ContextManager::new(5); // max 5 parallel jobs + + // Create 5 jobs and make them InProgress (simulating parallel execution) + let mut job_ids = Vec::new(); + for i in 0..5 { + let job_id = manager + .create_job(format!("Parallel Job {}", i), "running in parallel") + .await + .expect("First 5 jobs should create successfully"); + job_ids.push(job_id); + + // Transition to InProgress (simulating active execution) + manager + .update_context(job_id, |ctx| { + ctx.transition_to(crate::context::JobState::InProgress, None) + }) + .await + .unwrap() + .unwrap(); + } + + // Verify all 5 jobs are InProgress + for job_id in &job_ids { + let ctx = manager.get_context(*job_id).await.unwrap(); + assert_eq!( + ctx.state, + crate::context::JobState::InProgress, + "All jobs should be InProgress" + ); + } + + // Check active count - should be 5 (all InProgress) + let active_count = manager.active_count().await; + assert_eq!( + active_count, 5, + "Active count should be 5 (all InProgress jobs count)" + ); + + // Try to create a 6th job - should FAIL because limit is reached + let result = manager.create_job("Parallel Job 6", "sixth job").await; + + match result { + Err(JobError::MaxJobsExceeded { max: 5 }) => { + println!("✓ SUCCESS: Parallel job limit correctly enforced at 5 active jobs"); + println!("✓ 6th InProgress job correctly blocked when 5 are already running"); + } + Ok(_) => { + panic!( + "FAILED: 6th parallel job should have been blocked \ + but was created. Limit enforcement is broken." + ); + } + Err(e) => { + panic!( + "UNEXPECTED ERROR: Expected MaxJobsExceeded but got: {:?}", + e + ); + } + } + } + + #[tokio::test] + async fn completed_jobs_should_free_slots_after_fix() { + // TEST: After the fix, Completed jobs should NOT count toward the limit. + // + // This test demonstrates that when a job transitions from InProgress -> Completed, + // it should free up a slot in the parallel execution limit. + // + // Currently FAILS (bug not fixed), proving Completed jobs incorrectly stay in the limit. + // After fix, this will PASS (Completed jobs freed their slot). + + let manager = ContextManager::new(5); // max 5 parallel jobs + + // Create 5 InProgress jobs (fill the limit) + let mut job_ids = Vec::new(); + for i in 0..5 { + let job_id = manager + .create_job(format!("Job {}", i), "parallel") + .await + .unwrap(); + job_ids.push(job_id); + + manager + .update_context(job_id, |ctx| { + ctx.transition_to(crate::context::JobState::InProgress, None) + }) + .await + .unwrap() + .unwrap(); + } + + // Verify limit is hit + let result = manager.create_job("Job 5", "should fail").await; + assert!( + matches!(result, Err(JobError::MaxJobsExceeded { max: 5 })), + "Limit should be hit with 5 InProgress jobs" + ); + println!("✓ Limit enforced: 5 InProgress jobs block 6th creation"); + + // Now transition job 0 from InProgress -> Completed + manager + .update_context(job_ids[0], |ctx| { + ctx.transition_to(crate::context::JobState::Completed, None) + }) + .await + .unwrap() + .unwrap(); + + println!("✓ Job 0 transitioned: InProgress -> Completed"); + + // Try to create a 6th job - this will FAIL until the bug is fixed + let result = manager + .create_job("Job 5 (retry)", "after 1 Completed") + .await; + + match result { + Ok(job_6) => { + println!("✓ SUCCESS: 6th job created after job 0 completed"); + println!("✓ This proves Completed jobs don't count toward the limit (BUG FIXED)"); + + // Verify we can transition it to InProgress + manager + .update_context(job_6, |ctx| { + ctx.transition_to(crate::context::JobState::InProgress, None) + }) + .await + .unwrap() + .unwrap(); + println!("✓ 6th job now InProgress: 4 remaining + 1 new = 5 limit reached"); + } + Err(JobError::MaxJobsExceeded { max: 5 }) => { + panic!( + "✗ BUG NOT FIXED: 6th job creation still blocked after freeing slot.\n\ + State: 1 Completed (job 0) + 4 InProgress (jobs 1-4) = 5 active\n\ + BUG: Completed job 0 still counts toward limit\n\ + EXPECTED: Only 4 InProgress count, 1 slot free" + ); + } + Err(e) => { + panic!("Unexpected error: {:?}", e); + } + } + } } diff --git a/src/context/state.rs b/src/context/state.rs index 768e4da6..f5307947 100644 --- a/src/context/state.rs +++ b/src/context/state.rs @@ -81,6 +81,15 @@ impl JobState { pub fn is_active(&self) -> bool { !self.is_terminal() } + + /// Check if this job consumes a parallel execution slot. + /// + /// Only jobs in Pending, InProgress, or Stuck states consume execution resources + /// and should count toward the parallel job limit. Completed and Submitted jobs + /// are in the state machine but are no longer actively executing. + pub fn is_parallel_blocking(&self) -> bool { + matches!(self, Self::Pending | Self::InProgress | Self::Stuck) + } } impl std::fmt::Display for JobState { @@ -121,6 +130,9 @@ pub struct JobContext { pub state: JobState, /// User ID that owns this job (for workspace scoping). pub user_id: String, + /// Channel-specific requester/actor ID, when different from the owner scope. + #[serde(skip_serializing_if = "Option::is_none")] + pub requester_id: Option, /// Conversation ID if linked to a conversation. pub conversation_id: Option, /// Job title. @@ -202,6 +214,7 @@ impl JobContext { job_id: Uuid::new_v4(), state: JobState::Pending, user_id: user_id.into(), + requester_id: None, conversation_id: None, title: title.into(), description: description.into(), @@ -233,6 +246,12 @@ impl JobContext { self } + /// Set the channel-specific requester/actor ID. + pub fn with_requester_id(mut self, requester_id: impl Into) -> Self { + self.requester_id = Some(requester_id.into()); + self + } + /// Transition to a new state. pub fn transition_to( &mut self, diff --git a/src/db/libsql/jobs.rs b/src/db/libsql/jobs.rs index 3db3ab30..208d348b 100644 --- a/src/db/libsql/jobs.rs +++ b/src/db/libsql/jobs.rs @@ -106,6 +106,7 @@ impl JobStore for LibSqlBackend { job_id: get_text(&row, 0).parse().unwrap_or_default(), state, user_id: get_text(&row, 6), + requester_id: None, conversation_id: get_opt_text(&row, 1).and_then(|s| s.parse().ok()), title: get_text(&row, 2), description: get_text(&row, 3), diff --git a/src/db/libsql/mod.rs b/src/db/libsql/mod.rs index dcc5a8b5..d19089c1 100644 --- a/src/db/libsql/mod.rs +++ b/src/db/libsql/mod.rs @@ -247,6 +247,17 @@ pub(crate) fn opt_text_owned(s: Option) -> libsql::Value { } } +pub(crate) fn normalize_notify_user(value: Option) -> Option { + value.and_then(|value| { + let trimmed = value.trim(); + if trimmed.is_empty() || trimmed == "default" { + None + } else { + Some(trimmed.to_string()) + } + }) +} + /// Extract an i64 column, defaulting to 0. pub(crate) fn get_i64(row: &libsql::Row, idx: i32) -> i64 { row.get::(idx).unwrap_or(0) @@ -378,7 +389,7 @@ pub(crate) fn row_to_routine_libsql(row: &libsql::Row) -> Result MakeRustlsConnect { +fn make_rustls_connector() -> Result { let mut root_store = rustls::RootCertStore::empty(); let native = rustls_native_certs::load_native_certs(); for e in &native.errors { @@ -25,10 +34,15 @@ fn make_rustls_connector() -> MakeRustlsConnect { if root_store.is_empty() { tracing::error!("no system root certificates found -- TLS connections will fail"); } - let config = rustls::ClientConfig::builder() - .with_root_certificates(root_store) - .with_no_client_auth(); - MakeRustlsConnect::new(config) + // `--all-features` brings in both aws-lc-rs and ring-backed rustls providers. + // Pick the same ring provider reqwest already uses so postgres TLS setup stays deterministic. + let config = rustls::ClientConfig::builder_with_provider( + rustls::crypto::ring::default_provider().into(), + ) + .with_safe_default_protocol_versions()? + .with_root_certificates(root_store) + .with_no_client_auth(); + Ok(MakeRustlsConnect::new(config)) } /// Create a [`deadpool_postgres::Pool`] with the appropriate TLS connector. @@ -45,12 +59,16 @@ fn make_rustls_connector() -> MakeRustlsConnect { pub fn create_pool( config: &deadpool_postgres::Config, ssl_mode: SslMode, -) -> Result { +) -> Result { match ssl_mode { - SslMode::Disable => config.create_pool(Some(Runtime::Tokio1), NoTls), + SslMode::Disable => config + .create_pool(Some(Runtime::Tokio1), NoTls) + .map_err(CreatePoolError::from), SslMode::Prefer | SslMode::Require => { - let tls = make_rustls_connector(); - config.create_pool(Some(Runtime::Tokio1), tls) + let tls = make_rustls_connector()?; + config + .create_pool(Some(Runtime::Tokio1), tls) + .map_err(CreatePoolError::from) } } } diff --git a/src/error.rs b/src/error.rs index 9e57a358..11864de7 100644 --- a/src/error.rs +++ b/src/error.rs @@ -122,6 +122,9 @@ pub enum ChannelError { #[error("Failed to send response on channel {name}: {reason}")] SendFailed { name: String, reason: String }, + #[error("Channel {name} is missing a routing target: {reason}")] + MissingRoutingTarget { name: String, reason: String }, + #[error("Invalid message format: {0}")] InvalidMessage(String), diff --git a/src/extensions/manager.rs b/src/extensions/manager.rs index d519aa5f..199a1ca1 100644 --- a/src/extensions/manager.rs +++ b/src/extensions/manager.rs @@ -10,16 +10,17 @@ use std::sync::Arc; use tokio::sync::RwLock; -use crate::channels::ChannelManager; use crate::channels::wasm::{ - RegisteredEndpoint, SharedWasmChannel, WasmChannelLoader, WasmChannelRouter, WasmChannelRuntime, + LoadedChannel, RegisteredEndpoint, SharedWasmChannel, TELEGRAM_CHANNEL_NAME, WasmChannelLoader, + WasmChannelRouter, WasmChannelRuntime, bot_username_setting_key, }; +use crate::channels::{ChannelManager, OutgoingResponse}; use crate::extensions::discovery::OnlineDiscovery; use crate::extensions::registry::ExtensionRegistry; use crate::extensions::{ ActivateResult, AuthResult, ConfigureResult, ExtensionError, ExtensionKind, ExtensionSource, InstallResult, InstalledExtension, RegistryEntry, ResultSource, SearchResult, ToolAuthState, - UpgradeOutcome, UpgradeResult, + UpgradeOutcome, UpgradeResult, VerificationChallenge, }; use crate::hooks::HookRegistry; use crate::pairing::PairingStore; @@ -56,6 +57,247 @@ struct ChannelRuntimeState { wasm_channel_owner_ids: std::collections::HashMap, } +#[cfg(test)] +type TestWasmChannelLoader = + Arc Result + Send + Sync>; +#[cfg(test)] +type TestTelegramBindingResolver = + Arc) -> Result + Send + Sync>; + +const TELEGRAM_OWNER_BIND_TIMEOUT_SECS: u64 = 120; +const TELEGRAM_OWNER_BIND_CHALLENGE_TTL_SECS: u64 = 300; +const TELEGRAM_GET_UPDATES_TIMEOUT_SECS: u64 = 25; +const TELEGRAM_OWNER_BIND_CODE_LEN: usize = 8; + +#[derive(Debug, Clone, PartialEq, Eq)] +struct TelegramBindingData { + owner_id: i64, + bot_username: Option, + binding_state: TelegramOwnerBindingState, +} + +#[derive(Debug, Clone, Copy, PartialEq, Eq)] +enum TelegramOwnerBindingState { + Existing, + VerifiedNow, +} + +#[derive(Debug, Clone, PartialEq, Eq)] +struct PendingTelegramVerificationChallenge { + code: String, + bot_username: Option, + expires_at_unix: u64, +} + +#[derive(Debug, Clone, PartialEq, Eq)] +enum TelegramBindingResult { + Bound(TelegramBindingData), + Pending(VerificationChallenge), +} + +fn telegram_request_error(action: &'static str, error: &reqwest::Error) -> ExtensionError { + tracing::warn!( + action, + status = error.status().map(|status| status.as_u16()), + is_timeout = error.is_timeout(), + is_connect = error.is_connect(), + "Telegram API request failed" + ); + ExtensionError::Other(format!("Telegram {action} request failed")) +} + +fn telegram_response_parse_error(action: &'static str, error: &reqwest::Error) -> ExtensionError { + tracing::warn!( + action, + status = error.status().map(|status| status.as_u16()), + is_timeout = error.is_timeout(), + "Telegram API response parse failed" + ); + ExtensionError::Other(format!("Failed to parse Telegram {action} response")) +} + +#[derive(Debug, serde::Deserialize)] +struct TelegramGetMeResponse { + ok: bool, + #[serde(default)] + result: Option, + #[serde(default)] + description: Option, +} + +#[derive(Debug, serde::Deserialize)] +struct TelegramGetMeUser { + #[serde(default)] + username: Option, +} + +#[derive(Debug, serde::Deserialize)] +struct TelegramGetUpdatesResponse { + ok: bool, + #[serde(default)] + result: Vec, + #[serde(default)] + description: Option, +} + +#[derive(Debug, serde::Deserialize)] +struct TelegramApiOkResponse { + ok: bool, + #[serde(default)] + description: Option, +} + +#[derive(Debug, serde::Deserialize)] +struct TelegramUpdate { + update_id: i64, + #[serde(default)] + message: Option, + #[serde(default)] + edited_message: Option, +} + +#[derive(Debug, serde::Deserialize)] +struct TelegramMessage { + chat: TelegramChat, + #[serde(default)] + from: Option, + #[serde(default)] + text: Option, +} + +#[derive(Debug, serde::Deserialize)] +struct TelegramChat { + #[serde(rename = "type")] + chat_type: String, +} + +#[derive(Debug, serde::Deserialize)] +struct TelegramUser { + id: i64, + is_bot: bool, +} + +fn build_wasm_channel_runtime_config_updates( + tunnel_url: Option<&str>, + webhook_secret: Option<&str>, + owner_id: Option, +) -> HashMap { + let mut config_updates = HashMap::new(); + + if let Some(tunnel_url) = tunnel_url { + config_updates.insert( + "tunnel_url".to_string(), + serde_json::Value::String(tunnel_url.to_string()), + ); + } + + if let Some(secret) = webhook_secret { + config_updates.insert( + "webhook_secret".to_string(), + serde_json::Value::String(secret.to_string()), + ); + } + + if let Some(owner_id) = owner_id { + config_updates.insert("owner_id".to_string(), serde_json::json!(owner_id)); + } + + config_updates +} + +fn channel_auth_instructions( + channel_name: &str, + secret: &crate::channels::wasm::SecretSetupSchema, +) -> String { + if channel_name == TELEGRAM_CHANNEL_NAME && secret.name == "telegram_bot_token" { + return format!( + "{} After you submit it, IronClaw will show a one-time verification code. Send `/start CODE` to your bot in Telegram and IronClaw will finish setup automatically.", + secret.prompt + ); + } + + secret.prompt.clone() +} + +fn unix_timestamp_secs() -> u64 { + std::time::SystemTime::now() + .duration_since(std::time::UNIX_EPOCH) + .unwrap_or_default() + .as_secs() +} + +fn generate_telegram_verification_code() -> String { + use rand::Rng; + rand::thread_rng() + .sample_iter(&rand::distributions::Alphanumeric) + .take(TELEGRAM_OWNER_BIND_CODE_LEN) + .map(char::from) + .collect::() + .to_lowercase() +} + +fn telegram_verification_deep_link(bot_username: Option<&str>, code: &str) -> Option { + bot_username + .filter(|username| !username.trim().is_empty()) + .map(|username| format!("https://t.me/{username}?start={code}")) +} + +fn telegram_verification_instructions(bot_username: Option<&str>, code: &str) -> String { + if let Some(username) = bot_username.filter(|username| !username.trim().is_empty()) { + return format!( + "Send `/start {code}` to @{username} in Telegram. IronClaw will finish setup automatically." + ); + } + + format!("Send `/start {code}` to your Telegram bot. IronClaw will finish setup automatically.") +} + +fn telegram_message_matches_verification_code(text: &str, code: &str) -> bool { + let trimmed = text.trim(); + trimmed == code + || trimmed == format!("/start {code}") + || trimmed + .split_whitespace() + .map(|token| token.trim_matches(|c: char| !c.is_ascii_alphanumeric() && c != '-')) + .any(|token| token == code) +} + +async fn send_telegram_text_message( + client: &reqwest::Client, + endpoint: &str, + chat_id: i64, + text: &str, +) -> Result<(), ExtensionError> { + let response = client + .post(endpoint) + .json(&serde_json::json!({ + "chat_id": chat_id, + "text": text, + })) + .send() + .await + .map_err(|e| telegram_request_error("sendMessage", &e))?; + + if !response.status().is_success() { + return Err(ExtensionError::Other(format!( + "Telegram sendMessage failed (HTTP {})", + response.status() + ))); + } + + let payload: TelegramApiOkResponse = response + .json() + .await + .map_err(|e| telegram_response_parse_error("sendMessage", &e))?; + if !payload.ok { + return Err(ExtensionError::Other(payload.description.unwrap_or_else( + || "Telegram sendMessage returned ok=false".to_string(), + ))); + } + + Ok(()) +} + /// Central manager for extension lifecycle operations. /// /// # Initialization Order @@ -130,6 +372,11 @@ pub struct ExtensionManager { /// The gateway's own base URL for building OAuth redirect URIs. /// Set by the web gateway at startup via `enable_gateway_mode()`. gateway_base_url: RwLock>, + pending_telegram_verification: RwLock>, + #[cfg(test)] + test_wasm_channel_loader: RwLock>, + #[cfg(test)] + test_telegram_binding_resolver: RwLock>, } /// Sanitize a URL for logging by removing query parameters and credentials. @@ -211,9 +458,47 @@ impl ExtensionManager { relay_config: crate::config::RelayConfig::from_env(), gateway_mode: std::sync::atomic::AtomicBool::new(false), gateway_base_url: RwLock::new(None), + pending_telegram_verification: RwLock::new(HashMap::new()), + #[cfg(test)] + test_wasm_channel_loader: RwLock::new(None), + #[cfg(test)] + test_telegram_binding_resolver: RwLock::new(None), } } + #[cfg(test)] + async fn set_test_wasm_channel_loader(&self, loader: TestWasmChannelLoader) { + *self.test_wasm_channel_loader.write().await = Some(loader); + } + + #[cfg(test)] + async fn set_test_telegram_binding_resolver(&self, resolver: TestTelegramBindingResolver) { + *self.test_telegram_binding_resolver.write().await = Some(resolver); + } + + #[cfg(test)] + pub(crate) async fn set_test_telegram_pending_verification( + &self, + code: &str, + bot_username: Option<&str>, + ) { + let code = code.to_string(); + let bot_username = bot_username.map(str::to_string); + self.set_test_telegram_binding_resolver(Arc::new(move |_token, existing_owner_id| { + if existing_owner_id.is_some() { + return Err(ExtensionError::Other( + "unexpected existing owner binding".to_string(), + )); + } + Ok(TelegramBindingResult::Pending(VerificationChallenge { + code: code.clone(), + instructions: telegram_verification_instructions(bot_username.as_deref(), &code), + deep_link: telegram_verification_deep_link(bot_username.as_deref(), &code), + })) + })) + .await; + } + /// Enable gateway mode so OAuth flows return auth URLs to the frontend /// instead of calling `open::that()` on the server. /// @@ -319,17 +604,6 @@ impl ExtensionManager { }); } - /// Set just the channel manager for relay channel hot-activation. - /// - /// Call this when WASM channel runtime is not available but relay channels - /// still need to be hot-added. - /// - /// This must be called before [`ExtensionManager::restore_relay_channels`] - /// unless [`ExtensionManager::set_channel_runtime`] was already called. - pub async fn set_relay_channel_manager(&self, channel_manager: Arc) { - *self.relay_channel_manager.write().await = Some(channel_manager); - } - async fn current_channel_owner_id(&self, name: &str) -> Option { { let rt_guard = self.channel_runtime.read().await; @@ -358,6 +632,137 @@ impl ExtensionManager { } } + async fn set_channel_owner_id(&self, name: &str, owner_id: i64) -> Result<(), ExtensionError> { + if let Some(store) = self.store.as_ref() { + store + .set_setting( + &self.user_id, + &format!("channels.wasm_channel_owner_ids.{name}"), + &serde_json::json!(owner_id), + ) + .await + .map_err(|e| ExtensionError::Config(e.to_string()))?; + } + + let mut rt_guard = self.channel_runtime.write().await; + if let Some(rt) = rt_guard.as_mut() { + rt.wasm_channel_owner_ids.insert(name.to_string(), owner_id); + } + + Ok(()) + } + + async fn load_channel_runtime_config_overrides( + &self, + name: &str, + ) -> HashMap { + let mut overrides = HashMap::new(); + + if name == TELEGRAM_CHANNEL_NAME + && let Some(store) = self.store.as_ref() + && let Ok(Some(serde_json::Value::String(username))) = store + .get_setting(&self.user_id, &bot_username_setting_key(name)) + .await + && !username.trim().is_empty() + { + overrides.insert("bot_username".to_string(), serde_json::json!(username)); + } + + overrides + } + + pub async fn has_wasm_channel_owner_binding(&self, name: &str) -> bool { + self.current_channel_owner_id(name).await.is_some() + } + + pub(crate) async fn notification_target_for_channel(&self, name: &str) -> Option { + self.current_channel_owner_id(name) + .await + .map(|owner_id| owner_id.to_string()) + } + + async fn get_pending_telegram_verification( + &self, + name: &str, + ) -> Option { + let now = unix_timestamp_secs(); + let mut guard = self.pending_telegram_verification.write().await; + let challenge = guard.get(name).cloned()?; + if challenge.expires_at_unix <= now { + guard.remove(name); + return None; + } + Some(challenge) + } + + async fn set_pending_telegram_verification( + &self, + name: &str, + challenge: PendingTelegramVerificationChallenge, + ) { + self.pending_telegram_verification + .write() + .await + .insert(name.to_string(), challenge); + } + + async fn clear_pending_telegram_verification(&self, name: &str) { + self.pending_telegram_verification + .write() + .await + .remove(name); + } + + async fn issue_telegram_verification_challenge( + &self, + client: &reqwest::Client, + name: &str, + bot_token: &str, + bot_username: Option<&str>, + ) -> Result { + let delete_webhook_url = format!("https://api.telegram.org/bot{bot_token}/deleteWebhook"); + let delete_webhook_resp = client + .post(&delete_webhook_url) + .query(&[("drop_pending_updates", "true")]) + .send() + .await + .map_err(|e| telegram_request_error("deleteWebhook", &e))?; + if !delete_webhook_resp.status().is_success() { + return Err(ExtensionError::Other(format!( + "Telegram deleteWebhook failed (HTTP {})", + delete_webhook_resp.status() + ))); + } + + let challenge = PendingTelegramVerificationChallenge { + code: generate_telegram_verification_code(), + bot_username: bot_username.map(str::to_string), + expires_at_unix: unix_timestamp_secs() + TELEGRAM_OWNER_BIND_CHALLENGE_TTL_SECS, + }; + self.set_pending_telegram_verification(name, challenge.clone()) + .await; + + Ok(VerificationChallenge { + code: challenge.code.clone(), + instructions: telegram_verification_instructions( + challenge.bot_username.as_deref(), + &challenge.code, + ), + deep_link: telegram_verification_deep_link( + challenge.bot_username.as_deref(), + &challenge.code, + ), + }) + } + + /// Set just the channel manager for relay channel hot-activation. + /// + /// Call this when WASM channel runtime is not available but relay channels + /// still need to be hot-added. + pub async fn set_relay_channel_manager(&self, channel_manager: Arc) { + *self.relay_channel_manager.write().await = Some(channel_manager); + } + /// Check if a channel name corresponds to a relay extension (has stored stream token). pub async fn is_relay_channel(&self, name: &str) -> bool { self.secrets @@ -756,7 +1161,7 @@ impl ExtensionManager { active, tools: Vec::new(), needs_setup: auth_state == ToolAuthState::NeedsSetup, - has_auth: false, + has_auth: auth_state != ToolAuthState::NoAuth, installed: true, activation_error, version, @@ -2892,7 +3297,7 @@ impl ExtensionManager { Ok(AuthResult::awaiting_token( name, ExtensionKind::WasmChannel, - secret.prompt.clone(), + channel_auth_instructions(name, secret), cap_file.setup.setup_url.clone(), )) } @@ -3097,7 +3502,13 @@ impl ExtensionManager { // Verify runtime infrastructure is available and clone Arcs so we don't // hold the RwLock guard across awaits. - let (channel_runtime, channel_manager, pairing_store, wasm_channel_router) = { + let ( + channel_runtime, + channel_manager, + pairing_store, + wasm_channel_router, + wasm_channel_owner_ids, + ) = { let rt_guard = self.channel_runtime.read().await; let rt = rt_guard.as_ref().ok_or_else(|| { ExtensionError::ActivationFailed("WASM channel runtime not configured".to_string()) @@ -3107,6 +3518,7 @@ impl ExtensionManager { Arc::clone(&rt.channel_manager), Arc::clone(&rt.pairing_store), Arc::clone(&rt.wasm_channel_router), + rt.wasm_channel_owner_ids.clone(), ) }; @@ -3130,20 +3542,62 @@ impl ExtensionManager { None }; - let settings_store: Option> = - self.store.as_ref().map(|db| Arc::clone(db) as _); - let loader = WasmChannelLoader::new( - Arc::clone(&channel_runtime), - Arc::clone(&pairing_store), - settings_store, - ) - .with_secrets_store(Arc::clone(&self.secrets)); - let loaded = loader - .load_from_files(name, &wasm_path, cap_path_option) - .await - .map_err(|e| ExtensionError::ActivationFailed(e.to_string()))?; + #[cfg(test)] + let loaded = if let Some(loader) = self.test_wasm_channel_loader.read().await.as_ref() { + loader(name)? + } else { + let settings_store: Option> = + self.store.as_ref().map(|db| Arc::clone(db) as _); + let loader = WasmChannelLoader::new( + Arc::clone(&channel_runtime), + Arc::clone(&pairing_store), + settings_store, + self.user_id.clone(), + ) + .with_secrets_store(Arc::clone(&self.secrets)); + loader + .load_from_files(name, &wasm_path, cap_path_option) + .await + .map_err(|e| ExtensionError::ActivationFailed(e.to_string()))? + }; + #[cfg(not(test))] + let loaded = { + let settings_store: Option> = + self.store.as_ref().map(|db| Arc::clone(db) as _); + let loader = WasmChannelLoader::new( + Arc::clone(&channel_runtime), + Arc::clone(&pairing_store), + settings_store, + self.user_id.clone(), + ) + .with_secrets_store(Arc::clone(&self.secrets)); + loader + .load_from_files(name, &wasm_path, cap_path_option) + .await + .map_err(|e| ExtensionError::ActivationFailed(e.to_string()))? + }; + + self.complete_loaded_wasm_channel_activation( + name, + loaded, + &channel_manager, + &wasm_channel_router, + wasm_channel_owner_ids.get(name).copied(), + ) + .await + } + + async fn complete_loaded_wasm_channel_activation( + &self, + requested_name: &str, + loaded: LoadedChannel, + channel_manager: &Arc, + wasm_channel_router: &Arc, + owner_id: Option, + ) -> Result { let channel_name = loaded.name().to_string(); + let owner_actor_id = owner_id.map(|id| id.to_string()); let webhook_secret_name = loaded.webhook_secret_name(); let secret_header = loaded.webhook_secret_header().map(|s| s.to_string()); let sig_key_secret_name = loaded.signature_key_secret_name(); @@ -3157,29 +3611,20 @@ impl ExtensionManager { .ok() .map(|s| s.expose().to_string()); - let channel_arc = Arc::new(loaded.channel); + let channel_arc = Arc::new(loaded.channel.with_owner_actor_id(owner_actor_id)); // Inject runtime config (tunnel_url, webhook_secret, owner_id) { - let mut config_updates = std::collections::HashMap::new(); - - if let Some(ref tunnel_url) = self.tunnel_url { - config_updates.insert( - "tunnel_url".to_string(), - serde_json::Value::String(tunnel_url.clone()), - ); - } - - if let Some(ref secret) = webhook_secret { - config_updates.insert( - "webhook_secret".to_string(), - serde_json::Value::String(secret.clone()), - ); - } - - if let Some(owner_id) = self.current_channel_owner_id(&channel_name).await { - config_updates.insert("owner_id".to_string(), serde_json::json!(owner_id)); - } + let resolved_owner_id = owner_id.or(self.current_channel_owner_id(&channel_name).await); + let mut config_updates = build_wasm_channel_runtime_config_updates( + self.tunnel_url.as_deref(), + webhook_secret.as_deref(), + resolved_owner_id, + ); + config_updates.extend( + self.load_channel_runtime_config_overrides(&channel_name) + .await, + ); if !config_updates.is_empty() { channel_arc.update_config(config_updates).await; @@ -3296,7 +3741,7 @@ impl ExtensionManager { name: channel_name, kind: ExtensionKind::WasmChannel, tools_loaded: Vec::new(), - message: format!("Channel '{}' activated and running", name), + message: format!("Channel '{}' activated and running", requested_name), }) } @@ -3376,6 +3821,14 @@ impl ExtensionManager { .as_ref() .and_then(|f| f.hmac_secret_name().map(|s| s.to_string())); + let mut config_updates = build_wasm_channel_runtime_config_updates( + self.tunnel_url.as_deref(), + None, + self.current_channel_owner_id(name).await, + ); + config_updates.extend(self.load_channel_runtime_config_overrides(name).await); + let mut should_rerun_on_start = false; + // Refresh webhook secret if let Ok(secret) = self .secrets @@ -3385,14 +3838,11 @@ impl ExtensionManager { router .update_secret(name, secret.expose().to_string()) .await; - - // Also inject the webhook_secret into the channel's runtime config - let mut config_updates = std::collections::HashMap::new(); config_updates.insert( "webhook_secret".to_string(), serde_json::Value::String(secret.expose().to_string()), ); - existing_channel.update_config(config_updates).await; + should_rerun_on_start = true; } // Refresh signature key @@ -3432,19 +3882,14 @@ impl ExtensionManager { } } - // Refresh tunnel_url in case it wasn't set at startup - if let Some(ref tunnel_url) = self.tunnel_url { - let mut config_updates = std::collections::HashMap::new(); - config_updates.insert( - "tunnel_url".to_string(), - serde_json::Value::String(tunnel_url.clone()), - ); + if !config_updates.is_empty() { existing_channel.update_config(config_updates).await; + should_rerun_on_start = true; } // Re-call on_start() to trigger webhook registration with the // now-available credentials (e.g., setWebhook for Telegram). - if cred_count > 0 { + if cred_count > 0 || should_rerun_on_start { match existing_channel.call_on_start().await { Ok(_config) => { tracing::info!( @@ -3795,6 +4240,320 @@ impl ExtensionManager { } } + async fn configure_telegram_binding( + &self, + name: &str, + secrets: &std::collections::HashMap, + ) -> Result { + let explicit_token = secrets + .get("telegram_bot_token") + .map(|v| v.trim().to_string()) + .filter(|v| !v.is_empty()); + let bot_token = if let Some(token) = explicit_token.clone() { + token + } else { + match self + .secrets + .get_decrypted(&self.user_id, "telegram_bot_token") + .await + { + Ok(secret) => { + let token = secret.expose().trim().to_string(); + if token.is_empty() { + return Err(ExtensionError::ValidationFailed( + "Telegram bot token is required before owner verification".to_string(), + )); + } + token + } + Err(crate::secrets::SecretError::NotFound(_)) => { + return Err(ExtensionError::ValidationFailed( + "Telegram bot token is required before owner verification".to_string(), + )); + } + Err(err) => { + return Err(ExtensionError::Config(format!( + "Failed to read stored Telegram bot token: {err}" + ))); + } + } + }; + + let existing_owner_id = self.current_channel_owner_id(name).await; + let binding = self + .resolve_telegram_binding(name, &bot_token, existing_owner_id) + .await?; + + match &binding { + TelegramBindingResult::Bound(data) => { + self.set_channel_owner_id(name, data.owner_id).await?; + if let Some(username) = data.bot_username.as_deref() + && let Some(store) = self.store.as_ref() + { + store + .set_setting( + &self.user_id, + &bot_username_setting_key(name), + &serde_json::json!(username), + ) + .await + .map_err(|e| ExtensionError::Config(e.to_string()))?; + } + } + TelegramBindingResult::Pending(challenge) => { + if let Some(deep_link) = challenge.deep_link.as_deref() + && let Some(username) = deep_link + .strip_prefix("https://t.me/") + .and_then(|rest| rest.split('?').next()) + .filter(|value| !value.trim().is_empty()) + && let Some(store) = self.store.as_ref() + { + store + .set_setting( + &self.user_id, + &bot_username_setting_key(name), + &serde_json::json!(username), + ) + .await + .map_err(|e| ExtensionError::Config(e.to_string()))?; + } + } + } + + Ok(binding) + } + + async fn resolve_telegram_binding( + &self, + name: &str, + bot_token: &str, + existing_owner_id: Option, + ) -> Result { + #[cfg(test)] + if let Some(resolver) = self.test_telegram_binding_resolver.read().await.as_ref() { + return resolver(bot_token, existing_owner_id); + } + + let client = reqwest::Client::builder() + .timeout(std::time::Duration::from_secs(30)) + .build() + .map_err(|e| ExtensionError::Other(e.to_string()))?; + + let get_me_url = format!("https://api.telegram.org/bot{bot_token}/getMe"); + let get_me_resp = client + .get(&get_me_url) + .send() + .await + .map_err(|e| telegram_request_error("getMe", &e))?; + let get_me_status = get_me_resp.status(); + if !get_me_status.is_success() { + return Err(ExtensionError::ValidationFailed(format!( + "Telegram token validation failed (HTTP {get_me_status})" + ))); + } + + let get_me: TelegramGetMeResponse = get_me_resp + .json() + .await + .map_err(|e| telegram_response_parse_error("getMe", &e))?; + if !get_me.ok { + return Err(ExtensionError::ValidationFailed( + get_me + .description + .unwrap_or_else(|| "Telegram getMe returned ok=false".to_string()), + )); + } + + let bot_username = get_me + .result + .and_then(|result| result.username) + .filter(|username| !username.trim().is_empty()); + + if let Some(owner_id) = existing_owner_id { + self.clear_pending_telegram_verification(name).await; + return Ok(TelegramBindingResult::Bound(TelegramBindingData { + owner_id, + bot_username: bot_username.clone(), + binding_state: TelegramOwnerBindingState::Existing, + })); + } + + let pending_challenge = self.get_pending_telegram_verification(name).await; + + let challenge = if let Some(challenge) = pending_challenge { + challenge + } else { + return Ok(TelegramBindingResult::Pending( + self.issue_telegram_verification_challenge( + &client, + name, + bot_token, + bot_username.as_deref(), + ) + .await?, + )); + }; + + let now = unix_timestamp_secs(); + if challenge.expires_at_unix <= now { + self.clear_pending_telegram_verification(name).await; + return Ok(TelegramBindingResult::Pending( + self.issue_telegram_verification_challenge( + &client, + name, + bot_token, + bot_username.as_deref(), + ) + .await?, + )); + } + + let deadline = std::time::Instant::now() + + std::time::Duration::from_secs(TELEGRAM_OWNER_BIND_TIMEOUT_SECS); + let mut offset = 0_i64; + + while std::time::Instant::now() < deadline { + let remaining_secs = deadline + .saturating_duration_since(std::time::Instant::now()) + .as_secs() + .max(1); + let poll_timeout_secs = TELEGRAM_GET_UPDATES_TIMEOUT_SECS.min(remaining_secs); + + let resp = client + .get(format!( + "https://api.telegram.org/bot{bot_token}/getUpdates" + )) + .query(&[ + ("offset", offset.to_string()), + ("timeout", poll_timeout_secs.to_string()), + ( + "allowed_updates", + "[\"message\",\"edited_message\"]".to_string(), + ), + ]) + .send() + .await + .map_err(|e| telegram_request_error("getUpdates", &e))?; + + if !resp.status().is_success() { + return Err(ExtensionError::Other(format!( + "Telegram getUpdates failed (HTTP {})", + resp.status() + ))); + } + + let updates: TelegramGetUpdatesResponse = resp + .json() + .await + .map_err(|e| telegram_response_parse_error("getUpdates", &e))?; + + if !updates.ok { + return Err(ExtensionError::Other(updates.description.unwrap_or_else( + || "Telegram getUpdates returned ok=false".to_string(), + ))); + } + + let mut bound_owner_id = None; + for update in updates.result { + offset = offset.max(update.update_id + 1); + let message = update.message.or(update.edited_message); + if let Some(message) = message + && message.chat.chat_type == "private" + && let Some(from) = message.from + && !from.is_bot + && let Some(text) = message.text.as_deref() + && telegram_message_matches_verification_code(text, &challenge.code) + { + bound_owner_id = Some(from.id); + } + } + + if let Some(owner_id) = bound_owner_id { + if let Err(err) = send_telegram_text_message( + &client, + &format!("https://api.telegram.org/bot{bot_token}/sendMessage"), + owner_id, + "Verification received. Finishing setup...", + ) + .await + { + tracing::warn!( + channel = name, + owner_id, + error = %err, + "Failed to send Telegram verification acknowledgment" + ); + } + + self.clear_pending_telegram_verification(name).await; + if offset > 0 { + let _ = client + .get(format!( + "https://api.telegram.org/bot{bot_token}/getUpdates" + )) + .query(&[("offset", offset.to_string()), ("timeout", "0".to_string())]) + .send() + .await; + } + + return Ok(TelegramBindingResult::Bound(TelegramBindingData { + owner_id, + bot_username, + binding_state: TelegramOwnerBindingState::VerifiedNow, + })); + } + } + + self.clear_pending_telegram_verification(name).await; + Err(ExtensionError::ValidationFailed( + "Telegram owner verification timed out. Request a new code and try again.".to_string(), + )) + } + + async fn notify_telegram_owner_verified( + &self, + channel_name: &str, + binding: Option<&TelegramBindingData>, + ) { + let Some(binding) = binding else { + return; + }; + if binding.binding_state != TelegramOwnerBindingState::VerifiedNow { + return; + } + + let channel_manager = { + let rt_guard = self.channel_runtime.read().await; + rt_guard.as_ref().map(|rt| Arc::clone(&rt.channel_manager)) + }; + let Some(channel_manager) = channel_manager else { + tracing::debug!( + channel = channel_name, + owner_id = binding.owner_id, + "Skipping Telegram owner confirmation message because channel runtime is unavailable" + ); + return; + }; + + if let Err(err) = channel_manager + .broadcast( + channel_name, + &binding.owner_id.to_string(), + OutgoingResponse::text( + "Telegram owner verified. This bot is now active and ready for you.", + ), + ) + .await + { + tracing::warn!( + channel = channel_name, + owner_id = binding.owner_id, + error = %err, + "Failed to send Telegram owner verification confirmation" + ); + } + } + /// Save setup secrets for an extension, validating names against the capabilities schema. /// /// Configure secrets for an extension: validate, store, auto-generate, and activate. @@ -3980,6 +4739,26 @@ impl ExtensionManager { } } + let mut telegram_binding = None; + if kind == ExtensionKind::WasmChannel && name == TELEGRAM_CHANNEL_NAME { + match self.configure_telegram_binding(name, secrets).await? { + TelegramBindingResult::Bound(binding) => { + telegram_binding = Some(binding); + } + TelegramBindingResult::Pending(verification) => { + return Ok(ConfigureResult { + message: format!( + "Configuration saved for '{}'. {}", + name, verification.instructions + ), + activated: false, + auth_url: None, + verification: Some(verification), + }); + } + } + } + // For tools, save and attempt auto-activation, then check auth. if kind == ExtensionKind::WasmTool { match self.activate_wasm_tool(name).await { @@ -4031,6 +4810,7 @@ impl ExtensionManager { message, activated: true, auth_url, + verification: None, }); } Err(e) => { @@ -4043,6 +4823,7 @@ impl ExtensionManager { message: format!("Configuration saved for '{}'.", name), activated: false, auth_url: None, + verification: None, }); } } @@ -4060,6 +4841,7 @@ impl ExtensionManager { message: format!("Configuration saved for '{}'.", name), activated: false, auth_url: None, + verification: None, }); } }; @@ -4068,13 +4850,26 @@ impl ExtensionManager { Ok(result) => { self.activation_errors.write().await.remove(name); self.broadcast_extension_status(name, "active", None).await; - Ok(ConfigureResult { - message: format!( + if name == TELEGRAM_CHANNEL_NAME { + self.notify_telegram_owner_verified(name, telegram_binding.as_ref()) + .await; + } + let message = if name == TELEGRAM_CHANNEL_NAME { + format!( + "Configuration saved, Telegram owner verified, and '{}' activated. {}", + name, result.message + ) + } else { + format!( "Configuration saved and '{}' activated. {}", name, result.message - ), + ) + }; + Ok(ConfigureResult { + message, activated: true, auth_url: None, + verification: None, }) } Err(e) => { @@ -4097,6 +4892,7 @@ impl ExtensionManager { ), activated: false, auth_url: None, + verification: None, }) } } @@ -4456,13 +5252,101 @@ fn combine_install_errors( #[cfg(test)] mod tests { + use std::fmt::Debug; use std::sync::Arc; + use async_trait::async_trait; + use futures::stream; + + use crate::channels::wasm::{ + ChannelCapabilities, LoadedChannel, PreparedChannelModule, WasmChannel, WasmChannelRouter, + WasmChannelRuntime, WasmChannelRuntimeConfig, bot_username_setting_key, + }; + use crate::channels::{ + Channel, ChannelManager, IncomingMessage, MessageStream, OutgoingResponse, StatusUpdate, + }; use crate::extensions::ExtensionManager; use crate::extensions::manager::{ - FallbackDecision, combine_install_errors, fallback_decision, infer_kind_from_url, + ChannelRuntimeState, FallbackDecision, TelegramBindingData, TelegramBindingResult, + TelegramOwnerBindingState, build_wasm_channel_runtime_config_updates, + combine_install_errors, fallback_decision, infer_kind_from_url, send_telegram_text_message, + telegram_message_matches_verification_code, }; - use crate::extensions::{ExtensionError, ExtensionKind, ExtensionSource, InstallResult}; + use crate::extensions::{ + ExtensionError, ExtensionKind, ExtensionSource, InstallResult, VerificationChallenge, + }; + use crate::pairing::PairingStore; + + fn require(condition: bool, message: impl Into) -> Result<(), String> { + if condition { + Ok(()) + } else { + Err(message.into()) + } + } + + fn require_eq(actual: T, expected: T, label: &str) -> Result<(), String> + where + T: PartialEq + Debug, + { + if actual == expected { + Ok(()) + } else { + Err(format!( + "{label} mismatch: expected {:?}, got {:?}", + expected, actual + )) + } + } + + #[derive(Clone)] + struct RecordingChannel { + name: String, + broadcasts: Arc>>, + } + + #[async_trait] + impl Channel for RecordingChannel { + fn name(&self) -> &str { + &self.name + } + + async fn start(&self) -> Result { + Ok(Box::pin(stream::empty())) + } + + async fn respond( + &self, + _msg: &IncomingMessage, + _response: OutgoingResponse, + ) -> Result<(), crate::error::ChannelError> { + Ok(()) + } + + async fn send_status( + &self, + _status: StatusUpdate, + _metadata: &serde_json::Value, + ) -> Result<(), crate::error::ChannelError> { + Ok(()) + } + + async fn broadcast( + &self, + user_id: &str, + response: OutgoingResponse, + ) -> Result<(), crate::error::ChannelError> { + self.broadcasts + .lock() + .await + .push((user_id.to_string(), response)); + Ok(()) + } + + async fn health_check(&self) -> Result<(), crate::error::ChannelError> { + Ok(()) + } + } #[test] fn test_infer_kind_from_url() { @@ -4848,7 +5732,10 @@ mod tests { std::fs::create_dir_all(&channels_dir).ok(); let master_key = secrecy::SecretString::from(TEST_CRYPTO_KEY.to_string()); - let crypto = Arc::new(SecretsCrypto::new(master_key).unwrap()); + let crypto = Arc::new( + SecretsCrypto::new(master_key) + .unwrap_or_else(|err| panic!("failed to construct test crypto: {err}")), + ); ExtensionManager::new( Arc::new(McpSessionManager::new()), @@ -4869,6 +5756,57 @@ mod tests { ) } + fn make_test_loaded_channel( + runtime: Arc, + name: &str, + pairing_store: Arc, + ) -> LoadedChannel { + let prepared = Arc::new(PreparedChannelModule::for_testing( + name, + format!("Mock channel: {}", name), + )); + let capabilities = + ChannelCapabilities::for_channel(name).with_path(format!("/webhook/{}", name)); + + LoadedChannel { + channel: WasmChannel::new( + runtime, + prepared, + capabilities, + "default", + "{}".to_string(), + pairing_store, + None, + ), + capabilities_file: None, + } + } + + #[test] + fn test_telegram_hot_activation_runtime_config_includes_owner_id() -> Result<(), String> { + let updates = build_wasm_channel_runtime_config_updates( + Some("https://example.test"), + Some("secret-123"), + Some(424242), + ); + + require_eq( + updates.get("tunnel_url"), + Some(&serde_json::json!("https://example.test")), + "tunnel_url", + )?; + require_eq( + updates.get("webhook_secret"), + Some(&serde_json::json!("secret-123")), + "webhook_secret", + )?; + require_eq( + updates.get("owner_id"), + Some(&serde_json::json!(424242)), + "owner_id", + ) + } + #[tokio::test] async fn test_current_channel_owner_id_uses_runtime_state() -> Result<(), String> { let manager = make_manager_with_temp_dirs(); @@ -4902,6 +5840,280 @@ mod tests { Ok(()) } + #[cfg(feature = "libsql")] + #[tokio::test] + async fn test_telegram_hot_activation_configure_uses_mock_loader_and_persists_state() + -> Result<(), String> { + let dir = tempfile::tempdir().map_err(|err| format!("temp dir: {err}"))?; + let channels_dir = dir.path().join("channels"); + std::fs::create_dir_all(&channels_dir).map_err(|err| format!("channels dir: {err}"))?; + std::fs::write(channels_dir.join("telegram.wasm"), b"mock") + .map_err(|err| format!("write wasm: {err}"))?; + std::fs::write( + channels_dir.join("telegram.capabilities.json"), + serde_json::to_vec(&serde_json::json!({ + "type": "channel", + "name": "telegram", + "setup": { + "required_secrets": [ + { + "name": "telegram_bot_token", + "prompt": "Enter your Telegram Bot API token (from @BotFather)", + "optional": false + } + ] + }, + "capabilities": { + "channel": { + "allowed_paths": ["/webhook/telegram"] + } + }, + "config": { + "owner_id": null + } + })) + .map_err(|err| format!("serialize capabilities: {err}"))?, + ) + .map_err(|err| format!("write capabilities: {err}"))?; + + let (db, _db_tmp) = crate::testing::test_db().await; + let manager = { + use crate::secrets::{InMemorySecretsStore, SecretsCrypto}; + use crate::testing::credentials::TEST_CRYPTO_KEY; + use crate::tools::ToolRegistry; + use crate::tools::mcp::process::McpProcessManager; + use crate::tools::mcp::session::McpSessionManager; + + let master_key = secrecy::SecretString::from(TEST_CRYPTO_KEY.to_string()); + let crypto = Arc::new( + SecretsCrypto::new(master_key) + .unwrap_or_else(|err| panic!("failed to construct test crypto: {err}")), + ); + + ExtensionManager::new( + Arc::new(McpSessionManager::new()), + Arc::new(McpProcessManager::new()), + Arc::new(InMemorySecretsStore::new(crypto)), + Arc::new(ToolRegistry::new()), + None, + None, + dir.path().join("tools"), + channels_dir.clone(), + None, + "test".to_string(), + Some(db), + Vec::new(), + ) + }; + + let channel_manager = Arc::new(ChannelManager::new()); + let runtime = Arc::new( + WasmChannelRuntime::new(WasmChannelRuntimeConfig::for_testing()) + .map_err(|err| format!("runtime: {err}"))?, + ); + let pairing_store = Arc::new(PairingStore::with_base_dir( + dir.path().join("pairing-state"), + )); + let router = Arc::new(WasmChannelRouter::new()); + manager + .set_channel_runtime( + Arc::clone(&channel_manager), + Arc::clone(&runtime), + Arc::clone(&pairing_store), + Arc::clone(&router), + std::collections::HashMap::new(), + ) + .await; + manager + .set_test_wasm_channel_loader(Arc::new({ + let runtime = Arc::clone(&runtime); + let pairing_store = Arc::clone(&pairing_store); + move |name| { + Ok(make_test_loaded_channel( + Arc::clone(&runtime), + name, + Arc::clone(&pairing_store), + )) + } + })) + .await; + manager + .set_test_telegram_binding_resolver(Arc::new(|_token, existing_owner_id| { + if existing_owner_id.is_some() { + return Err(ExtensionError::Other( + "owner binding should be derived during setup".to_string(), + )); + } + Ok(TelegramBindingResult::Bound(TelegramBindingData { + owner_id: 424242, + bot_username: Some("test_hot_bot".to_string()), + binding_state: TelegramOwnerBindingState::VerifiedNow, + })) + })) + .await; + + manager + .activation_errors + .write() + .await + .insert("telegram".to_string(), "stale failure".to_string()); + + let result = manager + .configure( + "telegram", + &std::collections::HashMap::from([( + "telegram_bot_token".to_string(), + "123456789:ABCdefGhI".to_string(), + )]), + ) + .await + .map_err(|err| format!("configure succeeds: {err}"))?; + + require(result.activated, "expected hot activation to succeed")?; + require( + result.message.contains("activated"), + format!("unexpected message: {}", result.message), + )?; + require( + !manager + .activation_errors + .read() + .await + .contains_key("telegram"), + "successful configure should clear stale activation errors", + )?; + require( + manager + .active_channel_names + .read() + .await + .contains("telegram"), + "telegram should be marked active after hot activation", + )?; + require( + channel_manager.get_channel("telegram").await.is_some(), + "telegram should be hot-added to the running channel manager", + )?; + require_eq( + manager.load_persisted_active_channels().await, + vec!["telegram".to_string()], + "persisted active channels", + )?; + require_eq( + manager.current_channel_owner_id("telegram").await, + Some(424242), + "current owner id", + )?; + require( + manager.has_wasm_channel_owner_binding("telegram").await, + "telegram should report an explicit owner binding after setup".to_string(), + )?; + let owner_setting = manager + .store + .as_ref() + .ok_or_else(|| "db-backed manager missing".to_string())? + .get_setting("test", "channels.wasm_channel_owner_ids.telegram") + .await + .map_err(|err| format!("owner_id setting query: {err}"))?; + require_eq( + owner_setting, + Some(serde_json::json!(424242)), + "owner setting", + )?; + let bot_username_setting = manager + .store + .as_ref() + .ok_or_else(|| "db-backed manager missing".to_string())? + .get_setting("test", &bot_username_setting_key("telegram")) + .await + .map_err(|err| format!("bot username setting query: {err}"))?; + require_eq( + bot_username_setting, + Some(serde_json::json!("test_hot_bot")), + "bot username setting", + ) + } + + #[tokio::test] + async fn test_telegram_hot_activation_returns_verification_challenge_before_binding() + -> Result<(), String> { + let dir = tempfile::tempdir().map_err(|err| format!("temp dir: {err}"))?; + let channels_dir = dir.path().join("channels"); + std::fs::create_dir_all(&channels_dir).map_err(|err| format!("channels dir: {err}"))?; + std::fs::write(channels_dir.join("telegram.wasm"), b"mock") + .map_err(|err| format!("write wasm: {err}"))?; + std::fs::write( + channels_dir.join("telegram.capabilities.json"), + serde_json::to_vec(&serde_json::json!({ + "type": "channel", + "name": "telegram", + "setup": { + "required_secrets": [ + { + "name": "telegram_bot_token", + "prompt": "Enter your Telegram Bot API token (from @BotFather)", + "optional": false + } + ] + }, + "capabilities": { + "channel": { + "allowed_paths": ["/webhook/telegram"] + } + } + })) + .map_err(|err| format!("serialize capabilities: {err}"))?, + ) + .map_err(|err| format!("write capabilities: {err}"))?; + + let manager = + make_manager_custom_dirs(dir.path().join("tools"), dir.path().join("channels")); + manager + .set_test_telegram_binding_resolver(Arc::new(|_token, existing_owner_id| { + if existing_owner_id.is_some() { + return Err(ExtensionError::Other( + "owner binding should not exist before verification".to_string(), + )); + } + Ok(TelegramBindingResult::Pending(VerificationChallenge { + code: "iclaw-7qk2m9".to_string(), + instructions: + "Send `/start iclaw-7qk2m9` to @test_hot_bot in Telegram. IronClaw will finish setup automatically." + .to_string(), + deep_link: Some("https://t.me/test_hot_bot?start=iclaw-7qk2m9".to_string()), + })) + })) + .await; + + let result = manager + .configure( + "telegram", + &std::collections::HashMap::from([( + "telegram_bot_token".to_string(), + "123456789:ABCdefGhI".to_string(), + )]), + ) + .await + .map_err(|err| format!("configure returned challenge: {err}"))?; + + require( + !result.activated, + "expected setup to pause for verification", + )?; + require( + result.verification.as_ref().map(|v| v.code.as_str()) == Some("iclaw-7qk2m9"), + "expected verification code in configure result", + )?; + require( + !manager + .active_channel_names + .read() + .await + .contains("telegram"), + "telegram should not activate until owner verification completes", + ) + } + #[cfg(feature = "libsql")] #[tokio::test] async fn test_current_channel_owner_id_uses_store_fallback() -> Result<(), String> { @@ -4992,6 +6204,104 @@ mod tests { Ok(()) } + #[tokio::test] + async fn test_notify_telegram_owner_verified_sends_confirmation_for_new_binding() + -> Result<(), String> { + let dir = tempfile::tempdir().map_err(|err| format!("temp dir: {err}"))?; + let manager = + make_manager_custom_dirs(dir.path().join("tools"), dir.path().join("channels")); + + let channel_manager = Arc::new(ChannelManager::new()); + let broadcasts = Arc::new(tokio::sync::Mutex::new(Vec::new())); + channel_manager + .add(Box::new(RecordingChannel { + name: "telegram".to_string(), + broadcasts: Arc::clone(&broadcasts), + })) + .await; + + manager + .channel_runtime + .write() + .await + .replace(ChannelRuntimeState { + channel_manager, + wasm_channel_runtime: Arc::new( + WasmChannelRuntime::new(WasmChannelRuntimeConfig::for_testing()) + .map_err(|err| format!("runtime: {err}"))?, + ), + pairing_store: Arc::new(PairingStore::with_base_dir(dir.path().join("pairing"))), + wasm_channel_router: Arc::new(WasmChannelRouter::new()), + wasm_channel_owner_ids: std::collections::HashMap::new(), + }); + + manager + .notify_telegram_owner_verified( + "telegram", + Some(&TelegramBindingData { + owner_id: 424242, + bot_username: Some("test_hot_bot".to_string()), + binding_state: TelegramOwnerBindingState::VerifiedNow, + }), + ) + .await; + + let sent = broadcasts.lock().await; + require_eq(sent.len(), 1, "broadcast count")?; + require_eq(sent[0].0.clone(), "424242".to_string(), "broadcast user_id")?; + require( + sent[0].1.content.contains("Telegram owner verified"), + "confirmation DM should acknowledge owner verification", + ) + } + + #[tokio::test] + async fn test_notify_telegram_owner_verified_skips_existing_binding() -> Result<(), String> { + let dir = tempfile::tempdir().map_err(|err| format!("temp dir: {err}"))?; + let manager = + make_manager_custom_dirs(dir.path().join("tools"), dir.path().join("channels")); + + let channel_manager = Arc::new(ChannelManager::new()); + let broadcasts = Arc::new(tokio::sync::Mutex::new(Vec::new())); + channel_manager + .add(Box::new(RecordingChannel { + name: "telegram".to_string(), + broadcasts: Arc::clone(&broadcasts), + })) + .await; + + manager + .channel_runtime + .write() + .await + .replace(ChannelRuntimeState { + channel_manager, + wasm_channel_runtime: Arc::new( + WasmChannelRuntime::new(WasmChannelRuntimeConfig::for_testing()) + .map_err(|err| format!("runtime: {err}"))?, + ), + pairing_store: Arc::new(PairingStore::with_base_dir(dir.path().join("pairing"))), + wasm_channel_router: Arc::new(WasmChannelRouter::new()), + wasm_channel_owner_ids: std::collections::HashMap::new(), + }); + + manager + .notify_telegram_owner_verified( + "telegram", + Some(&TelegramBindingData { + owner_id: 424242, + bot_username: Some("test_hot_bot".to_string()), + binding_state: TelegramOwnerBindingState::Existing, + }), + ) + .await; + + require( + broadcasts.lock().await.is_empty(), + "existing owner bindings should not trigger another confirmation DM", + ) + } + // ── resolve_env_credentials tests ──────────────────────────────────── #[test] @@ -5683,6 +6993,141 @@ mod tests { ); } + #[tokio::test] + async fn test_telegram_auth_instructions_include_owner_verification_guidance() + -> Result<(), String> { + let dir = tempfile::tempdir().map_err(|err| format!("temp dir: {err}"))?; + let channels_dir = dir.path().join("channels"); + std::fs::create_dir_all(&channels_dir).map_err(|err| format!("channels dir: {err}"))?; + + std::fs::write(channels_dir.join("telegram.wasm"), b"\0asm fake") + .map_err(|err| format!("write wasm: {err}"))?; + let caps = serde_json::json!({ + "type": "channel", + "name": "telegram", + "setup": { + "required_secrets": [ + { + "name": "telegram_bot_token", + "prompt": "Enter your Telegram Bot API token (from @BotFather)" + } + ] + } + }); + std::fs::write( + channels_dir.join("telegram.capabilities.json"), + serde_json::to_string(&caps).map_err(|err| format!("serialize caps: {err}"))?, + ) + .map_err(|err| format!("write caps: {err}"))?; + + let mgr = make_manager_custom_dirs(dir.path().join("tools"), channels_dir); + + let result = mgr + .auth("telegram") + .await + .map_err(|err| format!("telegram auth status: {err}"))?; + let instructions = result + .instructions() + .ok_or_else(|| "awaiting token instructions missing".to_string())?; + + require( + instructions.contains("Telegram Bot API token"), + "telegram auth instructions should still ask for the bot token", + )?; + require( + instructions.contains("one-time verification code") + && instructions.contains("/start CODE") + && instructions.contains("finish setup automatically"), + "telegram auth instructions should explain the owner verification step", + ) + } + + #[tokio::test] + async fn test_send_telegram_text_message_posts_expected_payload() -> Result<(), String> { + use axum::{Json, Router, extract::State, routing::post}; + + let payloads = Arc::new(tokio::sync::Mutex::new(Vec::::new())); + + async fn handler( + State(payloads): State>>>, + Json(payload): Json, + ) -> Json { + payloads.lock().await.push(payload); + Json(serde_json::json!({ "ok": true, "result": {} })) + } + + let app = Router::new() + .route("/sendMessage", post(handler)) + .with_state(Arc::clone(&payloads)); + let listener = tokio::net::TcpListener::bind("127.0.0.1:0") + .await + .map_err(|err| format!("bind listener: {err}"))?; + let addr = listener + .local_addr() + .map_err(|err| format!("listener addr: {err}"))?; + let server = tokio::spawn(async move { + let _ = axum::serve(listener, app).await; + }); + + let client = reqwest::Client::new(); + send_telegram_text_message( + &client, + &format!("http://{addr}/sendMessage"), + 424242, + "Verification received. Finishing setup...", + ) + .await + .map_err(|err| format!("send message: {err}"))?; + + let captured = tokio::time::timeout(std::time::Duration::from_secs(1), async { + loop { + let maybe_payload = { payloads.lock().await.first().cloned() }; + if let Some(payload) = maybe_payload { + break payload; + } + tokio::time::sleep(std::time::Duration::from_millis(10)).await; + } + }) + .await + .map_err(|_| "timed out waiting for sendMessage payload".to_string())?; + + server.abort(); + + require_eq( + captured["chat_id"].clone(), + serde_json::json!(424242), + "chat_id", + )?; + require_eq( + captured["text"].clone(), + serde_json::json!("Verification received. Finishing setup..."), + "text", + ) + } + + #[test] + fn test_telegram_message_matches_verification_code_variants() -> Result<(), String> { + require( + telegram_message_matches_verification_code("iclaw-7qk2m9", "iclaw-7qk2m9"), + "plain verification code should match", + )?; + require( + telegram_message_matches_verification_code("/start iclaw-7qk2m9", "iclaw-7qk2m9"), + "/start payload should match", + )?; + require( + telegram_message_matches_verification_code( + "Hi! My code is: iclaw-7qk2m9", + "iclaw-7qk2m9", + ), + "conversational message containing the code should match", + )?; + require( + !telegram_message_matches_verification_code("/start something-else", "iclaw-7qk2m9"), + "wrong verification code should not match", + ) + } + #[tokio::test] async fn test_configure_dispatches_activation_by_kind() { // Regression: configure() must dispatch to the correct activation method diff --git a/src/extensions/mod.rs b/src/extensions/mod.rs index 428d9b42..2a4d189f 100644 --- a/src/extensions/mod.rs +++ b/src/extensions/mod.rs @@ -453,6 +453,17 @@ pub struct ActivateResult { /// /// Returned by `ExtensionManager::configure()`, the single entrypoint /// for providing secrets to any extension (chat auth, gateway setup, etc.). +#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] +pub struct VerificationChallenge { + /// One-time code the user must send back to the integration. + pub code: String, + /// Human-readable instructions for completing verification. + pub instructions: String, + /// Deep-link or shortcut URL that prefills the verification payload when supported. + #[serde(skip_serializing_if = "Option::is_none")] + pub deep_link: Option, +} + #[derive(Debug, Clone)] pub struct ConfigureResult { /// Human-readable status message. @@ -461,6 +472,8 @@ pub struct ConfigureResult { pub activated: bool, /// OAuth authorization URL (if OAuth flow was started). pub auth_url: Option, + /// Pending manual verification challenge (for Telegram owner binding, etc.). + pub verification: Option, } fn default_true() -> bool { diff --git a/src/history/store.rs b/src/history/store.rs index 17fa96fd..04e3167f 100644 --- a/src/history/store.rs +++ b/src/history/store.rs @@ -227,6 +227,7 @@ impl Store { job_id: row.get("id"), state, user_id: row.get::<_, String>("user_id"), + requester_id: None, conversation_id: row.get("conversation_id"), title: row.get("title"), description: row.get("description"), diff --git a/src/llm/anthropic_oauth.rs b/src/llm/anthropic_oauth.rs index 12c527f1..ae6674dc 100644 --- a/src/llm/anthropic_oauth.rs +++ b/src/llm/anthropic_oauth.rs @@ -143,12 +143,14 @@ impl AnthropicOAuthProvider { if !status.is_success() { // Parse Retry-After header before consuming the body. + // Falls back to 60s if header is missing or unparseable (prevents "retry after None" errors). let retry_after = response .headers() .get("retry-after") .and_then(|v| v.to_str().ok()) .and_then(|v| v.parse::().ok()) - .map(std::time::Duration::from_secs); + .map(std::time::Duration::from_secs) + .or(Some(std::time::Duration::from_secs(60))); let response_text = response .text() @@ -705,4 +707,78 @@ mod tests { // Subsequent reads see the updated token assert_eq!(token.read().unwrap().expose_secret(), "new_token"); } + + // -- Retry-After header parsing tests (regression for rate limit "None" bug) -- + + #[test] + fn test_retry_after_parsing_delay_seconds() { + // Verify delay-seconds format is parsed correctly + let header_value = "45"; + let duration = parse_retry_after_anthropic_for_test(header_value); + assert_eq!( + duration, + Some(std::time::Duration::from_secs(45)), + "Should parse delay-seconds format" + ); + } + + #[test] + fn test_retry_after_fallback_missing_header() { + // Regression test: When Retry-After header is missing, + // should fall back to 60s instead of None + let duration = parse_retry_after_anthropic_for_test(""); + assert_eq!( + duration, + Some(std::time::Duration::from_secs(60)), + "Missing header should fallback to 60s" + ); + } + + #[test] + fn test_retry_after_fallback_invalid_format() { + // Regression test: When Retry-After header is in unexpected format, + // should fall back to 60s instead of None + let invalid_formats = vec![ + "invalid", + "not-a-number", + "30.5", // float instead of int + "abc123", + "Mon, 02 Mar 2026 18:00:00 GMT", // RFC2822 not supported in anthropic version + ]; + + for format in invalid_formats { + let duration = parse_retry_after_anthropic_for_test(format); + assert_eq!( + duration, + Some(std::time::Duration::from_secs(60)), + "Invalid format '{}' should fallback to 60s", + format + ); + } + } + + #[test] + fn test_retry_after_zero_seconds_accepted() { + // Verify zero seconds is a valid retry delay + let duration = parse_retry_after_anthropic_for_test("0"); + assert_eq!(duration, Some(std::time::Duration::ZERO)); + } + + #[test] + fn test_retry_after_large_number() { + // Verify large numbers are accepted + let duration = parse_retry_after_anthropic_for_test("7200"); // 2 hours + assert_eq!(duration, Some(std::time::Duration::from_secs(7200))); + } + + /// Helper function to test Retry-After header parsing logic for Anthropic + /// (simulates the parsing done in send_request without actual HTTP, including fallback) + fn parse_retry_after_anthropic_for_test(header_value: &str) -> Option { + header_value + .trim() + .parse::() + .ok() + .map(std::time::Duration::from_secs) + .or(Some(std::time::Duration::from_secs(60))) + } } diff --git a/src/llm/config.rs b/src/llm/config.rs index 8b7d41c3..413f80e2 100644 --- a/src/llm/config.rs +++ b/src/llm/config.rs @@ -138,6 +138,30 @@ pub struct LlmConfig { /// Default: 120. Increase for local LLMs (Ollama, vLLM, LM Studio) that /// need more time for prompt evaluation on consumer hardware. pub request_timeout_secs: u64, + /// Generic cheap/fast model for lightweight tasks (heartbeat, routing, evaluation). + /// Works with any backend. Set via `LLM_CHEAP_MODEL` env var. + /// When set, takes priority over the NearAI-specific `NEARAI_CHEAP_MODEL`. + pub cheap_model: Option, + /// Enable cascade mode for smart routing (retry with primary if cheap model + /// response seems uncertain). Default: true. Set via `SMART_ROUTING_CASCADE`. + pub smart_routing_cascade: bool, +} + +impl LlmConfig { + /// Resolve the effective cheap model name. + /// + /// Resolution order: + /// 1. `LLM_CHEAP_MODEL` (generic, works with any backend) + /// 2. `NEARAI_CHEAP_MODEL` (NearAI-only, backward compatibility) + pub fn cheap_model_name(&self) -> Option<&str> { + self.cheap_model.as_deref().or_else(|| { + if self.backend == "nearai" { + self.nearai.cheap_model.as_deref() + } else { + None + } + }) + } } /// NEAR AI configuration. diff --git a/src/llm/mod.rs b/src/llm/mod.rs index ef2009c4..b896c80d 100644 --- a/src/llm/mod.rs +++ b/src/llm/mod.rs @@ -378,32 +378,61 @@ fn create_ollama_from_registry( /// Create a cheap/fast LLM provider for lightweight tasks (heartbeat, routing, evaluation). /// -/// Uses `NEARAI_CHEAP_MODEL` if set, otherwise falls back to the main provider. -/// Currently only supports NEAR AI backend. +/// Resolution order: +/// 1. `LLM_CHEAP_MODEL` (generic, works with any backend) +/// 2. `NEARAI_CHEAP_MODEL` (NearAI-only, backward compatibility) +/// +/// Returns `None` if no cheap model is configured. pub fn create_cheap_llm_provider( config: &LlmConfig, session: Arc, ) -> Result>, LlmError> { - let Some(ref cheap_model) = config.nearai.cheap_model else { + let Some(cheap_model) = config.cheap_model_name() else { return Ok(None); }; - if config.backend != "nearai" { - tracing::warn!( - "NEARAI_CHEAP_MODEL is set but LLM_BACKEND is '{}', not nearai. \ - Cheap model setting will be ignored.", - config.backend - ); - return Ok(None); + create_cheap_provider_for_backend(config, session, cheap_model) +} + +/// Create a cheap provider for a specific backend. +/// +/// Handles backend-specific provider construction: +/// - `nearai` — clones NearAiConfig, swaps model, uses `create_llm_provider_with_config` +/// - `bedrock` — returns error (smart routing not yet supported) +/// - All others — clones `RegistryProviderConfig`, swaps model, uses `create_registry_provider` +fn create_cheap_provider_for_backend( + config: &LlmConfig, + session: Arc, + cheap_model: &str, +) -> Result>, LlmError> { + if config.backend == "nearai" { + let mut cheap_config = config.nearai.clone(); + cheap_config.model = cheap_model.to_string(); + let provider = + create_llm_provider_with_config(&cheap_config, session, config.request_timeout_secs)?; + return Ok(Some(provider)); } - let mut cheap_config = config.nearai.clone(); - cheap_config.model = cheap_model.clone(); + if config.backend == "bedrock" { + return Err(LlmError::RequestFailed { + provider: "bedrock".to_string(), + reason: "Smart routing with cheap model is not supported for Bedrock yet".to_string(), + }); + } - Ok(Some(Arc::new(NearAiChatProvider::new( - cheap_config, - session, - )?))) + // Registry-based provider: clone config and swap model + let reg_config = config.provider.as_ref().ok_or_else(|| LlmError::RequestFailed { + provider: config.backend.clone(), + reason: format!( + "Cannot create cheap provider for backend '{}': no registry provider config available", + config.backend + ), + })?; + + let mut cheap_reg_config = reg_config.clone(); + cheap_reg_config.model = cheap_model.to_string(); + let provider = create_registry_provider(&cheap_reg_config, config.request_timeout_secs)?; + Ok(Some(provider)) } /// Build the full LLM provider chain with all configured wrappers. @@ -451,14 +480,15 @@ pub async fn build_provider_chain( }; // 2. Smart routing (cheap/primary split) - let llm: Arc = if let Some(ref cheap_model) = config.nearai.cheap_model { - let mut cheap_config = config.nearai.clone(); - cheap_config.model = cheap_model.clone(); - let cheap = create_llm_provider_with_config( - &cheap_config, - session.clone(), - config.request_timeout_secs, - )?; + let llm: Arc = if let Some(cheap_model) = config.cheap_model_name() { + let cheap = create_cheap_provider_for_backend(config, session.clone(), cheap_model)? + .ok_or_else(|| LlmError::RequestFailed { + provider: config.backend.clone(), + reason: format!( + "Failed to create cheap provider for model '{cheap_model}' on backend '{}'", + config.backend + ), + })?; let cheap: Arc = if retry_config.max_retries > 0 { Arc::new(RetryProvider::new(cheap, retry_config.clone())) } else { @@ -473,7 +503,7 @@ pub async fn build_provider_chain( llm, cheap, SmartRoutingConfig { - cascade_enabled: config.nearai.smart_routing_cascade, + cascade_enabled: config.smart_routing_cascade, ..SmartRoutingConfig::default() }, )) @@ -602,6 +632,8 @@ mod tests { provider: None, bedrock: None, request_timeout_secs: 120, + cheap_model: None, + smart_routing_cascade: true, } } @@ -616,7 +648,7 @@ mod tests { } #[test] - fn test_create_cheap_llm_provider_creates_provider_when_configured() { + fn test_create_cheap_llm_provider_creates_provider_with_nearai_cheap_model() { let mut config = test_llm_config(); config.nearai.cheap_model = Some("cheap-test-model".to_string()); @@ -630,7 +662,26 @@ mod tests { } #[test] - fn test_create_cheap_llm_provider_ignored_for_non_nearai_backend() { + fn test_create_cheap_llm_provider_generic_overrides_nearai() { + let mut config = test_llm_config(); + config.nearai.cheap_model = Some("nearai-cheap".to_string()); + config.cheap_model = Some("generic-cheap".to_string()); + + let session = Arc::new(SessionManager::new(SessionConfig::default())); + let result = create_cheap_llm_provider(&config, session); + + assert!(result.is_ok()); + let provider = result.unwrap(); + assert!(provider.is_some()); + assert_eq!( + provider.unwrap().model_name(), + "generic-cheap", + "LLM_CHEAP_MODEL should take priority over NEARAI_CHEAP_MODEL" + ); + } + + #[test] + fn test_create_cheap_llm_provider_nearai_cheap_ignored_for_non_nearai_backend() { let mut config = test_llm_config(); config.backend = "openai".to_string(); config.nearai.cheap_model = Some("cheap-test-model".to_string()); @@ -639,6 +690,48 @@ mod tests { let result = create_cheap_llm_provider(&config, session); assert!(result.is_ok()); - assert!(result.unwrap().is_none()); + assert!( + result.unwrap().is_none(), + "NEARAI_CHEAP_MODEL should be ignored when backend is not nearai" + ); + } + + #[test] + fn test_create_cheap_llm_provider_bedrock_returns_error() { + let mut config = test_llm_config(); + config.backend = "bedrock".to_string(); + config.cheap_model = Some("cheap-model".to_string()); + + let session = Arc::new(SessionManager::new(SessionConfig::default())); + let result = create_cheap_llm_provider(&config, session); + + assert!( + result.is_err(), + "Bedrock should return an error for cheap model" + ); + } + + #[test] + fn test_cheap_model_name_resolution() { + // Generic takes priority + let mut config = test_llm_config(); + config.cheap_model = Some("generic".to_string()); + config.nearai.cheap_model = Some("nearai".to_string()); + assert_eq!(config.cheap_model_name(), Some("generic")); + + // NearAI fallback when backend is nearai + let mut config = test_llm_config(); + config.nearai.cheap_model = Some("nearai".to_string()); + assert_eq!(config.cheap_model_name(), Some("nearai")); + + // NearAI ignored for non-nearai backend + let mut config = test_llm_config(); + config.backend = "openai".to_string(); + config.nearai.cheap_model = Some("nearai".to_string()); + assert_eq!(config.cheap_model_name(), None); + + // None when nothing configured + let config = test_llm_config(); + assert_eq!(config.cheap_model_name(), None); } } diff --git a/src/llm/models.rs b/src/llm/models.rs index 7022d3cf..daec9df3 100644 --- a/src/llm/models.rs +++ b/src/llm/models.rs @@ -345,5 +345,7 @@ pub(crate) fn build_nearai_model_fetch_config() -> crate::config::LlmConfig { provider: None, bedrock: None, request_timeout_secs: 120, + cheap_model: None, + smart_routing_cascade: false, } } diff --git a/src/llm/nearai_chat.rs b/src/llm/nearai_chat.rs index 57c351ae..364252c5 100644 --- a/src/llm/nearai_chat.rs +++ b/src/llm/nearai_chat.rs @@ -215,6 +215,7 @@ impl NearAiChatProvider { let status = response.status(); // Extract Retry-After header before consuming the response body. // Supports both delay-seconds (RFC 7231 §7.1.3) and HTTP-date formats. + // Falls back to 60s if header is missing or unparseable (prevents "retry after None" errors). let retry_after_header = response .headers() .get("retry-after") @@ -235,7 +236,8 @@ impl NearAiChatProvider { )); } None - }); + }) + .or(Some(std::time::Duration::from_secs(60))); let response_text = response.text().await.map_err(|e| LlmError::RequestFailed { provider: "nearai_chat".to_string(), reason: format!("Failed to read response body: {}", e), @@ -2187,4 +2189,115 @@ mod tests { "http://example.com/api/proxy/v1/chat/completions" ); } + + // -- Retry-After header parsing tests (regression for rate limit "None" bug) -- + + #[test] + fn test_retry_after_parsing_delay_seconds() { + // Verify delay-seconds format (most common) is parsed correctly + let header_value = "30"; + let duration = parse_retry_after_for_test(header_value); + assert_eq!(duration, Some(std::time::Duration::from_secs(30))); + } + + #[test] + fn test_retry_after_parsing_rfc2822_date() { + // Verify HTTP-date (RFC 2822) format is parsed correctly + // Use a date 60 seconds in the future + let now = chrono::Utc::now(); + let future = now + chrono::Duration::seconds(60); + let date_str = future.to_rfc2822(); + + let duration = parse_retry_after_for_test(&date_str); + assert!(duration.is_some()); + let d = duration.unwrap(); + // Allow ±5 seconds of drift due to processing time + assert!( + d.as_secs() >= 55 && d.as_secs() <= 65, + "Expected ~60s, got {}s", + d.as_secs() + ); + } + + #[test] + fn test_retry_after_fallback_missing_header() { + // Regression test: When Retry-After header is missing, + // should fall back to 60s instead of None + let duration = parse_retry_after_for_test(""); + assert_eq!( + duration, + Some(std::time::Duration::from_secs(60)), + "Missing header should fallback to 60s" + ); + } + + #[test] + fn test_retry_after_fallback_invalid_format() { + // Regression test: When Retry-After header is in unexpected format, + // should fall back to 60s instead of None + let invalid_formats = vec![ + "invalid", + "not-a-number", + "30.5", // float instead of int + "abc123", + ]; + + for format in invalid_formats { + let duration = parse_retry_after_for_test(format); + assert_eq!( + duration, + Some(std::time::Duration::from_secs(60)), + "Invalid format '{}' should fallback to 60s", + format + ); + } + } + + #[test] + fn test_retry_after_past_date_returns_zero() { + // When HTTP-date is in the past, should return Duration::ZERO + // (not None, which would trigger immediate retry) + let past = chrono::Utc::now() - chrono::Duration::seconds(60); + let past_date_str = past.to_rfc2822(); + + let duration = parse_retry_after_for_test(&past_date_str); + assert_eq!( + duration, + Some(std::time::Duration::ZERO), + "Past date should return Duration::ZERO, not None" + ); + } + + #[test] + fn test_retry_after_zero_seconds_accepted() { + // Verify zero seconds is a valid retry delay + let duration = parse_retry_after_for_test("0"); + assert_eq!(duration, Some(std::time::Duration::ZERO)); + } + + #[test] + fn test_retry_after_large_number() { + // Verify large numbers are accepted + let duration = parse_retry_after_for_test("3600"); // 1 hour + assert_eq!(duration, Some(std::time::Duration::from_secs(3600))); + } + + /// Helper function to test Retry-After header parsing logic + /// (simulates the parsing done in send_request without actual HTTP, including fallback) + fn parse_retry_after_for_test(header_value: &str) -> Option { + let trimmed = header_value.trim(); + let parsed = if let Ok(secs) = trimmed.parse::() { + Some(std::time::Duration::from_secs(secs)) + } else if let Ok(dt) = chrono::DateTime::parse_from_rfc2822(trimmed) { + let now = chrono::Utc::now(); + let delta = dt.signed_duration_since(now); + Some(std::time::Duration::from_secs( + delta.num_seconds().max(0) as u64 + )) + } else { + None + }; + // Apply fallback to 60s if parsing failed (matches actual code behavior) + parsed.or(Some(std::time::Duration::from_secs(60))) + } } diff --git a/src/llm/retry.rs b/src/llm/retry.rs index b85f4f15..2875fbd3 100644 --- a/src/llm/retry.rs +++ b/src/llm/retry.rs @@ -394,4 +394,31 @@ mod tests { assert_eq!(retry.cost_per_token(), (Decimal::ZERO, Decimal::ZERO)); assert_eq!(retry.calculate_cost(100, 50), Decimal::ZERO); } + + // Regression test: Rate limiter fallback when Retry-After header is missing + // + // Verifies that RateLimited errors always have a duration (never None) + // due to the 60-second fallback applied in all rate limit error creation sites + // (nearai_chat.rs, anthropic_oauth.rs, embeddings.rs). + #[test] + fn rate_limited_error_always_has_duration() { + let err = LlmError::RateLimited { + provider: "test".to_string(), + retry_after: Some(std::time::Duration::from_secs(60)), + }; + + if let LlmError::RateLimited { retry_after, .. } = err { + assert!( + retry_after.is_some(), + "Rate limited error should always have retry_after duration" + ); + assert_eq!( + retry_after, + Some(std::time::Duration::from_secs(60)), + "Fallback should be 60 seconds" + ); + } else { + panic!("Expected RateLimited error"); + } + } } diff --git a/src/main.rs b/src/main.rs index 57461677..745cae09 100644 --- a/src/main.rs +++ b/src/main.rs @@ -153,7 +153,8 @@ async fn async_main() -> anyhow::Result<()> { provider_only: *provider_only, quick: *quick, }; - let mut wizard = SetupWizard::with_config(config); + let mut wizard = + SetupWizard::try_with_config_and_toml(config, cli.config.as_deref())?; wizard.run().await?; } #[cfg(not(any(feature = "postgres", feature = "libsql")))] @@ -195,10 +196,13 @@ async fn async_main() -> anyhow::Result<()> { { println!("Onboarding needed: {}", reason); println!(); - let mut wizard = SetupWizard::with_config(SetupConfig { - quick: true, - ..Default::default() - }); + let mut wizard = SetupWizard::try_with_config_and_toml( + SetupConfig { + quick: true, + ..Default::default() + }, + cli.config.as_deref(), + )?; wizard.run().await?; } @@ -282,9 +286,12 @@ async fn async_main() -> anyhow::Result<()> { // Create CLI channel let repl_channel = if let Some(ref msg) = cli.message { - Some(ReplChannel::with_message(msg.clone())) + Some(ReplChannel::with_message_for_user( + config.owner_id.clone(), + msg.clone(), + )) } else if config.channels.cli.enabled { - let repl = ReplChannel::new(); + let repl = ReplChannel::with_user_id(config.owner_id.clone()); repl.suppress_banner(); Some(repl) } else { @@ -311,12 +318,7 @@ async fn async_main() -> anyhow::Result<()> { webhook_routes.push(webhooks::routes(ToolWebhookState { tools: Arc::clone(&components.tools), routine_engine: Arc::clone(&shared_routine_engine_slot), - user_id: config - .channels - .gateway - .as_ref() - .map(|g| g.user_id.clone()) - .unwrap_or_else(|| "default".to_string()), + user_id: config.owner_id.clone(), secrets_store: components.secrets_store.clone(), })); @@ -618,7 +620,7 @@ async fn async_main() -> anyhow::Result<()> { // Register message tool for sending messages to connected channels components .tools - .register_message_tools(Arc::clone(&channels)) + .register_message_tools(Arc::clone(&channels), components.extension_manager.clone()) .await; // Wire up channel runtime for hot-activation of WASM channels. @@ -703,6 +705,7 @@ async fn async_main() -> anyhow::Result<()> { .map(|db| Arc::clone(db) as Arc); let deps = AgentDeps { + owner_id: config.owner_id.clone(), store: components.db, llm: components.llm, cheap_llm: components.cheap_llm, @@ -775,6 +778,7 @@ async fn async_main() -> anyhow::Result<()> { let sighup_webhook_server = webhook_server.clone(); let sighup_settings_store_clone = sighup_settings_store.clone(); let sighup_secrets_store = components.secrets_store.clone(); + let sighup_owner_id = config.owner_id.clone(); let mut shutdown_rx = shutdown_tx.subscribe(); tokio::spawn(async move { @@ -805,7 +809,7 @@ async fn async_main() -> anyhow::Result<()> { if let Some(ref secrets_store) = sighup_secrets_store { // Inject HTTP webhook secret from encrypted store if let Ok(webhook_secret) = secrets_store - .get_decrypted("default", "http_webhook_secret") + .get_decrypted(&sighup_owner_id, "http_webhook_secret") .await { // Thread-safe: Uses INJECTED_VARS mutex instead of unsafe std::env::set_var @@ -821,7 +825,7 @@ async fn async_main() -> anyhow::Result<()> { // Reload config (now with secrets injected into environment) let new_config = match &sighup_settings_store_clone { Some(store) => { - ironclaw::config::Config::from_db(store.as_ref(), "default").await + ironclaw::config::Config::from_db(store.as_ref(), &sighup_owner_id).await } None => ironclaw::config::Config::from_env().await, }; diff --git a/src/orchestrator/mod.rs b/src/orchestrator/mod.rs index 5e750ddf..b72f90ee 100644 --- a/src/orchestrator/mod.rs +++ b/src/orchestrator/mod.rs @@ -51,6 +51,15 @@ use crate::db::Database; use crate::llm::LlmProvider; use crate::secrets::SecretsStore; +/// Resolve the orchestrator port from the `ORCHESTRATOR_PORT` environment +/// variable, falling back to 50051. +fn resolve_orchestrator_port() -> u16 { + std::env::var("ORCHESTRATOR_PORT") + .ok() + .and_then(|v| v.parse().ok()) + .unwrap_or(50051) +} + /// Result of orchestrator setup, containing all handles needed by the agent. pub struct OrchestratorSetup { pub container_job_manager: Option>, @@ -101,11 +110,12 @@ pub async fn setup_orchestrator( let job_event_tx = Some(tx); let token_store = TokenStore::new(); + let orchestrator_port = resolve_orchestrator_port(); let job_config = ContainerJobConfig { image: config.sandbox.image.clone(), memory_limit_mb: config.sandbox.memory_limit_mb, cpu_shares: config.sandbox.cpu_shares, - orchestrator_port: 50051, + orchestrator_port, claude_code_api_key: std::env::var("ANTHROPIC_API_KEY").ok(), claude_code_oauth_token: crate::config::ClaudeCodeConfig::extract_oauth_token(), claude_code_model: config.claude_code.model.clone(), @@ -127,7 +137,7 @@ pub async fn setup_orchestrator( }; tokio::spawn(async move { - if let Err(e) = OrchestratorApi::start(orchestrator_state, 50051).await { + if let Err(e) = OrchestratorApi::start(orchestrator_state, orchestrator_port).await { tracing::error!("Orchestrator API failed: {}", e); } }); @@ -151,3 +161,40 @@ pub async fn setup_orchestrator( docker_status, } } + +#[cfg(test)] +mod tests { + use std::sync::Mutex; + + use super::*; + + /// Serialize access to `ORCHESTRATOR_PORT` env var across test threads. + static ENV_LOCK: Mutex<()> = Mutex::new(()); + + #[test] + fn resolve_orchestrator_port_from_env() { + let _guard = ENV_LOCK.lock().unwrap(); + + // Safety: env-var mutation requires unsafe in edition 2024; + // ENV_LOCK serializes concurrent access from other test threads. + + // Absent env var → default 50051 + unsafe { std::env::remove_var("ORCHESTRATOR_PORT") }; + assert_eq!(resolve_orchestrator_port(), 50051); + + // Valid custom port + unsafe { std::env::set_var("ORCHESTRATOR_PORT", "50052") }; + assert_eq!(resolve_orchestrator_port(), 50052); + + // Non-numeric value → fallback to default + unsafe { std::env::set_var("ORCHESTRATOR_PORT", "not_a_port") }; + assert_eq!(resolve_orchestrator_port(), 50051); + + // Out of u16 range → fallback to default + unsafe { std::env::set_var("ORCHESTRATOR_PORT", "99999") }; + assert_eq!(resolve_orchestrator_port(), 50051); + + // Cleanup + unsafe { std::env::remove_var("ORCHESTRATOR_PORT") }; + } +} diff --git a/src/settings.rs b/src/settings.rs index 2a5b6bbd..9a0b3942 100644 --- a/src/settings.rs +++ b/src/settings.rs @@ -16,6 +16,14 @@ pub struct Settings { #[serde(default, alias = "setup_completed")] pub onboard_completed: bool, + /// Stable owner scope for this IronClaw instance. + /// + /// This is bootstrap configuration loaded from env / disk / TOML. We do + /// not persist it in the per-user DB settings table because the DB lookup + /// itself already requires the owner scope to be known. + #[serde(default)] + pub owner_id: Option, + // === Step 1: Database === /// Database backend: "postgres" or "libsql". #[serde(default)] @@ -733,6 +741,10 @@ impl Settings { let mut settings = Self::default(); for (key, value) in map { + if key == "owner_id" { + continue; + } + // Convert the JSONB value to a string for the existing set() method let value_str = match value { serde_json::Value::String(s) => s.clone(), @@ -772,6 +784,7 @@ impl Settings { let mut map = std::collections::HashMap::new(); collect_settings_json(&json, String::new(), &mut map); + map.remove("owner_id"); map } diff --git a/src/setup/wizard.rs b/src/setup/wizard.rs index 9437d827..23494d12 100644 --- a/src/setup/wizard.rs +++ b/src/setup/wizard.rs @@ -14,6 +14,8 @@ use std::collections::{HashMap, HashSet}; use std::sync::Arc; +#[cfg(feature = "postgres")] +use deadpool_postgres::Config as PoolConfig; use secrecy::{ExposeSecret, SecretString}; use crate::bootstrap::ironclaw_base_dir; @@ -25,8 +27,10 @@ use crate::llm::models::{ build_nearai_model_fetch_config, fetch_anthropic_models, fetch_ollama_models, fetch_openai_compatible_models, fetch_openai_models, }; +#[cfg(test)] +use crate::llm::models::{is_openai_chat_model, sort_openai_models}; use crate::llm::{SessionConfig, SessionManager}; -use crate::secrets::SecretsCrypto; +use crate::secrets::{SecretsCrypto, SecretsStore}; use crate::settings::{KeySource, Settings}; use crate::setup::channels::{ SecretsContext, setup_http, setup_signal, setup_tunnel, setup_wasm_channel, @@ -86,11 +90,14 @@ pub struct SetupConfig { pub struct SetupWizard { config: SetupConfig, settings: Settings, + owner_id: String, session_manager: Option>, - /// Backend-agnostic database trait object (created during setup). - db: Option>, - /// Backend-specific handles for secrets store and other satellite consumers. - db_handles: Option, + /// Database pool (created during setup, postgres only). + #[cfg(feature = "postgres")] + db_pool: Option, + /// libSQL backend (created during setup, libsql only). + #[cfg(feature = "libsql")] + db_backend: Option, /// Secrets crypto (created during setup). secrets_crypto: Option>, /// Cached API key from provider setup (used by model fetcher without env mutation). @@ -98,30 +105,71 @@ pub struct SetupWizard { } impl SetupWizard { - /// Create a new setup wizard. - pub fn new() -> Self { + fn owner_id(&self) -> &str { + &self.owner_id + } + + fn fallback_with_default_owner( + config: SetupConfig, + settings: Settings, + error: &crate::error::ConfigError, + ) -> Self { + tracing::warn!("Falling back to default owner scope for setup wizard: {error}"); Self { - config: SetupConfig::default(), - settings: Settings::default(), + config, + settings, + owner_id: "default".to_string(), session_manager: None, - db: None, - db_handles: None, + #[cfg(feature = "postgres")] + db_pool: None, + #[cfg(feature = "libsql")] + db_backend: None, secrets_crypto: None, llm_api_key: None, } } - /// Create a wizard with custom configuration. - pub fn with_config(config: SetupConfig) -> Self { - Self { + fn from_bootstrap_settings( + config: SetupConfig, + settings: Settings, + ) -> Result { + let owner_id = crate::config::resolve_owner_id(&settings)?; + Ok(Self { config, - settings: Settings::default(), + settings, + owner_id, session_manager: None, - db: None, - db_handles: None, + #[cfg(feature = "postgres")] + db_pool: None, + #[cfg(feature = "libsql")] + db_backend: None, secrets_crypto: None, llm_api_key: None, - } + }) + } + + /// Create a new setup wizard. + pub fn new() -> Self { + let settings = crate::config::load_bootstrap_settings(None).unwrap_or_default(); + Self::from_bootstrap_settings(SetupConfig::default(), settings.clone()).unwrap_or_else( + |e| Self::fallback_with_default_owner(SetupConfig::default(), settings, &e), + ) + } + + /// Create a wizard with custom configuration. + pub fn with_config(config: SetupConfig) -> Self { + let settings = crate::config::load_bootstrap_settings(None).unwrap_or_default(); + Self::from_bootstrap_settings(config.clone(), settings.clone()) + .unwrap_or_else(|e| Self::fallback_with_default_owner(config, settings, &e)) + } + + /// Create a wizard with custom configuration and bootstrap TOML overlay. + pub fn try_with_config_and_toml( + config: SetupConfig, + toml_path: Option<&std::path::Path>, + ) -> Result { + let settings = crate::config::load_bootstrap_settings(toml_path)?; + Self::from_bootstrap_settings(config, settings) } /// Set the session manager (for reusing existing auth). @@ -252,79 +300,115 @@ impl SetupWizard { /// database connection and the wizard's `self.settings` reflects the /// previously saved configuration. async fn reconnect_existing_db(&mut self) -> Result<(), SetupError> { - use crate::config::DatabaseConfig; + // Determine backend from env (set by bootstrap .env loaded in main). + let backend = std::env::var("DATABASE_BACKEND").unwrap_or_else(|_| "postgres".to_string()); - let db_config = DatabaseConfig::resolve().map_err(|e| { - SetupError::Database(format!( - "Cannot resolve database config. Run full setup first (ironclaw onboard): {}", - e - )) + // Try libsql first if that's the configured backend. + #[cfg(feature = "libsql")] + if backend == "libsql" || backend == "turso" || backend == "sqlite" { + return self.reconnect_libsql().await; + } + + // Try postgres (either explicitly configured or as default). + #[cfg(feature = "postgres")] + { + let _ = &backend; + return self.reconnect_postgres().await; + } + + #[allow(unreachable_code)] + Err(SetupError::Database( + "No database configured. Run full setup first (ironclaw onboard).".to_string(), + )) + } + + /// Reconnect to an existing PostgreSQL database and load settings. + #[cfg(feature = "postgres")] + async fn reconnect_postgres(&mut self) -> Result<(), SetupError> { + let url = std::env::var("DATABASE_URL").map_err(|_| { + SetupError::Database( + "DATABASE_URL not set. Run full setup first (ironclaw onboard).".to_string(), + ) })?; - let backend_name = db_config.backend.to_string(); - let (db, handles) = crate::db::connect_with_handles(&db_config) - .await - .map_err(|e| SetupError::Database(format!("Failed to connect: {}", e)))?; + self.test_database_connection_postgres(&url).await?; + self.settings.database_backend = Some("postgres".to_string()); + self.settings.database_url = Some(url.clone()); - // Load existing settings from DB - if let Ok(map) = db.get_all_settings("default").await { - self.settings = Settings::from_db_map(&map); + // Load existing settings from DB, then restore connection fields that + // may not be persisted in the settings map. + if let Some(ref pool) = self.db_pool { + let store = crate::history::Store::from_pool(pool.clone()); + if let Ok(map) = store.get_all_settings(self.owner_id()).await { + self.settings = Settings::from_db_map(&map); + self.settings.database_backend = Some("postgres".to_string()); + self.settings.database_url = Some(url); + } } - // Restore connection fields that may not be persisted in the settings map - self.settings.database_backend = Some(backend_name); - if let Ok(url) = std::env::var("DATABASE_URL") { - self.settings.database_url = Some(url); - } - if let Ok(path) = std::env::var("LIBSQL_PATH") { - self.settings.libsql_path = Some(path); - } else if db_config.libsql_path.is_some() { - self.settings.libsql_path = db_config - .libsql_path - .as_ref() - .map(|p| p.to_string_lossy().to_string()); - } - if let Ok(url) = std::env::var("LIBSQL_URL") { - self.settings.libsql_url = Some(url); + Ok(()) + } + + /// Reconnect to an existing libSQL database and load settings. + #[cfg(feature = "libsql")] + async fn reconnect_libsql(&mut self) -> Result<(), SetupError> { + let path = std::env::var("LIBSQL_PATH").unwrap_or_else(|_| { + crate::config::default_libsql_path() + .to_string_lossy() + .to_string() + }); + let turso_url = std::env::var("LIBSQL_URL").ok(); + let turso_token = std::env::var("LIBSQL_AUTH_TOKEN").ok(); + + self.test_database_connection_libsql(&path, turso_url.as_deref(), turso_token.as_deref()) + .await?; + + self.settings.database_backend = Some("libsql".to_string()); + self.settings.libsql_path = Some(path.clone()); + if let Some(ref url) = turso_url { + self.settings.libsql_url = Some(url.clone()); } - self.db = Some(db); - self.db_handles = Some(handles); + // Load existing settings from DB, then restore connection fields that + // may not be persisted in the settings map. + if let Some(ref db) = self.db_backend { + use crate::db::SettingsStore as _; + if let Ok(map) = db.get_all_settings(self.owner_id()).await { + self.settings = Settings::from_db_map(&map); + self.settings.database_backend = Some("libsql".to_string()); + self.settings.libsql_path = Some(path); + if let Some(url) = turso_url { + self.settings.libsql_url = Some(url); + } + } + } Ok(()) } /// Step 1: Database connection. - /// - /// Determines the backend at runtime (env var, interactive selection, or - /// compile-time default) and runs the appropriate configuration flow. async fn step_database(&mut self) -> Result<(), SetupError> { - use crate::config::{DatabaseBackend, DatabaseConfig}; + // When both features are compiled, let the user choose. + // If DATABASE_BACKEND is already set in the environment, respect it. + #[cfg(all(feature = "postgres", feature = "libsql"))] + { + // Check if a backend is already pinned via env var + let env_backend = std::env::var("DATABASE_BACKEND").ok(); - const POSTGRES_AVAILABLE: bool = cfg!(feature = "postgres"); - const LIBSQL_AVAILABLE: bool = cfg!(feature = "libsql"); - - // Determine backend from env var, interactive selection, or default. - let env_backend = std::env::var("DATABASE_BACKEND").ok(); - - let backend = if let Some(ref raw) = env_backend { - match raw.parse::() { - Ok(b) => b, - Err(_) => { - let fallback = if POSTGRES_AVAILABLE { - DatabaseBackend::Postgres - } else { - DatabaseBackend::LibSql - }; - print_info(&format!( - "Unknown DATABASE_BACKEND '{}', defaulting to {}", - raw, fallback - )); - fallback + if let Some(ref backend) = env_backend { + if backend == "libsql" || backend == "turso" || backend == "sqlite" { + return self.step_database_libsql().await; } + if backend != "postgres" && backend != "postgresql" { + print_info(&format!( + "Unknown DATABASE_BACKEND '{}', defaulting to PostgreSQL", + backend + )); + } + return self.step_database_postgres().await; } - } else if POSTGRES_AVAILABLE && LIBSQL_AVAILABLE { - // Both features compiled — offer interactive selection. + + // Interactive selection let pre_selected = self.settings.database_backend.as_deref().map(|b| match b { "libsql" | "turso" | "sqlite" => 1, _ => 0, @@ -350,82 +434,88 @@ impl SetupWizard { self.settings.libsql_url = None; } - if choice == 1 { - DatabaseBackend::LibSql - } else { - DatabaseBackend::Postgres + match choice { + 1 => return self.step_database_libsql().await, + _ => return self.step_database_postgres().await, } - } else if LIBSQL_AVAILABLE { - DatabaseBackend::LibSql - } else { - // Only postgres (or neither, but that won't compile anyway). - DatabaseBackend::Postgres - }; + } - // --- Postgres flow --- - if backend == DatabaseBackend::Postgres { - self.settings.database_backend = Some("postgres".to_string()); + #[cfg(all(feature = "postgres", not(feature = "libsql")))] + { + return self.step_database_postgres().await; + } - let existing_url = std::env::var("DATABASE_URL") - .ok() - .or_else(|| self.settings.database_url.clone()); + #[cfg(all(feature = "libsql", not(feature = "postgres")))] + { + return self.step_database_libsql().await; + } + } - if let Some(ref url) = existing_url { - let display_url = mask_password_in_url(url); - print_info(&format!("Existing database URL: {}", display_url)); + /// Step 1 (postgres): Database connection via PostgreSQL URL. + #[cfg(feature = "postgres")] + async fn step_database_postgres(&mut self) -> Result<(), SetupError> { + self.settings.database_backend = Some("postgres".to_string()); - if confirm("Use this database?", true).map_err(SetupError::Io)? { - let config = DatabaseConfig::from_postgres_url(url, 5); - if let Err(e) = self.test_database_connection(&config).await { - print_error(&format!("Connection failed: {}", e)); - print_info("Let's configure a new database URL."); - } else { - print_success("Database connection successful"); - self.settings.database_url = Some(url.clone()); - return Ok(()); - } - } - } + let existing_url = std::env::var("DATABASE_URL") + .ok() + .or_else(|| self.settings.database_url.clone()); - println!(); - print_info("Enter your PostgreSQL connection URL."); - print_info("Format: postgres://user:password@host:port/database"); - println!(); + if let Some(ref url) = existing_url { + let display_url = mask_password_in_url(url); + print_info(&format!("Existing database URL: {}", display_url)); - loop { - let url = input("Database URL").map_err(SetupError::Io)?; - - if url.is_empty() { - print_error("Database URL is required."); - continue; - } - - print_info("Testing connection..."); - let config = DatabaseConfig::from_postgres_url(&url, 5); - match self.test_database_connection(&config).await { - Ok(()) => { - print_success("Database connection successful"); - - if confirm("Run database migrations?", true).map_err(SetupError::Io)? { - self.run_migrations().await?; - } - - self.settings.database_url = Some(url); - return Ok(()); - } - Err(e) => { - print_error(&format!("Connection failed: {}", e)); - if !confirm("Try again?", true).map_err(SetupError::Io)? { - return Err(SetupError::Database( - "Database connection failed".to_string(), - )); - } - } + if confirm("Use this database?", true).map_err(SetupError::Io)? { + if let Err(e) = self.test_database_connection_postgres(url).await { + print_error(&format!("Connection failed: {}", e)); + print_info("Let's configure a new database URL."); + } else { + print_success("Database connection successful"); + self.settings.database_url = Some(url.clone()); + return Ok(()); } } } - // --- libSQL flow --- + println!(); + print_info("Enter your PostgreSQL connection URL."); + print_info("Format: postgres://user:password@host:port/database"); + println!(); + + loop { + let url = input("Database URL").map_err(SetupError::Io)?; + + if url.is_empty() { + print_error("Database URL is required."); + continue; + } + + print_info("Testing connection..."); + match self.test_database_connection_postgres(&url).await { + Ok(()) => { + print_success("Database connection successful"); + + if confirm("Run database migrations?", true).map_err(SetupError::Io)? { + self.run_migrations_postgres().await?; + } + + self.settings.database_url = Some(url); + return Ok(()); + } + Err(e) => { + print_error(&format!("Connection failed: {}", e)); + if !confirm("Try again?", true).map_err(SetupError::Io)? { + return Err(SetupError::Database( + "Database connection failed".to_string(), + )); + } + } + } + } + } + + /// Step 1 (libsql): Database connection via local file or Turso remote replica. + #[cfg(feature = "libsql")] + async fn step_database_libsql(&mut self) -> Result<(), SetupError> { self.settings.database_backend = Some("libsql".to_string()); let default_path = crate::config::default_libsql_path(); @@ -444,12 +534,14 @@ impl SetupWizard { .or_else(|| self.settings.libsql_url.clone()); let turso_token = std::env::var("LIBSQL_AUTH_TOKEN").ok(); - let config = DatabaseConfig::from_libsql_path( - path, - turso_url.as_deref(), - turso_token.as_deref(), - ); - match self.test_database_connection(&config).await { + match self + .test_database_connection_libsql( + path, + turso_url.as_deref(), + turso_token.as_deref(), + ) + .await + { Ok(()) => { print_success("Database connection successful"); self.settings.libsql_path = Some(path.clone()); @@ -508,17 +600,15 @@ impl SetupWizard { }; print_info("Testing connection..."); - let config = DatabaseConfig::from_libsql_path( - &db_path, - turso_url.as_deref(), - turso_token.as_deref(), - ); - match self.test_database_connection(&config).await { + match self + .test_database_connection_libsql(&db_path, turso_url.as_deref(), turso_token.as_deref()) + .await + { Ok(()) => { print_success("Database connection successful"); // Always run migrations for libsql (they're idempotent) - self.run_migrations().await?; + self.run_migrations_libsql().await?; self.settings.libsql_path = Some(db_path); if let Some(url) = turso_url { @@ -530,39 +620,155 @@ impl SetupWizard { } } - /// Test database connection using the db module factory. + /// Test PostgreSQL connection and store the pool. /// - /// Connects without running migrations and validates PostgreSQL - /// prerequisites (version, pgvector) when using the postgres backend. - async fn test_database_connection( - &mut self, - config: &crate::config::DatabaseConfig, - ) -> Result<(), SetupError> { - let (db, handles) = crate::db::connect_without_migrations(config) - .await - .map_err(|e| SetupError::Database(e.to_string()))?; + /// After connecting, validates: + /// 1. PostgreSQL version >= 15 (required for pgvector compatibility) + /// 2. pgvector extension is available (required for embeddings/vector search) + #[cfg(feature = "postgres")] + async fn test_database_connection_postgres(&mut self, url: &str) -> Result<(), SetupError> { + let mut cfg = PoolConfig::new(); + cfg.url = Some(url.to_string()); + cfg.pool = Some(deadpool_postgres::PoolConfig { + max_size: 5, + ..Default::default() + }); - self.db = Some(db); - self.db_handles = Some(handles); + let pool = crate::db::tls::create_pool(&cfg, crate::config::SslMode::from_env()) + .map_err(|e| SetupError::Database(format!("Failed to create pool: {}", e)))?; + + let client = pool + .get() + .await + .map_err(|e| SetupError::Database(format!("Failed to connect: {}", e)))?; + + // Check PostgreSQL server version (need 15+ for pgvector) + let version_row = client + .query_one("SHOW server_version", &[]) + .await + .map_err(|e| SetupError::Database(format!("Failed to query server version: {}", e)))?; + let version_str: &str = version_row.get(0); + let major_version = version_str + .split('.') + .next() + .and_then(|v| v.parse::().ok()) + .unwrap_or(0); + + const MIN_PG_MAJOR_VERSION: u32 = 15; + + if major_version < MIN_PG_MAJOR_VERSION { + return Err(SetupError::Database(format!( + "PostgreSQL {} detected. IronClaw requires PostgreSQL {} or later for pgvector support.\n\ + Upgrade: https://www.postgresql.org/download/", + version_str, MIN_PG_MAJOR_VERSION + ))); + } + + // Check if pgvector extension is available + let pgvector_row = client + .query_opt( + "SELECT 1 FROM pg_available_extensions WHERE name = 'vector'", + &[], + ) + .await + .map_err(|e| { + SetupError::Database(format!("Failed to check pgvector availability: {}", e)) + })?; + + if pgvector_row.is_none() { + return Err(SetupError::Database(format!( + "pgvector extension not found on your PostgreSQL server.\n\n\ + Install it:\n \ + macOS: brew install pgvector\n \ + Ubuntu: apt install postgresql-{0}-pgvector\n \ + Docker: use the pgvector/pgvector:pg{0} image\n \ + Source: https://github.com/pgvector/pgvector#installation\n\n\ + Then restart PostgreSQL and re-run: ironclaw onboard", + major_version + ))); + } + + self.db_pool = Some(pool); Ok(()) } - /// Run database migrations on the current connection. - async fn run_migrations(&self) -> Result<(), SetupError> { - if let Some(ref db) = self.db { + /// Test libSQL connection and store the backend. + #[cfg(feature = "libsql")] + async fn test_database_connection_libsql( + &mut self, + path: &str, + turso_url: Option<&str>, + turso_token: Option<&str>, + ) -> Result<(), SetupError> { + use crate::db::libsql::LibSqlBackend; + use std::path::Path; + + let db_path = Path::new(path); + + let backend = if let (Some(url), Some(token)) = (turso_url, turso_token) { + LibSqlBackend::new_remote_replica(db_path, url, token) + .await + .map_err(|e| SetupError::Database(format!("Failed to connect: {}", e)))? + } else { + LibSqlBackend::new_local(db_path) + .await + .map_err(|e| SetupError::Database(format!("Failed to open database: {}", e)))? + }; + + self.db_backend = Some(backend); + Ok(()) + } + + /// Run PostgreSQL migrations. + #[cfg(feature = "postgres")] + async fn run_migrations_postgres(&self) -> Result<(), SetupError> { + if let Some(ref pool) = self.db_pool { + use refinery::embed_migrations; + embed_migrations!("migrations"); + if !self.config.quick { print_info("Running migrations..."); } - tracing::debug!("Running database migrations..."); + tracing::debug!("Running PostgreSQL migrations..."); - db.run_migrations() + let mut client = pool + .get() + .await + .map_err(|e| SetupError::Database(format!("Pool error: {}", e)))?; + + migrations::runner() + .run_async(&mut **client) .await .map_err(|e| SetupError::Database(format!("Migration failed: {}", e)))?; if !self.config.quick { print_success("Migrations applied"); } - tracing::debug!("Database migrations applied"); + tracing::debug!("PostgreSQL migrations applied"); + } + Ok(()) + } + + /// Run libSQL migrations. + #[cfg(feature = "libsql")] + async fn run_migrations_libsql(&self) -> Result<(), SetupError> { + if let Some(ref backend) = self.db_backend { + use crate::db::Database; + + if !self.config.quick { + print_info("Running migrations..."); + } + tracing::debug!("Running libSQL migrations..."); + + backend + .run_migrations() + .await + .map_err(|e| SetupError::Database(format!("Migration failed: {}", e)))?; + + if !self.config.quick { + print_success("Migrations applied"); + } + tracing::debug!("libSQL migrations applied"); } Ok(()) } @@ -579,19 +785,20 @@ impl SetupWizard { return Ok(()); } - // Try to retrieve existing key from keychain via resolve_master_key - // (checks env var first, then keychain). We skip the env var case - // above, so this will only find a keychain key here. + // Try to retrieve existing key from keychain. We use get_master_key() + // instead of has_master_key() so we can cache the key bytes and build + // SecretsCrypto eagerly, avoiding redundant keychain accesses later + // (each access triggers macOS system dialogs). print_info("Checking OS keychain for existing master key..."); if let Ok(keychain_key_bytes) = crate::secrets::keychain::get_master_key().await { let key_hex: String = keychain_key_bytes .iter() .map(|b| format!("{:02x}", b)) .collect(); - self.secrets_crypto = Some( - crate::secrets::crypto_from_hex(&key_hex) + self.secrets_crypto = Some(Arc::new( + SecretsCrypto::new(SecretString::from(key_hex)) .map_err(|e| SetupError::Config(e.to_string()))?, - ); + )); print_info("Existing master key found in OS keychain."); if confirm("Use existing keychain key?", true).map_err(SetupError::Io)? { @@ -630,11 +837,12 @@ impl SetupWizard { SetupError::Config(format!("Failed to store in keychain: {}", e)) })?; + // Also create crypto instance let key_hex: String = key.iter().map(|b| format!("{:02x}", b)).collect(); - self.secrets_crypto = Some( - crate::secrets::crypto_from_hex(&key_hex) + self.secrets_crypto = Some(Arc::new( + SecretsCrypto::new(SecretString::from(key_hex)) .map_err(|e| SetupError::Config(e.to_string()))?, - ); + )); self.settings.secrets_master_key_source = KeySource::Keychain; print_success("Master key generated and stored in OS keychain"); @@ -645,10 +853,10 @@ impl SetupWizard { // Initialize crypto so subsequent wizard steps (channel setup, // API key storage) can encrypt secrets immediately. - self.secrets_crypto = Some( - crate::secrets::crypto_from_hex(&key_hex) + self.secrets_crypto = Some(Arc::new( + SecretsCrypto::new(SecretString::from(key_hex.clone())) .map_err(|e| SetupError::Config(e.to_string()))?, - ); + )); // Make visible to optional_env() for any subsequent config resolution. crate::config::inject_single_var("SECRETS_MASTER_KEY", &key_hex); @@ -681,22 +889,16 @@ impl SetupWizard { /// standard path. Falls back to the interactive `step_database()` only when /// just the postgres feature is compiled (can't auto-default postgres). async fn auto_setup_database(&mut self) -> Result<(), SetupError> { - use crate::config::{DatabaseBackend, DatabaseConfig}; - - const POSTGRES_AVAILABLE: bool = cfg!(feature = "postgres"); - const LIBSQL_AVAILABLE: bool = cfg!(feature = "libsql"); - + // If DATABASE_URL or LIBSQL_PATH already set, respect existing config + #[cfg(feature = "postgres")] let env_backend = std::env::var("DATABASE_BACKEND").ok(); - // If DATABASE_BACKEND=postgres and DATABASE_URL exists: connect+migrate + #[cfg(feature = "postgres")] if let Some(ref backend) = env_backend - && let Ok(DatabaseBackend::Postgres) = backend.parse::() + && (backend == "postgres" || backend == "postgresql") { if let Ok(url) = std::env::var("DATABASE_URL") { print_info("Using existing PostgreSQL configuration"); - let config = DatabaseConfig::from_postgres_url(&url, 5); - self.test_database_connection(&config).await?; - self.run_migrations().await?; self.settings.database_backend = Some("postgres".to_string()); self.settings.database_url = Some(url); return Ok(()); @@ -705,23 +907,17 @@ impl SetupWizard { return self.step_database().await; } - // If DATABASE_URL exists (no explicit backend): connect+migrate as postgres, - // but only when the postgres feature is actually compiled in. - if POSTGRES_AVAILABLE - && env_backend.is_none() - && let Ok(url) = std::env::var("DATABASE_URL") - { + #[cfg(feature = "postgres")] + if let Ok(url) = std::env::var("DATABASE_URL") { print_info("Using existing PostgreSQL configuration"); - let config = DatabaseConfig::from_postgres_url(&url, 5); - self.test_database_connection(&config).await?; - self.run_migrations().await?; self.settings.database_backend = Some("postgres".to_string()); self.settings.database_url = Some(url); return Ok(()); } - // Auto-default to libsql if available - if LIBSQL_AVAILABLE { + // Auto-default to libsql if the feature is compiled + #[cfg(feature = "libsql")] + { self.settings.database_backend = Some("libsql".to_string()); let existing_path = std::env::var("LIBSQL_PATH") @@ -737,13 +933,14 @@ impl SetupWizard { let turso_url = std::env::var("LIBSQL_URL").ok(); let turso_token = std::env::var("LIBSQL_AUTH_TOKEN").ok(); - let config = DatabaseConfig::from_libsql_path( + self.test_database_connection_libsql( &db_path, turso_url.as_deref(), turso_token.as_deref(), - ); - self.test_database_connection(&config).await?; - self.run_migrations().await?; + ) + .await?; + + self.run_migrations_libsql().await?; self.settings.libsql_path = Some(db_path.clone()); if let Some(url) = turso_url { @@ -755,7 +952,10 @@ impl SetupWizard { } // Only postgres feature compiled — can't auto-default, use interactive - self.step_database().await + #[allow(unreachable_code)] + { + self.step_database().await + } } /// Auto-setup security with zero prompts (quick mode). @@ -764,23 +964,26 @@ impl SetupWizard { /// key if available, otherwise generates and stores one automatically /// (keychain on macOS, env var fallback). async fn auto_setup_security(&mut self) -> Result<(), SetupError> { - // Try resolving an existing key from env var or keychain - if let Some(key_hex) = crate::secrets::resolve_master_key().await { - self.secrets_crypto = Some( - crate::secrets::crypto_from_hex(&key_hex) + // Check env var first + if std::env::var("SECRETS_MASTER_KEY").is_ok() { + self.settings.secrets_master_key_source = KeySource::Env; + print_success("Security configured (env var)"); + return Ok(()); + } + + // Try existing keychain key (no prompts — get_master_key may show + // OS dialogs on macOS, but that's unavoidable for keychain access) + if let Ok(keychain_key_bytes) = crate::secrets::keychain::get_master_key().await { + let key_hex: String = keychain_key_bytes + .iter() + .map(|b| format!("{:02x}", b)) + .collect(); + self.secrets_crypto = Some(Arc::new( + SecretsCrypto::new(SecretString::from(key_hex)) .map_err(|e| SetupError::Config(e.to_string()))?, - ); - // Determine source: env var or keychain (filter empty to match resolve_master_key) - let (source, label) = if std::env::var("SECRETS_MASTER_KEY") - .ok() - .is_some_and(|v| !v.is_empty()) - { - (KeySource::Env, "env var") - } else { - (KeySource::Keychain, "keychain") - }; - self.settings.secrets_master_key_source = source; - print_success(&format!("Security configured ({})", label)); + )); + self.settings.secrets_master_key_source = KeySource::Keychain; + print_success("Security configured (keychain)"); return Ok(()); } @@ -792,10 +995,10 @@ impl SetupWizard { .is_ok() { let key_hex: String = key.iter().map(|b| format!("{:02x}", b)).collect(); - self.secrets_crypto = Some( - crate::secrets::crypto_from_hex(&key_hex) + self.secrets_crypto = Some(Arc::new( + SecretsCrypto::new(SecretString::from(key_hex)) .map_err(|e| SetupError::Config(e.to_string()))?, - ); + )); self.settings.secrets_master_key_source = KeySource::Keychain; print_success("Master key stored in OS keychain"); return Ok(()); @@ -803,10 +1006,10 @@ impl SetupWizard { // Keychain unavailable — fall back to env var mode let key_hex = crate::secrets::keychain::generate_master_key_hex(); - self.secrets_crypto = Some( - crate::secrets::crypto_from_hex(&key_hex) + self.secrets_crypto = Some(Arc::new( + SecretsCrypto::new(SecretString::from(key_hex.clone())) .map_err(|e| SetupError::Config(e.to_string()))?, - ); + )); crate::config::inject_single_var("SECRETS_MASTER_KEY", &key_hex); self.settings.secrets_master_key_hex = Some(key_hex); self.settings.secrets_master_key_source = KeySource::Env; @@ -1677,27 +1880,74 @@ impl SetupWizard { /// Initialize secrets context for channel setup. async fn init_secrets_context(&mut self) -> Result { - // Get crypto (should be set from step 2, or resolve from keychain/env) + // Get crypto (should be set from step 2, or load from keychain/env) let crypto = if let Some(ref c) = self.secrets_crypto { Arc::clone(c) } else { - let key_hex = crate::secrets::resolve_master_key().await.ok_or_else(|| { - SetupError::Config( + // Try to load master key from keychain or env + let key = if let Ok(env_key) = std::env::var("SECRETS_MASTER_KEY") { + env_key + } else if let Ok(keychain_key) = crate::secrets::keychain::get_master_key().await { + keychain_key.iter().map(|b| format!("{:02x}", b)).collect() + } else { + return Err(SetupError::Config( "Secrets not configured. Run full setup or set SECRETS_MASTER_KEY.".to_string(), - ) - })?; + )); + }; - let crypto = crate::secrets::crypto_from_hex(&key_hex) - .map_err(|e| SetupError::Config(e.to_string()))?; + let crypto = Arc::new( + SecretsCrypto::new(SecretString::from(key)) + .map_err(|e| SetupError::Config(e.to_string()))?, + ); self.secrets_crypto = Some(Arc::clone(&crypto)); crypto }; - // Create secrets store from existing database handles - if let Some(ref handles) = self.db_handles - && let Some(store) = crate::secrets::create_secrets_store(Arc::clone(&crypto), handles) - { - return Ok(SecretsContext::from_store(store, "default")); + // Create backend-appropriate secrets store. + // Use runtime dispatch based on the user's selected backend. + // Default to whichever backend is compiled in. When only libsql is + // available, we must not default to "postgres" or we'd skip store creation. + let default_backend = { + #[cfg(feature = "postgres")] + { + "postgres" + } + #[cfg(not(feature = "postgres"))] + { + "libsql" + } + }; + let selected_backend = self + .settings + .database_backend + .as_deref() + .unwrap_or(default_backend); + + match selected_backend { + #[cfg(feature = "libsql")] + "libsql" | "turso" | "sqlite" => { + if let Some(store) = self.create_libsql_secrets_store(&crypto)? { + return Ok(SecretsContext::from_store(store, self.owner_id())); + } + // Fallback to postgres if libsql store creation returned None + #[cfg(feature = "postgres")] + if let Some(store) = self.create_postgres_secrets_store(&crypto).await? { + return Ok(SecretsContext::from_store(store, self.owner_id())); + } + } + #[cfg(feature = "postgres")] + _ => { + if let Some(store) = self.create_postgres_secrets_store(&crypto).await? { + return Ok(SecretsContext::from_store(store, self.owner_id())); + } + // Fallback to libsql if postgres store creation returned None + #[cfg(feature = "libsql")] + if let Some(store) = self.create_libsql_secrets_store(&crypto)? { + return Ok(SecretsContext::from_store(store, self.owner_id())); + } + } + #[cfg(not(feature = "postgres"))] + _ => {} } Err(SetupError::Config( @@ -1705,6 +1955,62 @@ impl SetupWizard { )) } + /// Create a PostgreSQL secrets store from the current pool. + #[cfg(feature = "postgres")] + async fn create_postgres_secrets_store( + &mut self, + crypto: &Arc, + ) -> Result>, SetupError> { + let pool = if let Some(ref p) = self.db_pool { + p.clone() + } else { + // Fall back to creating one from settings/env + let url = self + .settings + .database_url + .clone() + .or_else(|| std::env::var("DATABASE_URL").ok()); + + if let Some(url) = url { + self.test_database_connection_postgres(&url).await?; + self.run_migrations_postgres().await?; + match self.db_pool.clone() { + Some(pool) => pool, + None => { + return Err(SetupError::Database( + "Database pool not initialized after connection test".to_string(), + )); + } + } + } else { + return Ok(None); + } + }; + + let store: Arc = Arc::new(crate::secrets::PostgresSecretsStore::new( + pool, + Arc::clone(crypto), + )); + Ok(Some(store)) + } + + /// Create a libSQL secrets store from the current backend. + #[cfg(feature = "libsql")] + fn create_libsql_secrets_store( + &self, + crypto: &Arc, + ) -> Result>, SetupError> { + if let Some(ref backend) = self.db_backend { + let store: Arc = Arc::new(crate::secrets::LibSqlSecretsStore::new( + backend.shared_db(), + Arc::clone(crypto), + )); + Ok(Some(store)) + } else { + Ok(None) + } + } + /// Step 6: Channel configuration. async fn step_channels(&mut self) -> Result<(), SetupError> { // First, configure tunnel (shared across all channels that need webhooks) @@ -2222,15 +2528,45 @@ impl SetupWizard { /// connection is available yet (e.g., before Step 1 completes). async fn persist_settings(&self) -> Result { let db_map = self.settings.to_db_map(); + let saved = false; - if let Some(ref db) = self.db { - db.set_all_settings("default", &db_map).await.map_err(|e| { - SetupError::Database(format!("Failed to save settings to database: {}", e)) - })?; - Ok(true) + #[cfg(feature = "postgres")] + let saved = if !saved { + if let Some(ref pool) = self.db_pool { + let store = crate::history::Store::from_pool(pool.clone()); + store + .set_all_settings(self.owner_id(), &db_map) + .await + .map_err(|e| { + SetupError::Database(format!("Failed to save settings to database: {}", e)) + })?; + true + } else { + false + } } else { - Ok(false) - } + saved + }; + + #[cfg(feature = "libsql")] + let saved = if !saved { + if let Some(ref backend) = self.db_backend { + use crate::db::SettingsStore as _; + backend + .set_all_settings(self.owner_id(), &db_map) + .await + .map_err(|e| { + SetupError::Database(format!("Failed to save settings to database: {}", e)) + })?; + true + } else { + false + } + } else { + saved + }; + + Ok(saved) } /// Write bootstrap environment variables to `~/.ironclaw/.env`. @@ -2406,12 +2742,28 @@ impl SetupWizard { Err(_) => return, }; - if let Some(ref db) = self.db { - if let Err(e) = db - .set_setting("default", "nearai.session_token", &value) + #[cfg(feature = "postgres")] + if let Some(ref pool) = self.db_pool { + let store = crate::history::Store::from_pool(pool.clone()); + if let Err(e) = store + .set_setting(self.owner_id(), "nearai.session_token", &value) .await { - tracing::debug!("Could not persist session token to database: {}", e); + tracing::debug!("Could not persist session token to postgres: {}", e); + } else { + tracing::debug!("Session token persisted to database"); + return; + } + } + + #[cfg(feature = "libsql")] + if let Some(ref backend) = self.db_backend { + use crate::db::SettingsStore as _; + if let Err(e) = backend + .set_setting(self.owner_id(), "nearai.session_token", &value) + .await + { + tracing::debug!("Could not persist session token to libsql: {}", e); } else { tracing::debug!("Session token persisted to database"); } @@ -2448,19 +2800,58 @@ impl SetupWizard { /// prefers the `other` argument's non-default values. Without this, /// stale DB values would overwrite fresh user choices. async fn try_load_existing_settings(&mut self) { - if let Some(ref db) = self.db { - match db.get_all_settings("default").await { - Ok(db_map) if !db_map.is_empty() => { - let existing = Settings::from_db_map(&db_map); - self.settings.merge_from(&existing); - tracing::info!("Loaded {} existing settings from database", db_map.len()); - } - Ok(_) => {} - Err(e) => { - tracing::debug!("Could not load existing settings: {}", e); + let loaded = false; + + #[cfg(feature = "postgres")] + let loaded = if !loaded { + if let Some(ref pool) = self.db_pool { + let store = crate::history::Store::from_pool(pool.clone()); + match store.get_all_settings(self.owner_id()).await { + Ok(db_map) if !db_map.is_empty() => { + let existing = Settings::from_db_map(&db_map); + self.settings.merge_from(&existing); + tracing::info!("Loaded {} existing settings from database", db_map.len()); + true + } + Ok(_) => false, + Err(e) => { + tracing::debug!("Could not load existing settings: {}", e); + false + } } + } else { + false } - } + } else { + loaded + }; + + #[cfg(feature = "libsql")] + let loaded = if !loaded { + if let Some(ref backend) = self.db_backend { + use crate::db::SettingsStore as _; + match backend.get_all_settings(self.owner_id()).await { + Ok(db_map) if !db_map.is_empty() => { + let existing = Settings::from_db_map(&db_map); + self.settings.merge_from(&existing); + tracing::info!("Loaded {} existing settings from database", db_map.len()); + true + } + Ok(_) => false, + Err(e) => { + tracing::debug!("Could not load existing settings: {}", e); + false + } + } + } else { + false + } + } else { + loaded + }; + + // Suppress unused variable warning when only one backend is compiled. + let _ = loaded; } /// Save settings to the database and `~/.ironclaw/.env`, then print summary. @@ -2610,6 +3001,7 @@ impl Default for SetupWizard { } /// Mask password in a database URL for display. +#[cfg(feature = "postgres")] fn mask_password_in_url(url: &str) -> String { // URL format: scheme://user:password@host/database // Find "://" to locate start of credentials @@ -2911,12 +3303,13 @@ async fn install_selected_bundled_channels( #[cfg(test)] mod tests { use std::collections::HashSet; + #[cfg(unix)] + use std::ffi::OsString; use tempfile::tempdir; use super::*; use crate::config::helpers::ENV_MUTEX; - use crate::llm::models::{is_openai_chat_model, sort_openai_models}; #[test] fn test_wizard_creation() { @@ -2938,6 +3331,53 @@ mod tests { } #[test] + fn test_wizard_owner_id_uses_resolved_env_scope() { + let _guard = ENV_MUTEX.lock().unwrap_or_else(|e| e.into_inner()); + let _owner = EnvGuard::set("IRONCLAW_OWNER_ID", " wizard-owner "); + + let wizard = SetupWizard::new(); + assert_eq!(wizard.owner_id(), "wizard-owner"); // safety: test-only assertion + } + + #[test] + fn test_wizard_owner_id_uses_toml_scope() { + let _guard = ENV_MUTEX.lock().unwrap_or_else(|e| e.into_inner()); + let _owner = EnvGuard::clear("IRONCLAW_OWNER_ID"); + let dir = tempdir().unwrap(); // safety: test-only tempdir setup + let path = dir.path().join("config.toml"); + std::fs::write(&path, "owner_id = \"toml-owner\"\n").unwrap(); // safety: test-only fixture write + + let wizard = SetupWizard::try_with_config_and_toml(Default::default(), Some(&path)) + .expect("wizard should load owner_id from TOML"); // safety: test-only assertion + assert_eq!(wizard.owner_id(), "toml-owner"); // safety: test-only assertion + } + + #[test] + #[cfg(unix)] + fn test_try_with_config_and_toml_propagates_invalid_owner_env() { + use std::os::unix::ffi::OsStringExt; + + let _guard = ENV_MUTEX.lock().unwrap_or_else(|e| e.into_inner()); + let original = std::env::var_os("IRONCLAW_OWNER_ID"); + unsafe { + std::env::set_var("IRONCLAW_OWNER_ID", OsString::from_vec(vec![0x66, 0x80])); + } + + let result = SetupWizard::try_with_config_and_toml(Default::default(), None); + + unsafe { + if let Some(value) = original { + std::env::set_var("IRONCLAW_OWNER_ID", value); + } else { + std::env::remove_var("IRONCLAW_OWNER_ID"); + } + } + + assert!(result.is_err()); // safety: test-only assertion + } + + #[test] + #[cfg(feature = "postgres")] fn test_mask_password_in_url() { assert_eq!( mask_password_in_url("postgres://user:secret@localhost/db"), @@ -2981,12 +3421,12 @@ mod tests { return; } - let dir = tempdir().unwrap(); + let dir = tempdir().unwrap(); // safety: test-only tempdir setup let installed = HashSet::::new(); install_missing_bundled_channels(dir.path(), &installed) .await - .unwrap(); + .unwrap(); // safety: test-only assertion assert!(dir.path().join("telegram.wasm").exists()); assert!(dir.path().join("telegram.capabilities.json").exists()); @@ -3088,7 +3528,7 @@ mod tests { #[tokio::test] async fn test_discover_wasm_channels_empty_dir() { - let dir = tempdir().unwrap(); + let dir = tempdir().unwrap(); // safety: test-only tempdir setup let channels = discover_wasm_channels(dir.path()).await; assert!(channels.is_empty()); } diff --git a/src/testing/mod.rs b/src/testing/mod.rs index 33702e67..ff522e3a 100644 --- a/src/testing/mod.rs +++ b/src/testing/mod.rs @@ -439,6 +439,7 @@ impl TestHarnessBuilder { }; let deps = AgentDeps { + owner_id: "default".to_string(), store: Some(Arc::clone(&db)), llm, cheap_llm: None, @@ -1077,7 +1078,7 @@ mod tests { }, notify: NotifyConfig { channel: None, - user: "user1".to_string(), + user: Some("user1".to_string()), on_attention: true, on_failure: true, on_success: false, @@ -1210,7 +1211,7 @@ mod tests { }, notify: NotifyConfig { channel: None, - user: "user1".to_string(), + user: Some("user1".to_string()), on_attention: false, on_failure: false, on_success: false, diff --git a/src/tools/builtin/message.rs b/src/tools/builtin/message.rs index 53d16e78..1d2ed059 100644 --- a/src/tools/builtin/message.rs +++ b/src/tools/builtin/message.rs @@ -10,6 +10,7 @@ use async_trait::async_trait; use crate::bootstrap::ironclaw_base_dir; use crate::channels::{ChannelManager, OutgoingResponse}; use crate::context::JobContext; +use crate::extensions::ExtensionManager; use crate::tools::tool::{ ApprovalRequirement, Tool, ToolError, ToolOutput, ToolRateLimitConfig, require_str, }; @@ -17,6 +18,7 @@ use crate::tools::tool::{ /// Tool for sending messages to channels. pub struct MessageTool { channel_manager: Arc, + extension_manager: Option>, /// Default channel for current conversation (set per-turn). /// Uses std::sync::RwLock because requires_approval() is sync and called from async context. default_channel: Arc>>, @@ -32,12 +34,18 @@ impl MessageTool { Self { channel_manager, + extension_manager: None, default_channel: Arc::new(RwLock::new(None)), default_target: Arc::new(RwLock::new(None)), base_dir, } } + pub fn with_extension_manager(mut self, extension_manager: Arc) -> Self { + self.extension_manager = Some(extension_manager); + self + } + /// Set the base directory for attachment validation. /// This is primarily used for testing or future configuration. pub fn with_base_dir(mut self, dir: PathBuf) -> Self { @@ -111,39 +119,76 @@ impl Tool for MessageTool { let content = require_str(¶ms, "content")?; + let explicit_channel = params + .get("channel") + .and_then(|v| v.as_str()) + .map(|value| value.to_string()); + let default_channel = self + .default_channel + .read() + .unwrap_or_else(|e| e.into_inner()) + .clone(); + let metadata_channel = ctx + .metadata + .get("notify_channel") + .and_then(|v| v.as_str()) + .map(|value| value.to_string()); + // Get channel: use param → conversation default → job metadata → None (broadcast all) - let channel: Option = - if let Some(c) = params.get("channel").and_then(|v| v.as_str()) { - Some(c.to_string()) - } else if let Some(c) = self - .default_channel + let channel: Option = explicit_channel + .clone() + .or_else(|| default_channel.clone()) + .or_else(|| metadata_channel.clone()); + + let can_use_default_target = match (explicit_channel.as_deref(), default_channel.as_deref()) + { + (None, _) => true, + (Some(explicit), Some(current)) if explicit == current => true, + _ => false, + }; + let can_use_metadata_target = match (channel.as_deref(), metadata_channel.as_deref()) { + (None, _) => true, + (Some(resolved), Some(current)) if resolved == current => true, + _ => false, + }; + + // Get target: use param → conversation default → job metadata → owner scope + // fallback when a specific channel is known. + let target = if let Some(t) = params.get("target").and_then(|v| v.as_str()) { + Some(t.to_string()) + } else if can_use_default_target + && let Some(t) = self + .default_target .read() .unwrap_or_else(|e| e.into_inner()) .clone() - { - Some(c) - } else { - ctx.metadata - .get("notify_channel") - .and_then(|v| v.as_str()) - .map(|c| c.to_string()) - }; - - // Get target: use param → conversation default → job metadata - let target = if let Some(t) = params.get("target").and_then(|v| v.as_str()) { - t.to_string() - } else if let Some(t) = self - .default_target - .read() - .unwrap_or_else(|e| e.into_inner()) - .clone() { - t - } else if let Some(t) = ctx.metadata.get("notify_user").and_then(|v| v.as_str()) { - t.to_string() + Some(t) + } else if can_use_metadata_target + && let Some(t) = ctx.metadata.get("notify_user").and_then(|v| v.as_str()) + { + Some(t.to_string()) + } else if channel.is_some() { + if let Some(channel_name) = channel.as_deref() { + if let Some(extension_manager) = self.extension_manager.as_ref() + && let Some(target) = extension_manager + .notification_target_for_channel(channel_name) + .await + { + Some(target) + } else { + Some(ctx.user_id.clone()) + } + } else { + Some(ctx.user_id.clone()) + } } else { + None + }; + + let Some(target) = target else { return Err(ToolError::ExecutionFailed( - "No target specified and no active conversation. Provide target parameter." + "No target specified and no channel-scoped routing target could be resolved. Provide target parameter." .to_string(), )); }; @@ -659,6 +704,31 @@ mod tests { ); } + #[tokio::test] + async fn message_tool_falls_back_to_ctx_user_when_channel_known() { + // Regression for owner-scoped notifications: a channel can be known + // even when the concrete delivery target is omitted, so the message + // tool should pass ctx.user_id through to the channel layer. + let tool = MessageTool::new(Arc::new(ChannelManager::new())); + + let mut ctx = + crate::context::JobContext::with_user("owner-scope", "routine-job", "price alert"); + ctx.metadata = serde_json::json!({ + "notify_channel": "telegram", + }); + + let result = tool + .execute(serde_json::json!({"content": "NEAR price is $5"}), &ctx) + .await; + + assert!(result.is_err()); // safety: test-only assertion + let err = result.unwrap_err().to_string(); + let mentions_missing_target = err.contains("No target specified"); + assert!(!mentions_missing_target); // safety: test-only assertion + let mentions_missing_channel = err.contains("No channel specified"); + assert!(!mentions_missing_channel); // safety: test-only assertion + } + #[tokio::test] async fn message_tool_no_metadata_still_errors() { // When neither conversation context nor metadata is set, should still @@ -710,4 +780,33 @@ mod tests { err ); } + + #[tokio::test] + async fn message_tool_does_not_apply_metadata_target_to_different_default_channel() { + let tool = MessageTool::new(Arc::new(ChannelManager::new())); + tool.set_context(Some("telegram".to_string()), None).await; + + let mut ctx = crate::context::JobContext::with_user("owner-scope", "test", "test"); + ctx.metadata = serde_json::json!({ + "notify_channel": "signal", + "notify_user": "metadata-user", + }); + + let result = tool + .execute(serde_json::json!({"content": "hello"}), &ctx) + .await; + + assert!(result.is_err()); + let err = result.unwrap_err().to_string(); + assert!( + !err.contains("metadata-user"), + "metadata target should not be applied to a different default channel: {}", + err + ); + assert!( + err.contains("owner-scope"), + "expected owner-scope fallback target when metadata channel differs: {}", + err + ); + } } diff --git a/src/tools/builtin/routine.rs b/src/tools/builtin/routine.rs index 42a771d3..347cb4ff 100644 --- a/src/tools/builtin/routine.rs +++ b/src/tools/builtin/routine.rs @@ -106,7 +106,7 @@ pub(crate) fn routine_create_parameters_schema() -> serde_json::Value { }, "notify_user": { "type": "string", - "description": "User or destination to notify, for example a username or chat ID." + "description": "Optional explicit user or destination to notify, for example a username or chat ID. Omit it to use the configured owner's last-seen target for that channel." }, "timezone": { "type": "string", @@ -387,8 +387,7 @@ impl Tool for RoutineCreateTool { user: params .get("notify_user") .and_then(|v| v.as_str()) - .unwrap_or("default") - .to_string(), + .map(String::from), ..NotifyConfig::default() }, last_run_at: None, diff --git a/src/tools/registry.rs b/src/tools/registry.rs index 754869c8..0c457a6d 100644 --- a/src/tools/registry.rs +++ b/src/tools/registry.rs @@ -501,9 +501,14 @@ impl ToolRegistry { pub async fn register_message_tools( &self, channel_manager: Arc, + extension_manager: Option>, ) { use crate::tools::builtin::MessageTool; - let tool = Arc::new(MessageTool::new(channel_manager)); + let mut tool = MessageTool::new(channel_manager); + if let Some(extension_manager) = extension_manager { + tool = tool.with_extension_manager(extension_manager); + } + let tool = Arc::new(tool); *self.message_tool.write().await = Some(Arc::clone(&tool)); self.tools .write() diff --git a/src/tools/wasm/wrapper.rs b/src/tools/wasm/wrapper.rs index bceb9401..be089dd8 100644 --- a/src/tools/wasm/wrapper.rs +++ b/src/tools/wasm/wrapper.rs @@ -841,13 +841,7 @@ impl Tool for WasmToolWrapper { // Pre-resolve host credentials from secrets store (async, before blocking task). // This decrypts the secrets once so the sync http_request() host function // can inject them without needing async access. - // - // BUG FIX: ExtensionManager stores OAuth tokens under user_id "default" - // (hardcoded at construction in app.rs), but this was previously looking - // them up under ctx.user_id — which could be a Telegram user ID, web - // gateway user, etc. — causing credential resolution to silently fail. - // Must match the storage key until per-user credential isolation is added. - let credential_user_id = "default"; + let credential_user_id = &ctx.user_id; let host_credentials = resolve_host_credentials( &self.capabilities, self.secrets_store.as_deref(), @@ -1165,6 +1159,13 @@ async fn resolve_host_credentials( let secret = match store.get_decrypted(user_id, &mapping.secret_name).await { Ok(s) => Some(s), Err(e) => { + tracing::trace!( + user_id = %user_id, + secret_name = %mapping.secret_name, + error = %e, + "No matching host credential resolved for WASM tool in the requested scope" + ); + // If lookup fails and we're not already looking up "default", try "default" as fallback if user_id != "default" { tracing::debug!( @@ -1385,7 +1386,16 @@ fn build_tool_usage_hint(tool_name: &str, schema: &serde_json::Value) -> String #[cfg(test)] mod tests { - use std::sync::Arc; + use std::sync::{Arc, Mutex}; + + use async_trait::async_trait; + use uuid::Uuid; + + use crate::context::JobContext; + use crate::secrets::{ + CreateSecretParams, DecryptedSecret, InMemorySecretsStore, Secret, SecretError, SecretRef, + SecretsStore, + }; use crate::testing::credentials::{ TEST_BEARER_TOKEN_123, TEST_GOOGLE_OAUTH_FRESH, TEST_GOOGLE_OAUTH_LEGACY, @@ -1396,6 +1406,78 @@ mod tests { use crate::tools::wasm::capabilities::Capabilities; use crate::tools::wasm::runtime::{WasmRuntimeConfig, WasmToolRuntime}; + struct RecordingSecretsStore { + inner: InMemorySecretsStore, + get_decrypted_lookups: Mutex>, + } + + impl RecordingSecretsStore { + fn new() -> Self { + Self { + inner: test_secrets_store(), + get_decrypted_lookups: Mutex::new(Vec::new()), + } + } + + fn decrypted_lookups(&self) -> Vec<(String, String)> { + self.get_decrypted_lookups.lock().unwrap().clone() + } + } + + #[async_trait] + impl SecretsStore for RecordingSecretsStore { + async fn create( + &self, + user_id: &str, + params: CreateSecretParams, + ) -> Result { + self.inner.create(user_id, params).await + } + + async fn get(&self, user_id: &str, name: &str) -> Result { + self.inner.get(user_id, name).await + } + + async fn get_decrypted( + &self, + user_id: &str, + name: &str, + ) -> Result { + self.get_decrypted_lookups + .lock() + .unwrap() + .push((user_id.to_string(), name.to_string())); + self.inner.get_decrypted(user_id, name).await + } + + async fn exists(&self, user_id: &str, name: &str) -> Result { + self.inner.exists(user_id, name).await + } + + async fn list(&self, user_id: &str) -> Result, SecretError> { + self.inner.list(user_id).await + } + + async fn delete(&self, user_id: &str, name: &str) -> Result { + self.inner.delete(user_id, name).await + } + + async fn record_usage(&self, secret_id: Uuid) -> Result<(), SecretError> { + self.inner.record_usage(secret_id).await + } + + async fn is_accessible( + &self, + user_id: &str, + secret_name: &str, + allowed_secrets: &[String], + ) -> Result { + self.inner + .is_accessible(user_id, secret_name, allowed_secrets) + .await + } + } + #[test] fn test_wrapper_creation() { // This test verifies the runtime can be created @@ -1691,6 +1773,104 @@ mod tests { ); } + #[tokio::test] + async fn test_resolve_host_credentials_owner_scope_bearer() { + use std::collections::HashMap; + + use crate::secrets::{ + CreateSecretParams, CredentialLocation, CredentialMapping, SecretsStore, + }; + use crate::tools::wasm::capabilities::HttpCapability; + use crate::tools::wasm::wrapper::resolve_host_credentials; + + let store = test_secrets_store(); + let ctx = JobContext::with_user("owner-scope", "owner-scope test", "owner-scope test"); + + store + .create( + &ctx.user_id, + CreateSecretParams::new("google_oauth_token", TEST_GOOGLE_OAUTH_TOKEN), + ) + .await + .unwrap(); + + let mut credentials = HashMap::new(); + credentials.insert( + "google_oauth_token".to_string(), + CredentialMapping { + secret_name: "google_oauth_token".to_string(), + location: CredentialLocation::AuthorizationBearer, + host_patterns: vec!["www.googleapis.com".to_string()], + }, + ); + + let caps = Capabilities { + http: Some(HttpCapability { + credentials, + ..Default::default() + }), + ..Default::default() + }; + + let result = resolve_host_credentials(&caps, Some(&store), &ctx.user_id, None).await; + assert_eq!(result.len(), 1); + assert_eq!( + result[0].headers.get("Authorization"), + Some(&format!("Bearer {TEST_GOOGLE_OAUTH_TOKEN}")) + ); + } + + #[tokio::test] + async fn test_execute_resolves_host_credentials_from_owner_scope_context() { + use std::collections::HashMap; + + use crate::secrets::{CredentialLocation, CredentialMapping}; + use crate::tools::wasm::capabilities::HttpCapability; + + let runtime = Arc::new(WasmToolRuntime::new(WasmRuntimeConfig::for_testing()).unwrap()); + let prepared = runtime + .prepare("search", b"\0asm\x0d\0\x01\0", None) + .await + .unwrap(); + let store = Arc::new(RecordingSecretsStore::new()); + let ctx = JobContext::with_user("owner-scope", "owner-scope test", "owner-scope test"); + + store + .create( + &ctx.user_id, + CreateSecretParams::new("google_oauth_token", TEST_GOOGLE_OAUTH_TOKEN), + ) + .await + .unwrap(); + + let mut credentials = HashMap::new(); + credentials.insert( + "google_oauth_token".to_string(), + CredentialMapping { + secret_name: "google_oauth_token".to_string(), + location: CredentialLocation::AuthorizationBearer, + host_patterns: vec!["www.googleapis.com".to_string()], + }, + ); + + let caps = Capabilities { + http: Some(HttpCapability { + credentials, + ..Default::default() + }), + ..Default::default() + }; + + let wrapper = super::WasmToolWrapper::new(Arc::clone(&runtime), prepared, caps) + .with_secrets_store(store.clone()); + let result = wrapper.execute(serde_json::json!({}), &ctx).await; + assert!(result.is_err()); + + let lookups = store.decrypted_lookups(); + assert!(lookups.contains(&("owner-scope".to_string(), "google_oauth_token".to_string()))); + assert!(!lookups.contains(&("default".to_string(), "google_oauth_token".to_string()))); + } + #[tokio::test] async fn test_resolve_host_credentials_missing_secret() { use std::collections::HashMap; diff --git a/src/transcription/chat_completions.rs b/src/transcription/chat_completions.rs new file mode 100644 index 00000000..e23818aa --- /dev/null +++ b/src/transcription/chat_completions.rs @@ -0,0 +1,179 @@ +//! Chat Completions-based transcription provider. +//! +//! Uses the `/v1/chat/completions` endpoint with `input_audio` content type +//! to transcribe audio. Compatible with OpenRouter, OpenAI GPT-4o-audio, and +//! any provider that supports audio input via the Chat Completions API. + +use async_trait::async_trait; +use base64::Engine; +use secrecy::{ExposeSecret, SecretString}; + +use super::{AudioFormat, TranscriptionError, TranscriptionProvider}; + +/// Transcription provider that sends audio via the Chat Completions API. +/// +/// Unlike the Whisper provider (which uses `/v1/audio/transcriptions` with +/// multipart upload), this provider sends base64-encoded audio as an +/// `input_audio` content part in a chat message, enabling use with +/// OpenRouter and other providers that only expose audio through the +/// Chat Completions API. +pub struct ChatCompletionsTranscriptionProvider { + client: reqwest::Client, + api_key: SecretString, + model: String, + base_url: String, +} + +impl ChatCompletionsTranscriptionProvider { + /// Create a new provider with the given API key. + pub fn new(api_key: SecretString) -> Self { + Self { + client: match reqwest::Client::builder() + .timeout(std::time::Duration::from_secs(120)) + .build() + { + Ok(c) => c, + Err(e) => { + tracing::error!( + "Failed to build HTTP client with timeout, falling back to default: {e}" + ); + reqwest::Client::default() + } + }, + api_key, + model: "google/gemini-2.0-flash-001".to_string(), + base_url: "https://openrouter.ai/api".to_string(), + } + } + + /// Override the base URL. + pub fn with_base_url(mut self, base_url: impl Into) -> Self { + self.base_url = base_url.into().trim_end_matches('/').to_string(); + self + } + + /// Override the model name. + pub fn with_model(mut self, model: impl Into) -> Self { + self.model = model.into(); + self + } +} + +/// Map [`AudioFormat`] to the format string expected by the Chat Completions API. +fn audio_format_str(format: AudioFormat) -> &'static str { + match format { + AudioFormat::Ogg => "ogg", + AudioFormat::Mp3 => "mp3", + AudioFormat::Mp4 => "mp4", + AudioFormat::Wav => "wav", + AudioFormat::Webm => "webm", + AudioFormat::Flac => "flac", + AudioFormat::M4a => "m4a", + } +} + +#[async_trait] +impl TranscriptionProvider for ChatCompletionsTranscriptionProvider { + async fn transcribe( + &self, + audio_data: &[u8], + format: AudioFormat, + ) -> Result { + if audio_data.is_empty() { + return Err(TranscriptionError::EmptyAudio); + } + + let b64 = base64::engine::general_purpose::STANDARD.encode(audio_data); + + let body = serde_json::json!({ + "model": self.model, + "messages": [{ + "role": "user", + "content": [ + { + "type": "text", + "text": "Transcribe this audio. Return only the transcript text, nothing else." + }, + { + "type": "input_audio", + "input_audio": { + "data": b64, + "format": audio_format_str(format) + } + } + ] + }] + }); + + let url = format!("{}/v1/chat/completions", self.base_url); + + let response = self + .client + .post(&url) + .header( + "Authorization", + format!("Bearer {}", self.api_key.expose_secret()), + ) + .json(&body) + .send() + .await + .map_err(|e| TranscriptionError::RequestFailed(e.to_string()))?; + + let status = response.status(); + if !status.is_success() { + let body = response + .text() + .await + .unwrap_or_else(|_| "unknown error".to_string()); + return Err(TranscriptionError::RequestFailed(format!( + "HTTP {}: {}", + status, body + ))); + } + + let json: serde_json::Value = response + .json() + .await + .map_err(|e| TranscriptionError::RequestFailed(e.to_string()))?; + + // Extract text from the standard Chat Completions response format: + // { "choices": [{ "message": { "content": "..." } }] } + let text = json + .get("choices") + .and_then(|c| c.get(0)) + .and_then(|c| c.get("message")) + .and_then(|m| m.get("content")) + .and_then(|c| c.as_str()) + .ok_or_else(|| { + TranscriptionError::RequestFailed( + "unexpected response format: missing choices[0].message.content".to_string(), + ) + })?; + + Ok(text.trim().to_string()) + } +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn audio_format_str_maps_all_variants() { + assert_eq!(audio_format_str(AudioFormat::Ogg), "ogg"); + assert_eq!(audio_format_str(AudioFormat::Mp3), "mp3"); + assert_eq!(audio_format_str(AudioFormat::Mp4), "mp4"); + assert_eq!(audio_format_str(AudioFormat::Wav), "wav"); + assert_eq!(audio_format_str(AudioFormat::Webm), "webm"); + assert_eq!(audio_format_str(AudioFormat::Flac), "flac"); + assert_eq!(audio_format_str(AudioFormat::M4a), "m4a"); + } + + #[tokio::test] + async fn rejects_empty_audio() { + let provider = + ChatCompletionsTranscriptionProvider::new(SecretString::from("test-key".to_string())); + let result = provider.transcribe(&[], AudioFormat::Ogg).await; + assert!(matches!(result, Err(TranscriptionError::EmptyAudio))); + } +} diff --git a/src/transcription/mod.rs b/src/transcription/mod.rs index d0a7d31c..ab2e43f9 100644 --- a/src/transcription/mod.rs +++ b/src/transcription/mod.rs @@ -4,8 +4,10 @@ //! backends and a [`TranscriptionMiddleware`] that detects audio attachments //! on incoming messages and replaces them with transcribed text. +mod chat_completions; mod openai; +pub use self::chat_completions::ChatCompletionsTranscriptionProvider; pub use self::openai::OpenAiWhisperProvider; use async_trait::async_trait; diff --git a/src/workspace/embeddings.rs b/src/workspace/embeddings.rs index e40337eb..96fe144b 100644 --- a/src/workspace/embeddings.rs +++ b/src/workspace/embeddings.rs @@ -231,7 +231,8 @@ impl EmbeddingProvider for OpenAiEmbeddings { .get("retry-after") .and_then(|v| v.to_str().ok()) .and_then(|s| s.parse::().ok()) - .map(std::time::Duration::from_secs); + .map(std::time::Duration::from_secs) + .or(Some(std::time::Duration::from_secs(60))); return Err(EmbeddingError::RateLimited { retry_after }); } @@ -372,7 +373,8 @@ impl EmbeddingProvider for NearAiEmbeddings { .get("retry-after") .and_then(|v| v.to_str().ok()) .and_then(|s| s.parse::().ok()) - .map(std::time::Duration::from_secs); + .map(std::time::Duration::from_secs) + .or(Some(std::time::Duration::from_secs(60))); return Err(EmbeddingError::RateLimited { retry_after }); } @@ -646,4 +648,48 @@ mod tests { let provider = OpenAiEmbeddings::new("test-key").with_base_url("custom.example.com/v1"); assert_eq!(provider.base_url, "https://custom.example.com/v1"); } + + // -- Retry-After header parsing tests (regression for rate limit "None" bug) -- + + #[test] + fn test_retry_after_parsing_delay_seconds() { + // Verify delay-seconds format is parsed correctly + let header_value = "120"; + let duration = parse_retry_after_embeddings_for_test(header_value); + assert_eq!( + duration, + Some(std::time::Duration::from_secs(120)), + "Should parse delay-seconds format" + ); + } + + #[test] + fn test_retry_after_fallback_missing_header() { + // Regression test: When Retry-After header is missing, + // should fall back to 60s instead of None + let duration = parse_retry_after_embeddings_for_test(""); + assert_eq!( + duration, + Some(std::time::Duration::from_secs(60)), + "Missing header should fallback to 60s" + ); + } + + #[test] + fn test_retry_after_zero_seconds_accepted() { + // Verify zero seconds is a valid retry delay + let duration = parse_retry_after_embeddings_for_test("0"); + assert_eq!(duration, Some(std::time::Duration::ZERO)); + } + + /// Helper function to test Retry-After header parsing logic for embeddings + /// (simulates the parsing done in embed without actual HTTP, including fallback) + fn parse_retry_after_embeddings_for_test(header_value: &str) -> Option { + header_value + .trim() + .parse::() + .ok() + .map(std::time::Duration::from_secs) + .or(Some(std::time::Duration::from_secs(60))) + } } diff --git a/tests/e2e/CLAUDE.md b/tests/e2e/CLAUDE.md index c977b6fd..0cf5e6dc 100644 --- a/tests/e2e/CLAUDE.md +++ b/tests/e2e/CLAUDE.md @@ -52,7 +52,7 @@ HEADED=1 pytest scenarios/ | `test_html_injection.py` | XSS vectors injected directly via `page.evaluate("addMessage('assistant', ...)")` are sanitized by `renderMarkdown`; user messages are shown as escaped plain text | | `test_skills.py` | Skills tab UI visibility, ClawHub search (skipped if registry unreachable), install + remove lifecycle | | `test_sse_reconnect.py` | SSE reconnects after programmatic `eventSource.close()` + `connectSSE()`; history is reloaded after reconnect | -| `test_tool_approval.py` | Approval card appears, buttons disable on approve/deny, parameters toggle; all triggered via `page.evaluate("showApproval(...)")` — no real tool call needed | +| `test_tool_approval.py` | Approval card appears, buttons disable on approve/deny, parameters toggle via `page.evaluate("showApproval(...)")`; the waiting-approval regression uses a real HTTP tool call | ## `helpers.py` @@ -164,7 +164,7 @@ async def test_my_ui_feature(page): - **`asyncio_default_fixture_loop_scope = "session"`** — all async fixtures share one event loop. Do not use `asyncio.run()` inside fixtures; use `await` directly. - **The `page` fixture navigates with `/?token=e2e-test-token` and waits for `#auth-screen` to be hidden.** Tests receive a page that is already past the auth screen and has SSE connected. - **`test_skills.py` makes real network calls to ClawHub.** Tests skip (not fail) if the registry is unreachable via `pytest.skip()`. -- **`test_html_injection.py` and `test_tool_approval.py` inject state via `page.evaluate(...)`.** They test the browser-side rendering pipeline and do not depend on the LLM or backend tool execution. +- **`test_html_injection.py` injects state via `page.evaluate(...)`, and most of `test_tool_approval.py` does too.** The waiting-approval regression in `test_tool_approval.py` intentionally uses a real tool approval flow so it can verify backend thread-state handling. - **Browser is Chromium only.** `conftest.py` uses `p.chromium.launch()`; there is no Firefox or WebKit variant. - **Default timeout is 120 seconds** (pyproject.toml). Individual `wait_for` calls inside tests use shorter timeouts (5–20s) for faster failure messages. - **The libsql database is a temp directory** created fresh per `pytest` invocation; tests do not share state across runs. diff --git a/tests/e2e/README.md b/tests/e2e/README.md index 5aac9613..17e1378b 100644 --- a/tests/e2e/README.md +++ b/tests/e2e/README.md @@ -164,5 +164,7 @@ await page.evaluate(""" """) ``` -This is the pattern used in `test_tool_approval.py` and parts of -`test_extensions.py` (auth card, configure modal). +This is the pattern used in most of `test_tool_approval.py` and parts of +`test_extensions.py` (auth card, configure modal). The waiting-approval +regression in `test_tool_approval.py` uses a real tool call instead so it can +exercise backend approval state. diff --git a/tests/e2e/conftest.py b/tests/e2e/conftest.py index dced10ea..06c7da03 100644 --- a/tests/e2e/conftest.py +++ b/tests/e2e/conftest.py @@ -15,7 +15,13 @@ from pathlib import Path import pytest -from helpers import AUTH_TOKEN, wait_for_port_line, wait_for_ready +from helpers import ( + AUTH_TOKEN, + HTTP_WEBHOOK_SECRET, + OWNER_SCOPE_ID, + wait_for_port_line, + wait_for_ready, +) # Project root (two levels up from tests/e2e/) ROOT = Path(__file__).resolve().parent.parent.parent @@ -39,6 +45,9 @@ except Exception: # Temp directory for the libSQL database file (cleaned up automatically) _DB_TMPDIR = tempfile.TemporaryDirectory(prefix="ironclaw-e2e-") +# Temp HOME so pairing/allowFrom state never touches the developer's real ~/.ironclaw +_HOME_TMPDIR = tempfile.TemporaryDirectory(prefix="ironclaw-e2e-home-") + # Temp directories for WASM extensions. These start empty and are populated by # the install pipeline during tests; fixtures do not pre-populate dev build # artifacts into them. @@ -46,6 +55,42 @@ _WASM_TOOLS_TMPDIR = tempfile.TemporaryDirectory(prefix="ironclaw-e2e-wasm-tools _WASM_CHANNELS_TMPDIR = tempfile.TemporaryDirectory(prefix="ironclaw-e2e-wasm-channels-") +def _latest_mtime(path: Path) -> float: + """Return the newest mtime under a file or directory.""" + if not path.exists(): + return 0.0 + if path.is_file(): + return path.stat().st_mtime + + latest = path.stat().st_mtime + for root, dirnames, filenames in os.walk(path): + dirnames[:] = [dirname for dirname in dirnames if dirname != "target"] + for name in filenames: + child = Path(root) / name + try: + latest = max(latest, child.stat().st_mtime) + except FileNotFoundError: + continue + return latest + + +def _binary_needs_rebuild(binary: Path) -> bool: + """Rebuild when the binary is missing or older than embedded sources.""" + if not binary.exists(): + return True + + binary_mtime = binary.stat().st_mtime + inputs = [ + ROOT / "Cargo.toml", + ROOT / "Cargo.lock", + ROOT / "build.rs", + ROOT / "providers.json", + ROOT / "src", + ROOT / "channels-src", + ] + return any(_latest_mtime(path) > binary_mtime for path in inputs) + + def _find_free_port() -> int: """Bind to port 0 and return the OS-assigned port.""" with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: @@ -53,11 +98,26 @@ def _find_free_port() -> int: return s.getsockname()[1] +def _reserve_loopback_sockets(count: int) -> list[socket.socket]: + """Bind loopback sockets and keep them open until the server starts.""" + sockets: list[socket.socket] = [] + try: + while len(sockets) < count: + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock.bind(("127.0.0.1", 0)) + sockets.append(sock) + return sockets + except Exception: + for sock in sockets: + sock.close() + raise + + @pytest.fixture(scope="session") def ironclaw_binary(): """Ensure ironclaw binary is built. Returns the binary path.""" binary = ROOT / "target" / "debug" / "ironclaw" - if not binary.exists(): + if _binary_needs_rebuild(binary): print("Building ironclaw (this may take a while)...") subprocess.run( ["cargo", "build", "--no-default-features", "--features", "libsql"], @@ -69,6 +129,21 @@ def ironclaw_binary(): return str(binary) +@pytest.fixture(scope="session") +def server_ports(): + """Reserve dynamic ports for the gateway and HTTP webhook channel.""" + reserved = _reserve_loopback_sockets(2) + try: + yield { + "gateway": reserved[0].getsockname()[1], + "http": reserved[1].getsockname()[1], + "sockets": reserved, + } + finally: + for sock in reserved: + sock.close() + + @pytest.fixture(scope="session") async def mock_llm_server(): """Start the mock LLM server. Yields the base URL.""" @@ -138,20 +213,35 @@ def _wasm_build_symlinks(): @pytest.fixture(scope="session") -async def ironclaw_server(ironclaw_binary, mock_llm_server, wasm_tools_dir): +async def ironclaw_server( + ironclaw_binary, + mock_llm_server, + wasm_tools_dir, + server_ports, +): """Start the ironclaw gateway. Yields the base URL.""" - gateway_port = _find_free_port() + home_dir = _HOME_TMPDIR.name + gateway_port = server_ports["gateway"] + http_port = server_ports["http"] + for sock in server_ports["sockets"]: + if sock.fileno() != -1: + sock.close() env = { # Minimal env: PATH for process spawning, HOME for Rust/cargo defaults "PATH": os.environ.get("PATH", "/usr/bin:/bin"), - "HOME": os.environ.get("HOME", "/tmp"), + "HOME": home_dir, + "IRONCLAW_BASE_DIR": os.path.join(home_dir, ".ironclaw"), "RUST_LOG": "ironclaw=info", "RUST_BACKTRACE": "1", + "IRONCLAW_OWNER_ID": OWNER_SCOPE_ID, "GATEWAY_ENABLED": "true", "GATEWAY_HOST": "127.0.0.1", "GATEWAY_PORT": str(gateway_port), "GATEWAY_AUTH_TOKEN": AUTH_TOKEN, - "GATEWAY_USER_ID": "e2e-tester", + "GATEWAY_USER_ID": "e2e-web-sender", + "HTTP_HOST": "127.0.0.1", + "HTTP_PORT": str(http_port), + "HTTP_WEBHOOK_SECRET": HTTP_WEBHOOK_SECRET, "CLI_ENABLED": "false", "LLM_BACKEND": "openai_compatible", "LLM_BASE_URL": mock_llm_server, @@ -221,15 +311,22 @@ async def ironclaw_server(ironclaw_binary, mock_llm_server, wasm_tools_dir): @pytest.fixture(scope="session") -async def ironclaw_server_with_webhook_secret(ironclaw_binary, mock_llm_server, wasm_tools_dir): - """Start ironclaw with HTTP_WEBHOOK_SECRET configured for webhook tests. +async def http_channel_server(ironclaw_server, server_ports): + """HTTP webhook channel base URL.""" + base_url = f"http://127.0.0.1:{server_ports['http']}" + await wait_for_ready(f"{base_url}/health", timeout=30) + return base_url - Yields a dict with: - - 'url': base URL of the gateway - - 'secret': the webhook secret value - """ + +@pytest.fixture(scope="session") +async def http_channel_server_without_secret( + ironclaw_binary, + mock_llm_server, + wasm_tools_dir, +): + """Start the HTTP webhook channel without a configured secret.""" gateway_port = _find_free_port() - webhook_secret = "test-webhook-secret-e2e-12345" + http_port = _find_free_port() env = { # Minimal env: PATH for process spawning, HOME for Rust/cargo defaults "PATH": os.environ.get("PATH", "/usr/bin:/bin"), @@ -241,13 +338,14 @@ async def ironclaw_server_with_webhook_secret(ironclaw_binary, mock_llm_server, "GATEWAY_PORT": str(gateway_port), "GATEWAY_AUTH_TOKEN": AUTH_TOKEN, "GATEWAY_USER_ID": "e2e-tester", - "HTTP_WEBHOOK_SECRET": webhook_secret, + "HTTP_HOST": "127.0.0.1", + "HTTP_PORT": str(http_port), "CLI_ENABLED": "false", "LLM_BACKEND": "openai_compatible", "LLM_BASE_URL": mock_llm_server, "LLM_MODEL": "mock-model", "DATABASE_BACKEND": "libsql", - "LIBSQL_PATH": os.path.join(_DB_TMPDIR.name, "e2e-webhook.db"), + "LIBSQL_PATH": os.path.join(_DB_TMPDIR.name, "e2e-webhook-no-secret.db"), "SANDBOX_ENABLED": "false", "SKILLS_ENABLED": "true", "ROUTINES_ENABLED": "false", @@ -277,13 +375,12 @@ async def ironclaw_server_with_webhook_secret(ironclaw_binary, mock_llm_server, stderr=asyncio.subprocess.PIPE, env=env, ) - base_url = f"http://127.0.0.1:{gateway_port}" + gateway_url = f"http://127.0.0.1:{gateway_port}" + http_base_url = f"http://127.0.0.1:{http_port}" try: - await wait_for_ready(f"{base_url}/api/health", timeout=60) - yield { - "url": base_url, - "secret": webhook_secret, - } + await wait_for_ready(f"{gateway_url}/api/health", timeout=60) + await wait_for_ready(f"{http_base_url}/health", timeout=30) + yield http_base_url except TimeoutError: # Dump stderr so CI logs show why the server failed to start returncode = proc.returncode @@ -296,7 +393,8 @@ async def ironclaw_server_with_webhook_secret(ironclaw_binary, mock_llm_server, stderr_text = stderr_bytes.decode("utf-8", errors="replace") proc.kill() pytest.fail( - f"ironclaw server with webhook secret failed to start on port {gateway_port} " + f"ironclaw server without webhook secret failed to start on ports " + f"gateway={gateway_port}, http={http_port} " f"(returncode={returncode}).\nstderr:\n{stderr_text}" ) finally: diff --git a/tests/e2e/helpers.py b/tests/e2e/helpers.py index 629205a1..a0c498e5 100644 --- a/tests/e2e/helpers.py +++ b/tests/e2e/helpers.py @@ -1,6 +1,8 @@ """Shared helpers for E2E tests.""" import asyncio +import hashlib +import hmac import re import time @@ -95,12 +97,21 @@ SEL = { "toast_success": ".toast.toast-success", "toast_error": ".toast.toast-error", "toast_info": ".toast.toast-info", + # Jobs / routines + "jobs_tbody": "#jobs-tbody", + "job_row": "#jobs-tbody .job-row", + "jobs_empty": "#jobs-empty", + "routines_tbody": "#routines-tbody", + "routine_row": "#routines-tbody .routine-row", + "routines_empty": "#routines-empty", } TABS = ["chat", "memory", "jobs", "routines", "extensions", "skills"] # Auth token used across all tests AUTH_TOKEN = "e2e-test-token" +OWNER_SCOPE_ID = "e2e-owner-scope" +HTTP_WEBHOOK_SECRET = "e2e-http-webhook-secret" async def wait_for_ready(url: str, *, timeout: float = 60, interval: float = 0.5): @@ -162,3 +173,16 @@ async def api_post(base_url: str, path: str, **kwargs) -> httpx.Response: timeout=kwargs.pop("timeout", 10), **kwargs, ) + + +def signed_http_webhook_headers(body: bytes) -> dict[str, str]: + """Return headers for the owner-scoped HTTP webhook channel.""" + digest = hmac.new( + HTTP_WEBHOOK_SECRET.encode("utf-8"), + body, + hashlib.sha256, + ).hexdigest() + return { + "Content-Type": "application/json", + "X-Hub-Signature-256": f"sha256={digest}", + } diff --git a/tests/e2e/ironclaw_e2e.egg-info/SOURCES.txt b/tests/e2e/ironclaw_e2e.egg-info/SOURCES.txt index 7f011382..c2784f64 100644 --- a/tests/e2e/ironclaw_e2e.egg-info/SOURCES.txt +++ b/tests/e2e/ironclaw_e2e.egg-info/SOURCES.txt @@ -12,11 +12,17 @@ scenarios/test_csp.py scenarios/test_extension_oauth.py scenarios/test_extensions.py scenarios/test_html_injection.py +scenarios/test_mcp_auth_flow.py scenarios/test_oauth_credential_fallback.py +scenarios/test_owner_scope.py scenarios/test_pairing.py +scenarios/test_routine_event_batch.py scenarios/test_routine_oauth_credential_injection.py scenarios/test_skills.py scenarios/test_sse_reconnect.py +scenarios/test_telegram_hot_activation.py +scenarios/test_telegram_token_validation.py scenarios/test_tool_approval.py scenarios/test_tool_execution.py -scenarios/test_wasm_lifecycle.py \ No newline at end of file +scenarios/test_wasm_lifecycle.py +scenarios/test_webhook.py \ No newline at end of file diff --git a/tests/e2e/mock_llm.py b/tests/e2e/mock_llm.py index 175accf5..c27f2762 100644 --- a/tests/e2e/mock_llm.py +++ b/tests/e2e/mock_llm.py @@ -25,7 +25,69 @@ DEFAULT_RESPONSE = "I understand your request." TOOL_CALL_PATTERNS = [ (re.compile(r"echo (.+)", re.IGNORECASE), "echo", lambda m: {"message": m.group(1)}), + ( + re.compile(r"make approval post (?P