mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
206 lines
7.0 KiB
C#
206 lines
7.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Data;
|
|
using BTCPayServer.Models;
|
|
using BTCPayServer.Models.AppViewModels;
|
|
using BTCPayServer.Security;
|
|
using BTCPayServer.Services.Apps;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using NBitcoin;
|
|
using NBitcoin.DataEncoders;
|
|
|
|
namespace BTCPayServer.Controllers
|
|
{
|
|
[Authorize(AuthenticationSchemes = Policies.CookieAuthentication)]
|
|
[AutoValidateAntiforgeryToken]
|
|
[Route("apps")]
|
|
public partial class AppsController : Controller
|
|
{
|
|
public AppsController(
|
|
UserManager<ApplicationUser> userManager,
|
|
ApplicationDbContextFactory contextFactory,
|
|
EventAggregator eventAggregator,
|
|
BTCPayNetworkProvider networkProvider,
|
|
AppsHelper appsHelper)
|
|
{
|
|
_UserManager = userManager;
|
|
_ContextFactory = contextFactory;
|
|
_EventAggregator = eventAggregator;
|
|
_NetworkProvider = networkProvider;
|
|
_AppsHelper = appsHelper;
|
|
}
|
|
|
|
private UserManager<ApplicationUser> _UserManager;
|
|
private ApplicationDbContextFactory _ContextFactory;
|
|
private readonly EventAggregator _EventAggregator;
|
|
private BTCPayNetworkProvider _NetworkProvider;
|
|
private AppsHelper _AppsHelper;
|
|
|
|
[TempData]
|
|
public string StatusMessage { get; set; }
|
|
public string CreatedAppId { get; set; }
|
|
|
|
public async Task<IActionResult> ListApps()
|
|
{
|
|
var apps = await GetAllApps();
|
|
return View(new ListAppsViewModel()
|
|
{
|
|
Apps = apps
|
|
});
|
|
}
|
|
|
|
[HttpPost]
|
|
[Route("{appId}/delete")]
|
|
public async Task<IActionResult> DeleteAppPost(string appId)
|
|
{
|
|
var appData = await GetOwnedApp(appId);
|
|
if (appData == null)
|
|
return NotFound();
|
|
if (await DeleteApp(appData))
|
|
StatusMessage = "App removed successfully";
|
|
return RedirectToAction(nameof(ListApps));
|
|
}
|
|
|
|
[HttpGet]
|
|
[Route("create")]
|
|
public async Task<IActionResult> CreateApp()
|
|
{
|
|
var stores = await GetOwnedStores();
|
|
if (stores.Length == 0)
|
|
{
|
|
StatusMessage = "Error: You must have created at least one store";
|
|
return RedirectToAction(nameof(ListApps));
|
|
}
|
|
var vm = new CreateAppViewModel();
|
|
vm.SetStores(stores);
|
|
return View(vm);
|
|
}
|
|
|
|
[HttpPost]
|
|
[Route("create")]
|
|
public async Task<IActionResult> CreateApp(CreateAppViewModel vm)
|
|
{
|
|
var stores = await GetOwnedStores();
|
|
if (stores.Length == 0)
|
|
{
|
|
StatusMessage = "Error: You must own at least one store";
|
|
return RedirectToAction(nameof(ListApps));
|
|
}
|
|
var selectedStore = vm.SelectedStore;
|
|
vm.SetStores(stores);
|
|
vm.SelectedStore = selectedStore;
|
|
|
|
if (!Enum.TryParse<AppType>(vm.SelectedAppType, out AppType appType))
|
|
ModelState.AddModelError(nameof(vm.SelectedAppType), "Invalid App Type");
|
|
|
|
if (!ModelState.IsValid)
|
|
{
|
|
return View(vm);
|
|
}
|
|
|
|
if (!stores.Any(s => s.Id == selectedStore))
|
|
{
|
|
StatusMessage = "Error: You are not owner of this store";
|
|
return RedirectToAction(nameof(ListApps));
|
|
}
|
|
var id = Encoders.Base58.EncodeData(RandomUtils.GetBytes(20));
|
|
using (var ctx = _ContextFactory.CreateContext())
|
|
{
|
|
var appData = new AppData() { Id = id };
|
|
appData.StoreDataId = selectedStore;
|
|
appData.Name = vm.Name;
|
|
appData.AppType = appType.ToString();
|
|
ctx.Apps.Add(appData);
|
|
await ctx.SaveChangesAsync();
|
|
}
|
|
StatusMessage = "App successfully created";
|
|
CreatedAppId = id;
|
|
|
|
switch (appType)
|
|
{
|
|
case AppType.PointOfSale:
|
|
return RedirectToAction(nameof(UpdatePointOfSale), new { appId = id });
|
|
case AppType.Crowdfund:
|
|
return RedirectToAction(nameof(UpdateCrowdfund), new { appId = id });
|
|
default:
|
|
return RedirectToAction(nameof(ListApps));
|
|
}
|
|
|
|
}
|
|
|
|
[HttpGet]
|
|
[Route("{appId}/delete")]
|
|
public async Task<IActionResult> DeleteApp(string appId)
|
|
{
|
|
var appData = await GetOwnedApp(appId);
|
|
if (appData == null)
|
|
return NotFound();
|
|
return View("Confirm", new ConfirmModel()
|
|
{
|
|
Title = $"Delete app {appData.Name} ({appData.AppType})",
|
|
Description = "This app will be removed from this store",
|
|
Action = "Delete"
|
|
});
|
|
}
|
|
|
|
private Task<AppData> GetOwnedApp(string appId, AppType? type = null)
|
|
{
|
|
return _AppsHelper.GetAppDataIfOwner(GetUserId(), appId, type);
|
|
}
|
|
|
|
private async Task<StoreData[]> GetOwnedStores()
|
|
{
|
|
var userId = GetUserId();
|
|
using (var ctx = _ContextFactory.CreateContext())
|
|
{
|
|
return await ctx.UserStore
|
|
.Where(us => us.ApplicationUserId == userId && us.Role == StoreRoles.Owner)
|
|
.Select(u => u.StoreData)
|
|
.ToArrayAsync();
|
|
}
|
|
}
|
|
|
|
private 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;
|
|
}
|
|
}
|
|
|
|
private async Task<ListAppsViewModel.ListAppViewModel[]> GetAllApps()
|
|
{
|
|
var userId = GetUserId();
|
|
using (var ctx = _ContextFactory.CreateContext())
|
|
{
|
|
return await ctx.UserStore
|
|
.Where(us => 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();
|
|
}
|
|
}
|
|
|
|
private string GetUserId()
|
|
{
|
|
return _UserManager.GetUserId(User);
|
|
}
|
|
}
|
|
}
|