2023-07-18 15:25:02 +03:00
|
|
|
using System.Text.Json.Nodes;
|
|
|
|
using Remora.Results;
|
|
|
|
|
|
|
|
namespace Boyfriend.Data.Options;
|
|
|
|
|
|
|
|
public class BoolOption : Option<bool> {
|
|
|
|
public BoolOption(string name, bool defaultValue) : base(name, defaultValue) { }
|
|
|
|
|
|
|
|
public override string Display(JsonNode settings) {
|
|
|
|
return Get(settings) ? Messages.Yes : Messages.No;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override Result Set(JsonNode settings, string from) {
|
|
|
|
if (!TryParseBool(from, out var value))
|
|
|
|
return Result.FromError(new ArgumentInvalidError(nameof(from), Messages.InvalidSettingValue));
|
|
|
|
|
|
|
|
settings[Name] = value;
|
|
|
|
return Result.FromSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
private static bool TryParseBool(string from, out bool value) {
|
2023-07-25 17:53:11 +03:00
|
|
|
from = from.ToLower();
|
2023-07-18 15:25:02 +03:00
|
|
|
value = false;
|
|
|
|
switch (from) {
|
2023-07-25 17:53:11 +03:00
|
|
|
case "true" or "1" or "y" or "yes" or "д" or "да":
|
2023-07-18 15:25:02 +03:00
|
|
|
value = true;
|
|
|
|
return true;
|
2023-07-25 17:53:11 +03:00
|
|
|
case "false" or "0" or "n" or "no" or "н" or "не" or "нет" or "нъет":
|
2023-07-18 15:25:02 +03:00
|
|
|
value = false;
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|