use serde::{Deserialize, Serialize}; use tauri::Runtime; use tauri_plugin_opener::OpenerExt; use theseus::{ handler, prelude::{CommandPayload, DirectoryInfo, app_db_backup_dir}, }; use crate::api::{Result, TheseusSerializableError}; use async_zip::tokio::write::ZipFileWriter; use async_zip::{Compression, ZipEntryBuilder}; use dashmap::DashMap; use std::path::{Path, PathBuf}; use theseus::prelude::canonicalize; use tokio_util::compat::FuturesAsyncWriteCompatExt; use url::Url; pub fn init() -> tauri::plugin::TauriPlugin { tauri::plugin::Builder::new("utils") .invoke_handler(tauri::generate_handler![ get_os, is_network_metered, should_disable_mouseover, highlight_in_folder, open_path, show_launcher_logs_folder, export_error_logs, show_app_db_backups_folder, progress_bars_list, get_opening_command, get_minecraft_news ]) .build() } #[derive(Debug, Clone, Serialize, Deserialize)] #[allow(clippy::enum_variant_names)] pub enum OS { Windows, Linux, MacOS, } /// Gets OS #[tauri::command] pub fn get_os() -> OS { #[cfg(target_os = "windows")] let os = OS::Windows; #[cfg(target_os = "linux")] let os = OS::Linux; #[cfg(target_os = "macos")] let os = OS::MacOS; os } #[tauri::command] pub async fn is_network_metered() -> Result { Ok(theseus::prelude::is_network_metered().await?) } // Lists active progress bars // Create a new HashMap with the same keys // Values provided should not be used directly, as they are not guaranteed to be up-to-date #[tauri::command] pub async fn progress_bars_list() -> Result> { let res = theseus::EventState::list_progress_bars().await?; Ok(res) } // disables mouseover and fixes a random crash error only fixed by recent versions of macos #[tauri::command] pub async fn should_disable_mouseover() -> bool { if cfg!(target_os = "macos") { // We try to match version to 12.2 or higher. If unrecognizable to pattern or lower, we default to the css with disabled mouseover for safety if let tauri_plugin_os::Version::Semantic(major, minor, _) = tauri_plugin_os::version() && major >= 12 && minor >= 3 { // Mac os version is 12.3 or higher, we allow mouseover return false; } true } else { // Not macos, we allow mouseover false } } #[tauri::command] pub async fn highlight_in_folder( app: tauri::AppHandle, path: PathBuf, ) { tauri::async_runtime::spawn_blocking(move || { if let Err(e) = app.opener().reveal_item_in_dir(path) { tracing::error!("Failed to highlight file in folder: {}", e); } }) .await .ok(); } #[tauri::command] pub async fn open_path(app: tauri::AppHandle, path: PathBuf) { tauri::async_runtime::spawn_blocking(move || { if let Err(e) = app.opener().open_path(path.to_string_lossy(), None::<&str>) { tracing::error!("Failed to open path: {}", e); } }) .await .ok(); } #[tauri::command] pub async fn show_launcher_logs_folder(app: tauri::AppHandle) { if let Some(d) = DirectoryInfo::global_handle_if_ready() { let path = d.launcher_logs_dir().unwrap_or_default(); // failure to get folder just opens filesystem // (ie: if in debug mode only and launcher_logs never created) open_path(app, path).await; } } #[tauri::command] pub async fn export_error_logs( output_path: PathBuf, error_message: String, ) -> Result<()> { let archive = tokio::fs::File::create(&output_path).await?; let mut writer = ZipFileWriter::with_tokio(archive); let report = format!( "Axolotl Launcher error report\nExported at: {}\n\nError:\n{}\n", chrono::Local::now().to_rfc3339(), error_message ); write_zip_entry(&mut writer, "error.txt", report.as_bytes()).await?; if let Some(directories) = DirectoryInfo::global_handle_if_ready() && let Some(logs_dir) = directories.launcher_logs_dir() && tokio::fs::try_exists(&logs_dir).await? { let mut entries = tokio::fs::read_dir(&logs_dir).await?; while let Some(entry) = entries.next_entry().await? { if !entry.file_type().await?.is_file() { continue; } let file_name = entry.file_name().to_string_lossy().to_string(); write_zip_file( &mut writer, &format!("launcher_logs/{file_name}"), &entry.path(), ) .await?; } } writer.close().await.map_err(zip_error)?; Ok(()) } async fn write_zip_file( writer: &mut ZipFileWriter, filename: &str, path: &Path, ) -> Result<()> { let mut stream = writer .write_entry_stream( ZipEntryBuilder::new( filename.to_string().into(), Compression::Deflate, ) .build(), ) .await .map_err(zip_error)? .compat_write(); let mut source = tokio::fs::File::open(path).await?; tokio::io::copy(&mut source, &mut stream).await?; stream.into_inner().close().await.map_err(zip_error)?; Ok(()) } pub(crate) async fn write_zip_entry( writer: &mut ZipFileWriter, filename: &str, contents: &[u8], ) -> Result<()> { writer .write_entry_whole( ZipEntryBuilder::new( filename.to_string().into(), Compression::Deflate, ), contents, ) .await .map_err(zip_error)?; Ok(()) } pub(crate) fn zip_error( error: async_zip::error::ZipError, ) -> TheseusSerializableError { theseus::Error::from(theseus::ErrorKind::OtherError(format!( "Failed to create ZIP archive: {error}" ))) .into() } #[tauri::command] pub async fn show_app_db_backups_folder( app: tauri::AppHandle, ) -> Result<()> { let path = app_db_backup_dir()?; tokio::fs::create_dir_all(&path).await?; open_path(app, path).await; Ok(()) } // Get opening command // For example, if a user clicks on an .mrpack to open the app. // This should be called once and only when the app is done booting up and ready to receive a command // Returns a Command struct- see events.js #[tauri::command] #[cfg(target_os = "macos")] pub async fn get_opening_command( state: tauri::State<'_, crate::macos::deep_link::InitialPayload>, ) -> Result> { let payload = state.payload.lock().await; let cmd_arg = std::env::args_os() .nth(1) .map(|path| path.to_string_lossy().to_string()); return if let Some(payload) = payload.as_ref() { tracing::info!("opening command {payload}"); Ok(Some(handler::parse_command(payload).await?)) } else if let Some(cmd_arg) = cmd_arg { tracing::info!("opening command {cmd_arg:?}"); Ok(Some(handler::parse_command(&cmd_arg).await?)) } else { Ok(None) }; } #[tauri::command] #[cfg(not(target_os = "macos"))] pub async fn get_opening_command() -> Result> { // Tauri is not CLI, we use arguments as path to file to call let cmd_arg = std::env::args_os().nth(1); tracing::info!("opening command {cmd_arg:?}"); let cmd_arg = cmd_arg.map(|path| path.to_string_lossy().to_string()); if let Some(cmd) = cmd_arg { tracing::debug!("Opening command: {:?}", cmd); return Ok(Some(handler::parse_command(&cmd).await?)); } Ok(None) } #[tauri::command] pub async fn get_minecraft_news( limit: Option, ) -> Result> { Ok( theseus::minecraft_news::get_minecraft_news(limit.unwrap_or(12)) .await?, ) } // helper function called when redirected by a weblink (ie: modrith://do-something) or when redirected by a .mrpack file (in which case its a filepath) // We hijack the deep link library (which also contains functionality for instance-checking) pub async fn handle_command(command: String) -> Result<()> { tracing::info!("handle command: {command}"); Ok(theseus::handler::parse_and_emit_command(&command).await?) } // Remove when (and if) https://github.com/tauri-apps/tauri/issues/12022 is implemented pub(crate) fn tauri_convert_file_src(path: &Path) -> Result { #[cfg(any(windows, target_os = "android"))] const BASE: &str = "http://asset.localhost/"; #[cfg(not(any(windows, target_os = "android")))] const BASE: &str = "asset://localhost/"; macro_rules! theseus_try { ($test:expr) => { match $test { Ok(val) => val, Err(e) => { return Err(TheseusSerializableError::Theseus(e.into())) } } }; } let path = theseus_try!(canonicalize(path)); let path = path.to_string_lossy(); let encoded = urlencoding::encode(&path); Ok(theseus_try!(Url::parse(&format!("{BASE}{encoded}")))) }