| |
| |
| |
|
|
| use clap::Parser; |
| use colored::Colorize; |
| use regex::Regex; |
|
|
| use crate::{ |
| acl, |
| error::ErrorExt, |
| helpers::{ |
| app_paths::{resolve_frontend_dir, tauri_dir}, |
| cargo, |
| npm::PackageManager, |
| }, |
| Result, |
| }; |
|
|
| use std::process::Command; |
|
|
| #[derive(Debug, Parser)] |
| #[clap(about = "Add a tauri plugin to the project")] |
| pub struct Options { |
| |
| pub plugin: String, |
| |
| #[clap(short, long)] |
| pub tag: Option<String>, |
| |
| #[clap(short, long)] |
| pub rev: Option<String>, |
| |
| #[clap(short, long)] |
| pub branch: Option<String>, |
| |
| #[clap(long)] |
| pub no_fmt: bool, |
| } |
|
|
| pub fn command(options: Options) -> Result<()> { |
| crate::helpers::app_paths::resolve(); |
| run(options) |
| } |
|
|
| pub fn run(options: Options) -> Result<()> { |
| let (plugin, version) = options |
| .plugin |
| .split_once('@') |
| .map(|(p, v)| (p, Some(v))) |
| .unwrap_or((&options.plugin, None)); |
|
|
| let mut plugins = crate::helpers::plugins::known_plugins(); |
| let (metadata, is_known) = plugins |
| .remove(plugin) |
| .map(|metadata| (metadata, true)) |
| .unwrap_or_default(); |
|
|
| let plugin_snake_case = plugin.replace('-', "_"); |
| let crate_name = format!("tauri-plugin-{plugin}"); |
| let npm_name = if is_known { |
| format!("@tauri-apps/plugin-{plugin}") |
| } else { |
| format!("tauri-plugin-{plugin}-api") |
| }; |
|
|
| if !is_known && (options.tag.is_some() || options.rev.is_some() || options.branch.is_some()) { |
| crate::error::bail!( |
| "Git options --tag, --rev and --branch can only be used with official Tauri plugins" |
| ); |
| } |
|
|
| let frontend_dir = resolve_frontend_dir(); |
| let tauri_dir = tauri_dir(); |
|
|
| let target_str = metadata |
| .desktop_only |
| .then_some(r#"cfg(not(any(target_os = "android", target_os = "ios")))"#) |
| .or_else(|| { |
| metadata |
| .mobile_only |
| .then_some(r#"cfg(any(target_os = "android", target_os = "ios"))"#) |
| }); |
|
|
| let cargo_version_req = version.or(metadata.version_req.as_deref()); |
|
|
| cargo::install_one(cargo::CargoInstallOptions { |
| name: &crate_name, |
| version: cargo_version_req, |
| branch: options.branch.as_deref(), |
| rev: options.rev.as_deref(), |
| tag: options.tag.as_deref(), |
| cwd: Some(tauri_dir), |
| target: target_str, |
| })?; |
|
|
| if !metadata.rust_only { |
| if let Some(manager) = frontend_dir.map(PackageManager::from_project) { |
| let npm_version_req = version |
| .map(ToString::to_string) |
| .or(metadata.version_req.as_ref().map(|v| match manager { |
| PackageManager::Npm => format!(">={v}"), |
| _ => format!("~{v}"), |
| })); |
|
|
| let npm_spec = match (npm_version_req, options.tag, options.rev, options.branch) { |
| (Some(version_req), _, _, _) => format!("{npm_name}@{version_req}"), |
| (None, Some(tag), None, None) => { |
| format!("tauri-apps/tauri-plugin-{plugin}#{tag}") |
| } |
| (None, None, Some(rev), None) => { |
| format!("tauri-apps/tauri-plugin-{plugin}#{rev}") |
| } |
| (None, None, None, Some(branch)) => { |
| format!("tauri-apps/tauri-plugin-{plugin}#{branch}") |
| } |
| (None, None, None, None) => npm_name, |
| _ => crate::error::bail!("Only one of --tag, --rev and --branch can be specified"), |
| }; |
| manager.install(&[npm_spec], tauri_dir)?; |
| } |
|
|
| let _ = acl::permission::add::command(acl::permission::add::Options { |
| identifier: format!("{plugin}:default"), |
| capability: None, |
| }); |
| } |
|
|
| |
| let plugin_init_fn = if plugin == "stronghold" { |
| "Builder::new(|pass| todo!()).build()" |
| } else if plugin == "localhost" { |
| "Builder::new(todo!()).build()" |
| } else if plugin == "single-instance" { |
| "init(|app, args, cwd| {})" |
| } else if plugin == "log" { |
| "Builder::new().level(tauri_plugin_log::log::LevelFilter::Info).build()" |
| } else if metadata.builder { |
| "Builder::new().build()" |
| } else { |
| "init()" |
| }; |
| let plugin_init = format!(".plugin(tauri_plugin_{plugin_snake_case}::{plugin_init_fn})"); |
|
|
| let re = Regex::new(r"(tauri\s*::\s*Builder\s*::\s*default\(\))(\s*)").unwrap(); |
| for file in [tauri_dir.join("src/main.rs"), tauri_dir.join("src/lib.rs")] { |
| let contents = |
| std::fs::read_to_string(&file).fs_context("failed to read Rust entry point", file.clone())?; |
|
|
| if contents.contains(&plugin_init) { |
| log::info!( |
| "Plugin initialization code already found on {}", |
| file.display() |
| ); |
| return Ok(()); |
| } |
|
|
| if re.is_match(&contents) { |
| let out = re.replace(&contents, format!("$1$2{plugin_init}$2")); |
|
|
| log::info!("Adding plugin to {}", file.display()); |
| std::fs::write(&file, out.as_bytes()).fs_context("failed to write plugin init code", file)?; |
|
|
| if !options.no_fmt { |
| |
| log::info!("Running `cargo fmt`..."); |
| let _ = Command::new("cargo") |
| .arg("fmt") |
| .current_dir(tauri_dir) |
| .status(); |
| } |
|
|
| return Ok(()); |
| } |
| } |
|
|
| let builder_code = if metadata.builder { |
| format!(r#"+ .plugin(tauri_plugin_{plugin_snake_case}::Builder::new().build())"#,) |
| } else { |
| format!(r#"+ .plugin(tauri_plugin_{plugin_snake_case}::init())"#) |
| }; |
|
|
| let rust_code = format!( |
| r#" {} |
| {} |
| {}"#, |
| "tauri::Builder::default()".dimmed(), |
| builder_code.normal().green(), |
| r#".invoke_handler(tauri::generate_handler![]) |
| .run(tauri::generate_context!()) |
| .expect("error while running tauri application");"# |
| .dimmed(), |
| ); |
|
|
| log::warn!( |
| "Couldn't find `{}` in `{}` or `{}`, you must enable the plugin in your Rust code manually:\n\n{}", |
| "tauri::Builder".cyan(), |
| "main.rs".cyan(), |
| "lib.rs".cyan(), |
| rust_code |
| ); |
|
|
| Ok(()) |
| } |
|
|