75 lines
2.5 KiB
C#
75 lines
2.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace Selector.Web
|
|
{
|
|
static class OptionsHelper {
|
|
public static void ConfigureOptions(RootOptions options, IConfiguration config)
|
|
{
|
|
config.GetSection(RootOptions.Key).Bind(options);
|
|
config.GetSection(FormatKeys(new[] { RootOptions.Key, RedisOptions.Key })).Bind(options.RedisOptions);
|
|
config.GetSection(FormatKeys(new[] { RootOptions.Key, NowPlayingOptions.Key })).Bind(options.NowOptions);
|
|
}
|
|
|
|
public static RootOptions ConfigureOptions(IConfiguration config)
|
|
{
|
|
var options = config.GetSection(RootOptions.Key).Get<RootOptions>();
|
|
ConfigureOptions(options, config);
|
|
return options;
|
|
}
|
|
|
|
public static string FormatKeys(string[] args) => string.Join(":", args);
|
|
}
|
|
|
|
public class RootOptions
|
|
{
|
|
public const string Key = "Selector";
|
|
|
|
/// <summary>
|
|
/// Spotify client ID
|
|
/// </summary>
|
|
public string ClientId { get; set; }
|
|
/// <summary>
|
|
/// Spotify app secret
|
|
/// </summary>
|
|
public string ClientSecret { get; set; }
|
|
/// <summary>
|
|
/// Spotify callback for authentication
|
|
/// </summary>
|
|
public string SpotifyCallback { get; set; }
|
|
public string LastfmClient { get; set; }
|
|
public string LastfmSecret { get; set; }
|
|
|
|
public RedisOptions RedisOptions { get; set; } = new();
|
|
public NowPlayingOptions NowOptions { get; set; } = new();
|
|
|
|
}
|
|
|
|
public class RedisOptions
|
|
{
|
|
public const string Key = "Redis";
|
|
|
|
public bool Enabled { get; set; } = false;
|
|
public string ConnectionString { get; set; }
|
|
}
|
|
|
|
public class NowPlayingOptions
|
|
{
|
|
public const string Key = "Now";
|
|
|
|
public TimeSpan ArtistResampleWindow { get; set; } = TimeSpan.FromDays(30);
|
|
public TimeSpan AlbumResampleWindow { get; set; } = TimeSpan.FromDays(30);
|
|
public TimeSpan TrackResampleWindow { get; set; } = TimeSpan.FromDays(30);
|
|
|
|
public TimeSpan ArtistDensityWindow { get; set; } = TimeSpan.FromDays(10);
|
|
public decimal ArtistDensityThreshold { get; set; } = 5;
|
|
|
|
public TimeSpan AlbumDensityWindow { get; set; } = TimeSpan.FromDays(10);
|
|
public decimal AlbumDensityThreshold { get; set; } = 5;
|
|
|
|
public TimeSpan TrackDensityWindow { get; set; } = TimeSpan.FromDays(10);
|
|
public decimal TrackDensityThreshold { get; set; } = 5;
|
|
}
|
|
}
|