barbacane-control 0.5.0

Barbacane control plane — spec compilation and management CLI
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
//! Barbacane control plane CLI.
//!
//! Provides `serve` and `seed-plugins` subcommands for running the control plane server
//! and seeding the plugin registry.

use std::net::SocketAddr;
use std::path::Path;
use std::process::ExitCode;

use clap::{Parser, Subcommand};

mod api;
mod compiler;
mod db;
mod error;
mod server;

#[derive(Parser, Debug)]
#[command(
    name = "barbacane-control",
    about = "Barbacane control plane CLI",
    version
)]
struct Cli {
    #[command(subcommand)]
    command: Command,
}

#[derive(Subcommand, Debug)]
enum Command {
    /// Start the control plane HTTP server.
    Serve {
        /// Listen address.
        #[arg(long, default_value = "127.0.0.1:9090")]
        listen: SocketAddr,

        /// PostgreSQL database URL.
        #[arg(long, env = "DATABASE_URL")]
        database_url: String,

        /// Run database migrations on startup.
        #[arg(long, default_value_t = true)]
        migrate: bool,
    },

    /// Seed the plugin registry with built-in plugins.
    SeedPlugins {
        /// Path to the plugins directory.
        #[arg(long, default_value = "plugins")]
        plugins_dir: String,

        /// PostgreSQL database URL.
        #[arg(long, env = "DATABASE_URL")]
        database_url: String,

        /// Force re-seed plugins that already exist (update metadata and binary).
        #[arg(long)]
        force: bool,

        /// Show detailed output.
        #[arg(long)]
        verbose: bool,
    },
}

fn main() -> ExitCode {
    let cli = Cli::parse();

    match cli.command {
        Command::Serve {
            listen,
            database_url,
            migrate,
        } => {
            // Initialize tracing
            tracing_subscriber::fmt()
                .with_env_filter(
                    tracing_subscriber::EnvFilter::from_default_env()
                        .add_directive("info".parse().expect("valid log directive")),
                )
                .init();

            // Run async server
            let rt = tokio::runtime::Runtime::new().expect("Failed to create runtime");
            rt.block_on(async {
                match run_server(listen, &database_url, migrate).await {
                    Ok(()) => ExitCode::SUCCESS,
                    Err(e) => {
                        eprintln!("error: {}", e);
                        ExitCode::from(1)
                    }
                }
            })
        }

        Command::SeedPlugins {
            plugins_dir,
            database_url,
            force,
            verbose,
        } => {
            let rt = tokio::runtime::Runtime::new().expect("Failed to create runtime");
            rt.block_on(async {
                match seed_plugins(&plugins_dir, &database_url, force, verbose).await {
                    Ok(count) => {
                        println!("Seeded {} plugin(s) into the registry.", count);
                        ExitCode::SUCCESS
                    }
                    Err(e) => {
                        eprintln!("error: {}", e);
                        ExitCode::from(1)
                    }
                }
            })
        }
    }
}

async fn run_server(listen: SocketAddr, database_url: &str, migrate: bool) -> anyhow::Result<()> {
    // Create database pool
    let pool = db::create_pool(database_url).await?;

    // Run migrations if requested
    if migrate {
        db::run_migrations(&pool).await?;
    }

    // Start server
    server::run(server::ServerConfig {
        listen_addr: listen,
        pool,
    })
    .await
}

/// Plugin manifest from plugin.toml
#[derive(Debug, serde::Deserialize)]
struct PluginManifest {
    plugin: PluginInfo,
    capabilities: Option<toml::Value>,
}

#[derive(Debug, serde::Deserialize)]
struct PluginInfo {
    name: String,
    version: String,
    #[serde(rename = "type")]
    plugin_type: String,
    #[serde(default)]
    description: Option<String>,
    #[serde(default)]
    wasm: Option<String>,
}

async fn seed_plugins(
    plugins_dir: &str,
    database_url: &str,
    force: bool,
    verbose: bool,
) -> anyhow::Result<usize> {
    use sha2::{Digest, Sha256};

    let plugins_path = Path::new(plugins_dir);
    if !plugins_path.exists() {
        anyhow::bail!("Plugins directory not found: {}", plugins_dir);
    }

    // Create database pool and run migrations
    let pool = db::create_pool(database_url).await?;
    db::run_migrations(&pool).await?;

    let repo = db::PluginsRepository::new(pool);
    let mut seeded_count = 0;

    // Iterate over plugin directories
    for entry in std::fs::read_dir(plugins_path)? {
        let entry = entry?;
        let plugin_path = entry.path();

        if !plugin_path.is_dir() {
            continue;
        }

        let plugin_name = plugin_path
            .file_name()
            .and_then(|n| n.to_str())
            .unwrap_or("unknown");

        // Check for plugin.toml
        let manifest_path = plugin_path.join("plugin.toml");
        if !manifest_path.exists() {
            if verbose {
                eprintln!("  Skipping {} - no plugin.toml", plugin_name);
            }
            continue;
        }

        // Parse plugin.toml
        let manifest_content = std::fs::read_to_string(&manifest_path)?;
        let manifest: PluginManifest = toml::from_str(&manifest_content)
            .map_err(|e| anyhow::anyhow!("Failed to parse {}/plugin.toml: {}", plugin_name, e))?;

        // Determine WASM filename
        let wasm_filename = manifest
            .plugin
            .wasm
            .clone()
            .unwrap_or_else(|| format!("{}.wasm", plugin_name));
        let wasm_path = plugin_path.join(&wasm_filename);

        if !wasm_path.exists() {
            if verbose {
                eprintln!(
                    "  Skipping {} - WASM file not found: {}",
                    plugin_name, wasm_filename
                );
            }
            continue;
        }

        // Check if plugin already exists
        let already_exists = repo
            .exists(&manifest.plugin.name, &manifest.plugin.version)
            .await?;
        if already_exists && !force {
            if verbose {
                eprintln!(
                    "  Skipping {} v{} - already exists (use --force to update)",
                    manifest.plugin.name, manifest.plugin.version
                );
            }
            continue;
        }

        // Read WASM binary
        let wasm_binary = std::fs::read(&wasm_path)?;

        // Compute SHA256
        let mut hasher = Sha256::new();
        hasher.update(&wasm_binary);
        let sha256 = hex::encode(hasher.finalize());

        // Read config-schema.json if exists
        let schema_path = plugin_path.join("config-schema.json");
        let config_schema: serde_json::Value = if schema_path.exists() {
            let schema_content = std::fs::read_to_string(&schema_path)?;
            serde_json::from_str(&schema_content)?
        } else {
            serde_json::json!({})
        };

        // Convert capabilities to JSON
        let capabilities = manifest
            .capabilities
            .map(|c| serde_json::to_value(&c))
            .transpose()?
            .unwrap_or(serde_json::json!([]));

        // Get description from manifest or Cargo.toml
        let description = manifest.plugin.description.or_else(|| {
            let cargo_toml_path = plugin_path.join("Cargo.toml");
            if cargo_toml_path.exists() {
                if let Ok(content) = std::fs::read_to_string(&cargo_toml_path) {
                    if let Ok(cargo) = toml::from_str::<toml::Value>(&content) {
                        return cargo
                            .get("package")
                            .and_then(|p| p.get("description"))
                            .and_then(|d| d.as_str())
                            .map(String::from);
                    }
                }
            }
            None
        });

        // Create plugin record
        let new_plugin = db::NewPlugin {
            name: manifest.plugin.name.clone(),
            version: manifest.plugin.version.clone(),
            plugin_type: manifest.plugin.plugin_type.clone(),
            description,
            capabilities,
            config_schema,
            wasm_binary,
            sha256,
        };

        if already_exists {
            repo.upsert(new_plugin).await?;
            if verbose {
                eprintln!(
                    "  Updated {} v{} ({})",
                    manifest.plugin.name, manifest.plugin.version, manifest.plugin.plugin_type
                );
            }
        } else {
            repo.create(new_plugin).await?;
            if verbose {
                eprintln!(
                    "  Registered {} v{} ({})",
                    manifest.plugin.name, manifest.plugin.version, manifest.plugin.plugin_type
                );
            }
        }
        seeded_count += 1;
    }

    Ok(seeded_count)
}

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

    #[test]
    fn test_parse_plugin_manifest_full() {
        let toml_content = r#"
[plugin]
name = "http-upstream"
version = "0.1.0"
type = "dispatcher"
description = "HTTP upstream reverse proxy dispatcher"
wasm = "http-upstream.wasm"

[capabilities]
host_functions = ["host_http_call", "host_log"]
"#;

        let manifest: PluginManifest = toml::from_str(toml_content).unwrap();

        assert_eq!(manifest.plugin.name, "http-upstream");
        assert_eq!(manifest.plugin.version, "0.1.0");
        assert_eq!(manifest.plugin.plugin_type, "dispatcher");
        assert_eq!(
            manifest.plugin.description,
            Some("HTTP upstream reverse proxy dispatcher".to_string())
        );
        assert_eq!(manifest.plugin.wasm, Some("http-upstream.wasm".to_string()));
        assert!(manifest.capabilities.is_some());
    }

    #[test]
    fn test_parse_plugin_manifest_minimal() {
        let toml_content = r#"
[plugin]
name = "mock"
version = "0.1.0"
type = "dispatcher"
"#;

        let manifest: PluginManifest = toml::from_str(toml_content).unwrap();

        assert_eq!(manifest.plugin.name, "mock");
        assert_eq!(manifest.plugin.version, "0.1.0");
        assert_eq!(manifest.plugin.plugin_type, "dispatcher");
        assert!(manifest.plugin.description.is_none());
        assert!(manifest.plugin.wasm.is_none());
        assert!(manifest.capabilities.is_none());
    }

    #[test]
    fn test_parse_plugin_manifest_middleware() {
        let toml_content = r#"
[plugin]
name = "rate-limit"
version = "0.1.0"
type = "middleware"
description = "Rate limiting middleware"
wasm = "rate-limit.wasm"

[capabilities]
rate_limit = true
log = true
"#;

        let manifest: PluginManifest = toml::from_str(toml_content).unwrap();

        assert_eq!(manifest.plugin.name, "rate-limit");
        assert_eq!(manifest.plugin.plugin_type, "middleware");

        // Verify capabilities can be converted to JSON
        let capabilities = manifest
            .capabilities
            .map(|c| serde_json::to_value(&c))
            .transpose()
            .unwrap()
            .unwrap_or(serde_json::json!([]));

        assert!(capabilities.is_object());
        assert_eq!(capabilities["rate_limit"], true);
        assert_eq!(capabilities["log"], true);
    }

    #[test]
    fn test_parse_plugin_manifest_with_host_functions() {
        let toml_content = r#"
[plugin]
name = "jwt-auth"
version = "0.1.0"
type = "middleware"

[capabilities]
host_functions = ["host_verify_signature"]
"#;

        let manifest: PluginManifest = toml::from_str(toml_content).unwrap();

        let capabilities = manifest
            .capabilities
            .map(|c| serde_json::to_value(&c))
            .transpose()
            .unwrap()
            .unwrap_or(serde_json::json!([]));

        assert!(capabilities["host_functions"].is_array());
        assert_eq!(capabilities["host_functions"][0], "host_verify_signature");
    }

    #[test]
    fn test_wasm_filename_default() {
        let toml_content = r#"
[plugin]
name = "my-plugin"
version = "1.0.0"
type = "middleware"
"#;

        let manifest: PluginManifest = toml::from_str(toml_content).unwrap();

        // When wasm is not specified, it should default to {plugin_name}.wasm
        let wasm_filename = manifest
            .plugin
            .wasm
            .clone()
            .unwrap_or_else(|| format!("{}.wasm", "my-plugin"));

        assert_eq!(wasm_filename, "my-plugin.wasm");
    }

    #[test]
    fn test_wasm_filename_explicit() {
        let toml_content = r#"
[plugin]
name = "my-plugin"
version = "1.0.0"
type = "middleware"
wasm = "custom-name.wasm"
"#;

        let manifest: PluginManifest = toml::from_str(toml_content).unwrap();

        let wasm_filename = manifest
            .plugin
            .wasm
            .clone()
            .unwrap_or_else(|| format!("{}.wasm", "my-plugin"));

        assert_eq!(wasm_filename, "custom-name.wasm");
    }
}