mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 07:15:47 +00:00
b67c198227
- layout: overflow:hidden on .app-shell + min-height:0 on sidebar/main/queue prevents player bar from being pushed off-screen when window is resized below OS minHeight constraint (ignored by some Linux WMs) - lib.rs: pass main window HWND to souvlaki PlatformConfig on Windows so SMTC hooks into the existing Win32 message loop instead of creating its own — fixes media keys on Windows without crashing Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
361 lines
14 KiB
Rust
361 lines
14 KiB
Rust
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
mod audio;
|
|
|
|
use std::collections::HashMap;
|
|
use std::sync::Mutex;
|
|
|
|
use tauri::{
|
|
menu::{MenuBuilder, MenuItemBuilder},
|
|
tray::{MouseButton, MouseButtonState, TrayIconBuilder, TrayIconEvent},
|
|
Emitter, Manager,
|
|
};
|
|
|
|
/// Tracks which user-configured shortcuts are currently registered (shortcut_str → action).
|
|
/// Prevents on_shortcut() accumulating duplicate handlers across JS reloads (HMR / StrictMode).
|
|
type ShortcutMap = Mutex<HashMap<String, String>>;
|
|
|
|
/// Shared handle to OS media controls (MPRIS2 on Linux, Now Playing on macOS, SMTC on Windows).
|
|
/// `None` if souvlaki failed to initialize (e.g. no D-Bus session on Linux).
|
|
type MprisControls = Mutex<Option<souvlaki::MediaControls>>;
|
|
|
|
#[tauri::command]
|
|
fn greet(name: &str) -> String {
|
|
format!("Hello, {}!", name)
|
|
}
|
|
|
|
#[tauri::command]
|
|
fn exit_app(app_handle: tauri::AppHandle) {
|
|
app_handle.exit(0);
|
|
}
|
|
|
|
/// Proxy Last.fm API calls through Rust/reqwest to avoid WebView networking restrictions.
|
|
/// `params` is a list of [key, value] pairs (method must be included).
|
|
/// If `sign` is true an api_sig is computed. If `get` is true, a GET request is made.
|
|
#[tauri::command]
|
|
async fn lastfm_request(
|
|
params: Vec<[String; 2]>,
|
|
sign: bool,
|
|
get: bool,
|
|
api_key: String,
|
|
api_secret: String,
|
|
) -> Result<serde_json::Value, String> {
|
|
use std::collections::HashMap;
|
|
|
|
let mut map: HashMap<String, String> = params.into_iter().map(|[k, v]| (k, v)).collect();
|
|
map.insert("api_key".into(), api_key.clone());
|
|
|
|
if sign {
|
|
let mut keys: Vec<String> = map.keys().cloned().collect();
|
|
keys.sort();
|
|
let sig_str: String = keys.iter()
|
|
.filter(|k| k.as_str() != "format" && k.as_str() != "callback")
|
|
.map(|k| format!("{}{}", k, map[k]))
|
|
.collect::<String>();
|
|
let sig_input = format!("{}{}", sig_str, api_secret);
|
|
let digest = md5::compute(sig_input.as_bytes());
|
|
map.insert("api_sig".into(), format!("{:x}", digest));
|
|
}
|
|
|
|
map.insert("format".into(), "json".into());
|
|
|
|
let client = reqwest::Client::new();
|
|
let resp = if get {
|
|
client
|
|
.get("https://ws.audioscrobbler.com/2.0/")
|
|
.query(&map)
|
|
.header("User-Agent", "psysonic/1.13.0")
|
|
.send()
|
|
.await
|
|
} else {
|
|
client
|
|
.post("https://ws.audioscrobbler.com/2.0/")
|
|
.form(&map)
|
|
.header("User-Agent", "psysonic/1.13.0")
|
|
.send()
|
|
.await
|
|
}.map_err(|e| e.to_string())?;
|
|
|
|
let json: serde_json::Value = resp.json().await.map_err(|e| e.to_string())?;
|
|
|
|
if let Some(err) = json.get("error") {
|
|
return Err(format!("Last.fm {} {}", err, json.get("message").and_then(|m| m.as_str()).unwrap_or("")));
|
|
}
|
|
|
|
Ok(json)
|
|
}
|
|
|
|
|
|
#[tauri::command]
|
|
fn register_global_shortcut(
|
|
app: tauri::AppHandle,
|
|
shortcut_map: tauri::State<ShortcutMap>,
|
|
shortcut: String,
|
|
action: String,
|
|
) -> Result<(), String> {
|
|
use tauri_plugin_global_shortcut::{GlobalShortcutExt, Shortcut, ShortcutState};
|
|
|
|
let mut map = shortcut_map.lock().unwrap();
|
|
|
|
// Idempotent: if this exact shortcut+action is already registered, skip.
|
|
// This prevents on_shortcut() from accumulating duplicate handlers when
|
|
// registerAll() is called again after a JS HMR reload or StrictMode double-effect.
|
|
if map.get(&shortcut).map(|a| a == &action).unwrap_or(false) {
|
|
return Ok(());
|
|
}
|
|
|
|
// Unregister any existing OS grab for this shortcut before re-registering.
|
|
if let Ok(s) = shortcut.parse::<Shortcut>() {
|
|
let _ = app.global_shortcut().unregister(s);
|
|
}
|
|
map.insert(shortcut.clone(), action.clone());
|
|
drop(map); // release lock before the blocking OS call
|
|
|
|
let parsed: Shortcut = shortcut.parse().map_err(|_| format!("Invalid shortcut: {shortcut}"))?;
|
|
app.global_shortcut()
|
|
.on_shortcut(parsed, move |app, _shortcut, event| {
|
|
if event.state == ShortcutState::Pressed {
|
|
let event_name = match action.as_str() {
|
|
"play-pause" => "media:play-pause",
|
|
"next" => "media:next",
|
|
"prev" => "media:prev",
|
|
"volume-up" => "media:volume-up",
|
|
"volume-down" => "media:volume-down",
|
|
_ => return,
|
|
};
|
|
let _ = app.emit(event_name, ());
|
|
}
|
|
})
|
|
.map_err(|e| e.to_string())
|
|
}
|
|
|
|
#[tauri::command]
|
|
fn unregister_global_shortcut(
|
|
app: tauri::AppHandle,
|
|
shortcut_map: tauri::State<ShortcutMap>,
|
|
shortcut: String,
|
|
) -> Result<(), String> {
|
|
use tauri_plugin_global_shortcut::{GlobalShortcutExt, Shortcut};
|
|
shortcut_map.lock().unwrap().remove(&shortcut);
|
|
let parsed: Shortcut = shortcut.parse().map_err(|_| format!("Invalid shortcut: {shortcut}"))?;
|
|
app.global_shortcut().unregister(parsed).map_err(|e| e.to_string())
|
|
}
|
|
|
|
#[tauri::command]
|
|
fn mpris_set_metadata(
|
|
controls: tauri::State<MprisControls>,
|
|
title: Option<String>,
|
|
artist: Option<String>,
|
|
album: Option<String>,
|
|
cover_url: Option<String>,
|
|
duration_secs: Option<f64>,
|
|
) -> Result<(), String> {
|
|
use souvlaki::MediaMetadata;
|
|
use std::time::Duration;
|
|
|
|
let duration = duration_secs.map(|s| Duration::from_secs_f64(s));
|
|
let mut guard = controls.lock().unwrap();
|
|
let Some(ctrl) = guard.as_mut() else { return Ok(()); };
|
|
ctrl.set_metadata(MediaMetadata {
|
|
title: title.as_deref(),
|
|
artist: artist.as_deref(),
|
|
album: album.as_deref(),
|
|
cover_url: cover_url.as_deref(),
|
|
duration,
|
|
})
|
|
.map_err(|e| format!("MPRIS set_metadata failed: {e:?}"))
|
|
}
|
|
|
|
#[tauri::command]
|
|
fn mpris_set_playback(
|
|
controls: tauri::State<MprisControls>,
|
|
playing: bool,
|
|
position_secs: Option<f64>,
|
|
) -> Result<(), String> {
|
|
use souvlaki::{MediaPlayback, MediaPosition};
|
|
use std::time::Duration;
|
|
|
|
let progress = position_secs.map(|s| MediaPosition(Duration::from_secs_f64(s)));
|
|
let playback = if playing {
|
|
MediaPlayback::Playing { progress }
|
|
} else {
|
|
MediaPlayback::Paused { progress }
|
|
};
|
|
let mut guard = controls.lock().unwrap();
|
|
let Some(ctrl) = guard.as_mut() else { return Ok(()); };
|
|
ctrl.set_playback(playback)
|
|
.map_err(|e| format!("MPRIS set_playback failed: {e:?}"))
|
|
}
|
|
|
|
pub fn run() {
|
|
let (audio_engine, _audio_thread) = audio::create_engine();
|
|
|
|
tauri::Builder::default()
|
|
.manage(audio_engine)
|
|
.manage(ShortcutMap::default())
|
|
.plugin(tauri_plugin_window_state::Builder::default().build())
|
|
.plugin(tauri_plugin_shell::init())
|
|
.plugin(tauri_plugin_notification::init())
|
|
.plugin(tauri_plugin_global_shortcut::Builder::new().build())
|
|
.plugin(tauri_plugin_store::Builder::default().build())
|
|
.plugin(tauri_plugin_dialog::init())
|
|
.plugin(tauri_plugin_fs::init())
|
|
.setup(|app| {
|
|
// Build tray menu
|
|
let play_pause = MenuItemBuilder::with_id("play_pause", "Play / Pause").build(app)?;
|
|
let next = MenuItemBuilder::with_id("next", "Next Track").build(app)?;
|
|
let separator = tauri::menu::PredefinedMenuItem::separator(app)?;
|
|
let show = MenuItemBuilder::with_id("show", "Show Psysonic").build(app)?;
|
|
let quit = MenuItemBuilder::with_id("quit", "Exit").build(app)?;
|
|
|
|
let menu = MenuBuilder::new(app)
|
|
.item(&play_pause)
|
|
.item(&next)
|
|
.item(&separator)
|
|
.item(&show)
|
|
.item(&quit)
|
|
.build()?;
|
|
|
|
let _tray = TrayIconBuilder::new()
|
|
.icon(app.default_window_icon().unwrap().clone())
|
|
.menu(&menu)
|
|
.tooltip("Psysonic")
|
|
.on_menu_event(|app, event| match event.id.as_ref() {
|
|
"play_pause" => {
|
|
let _ = app.emit("tray:play-pause", ());
|
|
}
|
|
"next" => {
|
|
let _ = app.emit("tray:next", ());
|
|
}
|
|
"show" => {
|
|
if let Some(window) = app.get_webview_window("main") {
|
|
let _ = window.show();
|
|
let _ = window.set_focus();
|
|
}
|
|
}
|
|
"quit" => {
|
|
std::process::exit(0);
|
|
}
|
|
_ => {}
|
|
})
|
|
.on_tray_icon_event(|_tray, event| {
|
|
if let TrayIconEvent::Click {
|
|
button: MouseButton::Left,
|
|
button_state: MouseButtonState::Up,
|
|
..
|
|
} = event
|
|
{
|
|
// Left click shows app (handled in JS side via tray event)
|
|
}
|
|
})
|
|
.build(app)?;
|
|
|
|
// ── MPRIS2 / OS media controls via souvlaki ──────────────────
|
|
{
|
|
use souvlaki::{MediaControlEvent, MediaControls, PlatformConfig};
|
|
|
|
// Collect pre-conditions and the platform-specific HWND.
|
|
// Returns None early (with a log) on any unrecoverable condition
|
|
// so app.manage() always executes exactly once at the bottom.
|
|
let maybe_controls: Option<MediaControls> = (|| {
|
|
// Linux: requires a live D-Bus session.
|
|
#[cfg(target_os = "linux")]
|
|
{
|
|
let dbus_ok = std::env::var("DBUS_SESSION_BUS_ADDRESS")
|
|
.map(|v| !v.is_empty())
|
|
.unwrap_or(false);
|
|
if !dbus_ok {
|
|
eprintln!("[Psysonic] No D-Bus session — MPRIS media controls disabled");
|
|
return None;
|
|
}
|
|
}
|
|
|
|
// Windows: souvlaki SMTC must hook into the existing Win32
|
|
// message loop rather than spinning up its own. Pass the
|
|
// main window's HWND so it can do so. If we can't get one,
|
|
// skip init (no crash, just no media overlay).
|
|
#[cfg(target_os = "windows")]
|
|
let hwnd = {
|
|
use tauri::Manager;
|
|
let h = app.get_webview_window("main")
|
|
.and_then(|w| w.hwnd().ok())
|
|
.map(|h| h.0 as *mut std::ffi::c_void);
|
|
if h.is_none() {
|
|
eprintln!("[Psysonic] Could not get HWND — Windows media controls disabled");
|
|
return None;
|
|
}
|
|
h
|
|
};
|
|
#[cfg(not(target_os = "windows"))]
|
|
let hwnd: Option<*mut std::ffi::c_void> = None;
|
|
|
|
let config = PlatformConfig {
|
|
dbus_name: "psysonic",
|
|
display_name: "Psysonic",
|
|
hwnd,
|
|
};
|
|
|
|
match MediaControls::new(config) {
|
|
Ok(mut controls) => {
|
|
let app_handle = app.handle().clone();
|
|
if let Err(e) = controls.attach(move |event: MediaControlEvent| {
|
|
let event_name = match event {
|
|
MediaControlEvent::Toggle => "media:play-pause",
|
|
MediaControlEvent::Play => "media:play-pause",
|
|
MediaControlEvent::Pause => "media:play-pause",
|
|
MediaControlEvent::Next => "media:next",
|
|
MediaControlEvent::Previous => "media:prev",
|
|
_ => return,
|
|
};
|
|
let _ = app_handle.emit(event_name, ());
|
|
}) {
|
|
eprintln!("[Psysonic] Failed to attach media controls: {e:?}");
|
|
}
|
|
Some(controls)
|
|
}
|
|
Err(e) => {
|
|
eprintln!("[Psysonic] Could not create media controls: {e:?}");
|
|
None
|
|
}
|
|
}
|
|
})();
|
|
|
|
app.manage(MprisControls::new(maybe_controls));
|
|
}
|
|
|
|
Ok(())
|
|
})
|
|
.on_window_event(|window, event| {
|
|
if let tauri::WindowEvent::CloseRequested { .. } = event {
|
|
// Only intercept close for the main window (hide to tray).
|
|
// Browser popup windows (browser_*) close normally.
|
|
if window.label() == "main" {
|
|
let _ = window.emit("window:close-requested", ());
|
|
}
|
|
}
|
|
})
|
|
.invoke_handler(tauri::generate_handler![
|
|
greet,
|
|
exit_app,
|
|
register_global_shortcut,
|
|
unregister_global_shortcut,
|
|
mpris_set_metadata,
|
|
mpris_set_playback,
|
|
audio::audio_play,
|
|
audio::audio_pause,
|
|
audio::audio_resume,
|
|
audio::audio_stop,
|
|
audio::audio_seek,
|
|
audio::audio_set_volume,
|
|
audio::audio_set_eq,
|
|
audio::audio_preload,
|
|
audio::audio_set_crossfade,
|
|
audio::audio_set_gapless,
|
|
audio::audio_chain_preload,
|
|
lastfm_request,
|
|
])
|
|
.run(tauri::generate_context!())
|
|
.expect("error while running Psysonic");
|
|
}
|