mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
a962e60de9
* Store selector * Footer * Notifications * Checkout Appearance * Users list * Forms * Emails * Pay Button * Edit Dictionary * Remove newlines, fix typos * Forms * Pull payments and payouts * Various pages * Use local docs link * Fix * Even more translations * Fixes #6325 * Account pages * Notifications * Placeholders * Various pages and components * Add more
112 lines
4.4 KiB
C#
112 lines
4.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using BTCPayServer.Services;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace BTCPayServer.Models.StoreViewModels
|
|
{
|
|
public class CheckoutAppearanceViewModel
|
|
{
|
|
public SelectList PaymentMethods { get; set; }
|
|
|
|
public void SetLanguages(LanguageService langService, string defaultLang)
|
|
{
|
|
defaultLang = langService.GetLanguages().Any(language => language.Code == defaultLang) ? defaultLang : "en";
|
|
var choices = langService.GetLanguages().Select(o => new PaymentMethodOptionViewModel.Format() { Name = o.DisplayName, Value = o.Code }).ToArray().OrderBy(o => o.Name);
|
|
var chosen = choices.FirstOrDefault(f => f.Value == defaultLang) ?? choices.FirstOrDefault();
|
|
Languages = new SelectList(choices, nameof(chosen.Value), nameof(chosen.Name), chosen);
|
|
DefaultLang = chosen.Value;
|
|
}
|
|
|
|
public SelectList Languages { get; set; }
|
|
|
|
[Display(Name = "Unify on-chain and lightning payment URL/QR code")]
|
|
public bool OnChainWithLnInvoiceFallback { get; set; }
|
|
|
|
[Display(Name = "Show \"Pay in wallet\" button")]
|
|
public bool ShowPayInWalletButton { get; set; }
|
|
|
|
[Display(Name = "Show the store header")]
|
|
public bool ShowStoreHeader { get; set; }
|
|
|
|
[Display(Name = "Display Lightning payment amounts in Satoshis")]
|
|
public bool LightningAmountInSatoshi { get; set; }
|
|
|
|
[Display(Name = "Default payment method on checkout")]
|
|
public string DefaultPaymentMethod { get; set; }
|
|
|
|
[Display(Name = "Celebrate payment with confetti")]
|
|
public bool CelebratePayment { get; set; }
|
|
|
|
[Display(Name = "Enable sounds on checkout page")]
|
|
public bool PlaySoundOnPayment { get; set; }
|
|
|
|
[Display(Name = "Only enable the payment method after user explicitly chooses it")]
|
|
public bool LazyPaymentMethods { get; set; }
|
|
|
|
[Display(Name = "Redirect invoice to redirect url automatically after paid")]
|
|
public bool RedirectAutomatically { get; set; }
|
|
|
|
[Display(Name = "Auto-detect language on checkout")]
|
|
public bool AutoDetectLanguage { get; set; }
|
|
|
|
[Display(Name = "Default language on checkout")]
|
|
public string DefaultLang { get; set; }
|
|
|
|
[Display(Name = "Custom sound file for successful payment")]
|
|
public IFormFile SoundFile { get; set; }
|
|
public string PaymentSoundUrl { get; set; }
|
|
|
|
[Display(Name = "Custom HTML title to display on Checkout page")]
|
|
public string HtmlTitle { get; set; }
|
|
|
|
[Display(Name = "Support URL")]
|
|
[MaxLength(500)]
|
|
public string SupportUrl { get; set; }
|
|
|
|
[Display(Name = "Show a timer … minutes before invoice expiration")]
|
|
[Range(1, 60 * 24 * 24)]
|
|
public int DisplayExpirationTimer { get; set; }
|
|
|
|
public class ReceiptOptionsViewModel
|
|
{
|
|
public static ReceiptOptionsViewModel Create(Client.Models.InvoiceDataBase.ReceiptOptions opts)
|
|
{
|
|
return JObject.FromObject(opts).ToObject<ReceiptOptionsViewModel>();
|
|
}
|
|
[Display(Name = "Enable public receipt page for settled invoices")]
|
|
public bool Enabled { get; set; }
|
|
|
|
[Display(Name = "Show the QR code of the receipt in the public receipt page")]
|
|
public bool ShowQR { get; set; }
|
|
|
|
[Display(Name = "Show the payment list in the public receipt page")]
|
|
public bool ShowPayments { get; set; }
|
|
public Client.Models.InvoiceDataBase.ReceiptOptions ToDTO()
|
|
{
|
|
return JObject.FromObject(this).ToObject<Client.Models.InvoiceDataBase.ReceiptOptions>();
|
|
}
|
|
}
|
|
public ReceiptOptionsViewModel ReceiptOptions { get; set; } = ReceiptOptionsViewModel.Create(Client.Models.InvoiceDataBase.ReceiptOptions.CreateDefault());
|
|
public List<PaymentMethodCriteriaViewModel> PaymentMethodCriteria { get; set; }
|
|
}
|
|
|
|
public class PaymentMethodCriteriaViewModel
|
|
{
|
|
public string PaymentMethod { get; set; }
|
|
public string Value { get; set; }
|
|
|
|
public CriteriaType Type { get; set; }
|
|
|
|
public enum CriteriaType
|
|
{
|
|
GreaterThan,
|
|
LessThan
|
|
}
|
|
}
|
|
}
|