btcpayserver/BTCPayServer/Controllers/AppsPublicController.cs

453 lines
18 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Security.Claims;
using System.Threading.Tasks;
using BTCPayServer.Data;
2018-12-10 08:39:21 +01:00
using BTCPayServer.Filters;
2018-12-27 20:19:21 +01:00
using BTCPayServer.Hubs;
2018-12-28 17:38:20 +01:00
using BTCPayServer.Models;
using BTCPayServer.Models.AppViewModels;
using BTCPayServer.Rating;
using BTCPayServer.Security;
using BTCPayServer.Services.Apps;
using BTCPayServer.Services.Invoices;
using BTCPayServer.Services.Rates;
2019-01-07 14:25:35 +01:00
using Ganss.XSS;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Cors;
2018-12-28 17:38:20 +01:00
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using NBitpayClient;
using YamlDotNet.RepresentationModel;
using static BTCPayServer.Controllers.AppsController;
namespace BTCPayServer.Controllers
{
public class AppsPublicController : Controller
{
public AppsPublicController(AppsHelper appsHelper,
InvoiceController invoiceController,
2018-12-28 17:38:20 +01:00
CrowdfundHubStreamer crowdfundHubStreamer, UserManager<ApplicationUser> userManager)
{
_AppsHelper = appsHelper;
_InvoiceController = invoiceController;
2018-12-27 20:19:21 +01:00
_CrowdfundHubStreamer = crowdfundHubStreamer;
2018-12-28 17:38:20 +01:00
_UserManager = userManager;
}
private AppsHelper _AppsHelper;
private InvoiceController _InvoiceController;
2018-12-27 20:19:21 +01:00
private readonly CrowdfundHubStreamer _CrowdfundHubStreamer;
2018-12-28 17:38:20 +01:00
private readonly UserManager<ApplicationUser> _UserManager;
[HttpGet]
[Route("/apps/{appId}/pos")]
2018-12-10 08:39:21 +01:00
[XFrameOptionsAttribute(null)]
public async Task<IActionResult> ViewPointOfSale(string appId)
{
var app = await _AppsHelper.GetApp(appId, AppType.PointOfSale);
if (app == null)
return NotFound();
var settings = app.GetSettings<PointOfSaleSettings>();
var numberFormatInfo = _AppsHelper.Currencies.GetNumberFormatInfo(settings.Currency) ?? _AppsHelper.Currencies.GetNumberFormatInfo("USD");
double step = Math.Pow(10, -(numberFormatInfo.CurrencyDecimalDigits));
return View(new ViewPointOfSaleViewModel()
{
Title = settings.Title,
Step = step.ToString(CultureInfo.InvariantCulture),
EnableShoppingCart = settings.EnableShoppingCart,
ShowCustomAmount = settings.ShowCustomAmount,
CurrencyCode = settings.Currency,
CurrencySymbol = numberFormatInfo.CurrencySymbol,
CurrencyInfo = new ViewPointOfSaleViewModel.CurrencyInfoData()
{
CurrencySymbol = string.IsNullOrEmpty(numberFormatInfo.CurrencySymbol) ? settings.Currency : numberFormatInfo.CurrencySymbol,
Divisibility = numberFormatInfo.CurrencyDecimalDigits,
DecimalSeparator = numberFormatInfo.CurrencyDecimalSeparator,
ThousandSeparator = numberFormatInfo.NumberGroupSeparator,
Prefixed = new[] { 0, 2 }.Contains(numberFormatInfo.CurrencyPositivePattern),
SymbolSpace = new[] { 2, 3 }.Contains(numberFormatInfo.CurrencyPositivePattern)
},
Items = _AppsHelper.Parse(settings.Template, settings.Currency),
ButtonText = settings.ButtonText,
CustomButtonText = settings.CustomButtonText,
CustomTipText = settings.CustomTipText,
2018-12-13 14:36:19 +01:00
CustomTipPercentages = settings.CustomTipPercentages,
2018-12-17 19:11:11 +01:00
CustomCSSLink = settings.CustomCSSLink,
AppId = appId
});
}
2018-12-11 16:36:25 +01:00
[HttpGet]
[Route("/apps/{appId}/crowdfund")]
[XFrameOptionsAttribute(null)]
2018-12-22 15:02:16 +01:00
public async Task<IActionResult> ViewCrowdfund(string appId, string statusMessage)
2018-12-11 16:36:25 +01:00
{
2019-01-05 09:18:15 +01:00
var app = await _AppsHelper.GetApp(appId, AppType.Crowdfund, true);
2019-01-05 09:18:15 +01:00
if (app == null)
return NotFound();
var settings = app.GetSettings<CrowdfundSettings>();
2019-01-07 14:25:35 +01:00
2019-01-05 09:18:15 +01:00
var isAdmin = await _AppsHelper.GetAppDataIfOwner(GetUserId(), appId, AppType.Crowdfund) != null;
2019-01-07 14:25:35 +01:00
var hasEnoughSettingsToLoad = !string.IsNullOrEmpty(settings.TargetCurrency );
if (!hasEnoughSettingsToLoad)
{
if(!isAdmin)
return NotFound();
return NotFound("A Target Currency must be set for this app in order to be loadable.");
}
if (settings.Enabled) return View(await _CrowdfundHubStreamer.GetCrowdfundInfo(appId));
2019-01-05 09:18:15 +01:00
if(!isAdmin)
return NotFound();
2018-12-27 20:19:21 +01:00
return View(await _CrowdfundHubStreamer.GetCrowdfundInfo(appId));
}
2018-12-22 15:02:16 +01:00
[HttpPost]
2018-12-22 15:02:16 +01:00
[Route("/apps/{appId}/crowdfund")]
[XFrameOptionsAttribute(null)]
[IgnoreAntiforgeryToken]
[EnableCors(CorsPolicies.All)]
2018-12-22 15:02:16 +01:00
public async Task<IActionResult> ContributeToCrowdfund(string appId, ContributeToCrowdfund request)
{
2018-12-22 15:02:16 +01:00
var app = await _AppsHelper.GetApp(appId, AppType.Crowdfund, true);
2019-01-02 11:29:47 +01:00
if (app == null)
return NotFound();
var settings = app.GetSettings<CrowdfundSettings>();
2019-01-06 14:44:51 +01:00
2019-01-07 14:25:35 +01:00
2019-01-06 14:44:51 +01:00
var isAdmin = await _AppsHelper.GetAppDataIfOwner(GetUserId(), appId, AppType.Crowdfund) != null;
2019-01-07 14:25:35 +01:00
2019-01-02 11:29:47 +01:00
if (!settings.Enabled)
{
if(!isAdmin)
2019-01-05 09:18:15 +01:00
return NotFound("Crowdfund is not currently active");
2019-01-02 11:29:47 +01:00
}
var info = await _CrowdfundHubStreamer.GetCrowdfundInfo(appId);
if(!isAdmin &&
2019-01-02 11:29:47 +01:00
((settings.StartDate.HasValue && DateTime.Now < settings.StartDate) ||
(settings.EndDate.HasValue && DateTime.Now > settings.EndDate) ||
(settings.EnforceTargetAmount &&
(info.Info.PendingProgressPercentage.GetValueOrDefault(0) +
info.Info.ProgressPercentage.GetValueOrDefault(0)) >= 100)))
2019-01-02 11:29:47 +01:00
{
2019-01-05 09:18:15 +01:00
return NotFound("Crowdfund is not currently active");
2019-01-02 11:29:47 +01:00
}
var store = await _AppsHelper.GetStore(app);
2019-01-02 11:29:47 +01:00
var title = settings.Title;
var price = request.Amount;
2018-12-29 11:52:07 +01:00
if (!string.IsNullOrEmpty(request.ChoiceKey))
{
var choices = _AppsHelper.Parse(settings.PerksTemplate, settings.TargetCurrency);
var choice = choices.FirstOrDefault(c => c.Id == request.ChoiceKey);
if (choice == null)
2019-01-05 09:38:27 +01:00
return NotFound("Incorrect option provided");
2018-12-29 11:52:07 +01:00
title = choice.Title;
price = choice.Price.Value;
if (request.Amount > price)
price = request.Amount;
}
2019-01-04 16:42:35 +01:00
2019-01-05 19:47:39 +01:00
if (!isAdmin && (settings.EnforceTargetAmount && info.TargetAmount.HasValue && price >
2019-01-05 09:38:27 +01:00
(info.TargetAmount - (info.Info.CurrentAmount + info.Info.CurrentPendingAmount))))
2019-01-04 16:42:35 +01:00
{
2019-01-05 09:18:15 +01:00
return NotFound("Contribution Amount is more than is currently allowed.");
2019-01-04 16:42:35 +01:00
}
2018-12-29 11:52:07 +01:00
2018-12-22 15:02:16 +01:00
store.AdditionalClaims.Add(new Claim(Policies.CanCreateInvoice.Key, store.Id));
var invoice = await _InvoiceController.CreateInvoiceCore(new Invoice()
{
2018-12-27 20:19:21 +01:00
OrderId = $"{CrowdfundHubStreamer.CrowdfundInvoiceOrderIdPrefix}{appId}",
2018-12-22 15:02:16 +01:00
Currency = settings.TargetCurrency,
2018-12-29 11:52:07 +01:00
ItemCode = request.ChoiceKey ?? string.Empty,
ItemDesc = title,
2018-12-22 15:02:16 +01:00
BuyerEmail = request.Email,
2018-12-29 11:52:07 +01:00
Price = price,
2018-12-22 15:02:16 +01:00
NotificationURL = settings.NotificationUrl,
FullNotifications = true,
ExtendedNotifications = true,
2018-12-29 11:52:07 +01:00
RedirectURL = request.RedirectUrl,
2018-12-27 20:19:21 +01:00
}, store, HttpContext.Request.GetAbsoluteRoot());
2018-12-22 15:02:16 +01:00
if (request.RedirectToCheckout)
2018-12-11 16:36:25 +01:00
{
2018-12-22 15:02:16 +01:00
return RedirectToAction(nameof(InvoiceController.Checkout), "Invoice",
new {invoiceId = invoice.Data.Id});
}
else
{
2018-12-27 20:19:21 +01:00
return Ok(invoice.Data.Id);
}
2018-12-11 16:36:25 +01:00
}
[HttpPost]
[Route("/apps/{appId}/pos")]
[IgnoreAntiforgeryToken]
[EnableCors(CorsPolicies.All)]
public async Task<IActionResult> ViewPointOfSale(string appId,
decimal amount,
string email,
string orderId,
string notificationUrl,
string redirectUrl,
string choiceKey)
{
var app = await _AppsHelper.GetApp(appId, AppType.PointOfSale);
if (string.IsNullOrEmpty(choiceKey) && amount <= 0)
{
return RedirectToAction(nameof(ViewPointOfSale), new { appId = appId });
}
if (app == null)
return NotFound();
var settings = app.GetSettings<PointOfSaleSettings>();
if (string.IsNullOrEmpty(choiceKey) && !settings.ShowCustomAmount && !settings.EnableShoppingCart)
{
return RedirectToAction(nameof(ViewPointOfSale), new { appId = appId });
}
string title = null;
var price = 0.0m;
if (!string.IsNullOrEmpty(choiceKey))
{
var choices = _AppsHelper.Parse(settings.Template, settings.Currency);
var choice = choices.FirstOrDefault(c => c.Id == choiceKey);
if (choice == null)
return NotFound();
title = choice.Title;
price = choice.Price.Value;
if (amount > price)
price = amount;
}
else
{
if (!settings.ShowCustomAmount && !settings.EnableShoppingCart)
return NotFound();
price = amount;
title = settings.Title;
}
var store = await _AppsHelper.GetStore(app);
store.AdditionalClaims.Add(new Claim(Policies.CanCreateInvoice.Key, store.Id));
var invoice = await _InvoiceController.CreateInvoiceCore(new NBitpayClient.Invoice()
{
ItemCode = choiceKey ?? string.Empty,
ItemDesc = title,
Currency = settings.Currency,
Price = price,
BuyerEmail = email,
OrderId = orderId,
NotificationURL = notificationUrl,
RedirectURL = redirectUrl,
2018-12-29 11:52:07 +01:00
FullNotifications = true,
}, store, HttpContext.Request.GetAbsoluteRoot());
2018-11-23 05:09:30 +01:00
return RedirectToAction(nameof(InvoiceController.Checkout), "Invoice", new { invoiceId = invoice.Data.Id });
}
2018-12-28 17:38:20 +01:00
private string GetUserId()
{
return _UserManager.GetUserId(User);
}
}
public class AppsHelper
{
ApplicationDbContextFactory _ContextFactory;
CurrencyNameTable _Currencies;
2019-01-07 14:25:35 +01:00
private HtmlSanitizer _HtmlSanitizer;
public CurrencyNameTable Currencies => _Currencies;
public AppsHelper(ApplicationDbContextFactory contextFactory, CurrencyNameTable currencies)
{
_ContextFactory = contextFactory;
_Currencies = currencies;
2019-01-07 14:25:35 +01:00
ConfigureSanitizer();
}
private void ConfigureSanitizer()
{
_HtmlSanitizer = new HtmlSanitizer();
2019-01-07 14:25:35 +01:00
_HtmlSanitizer.RemovingStyle += (sender, args) => { args.Cancel = true; };
_HtmlSanitizer.AllowedAttributes.Add("class");
_HtmlSanitizer.AllowedTags.Add("iframe");
_HtmlSanitizer.AllowedAttributes.Add("webkitallowfullscreen");
_HtmlSanitizer.AllowedAttributes.Add("allowfullscreen");
}
public string Sanitize(string raw)
{
return _HtmlSanitizer.Sanitize(raw);
}
2019-01-05 19:47:39 +01:00
public async Task<StoreData[]> GetOwnedStores(string userId)
{
using (var ctx = _ContextFactory.CreateContext())
{
return await ctx.UserStore
.Where(us => us.ApplicationUserId == userId && us.Role == StoreRoles.Owner)
.Select(u => u.StoreData)
.ToArrayAsync();
}
}
public async Task<bool> DeleteApp(AppData appData)
{
using (var ctx = _ContextFactory.CreateContext())
{
ctx.Apps.Add(appData);
ctx.Entry<AppData>(appData).State = EntityState.Deleted;
return await ctx.SaveChangesAsync() == 1;
}
}
public async Task<ListAppsViewModel.ListAppViewModel[]> GetAllApps(string userId, bool allowNoUser = false)
{
using (var ctx = _ContextFactory.CreateContext())
{
return await ctx.UserStore
.Where(us => (allowNoUser && string.IsNullOrEmpty(userId) ) || us.ApplicationUserId == userId)
.Join(ctx.Apps, us => us.StoreDataId, app => app.StoreDataId,
(us, app) =>
new ListAppsViewModel.ListAppViewModel()
{
IsOwner = us.Role == StoreRoles.Owner,
StoreId = us.StoreDataId,
StoreName = us.StoreData.StoreName,
AppName = app.Name,
AppType = app.AppType,
Id = app.Id
})
.ToArrayAsync();
}
}
2018-12-22 15:02:16 +01:00
public async Task<AppData> GetApp(string appId, AppType appType, bool includeStore = false)
{
using (var ctx = _ContextFactory.CreateContext())
{
2018-12-22 15:02:16 +01:00
var query = ctx.Apps
.Where(us => us.Id == appId &&
us.AppType == appType.ToString());
if (includeStore)
{
query = query.Include(data => data.StoreData);
}
return await query.FirstOrDefaultAsync();
}
}
public async Task<StoreData> GetStore(AppData app)
{
using (var ctx = _ContextFactory.CreateContext())
{
return await ctx.Stores.FirstOrDefaultAsync(s => s.Id == app.StoreDataId);
}
}
public ViewPointOfSaleViewModel.Item[] Parse(string template, string currency)
{
2018-11-13 08:32:13 +01:00
if (string.IsNullOrWhiteSpace(template))
return Array.Empty<ViewPointOfSaleViewModel.Item>();
var input = new StringReader(template);
YamlStream stream = new YamlStream();
stream.Load(input);
var root = (YamlMappingNode)stream.Documents[0].RootNode;
return root
.Children
.Select(kv => new PosHolder { Key = (kv.Key as YamlScalarNode)?.Value, Value = kv.Value as YamlMappingNode })
.Where(kv => kv.Value != null)
.Select(c => new ViewPointOfSaleViewModel.Item()
{
2019-01-07 14:25:35 +01:00
Description = Sanitize(c.GetDetailString("description")),
Id = c.Key,
2019-01-07 14:25:35 +01:00
Image = Sanitize(c.GetDetailString("image")),
Title = Sanitize(c.GetDetailString("title") ?? c.Key),
Price = c.GetDetail("price")
.Select(cc => new ViewPointOfSaleViewModel.Item.ItemPrice()
{
Value = decimal.Parse(cc.Value.Value, CultureInfo.InvariantCulture),
Formatted = FormatCurrency(cc.Value.Value, currency)
}).Single(),
Custom = c.GetDetailString("custom") == "true"
})
.ToArray();
}
private class PosHolder
{
public string Key { get; set; }
public YamlMappingNode Value { get; set; }
public IEnumerable<PosScalar> GetDetail(string field)
{
var res = Value.Children
.Where(kv => kv.Value != null)
.Select(kv => new PosScalar { Key = (kv.Key as YamlScalarNode)?.Value, Value = kv.Value as YamlScalarNode })
.Where(cc => cc.Key == field);
return res;
}
public string GetDetailString(string field)
{
2019-01-07 14:25:35 +01:00
return GetDetail(field).FirstOrDefault()?.Value?.Value;
}
}
private class PosScalar
{
public string Key { get; set; }
public YamlScalarNode Value { get; set; }
}
public string FormatCurrency(string price, string currency)
{
return decimal.Parse(price, CultureInfo.InvariantCulture).ToString("C", _Currencies.GetCurrencyProvider(currency));
}
public CurrencyData GetCurrencyData(string currency, bool useFallback)
{
return _Currencies.GetCurrencyData(currency, useFallback);
}
public async Task<AppData> GetAppDataIfOwner(string userId, string appId, AppType? type = null)
{
if (userId == null || appId == null)
return null;
using (var ctx = _ContextFactory.CreateContext())
{
var app = await ctx.UserStore
.Where(us => us.ApplicationUserId == userId && us.Role == StoreRoles.Owner)
.SelectMany(us => us.StoreData.Apps.Where(a => a.Id == appId))
.FirstOrDefaultAsync();
if (app == null)
return null;
if (type != null && type.Value.ToString() != app.AppType)
return null;
return app;
}
}
2018-12-28 17:38:20 +01:00
}
}