12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- // Copyright 2019-2024 Tauri Programme within The Commons Conservancy
- // SPDX-License-Identifier: Apache-2.0
- // SPDX-License-Identifier: MIT
- use std::{error::Error, path::PathBuf};
- use serde::Deserialize;
- use tauri_utils::{
- acl::{capability::Capability, Permission, Scopes},
- config::Config,
- write_if_changed,
- };
- macro_rules! schema {
- ($name:literal, $path:ty) => {
- (concat!($name, ".schema.json"), schemars::schema_for!($path))
- };
- }
- #[derive(Deserialize)]
- pub struct VersionMetadata {
- tauri: String,
- }
- pub fn main() -> Result<(), Box<dyn Error>> {
- let schemas = [
- schema!("capability", Capability),
- schema!("permission", Permission),
- schema!("scope", Scopes),
- ];
- let out = PathBuf::from(std::env::var("CARGO_MANIFEST_DIR")?);
- let schemas_dir = out.join("schemas");
- std::fs::create_dir_all(&schemas_dir)?;
- for (filename, schema) in schemas {
- let schema = serde_json::to_string_pretty(&schema)?;
- write_if_changed(schemas_dir.join(filename), &schema)?;
- }
- // write config schema file
- {
- let metadata = include_str!("../tauri-cli/metadata-v2.json");
- let tauri_ver = serde_json::from_str::<VersionMetadata>(metadata)?.tauri;
- // set id for generated schema
- let (filename, mut config_schema) = schema!("config", Config);
- let schema_metadata = config_schema.schema.metadata.as_mut().unwrap();
- schema_metadata.id = Some(format!("https://schema.tauri.app/config/{tauri_ver}"));
- let config_schema = serde_json::to_string_pretty(&config_schema)?;
- write_if_changed(schemas_dir.join(filename), &config_schema)?;
- write_if_changed(out.join("../tauri-cli/config.schema.json"), config_schema)?;
- }
- Ok(())
- }
|