2021-10-12 20:23:25 +01:00
|
|
|
|
using System.Collections.Generic;
|
2021-10-24 17:38:45 +01:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
2021-10-11 23:19:19 +01:00
|
|
|
|
|
2021-10-11 18:17:36 +01:00
|
|
|
|
namespace Selector.CLI
|
|
|
|
|
{
|
2021-10-24 17:38:45 +01:00
|
|
|
|
static class OptionsHelper {
|
|
|
|
|
public static void ConfigureOptions(RootOptions options, IConfiguration config)
|
|
|
|
|
{
|
|
|
|
|
config.GetSection(RootOptions.Key).Bind(options);
|
|
|
|
|
config.GetSection(FormatKeys( new[] { RootOptions.Key, WatcherOptions.Key})).Bind(options.WatcherOptions);
|
|
|
|
|
config.GetSection(FormatKeys( new[] { RootOptions.Key, DatabaseOptions.Key})).Bind(options.DatabaseOptions);
|
2021-10-27 23:00:01 +01:00
|
|
|
|
config.GetSection(FormatKeys( new[] { RootOptions.Key, RedisOptions.Key})).Bind(options.RedisOptions);
|
2021-10-24 17:38:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-29 21:04:15 +00:00
|
|
|
|
public class RootOptions
|
2021-10-11 18:17:36 +01:00
|
|
|
|
{
|
|
|
|
|
public const string Key = "Selector";
|
|
|
|
|
|
2021-10-11 23:19:19 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Spotify client ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ClientId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Spotify app secret
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ClientSecret { get; set; }
|
2021-10-31 08:54:11 +00:00
|
|
|
|
public string LastfmClient { get; set; }
|
|
|
|
|
public string LastfmSecret { get; set; }
|
2021-10-11 23:19:19 +01:00
|
|
|
|
public WatcherOptions WatcherOptions { get; set; } = new();
|
2021-10-24 17:38:45 +01:00
|
|
|
|
public DatabaseOptions DatabaseOptions { get; set; } = new();
|
2021-10-27 23:00:01 +01:00
|
|
|
|
public RedisOptions RedisOptions { get; set; } = new();
|
2021-10-11 23:19:19 +01:00
|
|
|
|
public EqualityChecker Equality { get; set; } = EqualityChecker.Uri;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-29 21:04:15 +00:00
|
|
|
|
public enum EqualityChecker
|
2021-10-11 23:19:19 +01:00
|
|
|
|
{
|
|
|
|
|
Uri, String
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-29 21:04:15 +00:00
|
|
|
|
public class WatcherOptions
|
2021-10-11 23:19:19 +01:00
|
|
|
|
{
|
|
|
|
|
public const string Key = "Watcher";
|
|
|
|
|
|
2021-10-13 23:19:47 +01:00
|
|
|
|
public bool Enabled { get; set; } = true;
|
2021-11-25 18:26:20 +00:00
|
|
|
|
public bool LocalEnabled { get; set; } = true;
|
2021-10-11 23:19:19 +01:00
|
|
|
|
public List<WatcherInstanceOptions> Instances { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-29 21:04:15 +00:00
|
|
|
|
public class WatcherInstanceOptions
|
2021-10-11 23:19:19 +01:00
|
|
|
|
{
|
|
|
|
|
public const string Key = "Instances";
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string AccessKey { get; set; }
|
|
|
|
|
public string RefreshKey { get; set; }
|
2021-10-31 08:54:11 +00:00
|
|
|
|
public string LastFmUsername { get; set; }
|
2021-10-11 23:19:19 +01:00
|
|
|
|
public int PollPeriod { get; set; } = 5000;
|
|
|
|
|
public WatcherType Type { get; set; } = WatcherType.Player;
|
2021-10-13 23:19:47 +01:00
|
|
|
|
public List<Consumers> Consumers { get; set; } = default;
|
2021-10-12 20:23:25 +01:00
|
|
|
|
#nullable enable
|
2021-10-11 23:19:19 +01:00
|
|
|
|
public string? PlaylistUri { get; set; }
|
2021-10-12 23:29:05 +01:00
|
|
|
|
public string? WatcherCollection { get; set; }
|
2021-10-12 20:23:25 +01:00
|
|
|
|
#nullable disable
|
2021-10-11 23:19:19 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-29 21:04:15 +00:00
|
|
|
|
public enum Consumers
|
2021-10-13 23:19:47 +01:00
|
|
|
|
{
|
2021-10-31 08:54:11 +00:00
|
|
|
|
AudioFeatures, AudioFeaturesCache, CacheWriter, Publisher, PlayCounter
|
2021-10-13 23:19:47 +01:00
|
|
|
|
}
|
2021-10-24 17:38:45 +01:00
|
|
|
|
|
2021-11-29 21:04:15 +00:00
|
|
|
|
public class DatabaseOptions {
|
2021-10-24 17:38:45 +01:00
|
|
|
|
public const string Key = "Database";
|
|
|
|
|
|
|
|
|
|
public bool Enabled { get; set; } = false;
|
|
|
|
|
public string ConnectionString { get; set; }
|
|
|
|
|
}
|
2021-10-27 23:00:01 +01:00
|
|
|
|
|
2021-11-29 21:04:15 +00:00
|
|
|
|
public class RedisOptions
|
2021-10-27 23:00:01 +01:00
|
|
|
|
{
|
|
|
|
|
public const string Key = "Redis";
|
|
|
|
|
|
|
|
|
|
public bool Enabled { get; set; } = false;
|
|
|
|
|
public string ConnectionString { get; set; }
|
|
|
|
|
}
|
2021-10-11 18:17:36 +01:00
|
|
|
|
}
|