fc69ae30ab
* feat: depot api downloads * feat: frontend fixes and experimental webview store * feat: sync downloader * feat: cleanup and fixes * feat: encrypted database and fixed resuming * feat: launch option selector * fix: autostart when no options * fix: clippy * fix: clippy x2 * feat: executor launch * feat: executor launch * feat: not installed error handling * feat: better offline handling * feat: dependency popup * fix: cancelation and resuming issues * feat: dedup by platform * feat: new ui for additional components and fix dl manager clog * feat: auto-queue dependencies * feat: depot scanning and ranking * feat: new library fetching stack * In-app store page (Windows + macOS) (#176) * feat: async store loading * feat: fix overscroll behaviour * fix: query params in server protocol * fix: clippy
85 lines
2.4 KiB
Rust
85 lines
2.4 KiB
Rust
use std::sync::nonpoison::Mutex;
|
|
|
|
use database::{borrow_db_checked, borrow_db_mut_checked};
|
|
use download_manager::DOWNLOAD_MANAGER;
|
|
use log::{debug, error};
|
|
use remote::requests::{generate_url, make_authenticated_get};
|
|
use tauri::AppHandle;
|
|
use tauri_plugin_autostart::ManagerExt;
|
|
use tauri_plugin_opener::OpenerExt;
|
|
|
|
use crate::AppState;
|
|
|
|
#[tauri::command]
|
|
pub fn fetch_state(state: tauri::State<'_, Mutex<AppState>>) -> Result<String, String> {
|
|
let guard = state.lock();
|
|
let cloned_state = serde_json::to_string(&guard.clone()).map_err(|e| e.to_string())?;
|
|
drop(guard);
|
|
Ok(cloned_state)
|
|
}
|
|
|
|
#[tauri::command]
|
|
pub async fn quit(app: tauri::AppHandle) {
|
|
cleanup_and_exit(&app).await;
|
|
}
|
|
|
|
pub async fn cleanup_and_exit(app: &AppHandle) {
|
|
debug!("cleaning up and exiting application");
|
|
match DOWNLOAD_MANAGER.ensure_terminated().await {
|
|
Ok(()) => debug!("download manager terminated correctly"),
|
|
Err(_) => error!("download manager failed to terminate correctly"),
|
|
}
|
|
|
|
app.exit(0);
|
|
}
|
|
|
|
#[tauri::command]
|
|
pub fn toggle_autostart(app: AppHandle, enabled: bool) -> Result<(), String> {
|
|
let manager = app.autolaunch();
|
|
if enabled {
|
|
manager.enable().map_err(|e| e.to_string())?;
|
|
debug!("enabled autostart");
|
|
} else {
|
|
manager.disable().map_err(|e| e.to_string())?;
|
|
debug!("eisabled autostart");
|
|
}
|
|
|
|
// Store the state in DB
|
|
let mut db_handle = borrow_db_mut_checked();
|
|
db_handle.settings.autostart = enabled;
|
|
Ok(())
|
|
}
|
|
|
|
#[tauri::command]
|
|
pub fn get_autostart_enabled(app: AppHandle) -> Result<bool, tauri_plugin_autostart::Error> {
|
|
let db_handle = borrow_db_checked();
|
|
let db_state = db_handle.settings.autostart;
|
|
drop(db_handle);
|
|
|
|
// Get actual system state
|
|
let manager = app.autolaunch();
|
|
let system_state = manager.is_enabled()?;
|
|
|
|
// If they don't match, sync to DB state
|
|
if db_state != system_state {
|
|
if db_state {
|
|
manager.enable()?;
|
|
} else {
|
|
manager.disable()?;
|
|
}
|
|
}
|
|
|
|
Ok(db_state)
|
|
}
|
|
|
|
#[tauri::command]
|
|
pub fn open_fs(path: String, app_handle: AppHandle) -> Result<(), tauri_plugin_opener::Error> {
|
|
app_handle.opener().open_path(path, None::<&str>)
|
|
}
|
|
|
|
|
|
#[tauri::command]
|
|
pub async fn check_online() -> Result<bool, ()> {
|
|
let online = make_authenticated_get(generate_url(&["/api/v1/"], &[]).unwrap()).await.is_ok();
|
|
Ok(online)
|
|
} |