sh-layer3 1.0.2

Continuum Layer 3: Capabilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
//! # Network Tools
//!
//! 网络工具集:HTTP 请求、文件下载、WebSocket 等。

use crate::builtin_tools::BuiltinTool;
use crate::types::{Layer3Result, ToolCategory};
use async_trait::async_trait;
use futures::{SinkExt, StreamExt};
use std::time::Duration;
use tokio_tungstenite::{connect_async, tungstenite::Message as WsMessage};

// ============================================================================
// HTTP GET Tool
// ============================================================================

/// HTTP GET 请求工具
pub struct HttpGetTool;

#[async_trait]
impl BuiltinTool for HttpGetTool {
    fn name(&self) -> &str {
        "http_get"
    }

    fn description(&self) -> &str {
        "Make an HTTP GET request and return the response body."
    }

    fn parameters_schema(&self) -> serde_json::Value {
        serde_json::json!({
            "type": "object",
            "properties": {
                "url": {
                    "type": "string",
                    "description": "URL to request"
                },
                "timeout": {
                    "type": "integer",
                    "description": "Request timeout in seconds (default: 30)"
                },
                "headers": {
                    "type": "object",
                    "description": "Optional headers to include"
                }
            },
            "required": ["url"]
        })
    }

    fn category(&self) -> ToolCategory {
        ToolCategory::Network
    }

    async fn execute(&self, args: serde_json::Value) -> Layer3Result<String> {
        let url = args["url"]
            .as_str()
            .ok_or_else(|| anyhow::anyhow!("Missing url parameter"))?;

        let timeout_secs = args["timeout"].as_u64().unwrap_or(30);

        let mut request = reqwest::Client::new()
            .get(url)
            .timeout(std::time::Duration::from_secs(timeout_secs));

        if let Some(headers) = args["headers"].as_object() {
            for (key, value) in headers {
                if let Some(v) = value.as_str() {
                    request = request.header(key, v);
                }
            }
        }

        let response = request
            .send()
            .await
            .map_err(|e| anyhow::anyhow!("HTTP request failed: {}", e))?;

        let status = response.status();
        let body = response
            .text()
            .await
            .map_err(|e| anyhow::anyhow!("Failed to read response body: {}", e))?;

        Ok(format!("Status: {}\n\n{}", status, body))
    }
}

// ============================================================================
// HTTP POST Tool
// ============================================================================

/// HTTP POST 请求工具
pub struct HttpPostTool;

#[async_trait]
impl BuiltinTool for HttpPostTool {
    fn name(&self) -> &str {
        "http_post"
    }

    fn description(&self) -> &str {
        "Make an HTTP POST request with optional body."
    }

    fn parameters_schema(&self) -> serde_json::Value {
        serde_json::json!({
            "type": "object",
            "properties": {
                "url": {
                    "type": "string",
                    "description": "URL to request"
                },
                "body": {
                    "type": "string",
                    "description": "Request body (JSON string or plain text)"
                },
                "content_type": {
                    "type": "string",
                    "description": "Content-Type header (default: application/json)"
                },
                "timeout": {
                    "type": "integer",
                    "description": "Request timeout in seconds (default: 30)"
                },
                "headers": {
                    "type": "object",
                    "description": "Optional headers to include"
                }
            },
            "required": ["url"]
        })
    }

    fn category(&self) -> ToolCategory {
        ToolCategory::Network
    }

    async fn execute(&self, args: serde_json::Value) -> Layer3Result<String> {
        let url = args["url"]
            .as_str()
            .ok_or_else(|| anyhow::anyhow!("Missing url parameter"))?;

        let timeout_secs = args["timeout"].as_u64().unwrap_or(30);
        let content_type = args["content_type"].as_str().unwrap_or("application/json");
        let body = args["body"].as_str().unwrap_or("");

        let mut request = reqwest::Client::new()
            .post(url)
            .timeout(std::time::Duration::from_secs(timeout_secs))
            .header("Content-Type", content_type)
            .body(body.to_string());

        if let Some(headers) = args["headers"].as_object() {
            for (key, value) in headers {
                if let Some(v) = value.as_str() {
                    request = request.header(key, v);
                }
            }
        }

        let response = request
            .send()
            .await
            .map_err(|e| anyhow::anyhow!("HTTP request failed: {}", e))?;

        let status = response.status();
        let response_body = response
            .text()
            .await
            .map_err(|e| anyhow::anyhow!("Failed to read response body: {}", e))?;

        Ok(format!("Status: {}\n\n{}", status, response_body))
    }
}

// ============================================================================
// Download File Tool
// ============================================================================

/// 文件下载工具
pub struct DownloadFileTool;

#[async_trait]
impl BuiltinTool for DownloadFileTool {
    fn name(&self) -> &str {
        "download_file"
    }

    fn description(&self) -> &str {
        "Download a file from URL and save to local path."
    }

    fn parameters_schema(&self) -> serde_json::Value {
        serde_json::json!({
            "type": "object",
            "properties": {
                "url": {
                    "type": "string",
                    "description": "URL to download from"
                },
                "path": {
                    "type": "string",
                    "description": "Local path to save the file"
                },
                "timeout": {
                    "type": "integer",
                    "description": "Download timeout in seconds (default: 60)"
                }
            },
            "required": ["url", "path"]
        })
    }

    fn category(&self) -> ToolCategory {
        ToolCategory::Network
    }

    fn requires_confirmation(&self) -> bool {
        true
    }

    async fn execute(&self, args: serde_json::Value) -> Layer3Result<String> {
        let url = args["url"]
            .as_str()
            .ok_or_else(|| anyhow::anyhow!("Missing url parameter"))?;

        let path = args["path"]
            .as_str()
            .ok_or_else(|| anyhow::anyhow!("Missing path parameter"))?;

        let timeout_secs = args["timeout"].as_u64().unwrap_or(60);

        let response = reqwest::Client::new()
            .get(url)
            .timeout(std::time::Duration::from_secs(timeout_secs))
            .send()
            .await
            .map_err(|e| anyhow::anyhow!("Download failed: {}", e))?;

        if !response.status().is_success() {
            return Err(anyhow::anyhow!(
                "Download failed with status: {}",
                response.status()
            ));
        }

        let bytes = response
            .bytes()
            .await
            .map_err(|e| anyhow::anyhow!("Failed to read response: {}", e))?;

        // Create parent directory if needed
        let file_path = std::path::Path::new(path);
        if let Some(parent) = file_path.parent() {
            std::fs::create_dir_all(parent)
                .map_err(|e| anyhow::anyhow!("Failed to create directory: {}", e))?;
        }

        std::fs::write(file_path, &bytes)
            .map_err(|e| anyhow::anyhow!("Failed to write file: {}", e))?;

        Ok(format!("Downloaded {} bytes to {}", bytes.len(), path))
    }
}

// ============================================================================
// WebSocket Connect Tool
// ============================================================================

/// WebSocket 连接工具
pub struct WebSocketConnectTool;

#[async_trait]
impl BuiltinTool for WebSocketConnectTool {
    fn name(&self) -> &str {
        "websocket_connect"
    }

    fn description(&self) -> &str {
        "Connect to a WebSocket server and send/receive messages. Returns initial messages."
    }

    fn parameters_schema(&self) -> serde_json::Value {
        serde_json::json!({
            "type": "object",
            "properties": {
                "url": {
                    "type": "string",
                    "description": "WebSocket URL (ws:// or wss://)"
                },
                "message": {
                    "type": "string",
                    "description": "Initial message to send"
                },
                "receive_count": {
                    "type": "integer",
                    "description": "Number of messages to receive (default: 1)"
                },
                "timeout": {
                    "type": "integer",
                    "description": "Timeout in seconds (default: 10)"
                }
            },
            "required": ["url"]
        })
    }

    fn category(&self) -> ToolCategory {
        ToolCategory::Network
    }

    async fn execute(&self, args: serde_json::Value) -> Layer3Result<String> {
        let url = args["url"]
            .as_str()
            .ok_or_else(|| anyhow::anyhow!("Missing url parameter"))?;

        let message = args["message"].as_str().unwrap_or("");
        let receive_count = args["receive_count"].as_u64().unwrap_or(1).min(100) as usize;
        let timeout_secs = args["timeout"].as_u64().unwrap_or(10);

        // Connect to WebSocket with timeout
        let connect_future = connect_async(url);
        let connection = tokio::time::timeout(Duration::from_secs(timeout_secs), connect_future)
            .await
            .map_err(|_| anyhow::anyhow!("WebSocket connection timeout after {}s", timeout_secs))?
            .map_err(|e| anyhow::anyhow!("WebSocket connection failed: {}", e))?;

        let (mut ws_stream, _response) = connection;

        // Send initial message if provided
        if !message.is_empty() {
            ws_stream
                .send(WsMessage::Text(message.into()))
                .await
                .map_err(|e| anyhow::anyhow!("Failed to send message: {}", e))?;
        }

        // Receive messages
        let mut received_messages: Vec<String> = Vec::new();
        let receive_timeout = Duration::from_secs(timeout_secs);

        for _ in 0..receive_count {
            match tokio::time::timeout(receive_timeout, ws_stream.next()).await {
                Ok(Some(Ok(msg))) => {
                    match msg {
                        WsMessage::Text(text) => received_messages.push(text.to_string()),
                        WsMessage::Binary(data) => {
                            received_messages.push(format!("<binary: {} bytes>", data.len()));
                        }
                        WsMessage::Ping(ping) => {
                            // Respond to ping with pong
                            let _ = ws_stream.send(WsMessage::Pong(ping)).await;
                        }
                        WsMessage::Close(_) => {
                            received_messages.push("<connection closed>".to_string());
                            break;
                        }
                        _ => {}
                    }
                }
                Ok(Some(Err(e))) => {
                    return Err(anyhow::anyhow!("WebSocket error: {}", e));
                }
                Ok(None) => {
                    received_messages.push("<stream ended>".to_string());
                    break;
                }
                Err(_) => {
                    if received_messages.is_empty() {
                        return Err(anyhow::anyhow!(
                            "No message received within {}s",
                            timeout_secs
                        ));
                    }
                    break;
                }
            }
        }

        // Close connection
        let _ = ws_stream.close(None).await;

        if received_messages.is_empty() {
            Ok(format!(
                "WebSocket connected to {} (no messages received)",
                url
            ))
        } else {
            Ok(format!(
                "WebSocket connected to {}:\n{}",
                url,
                received_messages.join("\n")
            ))
        }
    }
}

// ============================================================================
// Ping Tool
// ============================================================================

/// Ping 工具
pub struct PingTool;

#[async_trait]
impl BuiltinTool for PingTool {
    fn name(&self) -> &str {
        "ping"
    }

    fn description(&self) -> &str {
        "Check if a host is reachable via HTTP HEAD request."
    }

    fn parameters_schema(&self) -> serde_json::Value {
        serde_json::json!({
            "type": "object",
            "properties": {
                "url": {
                    "type": "string",
                    "description": "URL to ping"
                },
                "timeout": {
                    "type": "integer",
                    "description": "Timeout in seconds (default: 5)"
                }
            },
            "required": ["url"]
        })
    }

    fn category(&self) -> ToolCategory {
        ToolCategory::Network
    }

    async fn execute(&self, args: serde_json::Value) -> Layer3Result<String> {
        let url = args["url"]
            .as_str()
            .ok_or_else(|| anyhow::anyhow!("Missing url parameter"))?;

        let timeout_secs = args["timeout"].as_u64().unwrap_or(5);

        let start = std::time::Instant::now();

        let response = reqwest::Client::new()
            .head(url)
            .timeout(std::time::Duration::from_secs(timeout_secs))
            .send()
            .await;

        let elapsed_ms = start.elapsed().as_millis();

        match response {
            Ok(resp) => {
                let status = resp.status();
                Ok(format!(
                    "Ping successful: {} (status: {}, {}ms)",
                    url, status, elapsed_ms
                ))
            }
            Err(e) => Ok(format!(
                "Ping failed: {} (error: {}, {}ms)",
                url, e, elapsed_ms
            )),
        }
    }
}

// ============================================================================
// DNS Lookup Tool
// ============================================================================

/// DNS 解析工具
pub struct DnsLookupTool;

#[async_trait]
impl BuiltinTool for DnsLookupTool {
    fn name(&self) -> &str {
        "dns_lookup"
    }

    fn description(&self) -> &str {
        "Resolve DNS for a hostname. Returns IP addresses."
    }

    fn parameters_schema(&self) -> serde_json::Value {
        serde_json::json!({
            "type": "object",
            "properties": {
                "hostname": {
                    "type": "string",
                    "description": "Hostname to resolve"
                }
            },
            "required": ["hostname"]
        })
    }

    fn category(&self) -> ToolCategory {
        ToolCategory::Network
    }

    async fn execute(&self, args: serde_json::Value) -> Layer3Result<String> {
        let hostname = args["hostname"]
            .as_str()
            .ok_or_else(|| anyhow::anyhow!("Missing hostname parameter"))?;

        use tokio::net::lookup_host;

        let addresses = lookup_host(hostname)
            .await
            .map_err(|e| anyhow::anyhow!("DNS lookup failed: {}", e))?;

        let results: Vec<String> = addresses.map(|addr| addr.ip().to_string()).collect();

        Ok(format!("Resolved {} to:\n{}", hostname, results.join("\n")))
    }
}

// ============================================================================
// Tests
// ============================================================================

#[cfg(test)]
mod tests {
    use super::*;
    use serde_json::json;

    #[test]
    fn test_http_get_category() {
        let tool = HttpGetTool;
        assert_eq!(tool.category(), ToolCategory::Network);
    }

    #[test]
    fn test_http_post_category() {
        let tool = HttpPostTool;
        assert_eq!(tool.category(), ToolCategory::Network);
    }

    #[test]
    fn test_download_file_requires_confirmation() {
        let tool = DownloadFileTool;
        assert!(tool.requires_confirmation());
    }

    #[tokio::test]
    async fn test_ping_format() {
        let tool = PingTool;
        let result = tool.execute(json!({"url": "https://example.com"})).await;
        // Will succeed or fail based on network, but should be formatted correctly
        assert!(result.is_ok());
        let output = result.unwrap();
        assert!(output.contains("Ping") || output.contains("example.com"));
    }
}