Skip to content

feat: Move generated app state to XDG state/cache dirs - #407

Open
DinoLeung wants to merge 34 commits into
LargeModGames:mainfrom
DinoLeung:xdg-config-path
Open

feat: Move generated app state to XDG state/cache dirs#407
DinoLeung wants to merge 34 commits into
LargeModGames:mainfrom
DinoLeung:xdg-config-path

Conversation

@DinoLeung

@DinoLeung DinoLeung commented Jul 28, 2026

Copy link
Copy Markdown
Contributor

Summary

Move generated runtime/app state out of the config directory and into XDG state/cache locations.

This separates user-authored configuration from app-generated state. config.yml remains suitable for hand editing or declarative management, while runtime changes such as volume, layout, active source, radio favorites, history, and token/cache files move to the appropriate XDG state/cache locations.

  • Keeps user-authored config in $XDG_CONFIG_HOME/spotatui.
  • Stores state.yml, listening history, and Spotify OAuth token cache under $XDG_STATE_HOME/spotatui.
  • Stores native streaming credentials/cache under $XDG_CACHE_HOME/spotatui/streaming_cache.
  • Persists volume changes through runtime state and flushes pending state saves before CLI command exit.
  • Documents the updated config/state/cache ownership.

Testing

  • cargo fmt --all
  • cargo test --no-default-features --features telemetry
    • 504 passed
  • cargo clippy --no-default-features --features telemetry -- -D warnings
  • cargo test
    • 764 passed
  • cargo test --features all-sources
    • 837 passed, 15 ignored
  • cargo clippy --features all-sources -- -D warnings
  • cargo check

Additional notes

Existing config-dir app data is migrated on first use when the new target path does not already exist. This includes legacy runtime fields/radio favorites from config.yml, listening history, last_session.yml, Spotify OAuth token caches, and native streaming credentials/audio cache.

If a new state/cache target already exists, the legacy file or directory is left in place instead of being merged or overwritten; users may need to move or remove legacy files manually only in that conflict case.

Summary by CodeRabbit

New Features

  • Added XDG-compliant locations for configuration, state, history, cache, credentials, and streaming data.
  • Runtime settings now persist separately, including volume, shuffle, layout, active source, announcements, and saved radio stations.
  • Added migration support for existing configuration and state files.

Bug Fixes

  • Improved radio-station merging, deduplication, sanitization, and protection of configured stations.
  • Invalid configuration values now fall back to defaults with a warning.

Documentation

  • Updated configuration, plugin, keybinding, theme, streaming, scripting, setup, and migration guidance.

DinoLeung added 12 commits July 24, 2026 20:44
chore: use xdg config path for user config

chore: use xdg state path for last session

chore: use xdg state path for histories

chore: use xdg cache path for streaming cache

chore: use xdg config path for runtime client auth config

chore: update comments to not explicitly reference `~/.config/spotatui/`

chore: show actual config file path in first run prompt
introduce a core state module for machine-managed app state that will
move out of config.yml, including volume, shuffle, active source,
announcement state, layout sizes, radio stations, and sync token.

resolve the state file through the XDG state directory, save it
atomically with private file permissions, and add focused round-trip and
sanitization coverage.
Separate app-managed runtime state into state.yml while keeping
config.yml for user-authored preferences and startup overrides.
Move Spotify OAuth token cache out of the config directory and into the
XDG state directory while keeping client.yml as user configuration.

Gate cache-dir path helpers behind the streaming feature and document
the state/cache locations for history, token cache, and native streaming
cache.

Persist volume changes through runtime state and flush pending state
saves before CLI command exit.
@coderabbitai

coderabbitai Bot commented Jul 28, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: a21ccc4e-0381-4079-a15d-7a61acb9ebe8

📥 Commits

Reviewing files that changed from the base of the PR and between e8dcef5 and 8aa6203.

📒 Files selected for processing (9)
  • PLUGINS.md
  • examples/plugins/README.md
  • examples/plugins/accent-cycler.lua
  • examples/plugins/now-playing-webhook.lua
  • examples/plugins/now-playing.lua
  • examples/plugins/queue-browser.lua
  • examples/plugins/session-stats/main.lua
  • examples/plugins/track-info-popup.lua
  • examples/plugins/track-notifier.lua
🚧 Files skipped from review as they are similar to previous changes (9)
  • examples/plugins/queue-browser.lua
  • examples/plugins/track-notifier.lua
  • examples/plugins/now-playing.lua
  • PLUGINS.md
  • examples/plugins/session-stats/main.lua
  • examples/plugins/track-info-popup.lua
  • examples/plugins/now-playing-webhook.lua
  • examples/plugins/README.md
  • examples/plugins/accent-cycler.lua

📝 Walkthrough

Walkthrough

Spotatui separates startup configuration from persisted runtime state. It adds XDG-aware config, cache, and state paths, migrates legacy data, and updates playback, layout, radio, UI, plugin, and documentation code.

Changes

Runtime state migration

Layer / File(s) Summary
State and path persistence
src/core/paths.rs, src/core/state.rs, src/core/user_config.rs, src/core/config.rs
XDG paths and persisted runtime-state structures are added. State loading, sanitization, patch merging, atomic saving, and optional configuration overrides are implemented.
Legacy migration and startup wiring
src/core/migrations.rs, src/runtime.rs, src/core/app.rs, src/core/first_run.rs
Legacy files and caches migrate without overwriting existing targets. Startup loads runtime state, and App schedules and flushes state patches.
Playback, layout, and interactive state
src/core/layout.rs, src/infra/*, src/tui/*
Playback uses runtime volume and shuffle values. Layout, radio stations, source selection, announcements, and resizing persist through runtime state.
Plugin API and documentation
src/core/plugin_api.rs, src/infra/scripting/*, README.md, PLUGINS.md, docs/*, examples/plugins/*, src/cli/plugin.rs
Plugin snapshots expose runtime-backed values. Documentation, CLI help, and plugin examples describe XDG-aware storage paths.

Estimated code review effort: 4 (Complex) | ~60 minutes

Possibly related PRs

🚥 Pre-merge checks | ✅ 4
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title uses the valid feat: prefix, clearly describes the XDG state and cache migration, and uses a concise imperative subject.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
✨ Simplify code
  • Create PR with simplified code

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 6

🧹 Nitpick comments (2)
src/core/plugin_api.rs (1)

423-429: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Add regression coverage for the runtime-backed snapshot.

Test that changing RuntimeState updates all five migrated fields while UserConfig.behavior remains unchanged. The new values are exposed to plugins through src/infra/scripting/engine.rs.

As per coding guidelines, behavior changes require adding or adjusting Rust tests.

Also applies to: 474-479

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/core/plugin_api.rs` around lines 423 - 429, Add Rust regression coverage
for config_snapshot, verifying that changing RuntimeState updates all five
migrated snapshot fields while UserConfig.behavior remains unchanged. Exercise
the plugin-facing values exposed through the scripting engine path, and preserve
existing behavior for the unchanged user configuration.

Source: Coding guidelines

src/core/user_config.rs (1)

47-64: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Same-named helper with different semantics than state.rs's sanitized_radio_stations.

This one dedupes by URL; crate::core::state's module-level sanitized_radio_stations (used for RuntimeState/state.yml) doesn't. Two functions with the same name and near-identical purpose diverging in behavior is easy to lose track of during future edits.

Consider extracting one shared helper (e.g. in crate::core::state, taking a slice or iterator) and reusing it from both user_config.rs and state.rs, so both call sites get the same trim/empty-filter/dedupe guarantees for free.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/core/user_config.rs` around lines 47 - 64, Consolidate the duplicated
sanitized_radio_stations helpers by defining one shared implementation in
crate::core::state and reusing it from both user_config.rs and state.rs. Ensure
the shared helper consistently trims names and URLs, filters empty values, and
deduplicates stations by URL, while preserving both callers’ existing behavior.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@examples/plugins/README.md`:
- Around line 24-35: Make XDG path handling consistent across all listed sites:
in examples/plugins/README.md lines 24-35 and the install commands in
examples/plugins/accent-cycler.lua lines 6-10,
examples/plugins/now-playing-webhook.lua lines 7-9, and
examples/plugins/queue-browser.lua lines 6-10, normalize relative
XDG_CONFIG_HOME values to the application fallback before creating or copying
files; document in docs/native-streaming.md lines 29-37 that both
XDG_CONFIG_HOME and XDG_CACHE_HOME must be absolute, and in docs/scripting.md
lines 9-10 and docs/themes.md lines 24-26 that XDG_CONFIG_HOME is honored only
when absolute.

In `@README.md`:
- Around line 222-230: Update the XDG documentation and installation examples to
state that XDG_CONFIG_HOME, XDG_STATE_HOME, and XDG_CACHE_HOME are used only
when set to absolute paths; unset or relative values must use the HOME-based
fallback. In README.md (222-230 and 329-336), PLUGINS.md (20-23),
docs/configuration.md (14-14), and docs/keybindings.md (40-41), revise the prose
and config_home migration calculation accordingly. In
examples/plugins/session-stats/main.lua (7-9),
examples/plugins/track-info-popup.lua (4-6), and
examples/plugins/track-notifier.lua (4-6), validate XDG_CONFIG_HOME as absolute
before using it for copying, otherwise use the fallback path.

In `@src/infra/queue/dispatch.rs`:
- Around line 95-98: Persist runtime state after each ChangeVolume handler
updates RuntimeState: add the established save operation in
src/infra/queue/dispatch.rs lines 95-98, src/infra/subsonic/dispatch.rs lines
120-125, and src/infra/youtube/dispatch.rs lines 122-126, while preserving the
existing volume updates and return behavior.

In `@src/infra/radio/dispatch.rs`:
- Around line 89-93: Update the IoEvent::ChangeVolume branch to call
schedule_state_save() after assigning runtime_state.volume_percent, ensuring the
changed volume is queued for persistence before returning true.

In `@src/runtime.rs`:
- Around line 1111-1129: Gate the compatibility assignments for volume_percent,
sidebar_width_percent, playbar_height_rows, and library_height_percent behind
should_save_initial_state so they run only during initial state creation.
Preserve values loaded from state.yml on subsequent launches, and keep saving
the resulting migrated runtime state through the existing state_path persistence
block.

In `@src/tui/handlers/resize.rs`:
- Around line 67-86: Update reset_layout to clamp the config-derived
playbar_height_rows value to MAX_PLAYBAR_ROWS, matching the limit enforced by
increase_playbar_height. Preserve the existing default fallback and state-save
behavior.

---

Nitpick comments:
In `@src/core/plugin_api.rs`:
- Around line 423-429: Add Rust regression coverage for config_snapshot,
verifying that changing RuntimeState updates all five migrated snapshot fields
while UserConfig.behavior remains unchanged. Exercise the plugin-facing values
exposed through the scripting engine path, and preserve existing behavior for
the unchanged user configuration.

In `@src/core/user_config.rs`:
- Around line 47-64: Consolidate the duplicated sanitized_radio_stations helpers
by defining one shared implementation in crate::core::state and reusing it from
both user_config.rs and state.rs. Ensure the shared helper consistently trims
names and URLs, filters empty values, and deduplicates stations by URL, while
preserving both callers’ existing behavior.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: 9b4de3df-1b0b-4452-bc35-d12b5db9aaf5

📥 Commits

Reviewing files that changed from the base of the PR and between 7b87065 and bf31e42.

📒 Files selected for processing (53)
  • PLUGINS.md
  • README.md
  • docs/configuration.md
  • docs/keybindings.md
  • docs/native-streaming.md
  • docs/scripting.md
  • docs/themes.md
  • examples/plugins/README.md
  • examples/plugins/accent-cycler.lua
  • examples/plugins/now-playing-webhook.lua
  • examples/plugins/queue-browser.lua
  • examples/plugins/session-stats/main.lua
  • examples/plugins/track-info-popup.lua
  • examples/plugins/track-notifier.lua
  • src/cli/plugin.rs
  • src/core/app.rs
  • src/core/config.rs
  • src/core/first_run.rs
  • src/core/layout.rs
  • src/core/mod.rs
  • src/core/paths.rs
  • src/core/persisted_playback.rs
  • src/core/plugin_api.rs
  • src/core/state.rs
  • src/core/user_config.rs
  • src/infra/history.rs
  • src/infra/local/dispatch.rs
  • src/infra/media_metadata.rs
  • src/infra/network/native_shuffle.rs
  • src/infra/network/playback.rs
  • src/infra/network/utils.rs
  • src/infra/player/events.rs
  • src/infra/player/streaming.rs
  • src/infra/queue/dispatch.rs
  • src/infra/radio/dispatch.rs
  • src/infra/radio/mod.rs
  • src/infra/scripting/engine.rs
  • src/infra/subsonic/dispatch.rs
  • src/infra/youtube/dispatch.rs
  • src/infra/youtube/playlists.rs
  • src/runtime.rs
  • src/tui/handlers/announcement_prompt.rs
  • src/tui/handlers/library.rs
  • src/tui/handlers/mod.rs
  • src/tui/handlers/mouse.rs
  • src/tui/handlers/playlist.rs
  • src/tui/handlers/resize.rs
  • src/tui/handlers/search_results.rs
  • src/tui/handlers/select_device.rs
  • src/tui/runner.rs
  • src/tui/ui/library.rs
  • src/tui/ui/lyrics.rs
  • src/tui/ui/player.rs

Comment thread examples/plugins/README.md Outdated
Comment thread README.md Outdated
Comment thread src/infra/queue/dispatch.rs
Comment thread src/infra/radio/dispatch.rs
Comment thread src/runtime.rs Outdated
Comment thread src/tui/handlers/resize.rs Outdated
@DinoLeung DinoLeung changed the title Move generated app state to XDG state/cache dirs feat: Move generated app state to XDG state/cache dirs Jul 28, 2026
Document that XDG directory variables are honored only when set to
absolute paths, with HOME-based fallbacks for unset or relative values.
Update plugin install and migration snippets to mirror runtime path
resolution.
Persist decoded-backend volume changes through scheduled runtime state
saves.

Apply configured volume and layout defaults only when the corresponding
runtime state fields are missing, so saved state.yml values remain
authoritative after startup.

Clamp config-derived playbar height during layout reset and document the
initial-default behavior.
Add regression coverage for config_snapshot and the Lua-facing
spotatui.config() path to ensure migrated behavior fields come from
RuntimeState without mutating UserConfig.

Share radio station sanitization between runtime state and user config.

@LargeModGames LargeModGames left a comment

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. Free-source users get pushed into a forced Spotify OAuth flow on upgrade (inline on src/runtime.rs).
  2. Listening history is silently orphaned, along with last_session.yml (inline on src/infra/history.rs).
  3. The window for doing this migration later closes on the first config save (inline on src/core/user_config.rs).

All three are covered by one startup shim, run before state::load:

  • If <state>/state.yml is absent, deserialize the legacy keys off the raw config.yml into a small LegacyRuntimeKeys struct and seed PersistedRuntimeState (active_source, shuffle_enabled, seen_announcement_ids, plus the app-saved radio_stations).
  • For .spotify_token_cache.json, last_session.yml, history/, and streaming_cache/: if the new path is absent and the old one exists, fs::rename it, falling back to copy across filesystems.

Finding 3 is why this belongs in this PR rather than a follow-up: once save_config() runs once, the legacy keys are gone for good.

Non-blocking

Four more inline: an existing-user regression on in-app saved radio stations, blind-overwrite vs the read-modify-write that save_config does, state-dir permissions, and a Windows path separator nit. Plus:

  • Two dedupe implementations for radio stations (state::sanitized_radio_stations uses a HashSet, radio::dispatch::merged_radio_stations re-implements it with a Vec scan). Tiny lists, so this is drift risk rather than perf.
  • dismissed_announcements has no reader on main either. Good moment to drop dead state rather than carry it into a new file format.
  • Volume now persists from three layers (App::{increase,decrease,set}_volume, each decoded dispatcher, and now Network::change_volume). Correct, just redundant.
  • No CHANGELOG entry, against a repo that keeps detailed prose entries for user-visible changes.

Thanks for taking this on, the config/state separation is overdue.

Comment thread src/runtime.rs
Comment thread src/infra/history.rs Outdated
Comment thread src/core/user_config.rs
app.set_status_message("Radio station has no stream URL".to_string(), 4);
return;
};
if app.is_configured_radio_station_url(url) {

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Existing-user regression, worth handling in the same shim.

Before this PR, F (favorite) wrote into behavior.radio_stations in config.yml. After it, everything in config.yml counts as configured, so this guard fires and refuses removal with "Radio station is configured in config.yml". Every station a user saved in-app now needs a manual file edit to remove.

The ownership model itself is good, and I like that the guard exists rather than failing silently. The issue is only the day-one transition: moving pre-existing config.yml stations into state.yml during migration would avoid it entirely.

Comment thread src/core/state.rs
Comment thread src/core/config.rs Outdated
Comment thread src/core/paths.rs Outdated
Comment thread src/infra/radio/dispatch.rs Outdated
@DinoLeung

DinoLeung commented Jul 29, 2026

Copy link
Copy Markdown
Contributor Author

Thanks for the thorough review, and apologies for an extra long PR. I did want to keep it short and focus on the state and cache decoupling, it quickly gets out of hand.

Will be addressing them later in the week.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (2)
src/core/state.rs (1)

337-347: 🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

Both atomic-write helpers derive the temporary file name from the target path only. A fixed .yml.tmp sibling is not unique per writer, so two processes write the same temporary file and then both rename it over the target. The published file can hold interleaved bytes.

  • src/core/state.rs#L337-L347: make the state.yml.tmp name unique per writer, or use tempfile::NamedTempFile::new_in plus persist.
  • src/core/migrations.rs#L383-L388: apply the same change to the config.yml.tmp write, and extract one shared write_atomic_private helper used by both call sites.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/core/state.rs` around lines 337 - 347, The atomic write logic in
write_state and the corresponding migrations write path uses a shared fixed
temporary filename, allowing concurrent writers to collide. Extract a shared
write_atomic_private helper, using a unique per-writer temporary file (such as
tempfile::NamedTempFile::new_in with persist), and update both call sites to use
it: src/core/state.rs lines 337-347 and src/core/migrations.rs lines 383-388.
Preserve private-file permissions and atomic replacement of the target.
src/core/app.rs (1)

4042-4054: 🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

flush_state_save drops a failed save permanently instead of retrying it.

flush_state_save clears state_save_due to None before attempting the write. On failure, it merges the patch back into pending_state_save_patch, but state_save_due stays None. The next call, including a forced call at shutdown, returns immediately at let Some(due) = self.state_save_due else { return; }; and never retries the write. A single transient disk error silently discards the pending volume, shuffle, or radio-station patch for the rest of the session.

Re-arm state_save_due on failure so a subsequent flush, including the forced one at exit, retries the write.

🛠️ Proposed fix to re-arm the retry on failure
   pub fn flush_state_save(&mut self, force: bool) {
     let Some(due) = self.state_save_due else {
       return;
     };
     if force || Instant::now() >= due {
       let patch = std::mem::take(&mut self.pending_state_save_patch);
-      self.state_save_due = None;
       if let Err(e) = self.save_runtime_state(&patch) {
         self.pending_state_save_patch.merge_patch(&patch);
+        self.state_save_due = Some(Instant::now());
         self.handle_error(anyhow!("Failed to save state: {}", e));
+      } else {
+        self.state_save_due = None;
       }
     }
   }
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/core/app.rs` around lines 4042 - 4054, Update flush_state_save so a
failed save re-arms state_save_due after merging the patch back into
pending_state_save_patch, allowing subsequent and forced flushes to retry.
Preserve the existing due-time check and successful-save behavior.
🧹 Nitpick comments (5)
src/core/migrations.rs (1)

548-569: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Add a test for the copy fallback path.

The tests exercise fs::rename only. copy_legacy_path_if_unclaimed, copy_legacy_dir_if_unclaimed, and copy_dir_contents never run, so the nested-directory copy, the cleanup on copy failure, and the resulting permissions are unverified. That code only triggers on a cross-device move, which is exactly the case a user hits when $XDG_STATE_HOME is on another mount.

Call copy_legacy_dir_if_unclaimed directly with a synthetic std::io::Error to cover it without a second filesystem.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/core/migrations.rs` around lines 548 - 569, Add a test beside
legacy_path_migration_moves_directory_when_target_is_empty that directly invokes
copy_legacy_dir_if_unclaimed with a synthetic std::io::Error, exercising
nested-directory copying, source cleanup after copy failure, and resulting
permissions without requiring a cross-device filesystem.

Source: Coding guidelines

src/core/paths.rs (1)

56-64: 🔒 Security & Privacy | 🔵 Trivial | ⚡ Quick win

Create the directory with mode 0700 instead of chmod after creation.

create_dir_all uses the process umask, then set_permissions narrows the mode. Between those two calls the directory is group/world readable on a permissive umask. This directory holds OAuth tokens and streaming credentials, so the window matters.

std::os::unix::fs::DirBuilderExt::mode sets the mode at creation time. Keep the set_permissions call so an already existing directory with wide permissions is still tightened.

🔒 Proposed change
 pub(crate) fn ensure_private_dir(dir: &Path) -> Result<()> {
-  std::fs::create_dir_all(dir).with_context(|| format!("creating {}", dir.display()))?;
+  #[cfg(unix)]
+  {
+    use std::os::unix::fs::DirBuilderExt;
+    std::fs::DirBuilder::new()
+      .recursive(true)
+      .mode(0o700)
+      .create(dir)
+      .with_context(|| format!("creating {}", dir.display()))?;
+  }
+  #[cfg(not(unix))]
+  std::fs::create_dir_all(dir).with_context(|| format!("creating {}", dir.display()))?;
 
   #[cfg(unix)]
   {
     use std::os::unix::fs::PermissionsExt;
     std::fs::set_permissions(dir, std::fs::Permissions::from_mode(0o700))
       .with_context(|| format!("setting private permissions on {}", dir.display()))?;
   }
 
   Ok(())
 }

Note: with recursive(true), the mode applies to created parent components too. If a parent such as ~/.local/state must stay at 0755, split the parent creation from the final component.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/core/paths.rs` around lines 56 - 64, Update ensure_private_dir to create
directories through a Unix DirBuilder configured with recursive creation and
mode 0o700, so newly created components receive the private mode immediately.
Retain the existing set_permissions call to tighten permissions on directories
that already exist, while preserving the current error-context behavior.
src/core/state.rs (2)

416-429: 🚀 Performance & Scalability | 🔵 Trivial | 💤 Low value

seen_announcement_ids and dismissed_announcements grow without bound.

The merge only unions, so an ID is never dropped. The lists grow with every announcement the feed has ever published, and the whole list is rewritten on each save. This is small per entry, so it is not urgent, but there is no upper bound.

Consider a cap, for example keep the most recent N IDs, or prune IDs that are no longer present in the announcement feed.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/core/state.rs` around lines 416 - 429, Update merged_ids to enforce a
bounded ID history after merging existing and incoming values, retaining the
most recent N entries according to the established ordering; preserve trimming
and duplicate/empty filtering, and define or reuse a shared cap so both
seen_announcement_ids and dismissed_announcements cannot grow without bound.

369-405: 🗄️ Data Integrity & Integration | 🔵 Trivial | ⚡ Quick win

Add an explicit pre/postcondition to merge_state_patch.

merge_state_patch unions radio_stations, seen_announcement_ids, and dismissed_announcements, so an Announcements(_, _) patch can re-add dismissed or seen IDs. Since remove_radio_station_by_url must use save_removing_radio_station instead of save, spell that rule next to merge_state_patch so the deletion contract is not hidden inside callers.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/core/state.rs` around lines 369 - 405, Document an explicit precondition
and postcondition next to merge_state_patch: callers must not use it for
Announcements(_, _) patches that could re-add seen or dismissed IDs, and
radio-station deletion must use save_removing_radio_station rather than save.
Ensure remove_radio_station_by_url follows this deletion path and preserve the
existing union behavior for non-deletion merges.
src/core/app.rs (1)

4125-4126: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Add App::persist_volume/App::persist_shuffle helpers to remove nine duplicated persistence snippets. Every site repeats the same two-line pattern: set a runtime_state field, then call schedule_state_save with the matching PersistedRuntimeState constructor. One pair of helper methods on App removes all of it.

  • src/core/app.rs#L4125-L4126: replace with self.persist_volume(next_volume);.
  • src/core/app.rs#L4140-L4141: replace with self.persist_volume(next_volume);.
  • src/core/app.rs#L4181-L4182: replace with self.persist_volume(next_volume);.
  • src/core/app.rs#L4196-L4197: replace with self.persist_volume(next_volume);.
  • src/core/app.rs#L4242-L4243: replace with self.persist_volume(next_volume_u8);.
  • src/core/app.rs#L4257-L4258: replace with self.persist_volume(next_volume_u8);.
  • src/core/app.rs#L6337-L6338: replace with self.persist_shuffle(new_shuffle_state);.
  • src/runtime.rs#L2353-L2356: replace with app_lock.persist_shuffle(shuffle); (add a pub visibility on the helper so runtime.rs can call it, or expose a thin pub wrapper).
  • src/runtime.rs#L2366-L2369: replace with app_lock.persist_shuffle(shuffle);.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/core/app.rs` around lines 4125 - 4126, The persistence logic is
duplicated across volume and shuffle update sites. Add App::persist_volume and
App::persist_shuffle helpers that update the corresponding runtime_state field
and call schedule_state_save with the matching PersistedRuntimeState
constructor, then replace the seven listed sites in src/core/app.rs with the
appropriate helper calls and both listed sites in src/runtime.rs with
app_lock.persist_shuffle(shuffle); make the helpers public or provide a public
wrapper for runtime.rs.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@CHANGELOG.md`:
- Line 7: Update the CHANGELOG entry to state that legacy native streaming
credentials and audio cache may be migrated automatically when their new cache
locations are empty, instead of claiming native streaming caches are never
migrated. Preserve the existing note that Spotify token caches are not migrated
automatically.

In `@src/core/migrations.rs`:
- Around line 193-219: Update copy_dir_contents to detect symlinks with
entry.file_type().is_symlink() before directory recursion and skip or safely
copy them without following links, preventing recursive self-copying. Also apply
the required permission fix wherever migration creates directories, including
the top-level fs::create_dir(state_path) path and the nested
fs::create_dir(&target) path.

In `@src/infra/player/streaming.rs`:
- Line 759: Propagate all ensure_private_dir failures instead of discarding
them: update the credential-cache initialization at
src/infra/player/streaming.rs:759 to use ?, and update the persistence flow at
src/infra/player/streaming.rs:1291 to propagate both directory-setup and write
errors, returning an ID only after persistence succeeds.

---

Outside diff comments:
In `@src/core/app.rs`:
- Around line 4042-4054: Update flush_state_save so a failed save re-arms
state_save_due after merging the patch back into pending_state_save_patch,
allowing subsequent and forced flushes to retry. Preserve the existing due-time
check and successful-save behavior.

In `@src/core/state.rs`:
- Around line 337-347: The atomic write logic in write_state and the
corresponding migrations write path uses a shared fixed temporary filename,
allowing concurrent writers to collide. Extract a shared write_atomic_private
helper, using a unique per-writer temporary file (such as
tempfile::NamedTempFile::new_in with persist), and update both call sites to use
it: src/core/state.rs lines 337-347 and src/core/migrations.rs lines 383-388.
Preserve private-file permissions and atomic replacement of the target.

---

Nitpick comments:
In `@src/core/app.rs`:
- Around line 4125-4126: The persistence logic is duplicated across volume and
shuffle update sites. Add App::persist_volume and App::persist_shuffle helpers
that update the corresponding runtime_state field and call schedule_state_save
with the matching PersistedRuntimeState constructor, then replace the seven
listed sites in src/core/app.rs with the appropriate helper calls and both
listed sites in src/runtime.rs with app_lock.persist_shuffle(shuffle); make the
helpers public or provide a public wrapper for runtime.rs.

In `@src/core/migrations.rs`:
- Around line 548-569: Add a test beside
legacy_path_migration_moves_directory_when_target_is_empty that directly invokes
copy_legacy_dir_if_unclaimed with a synthetic std::io::Error, exercising
nested-directory copying, source cleanup after copy failure, and resulting
permissions without requiring a cross-device filesystem.

In `@src/core/paths.rs`:
- Around line 56-64: Update ensure_private_dir to create directories through a
Unix DirBuilder configured with recursive creation and mode 0o700, so newly
created components receive the private mode immediately. Retain the existing
set_permissions call to tighten permissions on directories that already exist,
while preserving the current error-context behavior.

In `@src/core/state.rs`:
- Around line 416-429: Update merged_ids to enforce a bounded ID history after
merging existing and incoming values, retaining the most recent N entries
according to the established ordering; preserve trimming and duplicate/empty
filtering, and define or reuse a shared cap so both seen_announcement_ids and
dismissed_announcements cannot grow without bound.
- Around line 369-405: Document an explicit precondition and postcondition next
to merge_state_patch: callers must not use it for Announcements(_, _) patches
that could re-add seen or dismissed IDs, and radio-station deletion must use
save_removing_radio_station rather than save. Ensure remove_radio_station_by_url
follows this deletion path and preserve the existing union behavior for
non-deletion merges.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: 6a025616-0d2a-4074-a708-5f2fe4f0beec

📥 Commits

Reviewing files that changed from the base of the PR and between 81168de and d3bc833.

📒 Files selected for processing (26)
  • CHANGELOG.md
  • src/core/app.rs
  • src/core/config.rs
  • src/core/first_run.rs
  • src/core/layout.rs
  • src/core/migrations.rs
  • src/core/mod.rs
  • src/core/paths.rs
  • src/core/persisted_playback.rs
  • src/core/state.rs
  • src/infra/history.rs
  • src/infra/local/dispatch.rs
  • src/infra/network/native_shuffle.rs
  • src/infra/network/playback.rs
  • src/infra/player/events.rs
  • src/infra/player/streaming.rs
  • src/infra/queue/dispatch.rs
  • src/infra/radio/dispatch.rs
  • src/infra/subsonic/dispatch.rs
  • src/infra/youtube/dispatch.rs
  • src/runtime.rs
  • src/tui/handlers/announcement_prompt.rs
  • src/tui/handlers/library.rs
  • src/tui/handlers/resize.rs
  • src/tui/handlers/select_device.rs
  • src/tui/runner.rs
🚧 Files skipped from review as they are similar to previous changes (18)
  • src/core/mod.rs
  • src/tui/handlers/select_device.rs
  • src/tui/handlers/announcement_prompt.rs
  • src/tui/handlers/library.rs
  • src/infra/player/events.rs
  • src/tui/runner.rs
  • src/infra/queue/dispatch.rs
  • src/infra/subsonic/dispatch.rs
  • src/core/config.rs
  • src/infra/history.rs
  • src/tui/handlers/resize.rs
  • src/core/first_run.rs
  • src/infra/network/playback.rs
  • src/infra/local/dispatch.rs
  • src/infra/youtube/dispatch.rs
  • src/core/layout.rs
  • src/core/persisted_playback.rs
  • src/infra/network/native_shuffle.rs

Comment thread CHANGELOG.md Outdated
Comment thread src/core/migrations.rs
Comment thread src/infra/player/streaming.rs Outdated
Comment thread src/infra/player/streaming.rs Outdated
Comment thread src/core/config.rs
Comment thread src/core/migrations.rs Outdated
Comment thread src/core/state.rs
/// own one field, so blindly writing a whole in-memory snapshot would clobber
/// updates made by another running instance.
pub fn save(path: &Path, state: &PersistedRuntimeState) -> Result<()> {
let mut merged = load(path)?;

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Non-blocking: a malformed state.yml never heals.

save starts with load(path)?, so once the file is corrupt every save fails forever. Startup only logs a warning, leaves state_path as None, and then each flush_state_save calls handle_error, which means a UI error on every volume nudge. A bad config.yml already falls back to defaults with a warning; suggest the same here, renaming to state.yml.bak and starting clean.

Comment thread src/core/state.rs
if let Some(dir) = path.parent() {
crate::core::paths::ensure_private_dir(dir)?;
}
let tmp = path.with_extension("yml.tmp");

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Non-blocking, and only a partial close on the concurrency finding from last round.

Read-modify-write fixes clobber-by-omission, but two instances still lose updates: both load, both merge, both write. And the temp name is fixed, so two processes can write the same state.yml.tmp and rename each other's half-written file into place. A pid suffix is cheap. remove_behavior_keys_from_config has the same shape.

Comment thread src/core/persisted_playback.rs Outdated
Comment thread examples/plugins/README.md Outdated
@LargeModGames

Copy link
Copy Markdown
Owner

Sorry this keeps growing, i know you've already done more rounds than you signed up for. If you'd rather hand any of it off, i'll push the fixes myself.

@DinoLeung

Copy link
Copy Markdown
Contributor Author

Thanks man. I’m happy to take another pass at the changes, but if there’s another round after that, I’d be happy to hand the remaining fixes over to you.

@DinoLeung

Copy link
Copy Markdown
Contributor Author

I've made another round of changes.

I'll leave #407 (comment) and #407 (comment) to you, since I'm not confident I can make a set of changes there that would be up to the project's standard.

Also, I found it funny that you read my intent here as making the project compatible with Home Manager configuration.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (1)
src/infra/player/streaming.rs (1)

1524-1574: 🩺 Stability & Availability | 🔵 Trivial

Migration now preserves the Connect device identity; consider surfacing a failed migration to the user.

get_default_cache_path now calls migrate_legacy_streaming_cache_if_unclaimed before returning the new cache path, and legacy_streaming_cache_migration_preserves_connect_device_id confirms device_id and credentials.json survive the move. This resolves the earlier concern that upgrading would silently register spotatui as a brand-new Spotify Connect device.

One gap remains: when migration fails, the code only logs a warning and continues with the new, empty cache path. In that case the device still re-registers as new, the same user-visible symptom as before, just now triggered by a filesystem error instead of "always". Consider surfacing this failure through a status message at startup (once the runtime plumbing for it exists) instead of relying on a log line most users never see.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/infra/player/streaming.rs` around lines 1524 - 1574, Update
get_default_cache_path to surface migration failures through the existing
startup status-message mechanism once runtime plumbing is available, rather than
only emitting log::warn. Preserve returning the new cache path, and include
enough context in the user-visible message to indicate that legacy streaming
cache migration failed.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@examples/plugins/accent-cycler.lua`:
- Line 6: Update the plugin installation commands to resolve XDG_CONFIG_HOME
only when it is absolute, otherwise falling back to $HOME/.config before
appending the Spotatui plugins directory. Apply this consistently in
examples/plugins/accent-cycler.lua lines 6-6,
examples/plugins/now-playing-webhook.lua lines 7-7,
examples/plugins/now-playing.lua lines 6-8,
examples/plugins/track-info-popup.lua lines 4-6, and
examples/plugins/track-notifier.lua lines 4-4.

---

Nitpick comments:
In `@src/infra/player/streaming.rs`:
- Around line 1524-1574: Update get_default_cache_path to surface migration
failures through the existing startup status-message mechanism once runtime
plumbing is available, rather than only emitting log::warn. Preserve returning
the new cache path, and include enough context in the user-visible message to
indicate that legacy streaming cache migration failed.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: fa2856cb-9ff8-433d-8782-befa86572e93

📥 Commits

Reviewing files that changed from the base of the PR and between d3bc833 and e8dcef5.

📒 Files selected for processing (20)
  • CHANGELOG.md
  • PLUGINS.md
  • docs/keybindings.md
  • examples/plugins/README.md
  • examples/plugins/accent-cycler.lua
  • examples/plugins/now-playing-webhook.lua
  • examples/plugins/now-playing.lua
  • examples/plugins/queue-browser.lua
  • examples/plugins/session-stats/main.lua
  • examples/plugins/track-info-popup.lua
  • examples/plugins/track-notifier.lua
  • src/core/app.rs
  • src/core/config.rs
  • src/core/migrations.rs
  • src/core/persisted_playback.rs
  • src/infra/history.rs
  • src/infra/player/streaming.rs
  • src/runtime.rs
  • src/tui/handlers/playlist.rs
  • src/tui/runner.rs
🚧 Files skipped from review as they are similar to previous changes (9)
  • examples/plugins/session-stats/main.lua
  • src/infra/history.rs
  • CHANGELOG.md
  • PLUGINS.md
  • src/tui/runner.rs
  • examples/plugins/README.md
  • docs/keybindings.md
  • examples/plugins/queue-browser.lua
  • src/core/app.rs

Comment thread examples/plugins/accent-cycler.lua
@DinoLeung
DinoLeung requested a review from LargeModGames August 3, 2026 05:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants