Skip to main content

gize_generator/
scaffold.rs

1//! High-level generators. Each returns a pure [`Plan`]; applying it is the [`Writer`]'s
2//! job. This separation keeps generation testable and makes `--dry-run` free.
3
4use anyhow::Result;
5use gize_core::naming::table_name;
6use gize_core::{Api, Dialect, Manifest, ModelSpec, Module};
7use gize_templates::{auth, crud, model, module, openapi, project, user, ws};
8
9use crate::plan::Plan;
10use crate::registry;
11
12/// The nine code files of a CRUD vertical slice (everything but the migration), shared by
13/// `gize new`'s built-in users slice, `gize make crud`, and `gize sync` so all three paths
14/// emit byte-identical code. When `is_user` is set, the password-hiding `model.rs` is used.
15fn crud_files(model: &ModelSpec, dir: &str, is_user: bool, dialect: Dialect) -> Plan {
16    // The users slice customizes the files that auth touches (password-hiding model, hashing
17    // handlers, register/login routes, an error type with `Unauthorized`); everything else is
18    // the generic CRUD template. See `gize_templates::user`.
19    let (model_rs, dto_rs, error_rs, handler_rs, routes_rs) = if is_user {
20        (
21            user::model_rs(),
22            user::dto_rs(),
23            user::error_rs(dialect),
24            user::handler_rs(dialect),
25            user::routes_rs(),
26        )
27    } else {
28        (
29            model::model_rs(model),
30            crud::dto_rs(model),
31            crud::error_rs(model, dialect),
32            crud::handler_rs(model),
33            crud::routes_rs(model),
34        )
35    };
36    Plan::new()
37        .create(format!("{dir}/mod.rs"), crud::mod_rs(model))
38        .create(format!("{dir}/model.rs"), model_rs)
39        .create(format!("{dir}/dto.rs"), dto_rs)
40        .create(format!("{dir}/error.rs"), error_rs)
41        .create(
42            format!("{dir}/repository.rs"),
43            crud::repository_rs(model, dialect),
44        )
45        .create(
46            format!("{dir}/service.rs"),
47            crud::service_rs(model, dialect),
48        )
49        .create(format!("{dir}/handler.rs"), handler_rs)
50        .create(format!("{dir}/routes.rs"), routes_rs)
51        .create(format!("{dir}/tests.rs"), crud::tests_rs(model))
52}
53
54/// The generated `src/auth/mod.rs` skeleton (ADR-013), so `gize sync` can reconcile the auth
55/// module that the CRUD routes depend on.
56pub fn auth_mod_rs() -> String {
57    auth::mod_rs()
58}
59
60/// The `src/app/openapi.rs` route module (ADR-010). Static (does not depend on the modules),
61/// so it can be reconciled drift-aware by `gize sync`.
62pub fn openapi_module_rs() -> String {
63    openapi::module_rs()
64}
65
66/// The `openapi.json` spec rendered from the manifest (ADR-010). This is a *derived* artifact
67/// — always regenerated from the manifest, never drift-protected.
68pub fn openapi_json(manifest: &Manifest) -> Result<String> {
69    let spec = gize_openapi::spec_json(manifest)?;
70    serde_json::to_string_pretty(&spec).map_err(Into::into)
71}
72
73/// The OpenAPI slice (ADR-010): the `src/app/openapi.rs` route module plus the generated
74/// `openapi.json`. Used by `gize new --openapi` and reconciled by `gize sync` when
75/// `features.openapi` is on. The module is registered in `app/mod.rs` by the command, like
76/// any module. The spec describes the *resource* routes only — the openapi module is wired
77/// but never listed in `[[module]]`, so it does not appear in its own spec.
78pub fn openapi_slice(manifest: &Manifest) -> Result<Plan> {
79    Ok(Plan::new()
80        .create("src/app/openapi.rs", openapi::module_rs())
81        .create("openapi.json", openapi_json(manifest)?))
82}
83
84/// The generated `admin/src/resources.ts` — the manifest-derived resource descriptors
85/// (ADR-006). A derived artifact, always regenerated from the current manifest.
86pub fn admin_resources_ts(manifest: &Manifest) -> Result<String> {
87    gize_admin::resources_ts(manifest)
88}
89
90/// The admin SPA **shell** (ADR-006): every file of the separate Vite + React + TypeScript app
91/// under `admin/` except the derived `src/resources.ts`. Static, so it is reconciled
92/// drift-aware by `gize sync`; the descriptors are written separately (see
93/// [`admin_resources_ts`]). Talks to the API through a Vite dev proxy — no backend changes.
94pub fn admin_shell_plan(manifest: &Manifest) -> Plan {
95    let project = &manifest.project.name;
96    Plan::new()
97        .create("admin/package.json", gize_admin::package_json(project))
98        .create("admin/vite.config.ts", gize_admin::vite_config())
99        .create("admin/tsconfig.json", gize_admin::tsconfig())
100        .create("admin/index.html", gize_admin::index_html())
101        .create("admin/.env.example", gize_admin::env_example())
102        .create("admin/.gitignore", gize_admin::gitignore())
103        .create("admin/src/main.tsx", gize_admin::main_tsx())
104        .create("admin/src/styles.css", gize_admin::styles_css())
105        .create("admin/src/theme.ts", gize_admin::theme_ts())
106        .create("admin/src/icons.tsx", gize_admin::icons_tsx())
107        .create("admin/src/toast.tsx", gize_admin::toast_tsx())
108        .create("admin/src/api.ts", gize_admin::api_ts())
109        .create("admin/src/auth.tsx", gize_admin::auth_tsx())
110        .create("admin/src/App.tsx", gize_admin::app_tsx())
111        .create("admin/src/Resource.tsx", gize_admin::resource_tsx())
112        .create(
113            "admin/src/ResourceForm.tsx",
114            gize_admin::resource_form_tsx(),
115        )
116}
117
118/// The code files (no migration) for a module reconstructed from its manifest entry, for
119/// `gize sync` (ADR-009 revision). The built-in `users` module keeps its special `model.rs`.
120pub fn module_code(module: &Module, dialect: Dialect) -> Result<Plan> {
121    let model = module.model_spec()?;
122    let dir = format!("src/app/{}", module.name);
123    Ok(crud_files(&model, &dir, module.name == "users", dialect))
124}
125
126/// The `CREATE TABLE` migration SQL for a module reconstructed from its manifest entry. The
127/// built-in `users` table keeps its special migration (`email UNIQUE`, `is_admin` default).
128pub fn module_migration_sql(module: &Module, dialect: Dialect) -> Result<String> {
129    let model = module.model_spec()?;
130    Ok(if module.name == "users" {
131        user::migration_sql(dialect)
132    } else {
133        model::migration_sql(&model, dialect)
134    })
135}
136
137/// Plan for `gize new <name>`: a complete, compiling project skeleton (ADR-005).
138///
139/// When `with_user` is set (the default), a built-in `users` resource is scaffolded and
140/// wired in — model, CRUD and a migration with an `is_admin` flag — so a fresh project has
141/// authentication-ready data from the start. When `with_openapi` is set, an OpenAPI spec +
142/// `/docs` UI are generated and wired (ADR-010). `timestamp` names the users migration and is
143/// injected (not read from the clock) to keep generation pure and tests deterministic.
144pub fn new_project(
145    name: &str,
146    with_user: bool,
147    with_openapi: bool,
148    with_ws: bool,
149    dialect: Dialect,
150    api: Option<Api>,
151    timestamp: &str,
152) -> Plan {
153    let mut manifest = Manifest::new(name);
154    // Auth is generated for every project (ADR-013): the `src/auth` module is emitted below
155    // and write routes are guarded, so the manifest reflects it.
156    manifest.features.authentication = true;
157    manifest.features.openapi = with_openapi;
158    manifest.features.websocket = with_ws;
159    // Record the API version prefix, if any, so the router nests routes under it and
160    // `gize sync` keeps the same mount (ADR-016).
161    manifest.api = api;
162    // Record the chosen database so `gize sync` regenerates against the same dialect (ADR-015).
163    manifest.stack.database = dialect.sqlx_feature().to_string();
164    if with_user {
165        // Record the built-in users module with its full shape so `gize sync` can
166        // reconcile/rebuild it from the manifest alone (ADR-009 revision).
167        manifest.upsert_module(Module {
168            name: "users".to_string(),
169            fields: user::spec().to_field_tokens(),
170            belongs_to: Vec::new(),
171        });
172    }
173
174    // Pre-wire the built-in modules into app/mod.rs using the same registry edit `make app`
175    // uses, keeping a single source of truth for the module/route wiring format.
176    let mut app_mod = project::app_mod_rs();
177    for module in [
178        (with_user, "users"),
179        (with_openapi, "openapi"),
180        (with_ws, "ws"),
181    ] {
182        if module.0 {
183            app_mod = registry::register_module(&app_mod, module.1)
184                .expect("app_mod_rs template carries the gize markers")
185                .content;
186        }
187    }
188
189    let mut plan = Plan::new()
190        .create("Cargo.toml", project::cargo_toml(name, dialect, with_ws))
191        .create("gize.toml", project::gize_toml(&manifest))
192        .create(".env.example", project::env_example(name, dialect))
193        .create(".gitignore", "/target\n.env\n")
194        .create("src/main.rs", project::main_rs())
195        .create("src/state.rs", project::state_rs(dialect))
196        .create(
197            "src/router.rs",
198            project::router_rs(manifest.api.as_ref().map(Api::mount_path).as_deref()),
199        )
200        .create("src/config/mod.rs", project::config_mod_rs())
201        .create("src/auth/mod.rs", auth::mod_rs())
202        .create("src/app/mod.rs", app_mod)
203        // Layout directories reserved by ADR-005 so the tree does not churn later.
204        .mkdir("src/database")
205        .mkdir("src/middleware")
206        .mkdir("src/shared")
207        .mkdir("migrations");
208
209    if with_user {
210        plan = plan.extend(user_slice(dialect, timestamp));
211    }
212    if with_openapi {
213        // A fresh manifest is valid, so the spec renders; propagate any error defensively.
214        plan = plan
215            .extend(openapi_slice(&manifest).expect("fresh manifest yields a valid OpenAPI spec"));
216    }
217    if with_ws {
218        plan = plan.extend(ws_module_plan());
219    }
220    plan
221}
222
223/// The optional WebSocket module (ADR-018): a self-contained `src/app/ws/` with a typed echo
224/// endpoint. Static (does not depend on the modules), so `gize sync` reconciles it drift-aware
225/// when `features.websocket` is on, like the OpenAPI module.
226pub fn ws_module_plan() -> Plan {
227    Plan::new()
228        .create("src/app/ws/mod.rs", ws::mod_rs())
229        .create("src/app/ws/message.rs", ws::message_rs())
230        .create("src/app/ws/handler.rs", ws::handler_rs())
231        .create("src/app/ws/routes.rs", ws::routes_rs())
232}
233
234/// The built-in `users` vertical slice for a fresh project: the generic CRUD templates plus
235/// a password-hiding model and a users migration with an `is_admin` flag (see [`user`]).
236fn user_slice(dialect: Dialect, timestamp: &str) -> Plan {
237    crud_files(&user::spec(), "src/app/users", true, dialect).create(
238        format!("migrations/{timestamp}_create_users.sql"),
239        user::migration_sql(dialect),
240    )
241}
242
243/// Plan for `gize make app <name>`: a full, compiling module skeleton (ADR-005).
244///
245/// The module directory equals the module name verbatim (already snake_cased by the CLI).
246/// Registration of the module in `app/mod.rs` and `gize.toml` is handled by the command,
247/// not the plan, because those are edits to existing files (see [`crate::registry`]).
248pub fn make_app(module: &str) -> Plan {
249    let dir = format!("src/app/{module}");
250    Plan::new()
251        .create(format!("{dir}/mod.rs"), module::mod_rs(module))
252        .create(
253            format!("{dir}/model.rs"),
254            module::model_placeholder_rs(module),
255        )
256        .create(format!("{dir}/dto.rs"), module::dto_rs(module))
257        .create(
258            format!("{dir}/repository.rs"),
259            module::repository_rs(module),
260        )
261        .create(format!("{dir}/service.rs"), module::service_rs(module))
262        .create(format!("{dir}/error.rs"), module::error_rs(module))
263        .create(format!("{dir}/handler.rs"), module::handler_rs(module))
264        .create(format!("{dir}/routes.rs"), module::routes_rs(module))
265        .create(format!("{dir}/tests.rs"), module::tests_rs(module))
266}
267
268/// Plan for `gize make model <Name> field:Type ...`: a model struct + its migration.
269///
270/// The module directory is the pluralized snake_case of the model (matching the table and
271/// the `gize make app` convention, e.g. `User` -> `users`). `timestamp` is injected (not
272/// read from the clock) so generation stays pure and tests are deterministic.
273pub fn make_model(model: &ModelSpec, dialect: Dialect, timestamp: &str) -> Plan {
274    let module = table_name(&model.name);
275    let table = &module;
276
277    Plan::new()
278        .create(format!("src/app/{module}/model.rs"), model::model_rs(model))
279        .create(
280            format!("migrations/{timestamp}_create_{table}.sql"),
281            model::migration_sql(model, dialect),
282        )
283}
284
285/// Plan for `gize make crud <Name> field:Type ...`: a full, compiling resource — model,
286/// DTOs, SQLx repository, service, Axum handlers, routes, error, tests, and the migration.
287/// Registration in `app/mod.rs` / `gize.toml` is handled by the command.
288pub fn make_crud(model: &ModelSpec, dialect: Dialect, timestamp: &str) -> Plan {
289    let table = table_name(&model.name);
290    let dir = format!("src/app/{table}");
291
292    crud_files(model, &dir, false, dialect).create(
293        format!("migrations/{timestamp}_create_{table}.sql"),
294        model::migration_sql(model, dialect),
295    )
296}
297
298/// Plan for `gize make migration <name>`: a single blank, timestamped SQL file the developer
299/// fills in by hand. `name` is already snake_cased by the CLI; `timestamp` is injected so
300/// generation stays pure and tests are deterministic.
301pub fn make_migration(name: &str, timestamp: &str) -> Plan {
302    Plan::new().create(
303        format!("migrations/{timestamp}_{name}.sql"),
304        model::blank_migration_sql(name),
305    )
306}
307
308#[cfg(test)]
309mod tests {
310    use super::*;
311
312    fn paths_of(plan: &Plan) -> Vec<String> {
313        plan.ops
314            .iter()
315            .map(|o| o.path.display().to_string())
316            .collect()
317    }
318
319    fn content_of<'a>(plan: &'a Plan, path: &str) -> &'a str {
320        plan.ops
321            .iter()
322            .find(|o| o.path.display().to_string() == path)
323            .map(|o| o.contents.as_str())
324            .unwrap_or_else(|| panic!("plan has no op for {path}"))
325    }
326
327    #[test]
328    fn new_project_plan_includes_core_files() {
329        let plan = new_project(
330            "shop",
331            false,
332            false,
333            false,
334            Dialect::Postgres,
335            None,
336            "20260704120000",
337        );
338        let paths = paths_of(&plan);
339        assert!(paths.contains(&"Cargo.toml".to_string()));
340        assert!(paths.contains(&"gize.toml".to_string()));
341        assert!(paths.contains(&"src/main.rs".to_string()));
342        assert!(paths.contains(&"src/app/mod.rs".to_string()));
343    }
344
345    #[test]
346    fn new_project_without_user_omits_users_slice() {
347        let plan = new_project(
348            "shop",
349            false,
350            false,
351            false,
352            Dialect::Postgres,
353            None,
354            "20260704120000",
355        );
356        let paths = paths_of(&plan);
357        assert!(!paths.iter().any(|p| p.starts_with("src/app/users/")));
358        assert!(!paths.iter().any(|p| p.ends_with("_create_users.sql")));
359        // app/mod.rs and gize.toml stay empty of the users module.
360        assert!(!content_of(&plan, "src/app/mod.rs").contains("mod users;"));
361        assert!(!content_of(&plan, "gize.toml").contains("users"));
362    }
363
364    #[test]
365    fn new_project_scaffolds_and_wires_users_by_default() {
366        let plan = new_project(
367            "shop",
368            true,
369            false,
370            false,
371            Dialect::Postgres,
372            None,
373            "20260704120000",
374        );
375        let paths = paths_of(&plan);
376        for file in ["mod.rs", "model.rs", "dto.rs", "repository.rs", "routes.rs"] {
377            assert!(
378                paths.contains(&format!("src/app/users/{file}")),
379                "missing users/{file}"
380            );
381        }
382        assert!(paths.contains(&"migrations/20260704120000_create_users.sql".to_string()));
383
384        // The users module is wired into app/mod.rs and listed in gize.toml.
385        let app_mod = content_of(&plan, "src/app/mod.rs");
386        assert!(app_mod.contains("mod users;"));
387        assert!(app_mod.contains(".merge(users::routes())"));
388        assert!(content_of(&plan, "gize.toml").contains("users"));
389
390        // The migration carries the admin flag and hides nothing schema-wise.
391        let migration = content_of(&plan, "migrations/20260704120000_create_users.sql");
392        assert!(migration.contains("is_admin BOOLEAN NOT NULL DEFAULT false"));
393    }
394
395    #[test]
396    fn make_model_plan_has_model_and_migration() {
397        let model = ModelSpec::parse("User", &["name:String".to_string()]).unwrap();
398        let plan = make_model(&model, Dialect::Postgres, "20260704120000");
399        let paths: Vec<_> = plan
400            .ops
401            .iter()
402            .map(|o| o.path.display().to_string())
403            .collect();
404        assert!(paths.contains(&"src/app/users/model.rs".to_string()));
405        assert!(paths.contains(&"migrations/20260704120000_create_users.sql".to_string()));
406    }
407
408    #[test]
409    fn make_crud_plan_has_slice_and_migration() {
410        let model = ModelSpec::parse("Product", &["name:String".to_string()]).unwrap();
411        let plan = make_crud(&model, Dialect::Postgres, "20260704120000");
412        let paths: Vec<_> = plan
413            .ops
414            .iter()
415            .map(|o| o.path.display().to_string())
416            .collect();
417        assert!(paths.contains(&"src/app/products/repository.rs".to_string()));
418        assert!(paths.contains(&"src/app/products/handler.rs".to_string()));
419        assert!(paths.contains(&"src/app/products/dto.rs".to_string()));
420        assert!(paths.contains(&"migrations/20260704120000_create_products.sql".to_string()));
421    }
422
423    #[test]
424    fn make_migration_plan_is_single_timestamped_file() {
425        let plan = make_migration("add_index_to_users", "20260704120000");
426        let paths: Vec<_> = plan
427            .ops
428            .iter()
429            .map(|o| o.path.display().to_string())
430            .collect();
431        assert_eq!(
432            paths,
433            vec!["migrations/20260704120000_add_index_to_users.sql".to_string()]
434        );
435    }
436
437    #[test]
438    fn new_project_with_openapi_includes_spec_and_module() {
439        let plan = new_project(
440            "blog",
441            true,
442            true,
443            false,
444            Dialect::Postgres,
445            None,
446            "20260704120000",
447        );
448        let paths: Vec<_> = plan
449            .ops
450            .iter()
451            .map(|o| o.path.display().to_string())
452            .collect();
453        assert!(paths.contains(&"src/app/openapi.rs".to_string()));
454        assert!(paths.contains(&"openapi.json".to_string()));
455        // The spec is valid JSON describing the users routes; the openapi module is wired.
456        let spec = plan
457            .ops
458            .iter()
459            .find(|o| o.path.display().to_string() == "openapi.json")
460            .map(|o| o.contents.as_str())
461            .unwrap();
462        assert!(spec.contains("\"/users\""));
463        let app_mod = plan
464            .ops
465            .iter()
466            .find(|o| o.path.display().to_string() == "src/app/mod.rs")
467            .map(|o| o.contents.as_str())
468            .unwrap();
469        assert!(app_mod.contains("mod openapi;"));
470        assert!(app_mod.contains(".merge(openapi::routes())"));
471    }
472
473    #[test]
474    fn new_project_without_openapi_omits_it() {
475        let plan = new_project(
476            "blog",
477            true,
478            false,
479            false,
480            Dialect::Postgres,
481            None,
482            "20260704120000",
483        );
484        let paths: Vec<_> = plan
485            .ops
486            .iter()
487            .map(|o| o.path.display().to_string())
488            .collect();
489        assert!(!paths.contains(&"openapi.json".to_string()));
490        assert!(!paths.iter().any(|p| p == "src/app/openapi.rs"));
491    }
492
493    #[test]
494    fn make_app_plan_has_full_module() {
495        let plan = make_app("users");
496        let paths: Vec<_> = plan
497            .ops
498            .iter()
499            .map(|o| o.path.display().to_string())
500            .collect();
501        for file in [
502            "mod.rs",
503            "model.rs",
504            "dto.rs",
505            "repository.rs",
506            "service.rs",
507            "error.rs",
508            "handler.rs",
509            "routes.rs",
510            "tests.rs",
511        ] {
512            assert!(
513                paths.contains(&format!("src/app/users/{file}")),
514                "missing {file}"
515            );
516        }
517    }
518}