mirror of
https://github.com/SoPat712/allstarr.git
synced 2026-02-10 16:08:39 -05:00
Major changes: - Rename project from octo-fiesta to allstarr - Add Jellyfin proxy support alongside Subsonic/Navidrome - Implement fuzzy search with relevance scoring and Levenshtein distance - Add POST body logging for debugging playback progress issues - Separate local and external artists in search results - Add +5 score boost for external results to prioritize larger catalog(probably gonna reverse it) - Create FuzzyMatcher utility for intelligent search result scoring - Add ConvertPlaylistToJellyfinItem method for playlist support - Rename keys folder to apis and update gitignore - Filter search results by relevance score (>= 40) - Add Redis caching support with configurable settings - Update environment configuration with backend selection - Improve external provider integration (SquidWTF, Deezer, Qobuz) - Add tests for all services
26 lines
771 B
C#
26 lines
771 B
C#
namespace allstarr.Models.Settings;
|
|
|
|
/// <summary>
|
|
/// Configuration for the Qobuz downloader and metadata service
|
|
/// </summary>
|
|
public class QobuzSettings
|
|
{
|
|
/// <summary>
|
|
/// Qobuz user authentication token
|
|
/// Obtained from browser's localStorage after logging into play.qobuz.com
|
|
/// </summary>
|
|
public string? UserAuthToken { get; set; }
|
|
|
|
/// <summary>
|
|
/// Qobuz user ID
|
|
/// Obtained from browser's localStorage after logging into play.qobuz.com
|
|
/// </summary>
|
|
public string? UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Preferred audio quality: FLAC, MP3_320, MP3_128
|
|
/// If not specified or unavailable, the highest available quality will be used.
|
|
/// </summary>
|
|
public string? Quality { get; set; }
|
|
}
|