mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-06 23:54:28 +01:00
* Swap bootstrap asset files * Update themes and color definitions * Move general bootstrap customizations * Theme updates Theme updates * Remove BuildBundlerMinifier This lead to an error, because BuildBundlerMinifier and BundlerMinifier.Core seem to conflict here. Details: https://stackoverflow.com/a/61119586 * Rewplace btn-block class with w-100 * Update badge classes * Remove old font family head variable * Update margin classes * Cleanups * Update float classes * Update text classes * Update padding classes * Update border classes * UPdate dropdown classes * Update select classes * Update neutral custom props * Update bootstrap and customizations * Update ChromeDriver; disable smooth scroll https://github.com/SeleniumHQ/selenium/issues/8295 * Improve alert messages * Improve bootstrap customizations * Disable reduced motion See also 7358282f * Update Bootstrap data attributes * Update file inputs * Update input groups * Replace deprecated jumbotron class * Update variables; re-add negative margin util classes * Update cards * Update form labels * Debug alerts * Fix aria-labelledby associations * Dropdown-related test fixes * Fix CanUseWebhooks test * Test fixes * Nav updates * Fix nav usage in wallet send and payouts * Update alert and modal close buttons * Re-add backdrop properties * Upgrade Bootstrap to v5 final * Update screen reader classes * Update font-weight classes * Update monospace font classes * Update accordians * Update close icon usage * Cleanup * Update scripts and style integrations * Update input group texts * Update LN node setup page * Update more form control classes * Update inline forms * Add js specific test * Upgrade Vue.js * Remove unused JS * Upgrade Bootstrap to v5.0.1 * Try container related test updates * Separate jQuery bundle * Remove jQuery from LND seed backup page * Remove unused code * Refactor email autofill js * Refactor camera scanner JS * Re-add tests * Re-add BuildBundlerMinifier * Do not minify bundles containing Bootstrap Details https://github.com/madskristensen/BundlerMinifier/issues/558 * Update bundles * Cleanup JS test * Cleanup tests involving dropdowns * Cleanup tests involving collapses * Cleanup locale additions in ConfigureCore * Cleanup bundles * Remove duplicate status message * Cleanup formatting * Fix missing validation scripts * Remove unused unminified Bootstrap js files * Fix classic theme * Fix Casa theme * Fix PoS validation
134 lines
7.0 KiB
Plaintext
134 lines
7.0 KiB
Plaintext
@model EditWebhookViewModel
|
|
@using BTCPayServer.Client.Models;
|
|
@{
|
|
Layout = "../Shared/_NavLayout.cshtml";
|
|
ViewData.SetActivePageAndTitle(StoreNavPages.Webhooks, "Webhook Settings", Context.GetStoreData().StoreName);
|
|
}
|
|
<style>
|
|
#event-selector { display: none; }
|
|
#Everything[data-value='false'] + #event-selector { display: block; }
|
|
</style>
|
|
<div class="row">
|
|
<div class="col-lg-8">
|
|
<form method="post">
|
|
<h4 class="mb-3">@ViewData["PageTitle"]</h4>
|
|
<div class="form-group">
|
|
<label asp-for="PayloadUrl">Payload URL</label>
|
|
<input asp-for="PayloadUrl" class="form-control" />
|
|
<span asp-validation-for="PayloadUrl" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="Secret"></label>
|
|
<div class="input-group">
|
|
<input asp-for="Secret" type="password" class="form-control" value="@Model.Secret" data-bs-toggle="password">
|
|
<span class="input-group-text">
|
|
<i class="fa fa-eye"></i>
|
|
</span>
|
|
</div>
|
|
<p class="text-muted small form-text">The endpoint receiving the payload must validate the payload by checking that the HTTP header <code>BTCPAY-SIG</code> of the callback matches the HMAC256 of the secret on the payload's body bytes.</p>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="form-check">
|
|
<input asp-for="AutomaticRedelivery" type="checkbox" class="form-check-input" />
|
|
<label asp-for="AutomaticRedelivery" class="form-check-label">Automatic redelivery</label>
|
|
<p class="text-muted small form-text">We will try to redeliver any failed delivery after 10 seconds, 1 minutes and up to 6 times after 10 minutes</p>
|
|
</div>
|
|
</div>
|
|
<div class="form-group mb-5">
|
|
<div class="form-check">
|
|
<input asp-for="Active" type="checkbox" class="form-check-input" />
|
|
<label asp-for="Active" class="form-check-label">Is enabled</label>
|
|
</div>
|
|
</div>
|
|
<h4 class="mb-3">Events</h4>
|
|
<label asp-for="Everything" class="form-label">Which events would you like to trigger this webhook?</label>
|
|
<select asp-for="Everything" class="form-select mb-3" onchange="this.dataset.value=this.value">
|
|
<option value="true">Send me everything</option>
|
|
<option value="false">Send specific events</option>
|
|
</select>
|
|
<div id="event-selector" class="collapse">
|
|
<ul class="list-group">
|
|
@foreach (var evt in new[]
|
|
{
|
|
("A new invoice has been created", WebhookEventType.InvoiceCreated),
|
|
("A new payment has been received", WebhookEventType.InvoiceReceivedPayment),
|
|
("An invoice is processing", WebhookEventType.InvoiceProcessing),
|
|
("An invoice has expired", WebhookEventType.InvoiceExpired),
|
|
("An invoice has been settled", WebhookEventType.InvoiceSettled),
|
|
("An invoice became invalid", WebhookEventType.InvoiceInvalid)
|
|
})
|
|
{
|
|
<li class="list-group-item ">
|
|
<label for="@evt.Item2" class="d-flex align-items-center">
|
|
<span class="flex-fill me-3">@evt.Item1</span>
|
|
<input name="Events" id="@evt.Item2" value="@evt.Item2" @(Model.Events.Contains(evt.Item2) ? "checked" : "") type="checkbox" class="form-check-input" />
|
|
</label>
|
|
</li>
|
|
}
|
|
</ul>
|
|
</div>
|
|
@if (Model.IsNew)
|
|
{
|
|
<button name="add" type="submit" class="btn btn-primary mt-3 mb-5" value="New" id="New">Add webhook</button>
|
|
}
|
|
else
|
|
{
|
|
<button name="update" type="submit" class="btn btn-primary mt-3 mb-5" value="Save" id="Save">Update webhook</button>
|
|
}
|
|
</form>
|
|
@if (!Model.IsNew && Model.Deliveries.Count > 0)
|
|
{
|
|
<h4 class="mb-3">Recent deliveries</h4>
|
|
<ul class="list-group">
|
|
@foreach (var delivery in Model.Deliveries)
|
|
{
|
|
<li class="list-group-item ">
|
|
<form asp-action="RedeliverWebhook"
|
|
asp-route-storeId="@this.Context.GetRouteValue("storeId")"
|
|
asp-route-webhookId="@this.Context.GetRouteValue("webhookId")"
|
|
asp-route-deliveryId="@delivery.Id"
|
|
method="post">
|
|
<div class="d-flex align-items-center">
|
|
<span class="d-flex align-items-center flex-fill me-3">
|
|
@if (delivery.Success)
|
|
{
|
|
<span class="d-flex align-items-center fa fa-check text-success" title="Success"></span>
|
|
}
|
|
else
|
|
{
|
|
<span class="d-flex align-items-center fa fa-times text-danger" title="@delivery.ErrorMessage"></span>
|
|
}
|
|
<span class="ms-3">
|
|
<a asp-action="WebhookDelivery"
|
|
asp-route-storeId="@this.Context.GetRouteValue("storeId")"
|
|
asp-route-webhookId="@this.Context.GetRouteValue("webhookId")"
|
|
asp-route-deliveryId="@delivery.Id"
|
|
class="btn btn-link delivery-content" target="_blank">
|
|
@delivery.Id
|
|
</a>
|
|
</span>
|
|
</span>
|
|
<span class="d-flex align-items-center">
|
|
<strong class="d-flex align-items-center text-muted small">
|
|
@delivery.Time.ToBrowserDate()
|
|
</strong>
|
|
|
|
<button id="#redeliver-@delivery.Id"
|
|
type="submit"
|
|
class="btn btn-info py-1 ms-3 redeliver">
|
|
Redeliver
|
|
</button>
|
|
</span>
|
|
</div>
|
|
</form>
|
|
</li>
|
|
}
|
|
</ul>
|
|
}
|
|
</div>
|
|
</div>
|
|
|
|
@section PageFootContent {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|