| |
| |
| |
|
|
| #[path = "src/config.rs"] |
| mod config; |
| use config::{AssociatedDomain, Config}; |
|
|
| const COMMANDS: &[&str] = &["get_current", "register", "unregister", "is_registered"]; |
|
|
| |
| fn intent_filter(domain: &AssociatedDomain) -> String { |
| let host = domain |
| .host |
| .as_ref() |
| .map(|h| format!(r#"<data android:host="{h}" />"#)) |
| .unwrap_or_default(); |
|
|
| let auto_verify = if domain.is_app_link() { |
| r#"android:autoVerify="true" "#.to_string() |
| } else { |
| String::new() |
| }; |
|
|
| format!( |
| r#"<intent-filter {auto_verify}> |
| <action android:name="android.intent.action.VIEW" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| <category android:name="android.intent.category.BROWSABLE" /> |
| {schemes} |
| {host} |
| {domains} |
| {path_patterns} |
| {path_prefixes} |
| {path_suffixes} |
| </intent-filter>"#, |
| schemes = domain |
| .scheme |
| .iter() |
| .map(|scheme| format!(r#"<data android:scheme="{scheme}" />"#)) |
| .collect::<Vec<_>>() |
| .join("\n "), |
| host = host, |
| domains = domain |
| .path |
| .iter() |
| .map(|path| format!(r#"<data android:path="{path}" />"#)) |
| .collect::<Vec<_>>() |
| .join("\n "), |
| path_patterns = domain |
| .path_pattern |
| .iter() |
| .map(|pattern| format!(r#"<data android:pathPattern="{pattern}" />"#)) |
| .collect::<Vec<_>>() |
| .join("\n "), |
| path_prefixes = domain |
| .path_prefix |
| .iter() |
| .map(|prefix| format!(r#"<data android:pathPrefix="{prefix}" />"#)) |
| .collect::<Vec<_>>() |
| .join("\n "), |
| path_suffixes = domain |
| .path_suffix |
| .iter() |
| .map(|suffix| format!(r#"<data android:pathSuffix="{suffix}" />"#)) |
| .collect::<Vec<_>>() |
| .join("\n "), |
| ) |
| .trim() |
| .to_string() |
| } |
|
|
| fn main() { |
| let result = tauri_plugin::Builder::new(COMMANDS) |
| .global_api_script_path("./api-iife.js") |
| .android_path("android") |
| .try_build(); |
|
|
| |
| if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) { |
| result.unwrap(); |
| } |
|
|
| if let Some(config) = tauri_plugin::plugin_config::<Config>("deep-link") { |
| let errors: Vec<String> = config |
| .mobile |
| .iter() |
| .filter_map(|d| d.validate().err()) |
| .collect(); |
|
|
| if !errors.is_empty() { |
| panic!("Deep link config validation failed:\n{}", errors.join("\n")); |
| } |
|
|
| tauri_plugin::mobile::update_android_manifest( |
| "DEEP LINK PLUGIN", |
| "activity", |
| config |
| .mobile |
| .iter() |
| .map(intent_filter) |
| .collect::<Vec<_>>() |
| .join("\n"), |
| ) |
| .expect("failed to rewrite AndroidManifest.xml"); |
|
|
| #[cfg(any(target_os = "macos", target_os = "ios"))] |
| { |
| |
| |
| |
| |
| let has_app_links = config.mobile.iter().any(|d| d.is_app_link()); |
|
|
| if !has_app_links { |
| tauri_plugin::mobile::update_entitlements(|entitlements| { |
| entitlements.remove("com.apple.developer.associated-domains"); |
| }) |
| .expect("failed to update entitlements"); |
| } else { |
| tauri_plugin::mobile::update_entitlements(|entitlements| { |
| entitlements.insert( |
| "com.apple.developer.associated-domains".into(), |
| config |
| .mobile |
| .iter() |
| .filter(|d| d.is_app_link()) |
| .filter_map(|d| d.host.as_ref()) |
| .map(|host| format!("applinks:{}", host).into()) |
| .collect::<Vec<_>>() |
| .into(), |
| ); |
| }) |
| .expect("failed to update entitlements"); |
| } |
|
|
| let deep_link_domains = config |
| .mobile |
| .iter() |
| .filter(|domain| domain.is_app_link()) |
| .collect::<Vec<_>>(); |
|
|
| if deep_link_domains.is_empty() { |
| tauri_plugin::mobile::update_info_plist(|info_plist| { |
| info_plist.remove("CFBundleURLTypes"); |
| }) |
| .expect("failed to update Info.plist"); |
| } else { |
| tauri_plugin::mobile::update_info_plist(|info_plist| { |
| info_plist.insert( |
| "CFBundleURLTypes".into(), |
| deep_link_domains |
| .iter() |
| .map(|domain| { |
| let schemes = domain |
| .scheme |
| .iter() |
| .filter(|scheme| { |
| scheme.as_str() != "https" && scheme.as_str() != "http" |
| }) |
| .collect::<Vec<_>>(); |
|
|
| let mut dict = plist::Dictionary::new(); |
| dict.insert( |
| "CFBundleURLSchemes".into(), |
| schemes |
| .iter() |
| .map(|s| s.to_string().into()) |
| .collect::<Vec<_>>() |
| .into(), |
| ); |
| dict.insert( |
| "CFBundleURLName".into(), |
| domain.scheme[0].clone().into(), |
| ); |
| plist::Value::Dictionary(dict) |
| }) |
| .collect::<Vec<_>>() |
| .into(), |
| ); |
| }) |
| .expect("failed to update Info.plist"); |
| } |
| } |
| } |
| } |
|
|