You've already forked pages
forked from didirus/AstralRinth
* fix tauri config * fix package patch * regen pnpm lock * use new workflow * New GH actions * Update lockfile * update scripts * Fix build script * Fix missing deps * Fix assets eslint * Update libraries lint * Fix all lint configs * update lockfile * add fmt + clippy fails * Separate App Tauri portion * fix app features * Fix lints * install tauri cli * update lockfile * corepack, fix lints * add store path * fix unused import * Fix tests * Issue templates + port over tauri release * fix actions * fix before build command * Add X86 target * Update build matrix * finalize actions * make debug build smaller * Use debug build to make cache smaller * dummy commit * change proj name * update file name * Use release builds for less space use * Remove rust cache * Readd for app build * add merge queue trigger
72 lines
2.3 KiB
Rust
72 lines
2.3 KiB
Rust
use std::path::PathBuf;
|
|
|
|
use crate::api::Result;
|
|
use theseus::pack::import::ImportLauncherType;
|
|
|
|
use theseus::pack::import;
|
|
use theseus::prelude::ProfilePathId;
|
|
|
|
pub fn init<R: tauri::Runtime>() -> tauri::plugin::TauriPlugin<R> {
|
|
tauri::plugin::Builder::new("import")
|
|
.invoke_handler(tauri::generate_handler![
|
|
import_get_importable_instances,
|
|
import_import_instance,
|
|
import_is_valid_importable_instance,
|
|
import_get_default_launcher_path,
|
|
])
|
|
.build()
|
|
}
|
|
|
|
/// Gets a list of importable instances from a launcher type and base path
|
|
/// eg: get_importable_instances(ImportLauncherType::MultiMC, PathBuf::from("C:/MultiMC"))
|
|
/// returns ["Instance 1", "Instance 2"]
|
|
#[tauri::command]
|
|
pub async fn import_get_importable_instances(
|
|
launcher_type: ImportLauncherType,
|
|
base_path: PathBuf,
|
|
) -> Result<Vec<String>> {
|
|
Ok(import::get_importable_instances(launcher_type, base_path).await?)
|
|
}
|
|
|
|
/// Import an instance from a launcher type and base path
|
|
/// profile_path should be a blank profile for this purpose- if the function fails, it will be deleted
|
|
/// eg: import_instance(ImportLauncherType::MultiMC, PathBuf::from("C:/MultiMC"), "Instance 1")
|
|
#[tauri::command]
|
|
pub async fn import_import_instance(
|
|
profile_path: ProfilePathId,
|
|
launcher_type: ImportLauncherType,
|
|
base_path: PathBuf,
|
|
instance_folder: String,
|
|
) -> Result<()> {
|
|
import::import_instance(
|
|
profile_path,
|
|
launcher_type,
|
|
base_path,
|
|
instance_folder,
|
|
)
|
|
.await?;
|
|
Ok(())
|
|
}
|
|
|
|
/// Checks if this instance is valid for importing, given a certain launcher type
|
|
/// eg: is_valid_importable_instance(PathBuf::from("C:/MultiMC/Instance 1"), ImportLauncherType::MultiMC)
|
|
#[tauri::command]
|
|
pub async fn import_is_valid_importable_instance(
|
|
instance_folder: PathBuf,
|
|
launcher_type: ImportLauncherType,
|
|
) -> Result<bool> {
|
|
Ok(
|
|
import::is_valid_importable_instance(instance_folder, launcher_type)
|
|
.await,
|
|
)
|
|
}
|
|
|
|
/// Returns the default path for the given launcher type
|
|
/// None if it can't be found or doesn't exist
|
|
#[tauri::command]
|
|
pub async fn import_get_default_launcher_path(
|
|
launcher_type: ImportLauncherType,
|
|
) -> Result<Option<PathBuf>> {
|
|
Ok(import::get_default_launcher_path(launcher_type))
|
|
}
|