btcpayserver/BTCPayServer/Services/ThemesSettings.cs

55 lines
1.3 KiB
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Http;
2018-04-19 11:39:51 -05:00
using Newtonsoft.Json;
namespace BTCPayServer.Services;
public enum ThemeExtension
{
[Display(Name = "Does not extend a BTCPay Server theme, fully custom")]
Custom,
[Display(Name = "Extends the BTCPay Server Light theme")]
Light,
[Display(Name = "Extends the BTCPay Server Dark theme")]
Dark
}
public class ThemeSettings
2018-04-19 11:39:51 -05:00
{
[Display(Name = "Use custom theme")]
public bool CustomTheme { get; set; }
[Display(Name = "Custom Theme Extension Type")]
public ThemeExtension CustomThemeExtension { get; set; }
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Populate)]
[MaxLength(500)]
[Display(Name = "Custom Theme CSS URL")]
public string CustomThemeCssUri { get; set; }
[Display(Name = "Custom Theme File")]
[JsonIgnore]
public IFormFile CustomThemeFile { get; set; }
public string CustomThemeFileId { get; set; }
[Display(Name = "Logo")]
[JsonIgnore]
public IFormFile LogoFile { get; set; }
public string LogoFileId { get; set; }
public bool FirstRun { get; set; }
public override string ToString()
{
// no logs
return string.Empty;
}
public string CssUri
2018-04-19 11:39:51 -05:00
{
get => CustomTheme ? CustomThemeCssUri : "/main/themes/default.css";
2018-04-19 11:39:51 -05:00
}
}