mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-21 14:04:12 +01:00
392 lines
16 KiB
C#
392 lines
16 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Immutable;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Net.Http;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Client;
|
|
using BTCPayServer.Client.Models;
|
|
using BTCPayServer.Data;
|
|
using BTCPayServer.Models;
|
|
using BTCPayServer.Models.StoreViewModels;
|
|
using BTCPayServer.Services.Invoices;
|
|
using BTCPayServer.Services.Shopify;
|
|
using BTCPayServer.Services.Shopify.ApiModels;
|
|
using BTCPayServer.Services.Shopify.Models;
|
|
using BTCPayServer.Services.Stores;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Cors;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using NBitcoin;
|
|
using NBitcoin.DataEncoders;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
using NicolasDorier.RateLimits;
|
|
|
|
namespace BTCPayServer.Controllers
|
|
{
|
|
public partial class StoresController
|
|
{
|
|
private static string _cachedShopifyJavascript;
|
|
|
|
private async Task<string> GetJavascript()
|
|
{
|
|
if (!string.IsNullOrEmpty(_cachedShopifyJavascript) && !_BTCPayEnv.IsDeveloping)
|
|
{
|
|
return _cachedShopifyJavascript;
|
|
}
|
|
|
|
string[] fileList = _BtcpayServerOptions.BundleJsCss
|
|
? new[] {"bundles/shopify-bundle.min.js"}
|
|
: new[] {"modal/btcpay.js", "shopify/btcpay-shopify.js"};
|
|
|
|
|
|
foreach (var file in fileList)
|
|
{
|
|
await using var stream = _webHostEnvironment.WebRootFileProvider
|
|
.GetFileInfo(file).CreateReadStream();
|
|
using var reader = new StreamReader(stream);
|
|
_cachedShopifyJavascript += Environment.NewLine + await reader.ReadToEndAsync();
|
|
}
|
|
|
|
return _cachedShopifyJavascript;
|
|
}
|
|
|
|
[AllowAnonymous]
|
|
[HttpGet("{storeId}/integrations/shopify/shopify.js")]
|
|
public async Task<IActionResult> ShopifyJavascript(string storeId)
|
|
{
|
|
var jsFile =
|
|
$"var BTCPAYSERVER_URL = \"{Request.GetAbsoluteRoot()}\"; var STORE_ID = \"{storeId}\"; {await GetJavascript()}";
|
|
return Content(jsFile, "text/javascript");
|
|
}
|
|
|
|
[RateLimitsFilter(ZoneLimits.Shopify, Scope = RateLimitsScope.RemoteAddress)]
|
|
[AllowAnonymous]
|
|
[EnableCors(CorsPolicies.All)]
|
|
[HttpGet("{storeId}/integrations/shopify/{orderId}")]
|
|
public async Task<IActionResult> ShopifyInvoiceEndpoint(
|
|
[FromServices] InvoiceRepository invoiceRepository,
|
|
[FromServices] InvoiceController invoiceController,
|
|
[FromServices] IHttpClientFactory httpClientFactory,
|
|
string storeId, string orderId, decimal amount, bool checkOnly = false)
|
|
{
|
|
var invoiceOrderId = $"{ShopifyOrderMarkerHostedService.SHOPIFY_ORDER_ID_PREFIX}{orderId}";
|
|
var matchedExistingInvoices = await invoiceRepository.GetInvoices(new InvoiceQuery()
|
|
{
|
|
OrderId = new[] {invoiceOrderId}, StoreId = new[] {storeId}
|
|
});
|
|
matchedExistingInvoices = matchedExistingInvoices.Where(entity =>
|
|
entity.GetInternalTags(ShopifyOrderMarkerHostedService.SHOPIFY_ORDER_ID_PREFIX)
|
|
.Any(s => s == orderId))
|
|
.ToArray();
|
|
|
|
var firstInvoiceStillPending =
|
|
matchedExistingInvoices.FirstOrDefault(entity => entity.GetInvoiceState().Status == InvoiceStatusLegacy.New);
|
|
if (firstInvoiceStillPending != null)
|
|
{
|
|
return Ok(new
|
|
{
|
|
invoiceId = firstInvoiceStillPending.Id,
|
|
status = firstInvoiceStillPending.Status.ToString().ToLowerInvariant()
|
|
});
|
|
}
|
|
|
|
var firstInvoiceSettled =
|
|
matchedExistingInvoices.LastOrDefault(entity =>
|
|
new[] {InvoiceStatusLegacy.Paid, InvoiceStatusLegacy.Complete, InvoiceStatusLegacy.Confirmed}.Contains(
|
|
entity.GetInvoiceState().Status));
|
|
|
|
var store = await _Repo.FindStore(storeId);
|
|
var shopify = store?.GetStoreBlob()?.Shopify;
|
|
ShopifyApiClient client = null;
|
|
ShopifyOrder order = null;
|
|
if (shopify?.IntegratedAt.HasValue is true)
|
|
{
|
|
client = new ShopifyApiClient(httpClientFactory, shopify.CreateShopifyApiCredentials());
|
|
order = await client.GetOrder(orderId);
|
|
if (string.IsNullOrEmpty(order?.Id))
|
|
{
|
|
return NotFound();
|
|
}
|
|
}
|
|
|
|
if (firstInvoiceSettled != null)
|
|
{
|
|
//if BTCPay was shut down before the tx managed to get registered on shopify, this will fix it on the next UI load in shopify
|
|
if (client != null && order?.FinancialStatus == "pending" &&
|
|
firstInvoiceSettled.Status != InvoiceStatusLegacy.Paid)
|
|
{
|
|
await new OrderTransactionRegisterLogic(client).Process(orderId, firstInvoiceSettled.Id,
|
|
firstInvoiceSettled.Currency,
|
|
firstInvoiceSettled.Price.ToString(CultureInfo.InvariantCulture), true);
|
|
order = await client.GetOrder(orderId);
|
|
}
|
|
|
|
if (order?.FinancialStatus != "pending" && order?.FinancialStatus != "partially_paid")
|
|
{
|
|
return Ok(new
|
|
{
|
|
invoiceId = firstInvoiceSettled.Id,
|
|
status = firstInvoiceSettled.Status.ToString().ToLowerInvariant()
|
|
});
|
|
}
|
|
}
|
|
|
|
if (checkOnly)
|
|
{
|
|
return Ok();
|
|
}
|
|
|
|
if (shopify?.IntegratedAt.HasValue is true)
|
|
{
|
|
if (string.IsNullOrEmpty(order?.Id) ||
|
|
!new[] {"pending", "partially_paid"}.Contains(order.FinancialStatus))
|
|
{
|
|
return NotFound();
|
|
}
|
|
|
|
//we create the invoice at due amount provided from order page or full amount if due amount is bigger than order amount
|
|
var invoice = await invoiceController.CreateInvoiceCoreRaw(
|
|
new CreateInvoiceRequest()
|
|
{
|
|
Amount = amount < order.TotalPrice ? amount : order.TotalPrice,
|
|
Currency = order.Currency,
|
|
Metadata = new JObject {["orderId"] = invoiceOrderId}
|
|
}, store,
|
|
Request.GetAbsoluteUri(""), new List<string>() {invoiceOrderId});
|
|
|
|
return Ok(new {invoiceId = invoice.Id, status = invoice.Status.ToString().ToLowerInvariant()});
|
|
}
|
|
|
|
return NotFound();
|
|
}
|
|
|
|
[HttpGet]
|
|
[Route("{storeId}/integrations")]
|
|
[Route("{storeId}/integrations/shopify")]
|
|
public IActionResult Integrations()
|
|
{
|
|
var blob = CurrentStore.GetStoreBlob();
|
|
|
|
var vm = new IntegrationsViewModel {Shopify = blob.Shopify};
|
|
|
|
return View("Integrations", vm);
|
|
}
|
|
|
|
[HttpGet("{storeId}/webhooks")]
|
|
public async Task<IActionResult> Webhooks()
|
|
{
|
|
var webhooks = await _Repo.GetWebhooks(CurrentStore.Id);
|
|
return View(nameof(Webhooks), new WebhooksViewModel()
|
|
{
|
|
Webhooks = webhooks.Select(w => new WebhooksViewModel.WebhookViewModel()
|
|
{
|
|
Id = w.Id,
|
|
Url = w.GetBlob().Url
|
|
}).ToArray()
|
|
});
|
|
}
|
|
|
|
[HttpGet("{storeId}/webhooks/new")]
|
|
public IActionResult NewWebhook()
|
|
{
|
|
return View(nameof(ModifyWebhook), new EditWebhookViewModel
|
|
{
|
|
Active = true,
|
|
Everything = true,
|
|
IsNew = true,
|
|
Secret = Encoders.Base58.EncodeData(RandomUtils.GetBytes(20))
|
|
});
|
|
}
|
|
|
|
[HttpGet("{storeId}/webhooks/{webhookId}/remove")]
|
|
public async Task<IActionResult> DeleteWebhook(string webhookId)
|
|
{
|
|
var webhook = await _Repo.GetWebhook(CurrentStore.Id, webhookId);
|
|
if (webhook is null)
|
|
return NotFound();
|
|
|
|
return View("Confirm", new ConfirmModel
|
|
{
|
|
Title = $"Delete a webhook",
|
|
Description = "This webhook will be removed from this store, do you wish to continue?",
|
|
Action = "Delete"
|
|
});
|
|
}
|
|
|
|
[HttpPost("{storeId}/webhooks/{webhookId}/remove")]
|
|
public async Task<IActionResult> DeleteWebhookPost(string webhookId)
|
|
{
|
|
var webhook = await _Repo.GetWebhook(CurrentStore.Id, webhookId);
|
|
if (webhook is null)
|
|
return NotFound();
|
|
|
|
await _Repo.DeleteWebhook(CurrentStore.Id, webhookId);
|
|
TempData[WellKnownTempData.SuccessMessage] = "Webhook successfully deleted";
|
|
return RedirectToAction(nameof(Webhooks), new { storeId = CurrentStore.Id });
|
|
}
|
|
|
|
[HttpPost("{storeId}/webhooks/new")]
|
|
public async Task<IActionResult> NewWebhook(string storeId, EditWebhookViewModel viewModel)
|
|
{
|
|
if (!ModelState.IsValid)
|
|
return View(nameof(ModifyWebhook), viewModel);
|
|
|
|
await _Repo.CreateWebhook(CurrentStore.Id, viewModel.CreateBlob());
|
|
TempData[WellKnownTempData.SuccessMessage] = "The webhook has been created";
|
|
return RedirectToAction(nameof(Webhooks), new { storeId });
|
|
}
|
|
|
|
[HttpGet("{storeId}/webhooks/{webhookId}")]
|
|
public async Task<IActionResult> ModifyWebhook(string webhookId)
|
|
{
|
|
var webhook = await _Repo.GetWebhook(CurrentStore.Id, webhookId);
|
|
if (webhook is null)
|
|
return NotFound();
|
|
|
|
var blob = webhook.GetBlob();
|
|
var deliveries = await _Repo.GetWebhookDeliveries(CurrentStore.Id, webhookId, 20);
|
|
return View(nameof(ModifyWebhook), new EditWebhookViewModel(blob)
|
|
{
|
|
Deliveries = deliveries
|
|
.Select(s => new DeliveryViewModel(s)).ToList()
|
|
});
|
|
}
|
|
|
|
[HttpPost("{storeId}/webhooks/{webhookId}")]
|
|
public async Task<IActionResult> ModifyWebhook(string webhookId, EditWebhookViewModel viewModel)
|
|
{
|
|
var webhook = await _Repo.GetWebhook(CurrentStore.Id, webhookId);
|
|
if (webhook is null)
|
|
return NotFound();
|
|
|
|
await _Repo.UpdateWebhook(CurrentStore.Id, webhookId, viewModel.CreateBlob());
|
|
TempData[WellKnownTempData.SuccessMessage] = "The webhook has been updated";
|
|
return RedirectToAction(nameof(Webhooks), new { storeId = CurrentStore.Id });
|
|
}
|
|
|
|
[HttpPost("{storeId}/webhooks/{webhookId}/deliveries/{deliveryId}/redeliver")]
|
|
public async Task<IActionResult> RedeliverWebhook(string webhookId, string deliveryId)
|
|
{
|
|
var delivery = await _Repo.GetWebhookDelivery(CurrentStore.Id, webhookId, deliveryId);
|
|
if (delivery is null)
|
|
return NotFound();
|
|
|
|
var newDeliveryId = await WebhookNotificationManager.Redeliver(deliveryId);
|
|
if (newDeliveryId is null)
|
|
return NotFound();
|
|
|
|
TempData[WellKnownTempData.SuccessMessage] = "Successfully planned a redelivery";
|
|
return RedirectToAction(nameof(ModifyWebhook),
|
|
new
|
|
{
|
|
storeId = CurrentStore.Id,
|
|
webhookId
|
|
});
|
|
}
|
|
|
|
[HttpGet("{storeId}/webhooks/{webhookId}/deliveries/{deliveryId}/request")]
|
|
public async Task<IActionResult> WebhookDelivery(string webhookId, string deliveryId)
|
|
{
|
|
var delivery = await _Repo.GetWebhookDelivery(CurrentStore.Id, webhookId, deliveryId);
|
|
if (delivery is null)
|
|
return NotFound();
|
|
|
|
return File(delivery.GetBlob().Request, "application/json");
|
|
}
|
|
|
|
[HttpPost("{storeId}/integrations/shopify")]
|
|
public async Task<IActionResult> Integrations([FromServices] IHttpClientFactory clientFactory,
|
|
IntegrationsViewModel vm, string command = "", string exampleUrl = "")
|
|
{
|
|
if (!string.IsNullOrEmpty(exampleUrl))
|
|
{
|
|
try
|
|
{
|
|
//https://{apikey}:{password}@{hostname}/admin/api/{version}/{resource}.json
|
|
var parsedUrl = new Uri(exampleUrl);
|
|
var userInfo = parsedUrl.UserInfo.Split(":");
|
|
vm.Shopify = new ShopifySettings()
|
|
{
|
|
ApiKey = userInfo[0],
|
|
Password = userInfo[1],
|
|
ShopName = parsedUrl.Host.Replace(".myshopify.com", "",
|
|
StringComparison.InvariantCultureIgnoreCase)
|
|
};
|
|
command = "ShopifySaveCredentials";
|
|
}
|
|
catch (Exception)
|
|
{
|
|
TempData[WellKnownTempData.ErrorMessage] = "The provided Example Url was invalid.";
|
|
return View("Integrations", vm);
|
|
}
|
|
}
|
|
|
|
switch (command)
|
|
{
|
|
case "ShopifySaveCredentials":
|
|
{
|
|
var shopify = vm.Shopify;
|
|
var validCreds = shopify != null && shopify?.CredentialsPopulated() == true;
|
|
if (!validCreds)
|
|
{
|
|
TempData[WellKnownTempData.ErrorMessage] = "Please provide valid Shopify credentials";
|
|
return View("Integrations", vm);
|
|
}
|
|
|
|
var apiClient = new ShopifyApiClient(clientFactory, shopify.CreateShopifyApiCredentials());
|
|
try
|
|
{
|
|
await apiClient.OrdersCount();
|
|
}
|
|
catch (ShopifyApiException)
|
|
{
|
|
TempData[WellKnownTempData.ErrorMessage] =
|
|
"Shopify rejected provided credentials, please correct values and try again";
|
|
return View("Integrations", vm);
|
|
}
|
|
|
|
var scopesGranted = await apiClient.CheckScopes();
|
|
if (!scopesGranted.Contains("read_orders") || !scopesGranted.Contains("write_orders"))
|
|
{
|
|
TempData[WellKnownTempData.ErrorMessage] =
|
|
"Please grant the private app permissions for read_orders, write_orders";
|
|
return View("Integrations", vm);
|
|
}
|
|
|
|
// everything ready, proceed with saving Shopify integration credentials
|
|
shopify.IntegratedAt = DateTimeOffset.Now;
|
|
|
|
var blob = CurrentStore.GetStoreBlob();
|
|
blob.Shopify = shopify;
|
|
if (CurrentStore.SetStoreBlob(blob))
|
|
{
|
|
await _Repo.UpdateStore(CurrentStore);
|
|
}
|
|
|
|
TempData[WellKnownTempData.SuccessMessage] = "Shopify integration successfully updated";
|
|
break;
|
|
}
|
|
case "ShopifyClearCredentials":
|
|
{
|
|
var blob = CurrentStore.GetStoreBlob();
|
|
blob.Shopify = null;
|
|
if (CurrentStore.SetStoreBlob(blob))
|
|
{
|
|
await _Repo.UpdateStore(CurrentStore);
|
|
}
|
|
|
|
TempData[WellKnownTempData.SuccessMessage] = "Shopify integration credentials cleared";
|
|
break;
|
|
}
|
|
}
|
|
|
|
return RedirectToAction(nameof(Integrations), new {storeId = CurrentStore.Id});
|
|
}
|
|
}
|
|
}
|