[go: up one dir, main page]

mockforge-cli 0.3.0

CLI interface for MockForge
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
//! MQTT broker management and topic operations

use crate::MqttCommands;
use rumqttc::{AsyncClient, MqttOptions, QoS};
use std::time::Duration;

/// Handle MQTT commands
pub async fn handle_mqtt_command(
    mqtt_command: MqttCommands,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    match mqtt_command {
        MqttCommands::Publish {
            host,
            port,
            topic,
            payload,
            qos,
            retain,
        } => {
            handle_publish_command(host, port, topic, payload, qos, retain).await?;
        }
        MqttCommands::Subscribe {
            host,
            port,
            topic,
            qos,
        } => {
            handle_subscribe_command(host, port, topic, qos).await?;
        }
        MqttCommands::Topics { topics_command } => {
            handle_topics_command(topics_command).await?;
        }
        MqttCommands::Fixtures { fixtures_command } => {
            handle_fixtures_command(fixtures_command).await?;
        }
        MqttCommands::Clients { clients_command } => {
            handle_clients_command(clients_command).await?;
        }
    }
    Ok(())
}

/// Handle publish command
async fn handle_publish_command(
    host: String,
    port: u16,
    topic: String,
    payload: String,
    qos: u8,
    retain: bool,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    println!("Connecting to MQTT broker at {}:{}...", host, port);

    // Create MQTT client options
    let mut mqtt_options = MqttOptions::new("mockforge-cli", host, port);
    mqtt_options.set_keep_alive(Duration::from_secs(5));

    // Create client
    let (client, mut eventloop) = AsyncClient::new(mqtt_options, 10);

    // Convert QoS level
    let qos_level = match qos {
        0 => QoS::AtMostOnce,
        1 => QoS::AtLeastOnce,
        2 => QoS::ExactlyOnce,
        _ => return Err("Invalid QoS level. Must be 0, 1, or 2".into()),
    };

    println!("📤 Publishing to topic '{}' with QoS {}...", topic, qos);

    // Publish message
    client.publish(topic.clone(), qos_level, retain, payload.clone()).await?;

    println!("✅ Published to topic '{}': {}", topic, payload);
    println!("   QoS: {}, Retain: {}", qos, retain);

    // Wait a bit for the publish to complete
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Disconnect gracefully
    println!("🔌 Disconnecting...");
    client.disconnect().await?;
    println!("✅ Disconnected successfully");

    Ok(())
}

/// Handle subscribe command
async fn handle_subscribe_command(
    host: String,
    port: u16,
    topic: String,
    qos: u8,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    println!("Connecting to MQTT broker at {}:{}...", host, port);
    println!("Subscribing to topic '{}' with QoS {}", topic, qos);

    // Create MQTT client options
    let mut mqtt_options = MqttOptions::new("mockforge-cli-subscriber", host, port);
    mqtt_options.set_keep_alive(Duration::from_secs(5));

    // Create client
    let (client, mut eventloop) = AsyncClient::new(mqtt_options, 10);

    // Convert QoS level
    let qos_level = match qos {
        0 => QoS::AtMostOnce,
        1 => QoS::AtLeastOnce,
        2 => QoS::ExactlyOnce,
        _ => return Err("Invalid QoS level. Must be 0, 1, or 2".into()),
    };

    // Subscribe to topic
    client.subscribe(topic.clone(), qos_level).await?;
    println!("✅ Subscribed to topic '{}'", topic);
    println!("Listening for messages... (Press Ctrl+C to stop)");

    // Listen for messages
    loop {
        match eventloop.poll().await {
            Ok(notification) => {
                match notification {
                    rumqttc::Event::Incoming(rumqttc::Packet::Publish(publish)) => {
                        let payload = String::from_utf8_lossy(&publish.payload);
                        println!("📨 [{}] {}", publish.topic, payload);
                    }
                    rumqttc::Event::Incoming(rumqttc::Packet::SubAck(_)) => {
                        println!("✅ Subscription acknowledged");
                    }
                    rumqttc::Event::Incoming(rumqttc::Packet::ConnAck(_)) => {
                        println!("✅ Connected to broker");
                    }
                    _ => {} // Ignore other events
                }
            }
            Err(e) => {
                eprintln!("Connection error: {}", e);
                break;
            }
        }
    }

    Ok(())
}

/// Handle topics command
async fn handle_topics_command(
    topics_command: crate::MqttTopicsCommands,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    match topics_command {
        crate::MqttTopicsCommands::List => {
            handle_topics_list().await?;
        }
        crate::MqttTopicsCommands::ClearRetained => {
            handle_topics_clear_retained().await?;
        }
    }
    Ok(())
}

/// List active MQTT topics
async fn handle_topics_list() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    println!("📋 Listing active MQTT topics...");

    // Connect to MockForge management API
    let client = reqwest::Client::new();
    let management_url = std::env::var("MOCKFORGE_MANAGEMENT_URL")
        .unwrap_or_else(|_| "http://localhost:8080/__mockforge/api".to_string());

    match client.get(format!("{}/mqtt/topics", management_url)).send().await {
        Ok(response) => {
            if response.status().is_success() {
                let topics: Vec<String> = response.json().await?;
                if topics.is_empty() {
                    println!("📭 No active MQTT topics found");
                } else {
                    println!("📬 Found {} active topics:", topics.len());
                    println!("{:<50} {}", "Topic", "Type");
                    println!("{}", "-".repeat(70));

                    for topic in topics {
                        println!("{:<50} {}", topic, "subscription/retained");
                    }
                }
            } else if response.status() == reqwest::StatusCode::NOT_FOUND {
                println!("❌ MQTT broker management API not available");
                println!("   Make sure MockForge server is running with MQTT support");
            } else {
                println!("❌ Failed to list topics: HTTP {}", response.status());
            }
        }
        Err(e) => {
            println!("❌ Failed to connect to management API: {}", e);
            println!("   Make sure MockForge server is running on {}", management_url);
        }
    }

    Ok(())
}

/// Clear retained messages
async fn handle_topics_clear_retained() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    println!("🧹 Clearing retained MQTT messages...");

    // Connect to MockForge management API
    let client = reqwest::Client::new();
    let management_url = std::env::var("MOCKFORGE_MANAGEMENT_URL")
        .unwrap_or_else(|_| "http://localhost:8080/__mockforge/api".to_string());

    match client.delete(format!("{}/mqtt/topics/retained", management_url)).send().await {
        Ok(response) => {
            if response.status().is_success() {
                println!("✅ Retained messages cleared successfully");
            } else if response.status() == reqwest::StatusCode::NOT_FOUND {
                println!("❌ MQTT broker management API not available");
                println!("   Make sure MockForge server is running with MQTT support");
            } else {
                println!("❌ Failed to clear retained messages: HTTP {}", response.status());
            }
        }
        Err(e) => {
            println!("❌ Failed to connect to management API: {}", e);
            println!("   Make sure MockForge server is running on {}", management_url);
        }
    }

    Ok(())
}

/// Handle fixtures command
async fn handle_fixtures_command(
    fixtures_command: crate::MqttFixturesCommands,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    match fixtures_command {
        crate::MqttFixturesCommands::Load { path } => {
            handle_fixtures_load(path).await?;
        }
        crate::MqttFixturesCommands::StartAutoPublish => {
            handle_fixtures_start_auto_publish().await?;
        }
        crate::MqttFixturesCommands::StopAutoPublish => {
            handle_fixtures_stop_auto_publish().await?;
        }
    }
    Ok(())
}

/// Load MQTT fixtures from directory
async fn handle_fixtures_load(
    path: std::path::PathBuf,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    println!("📁 Loading MQTT fixtures from: {}", path.display());

    // Check if path exists
    if !path.exists() {
        return Err(format!("Fixtures path does not exist: {}", path.display()).into());
    }

    // Load fixtures from directory
    let mut fixtures = Vec::new();
    let mut loaded_count = 0;

    // Read all .json and .yaml files from the directory
    for entry in std::fs::read_dir(&path)? {
        let entry = entry?;
        let file_path = entry.path();

        if file_path.is_file() {
            if let Some(extension) = file_path.extension() {
                if extension == "json" || extension == "yaml" || extension == "yml" {
                    match std::fs::read_to_string(&file_path) {
                        Ok(content) => match serde_json::from_str::<serde_json::Value>(&content) {
                            Ok(fixture) => {
                                fixtures.push(fixture);
                                loaded_count += 1;
                                println!("  ✓ Loaded fixture from {}", file_path.display());
                            }
                            Err(e) => {
                                eprintln!(
                                    "  ⚠️  Failed to parse fixture {}: {}",
                                    file_path.display(),
                                    e
                                );
                            }
                        },
                        Err(e) => {
                            eprintln!(
                                "  ⚠️  Failed to read fixture {}: {}",
                                file_path.display(),
                                e
                            );
                        }
                    }
                }
            }
        }
    }

    if fixtures.is_empty() {
        println!("⚠️  No valid fixtures found in {}", path.display());
        return Ok(());
    }

    // Connect to MockForge management API
    let client = reqwest::Client::new();
    let management_url = std::env::var("MOCKFORGE_MANAGEMENT_URL")
        .unwrap_or_else(|_| "http://localhost:8080/__mockforge/api".to_string());

    match client
        .post(format!("{}/mqtt/fixtures", management_url))
        .json(&fixtures)
        .send()
        .await
    {
        Ok(response) => {
            if response.status().is_success() {
                println!(
                    "✅ Successfully loaded {} MQTT fixtures into broker registry",
                    loaded_count
                );
            } else if response.status() == reqwest::StatusCode::NOT_FOUND {
                println!("❌ MQTT broker management API not available");
                println!("   Make sure MockForge server is running with MQTT support");
            } else {
                println!("❌ Failed to load fixtures: HTTP {}", response.status());
            }
        }
        Err(e) => {
            println!("❌ Failed to connect to management API: {}", e);
            println!("   Make sure MockForge server is running on {}", management_url);
        }
    }

    Ok(())
}

/// Start auto-publish for all fixtures
async fn handle_fixtures_start_auto_publish() -> Result<(), Box<dyn std::error::Error + Send + Sync>>
{
    println!("▶️  Starting auto-publish for all MQTT fixtures...");

    // Connect to MockForge management API
    let client = reqwest::Client::new();
    let management_url = std::env::var("MOCKFORGE_MANAGEMENT_URL")
        .unwrap_or_else(|_| "http://localhost:8080/__mockforge/api".to_string());

    match client
        .post(format!("{}/mqtt/fixtures/auto-publish/start", management_url))
        .send()
        .await
    {
        Ok(response) => {
            if response.status().is_success() {
                println!("✅ Auto-publish started for all MQTT fixtures");
            } else if response.status() == reqwest::StatusCode::NOT_FOUND {
                println!("❌ MQTT broker management API not available");
                println!("   Make sure MockForge server is running with MQTT support");
            } else {
                println!("❌ Failed to start auto-publish: HTTP {}", response.status());
            }
        }
        Err(e) => {
            println!("❌ Failed to connect to management API: {}", e);
            println!("   Make sure MockForge server is running on {}", management_url);
        }
    }

    Ok(())
}

/// Stop auto-publish for all fixtures
async fn handle_fixtures_stop_auto_publish() -> Result<(), Box<dyn std::error::Error + Send + Sync>>
{
    println!("⏹️  Stopping auto-publish for all MQTT fixtures...");

    // Connect to MockForge management API
    let client = reqwest::Client::new();
    let management_url = std::env::var("MOCKFORGE_MANAGEMENT_URL")
        .unwrap_or_else(|_| "http://localhost:8080/__mockforge/api".to_string());

    match client
        .post(format!("{}/mqtt/fixtures/auto-publish/stop", management_url))
        .send()
        .await
    {
        Ok(response) => {
            if response.status().is_success() {
                println!("✅ Auto-publish stopped for all MQTT fixtures");
            } else if response.status() == reqwest::StatusCode::NOT_FOUND {
                println!("❌ MQTT broker management API not available");
                println!("   Make sure MockForge server is running with MQTT support");
            } else {
                println!("❌ Failed to stop auto-publish: HTTP {}", response.status());
            }
        }
        Err(e) => {
            println!("❌ Failed to connect to management API: {}", e);
            println!("   Make sure MockForge server is running on {}", management_url);
        }
    }

    Ok(())
}

/// Handle clients command
async fn handle_clients_command(
    clients_command: crate::MqttClientsCommands,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    match clients_command {
        crate::MqttClientsCommands::List => {
            handle_clients_list().await?;
        }
        crate::MqttClientsCommands::Disconnect { client_id } => {
            handle_clients_disconnect(client_id).await?;
        }
    }
    Ok(())
}

/// List connected MQTT clients
async fn handle_clients_list() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    println!("👥 Listing connected MQTT clients...");

    // Connect to MockForge management API
    let client = reqwest::Client::new();
    let management_url = std::env::var("MOCKFORGE_MANAGEMENT_URL")
        .unwrap_or_else(|_| "http://localhost:8080/__mockforge/api".to_string());

    match client.get(format!("{}/mqtt/clients", management_url)).send().await {
        Ok(response) => {
            if response.status().is_success() {
                let clients: Vec<serde_json::Value> = response.json().await?;
                if clients.is_empty() {
                    println!("📭 No connected MQTT clients");
                } else {
                    println!("📬 Found {} connected clients:", clients.len());
                    println!("{:<30} {:<20} {}", "Client ID", "Connected At", "Subscriptions");
                    println!("{}", "-".repeat(80));

                    for client_info in clients {
                        let client_id = client_info["client_id"].as_str().unwrap_or("N/A");
                        let connected_at = client_info["connected_at"].as_str().unwrap_or("N/A");
                        let subscriptions = client_info["subscriptions"]
                            .as_array()
                            .map(|subs| subs.len().to_string())
                            .unwrap_or_else(|| "N/A".to_string());

                        println!("{:<30} {:<20} {}", client_id, connected_at, subscriptions);
                    }
                }
            } else if response.status() == reqwest::StatusCode::NOT_FOUND {
                println!("❌ MQTT broker management API not available");
                println!("   Make sure MockForge server is running with MQTT support");
            } else {
                println!("❌ Failed to list clients: HTTP {}", response.status());
            }
        }
        Err(e) => {
            println!("❌ Failed to connect to management API: {}", e);
            println!("   Make sure MockForge server is running on {}", management_url);
        }
    }

    Ok(())
}

/// Disconnect a specific MQTT client
async fn handle_clients_disconnect(
    client_id: String,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    println!("🔌 Disconnecting MQTT client: {}", client_id);

    // Connect to MockForge management API
    let client = reqwest::Client::new();
    let management_url = std::env::var("MOCKFORGE_MANAGEMENT_URL")
        .unwrap_or_else(|_| "http://localhost:8080/__mockforge/api".to_string());

    match client
        .delete(format!("{}/mqtt/clients/{}", management_url, urlencoding::encode(&client_id)))
        .send()
        .await
    {
        Ok(response) => {
            if response.status().is_success() {
                println!("✅ Client '{}' disconnected successfully", client_id);
            } else if response.status() == reqwest::StatusCode::NOT_FOUND {
                println!(
                    "❌ Client '{}' not found or MQTT broker management API not available",
                    client_id
                );
                println!("   Make sure MockForge server is running with MQTT support");
            } else {
                println!("❌ Failed to disconnect client: HTTP {}", response.status());
            }
        }
        Err(e) => {
            println!("❌ Failed to connect to management API: {}", e);
            println!("   Make sure MockForge server is running on {}", management_url);
        }
    }

    Ok(())
}