btcpayserver/BTCPayServer/Views/UIStores/ModifyWebhook.cshtml

158 lines
7.7 KiB
Text
Raw Normal View History

2020-11-06 20:42:26 +09:00
@model EditWebhookViewModel
@using BTCPayServer.HostedServices.Webhooks
@inject WebhookSender WebhookSender
2020-11-06 20:42:26 +09:00
@{
var storeId = Context.GetStoreData().Id;
ViewData.SetActivePage(StoreNavPages.Webhooks, StringLocalizer["Webhook"], storeId);
2020-11-06 20:42:26 +09:00
}
@section PageHeadContent {
<style>
#event-selector { display: none; }
#Everything[data-value='false'] + #event-selector { display: block; }
</style>
}
<form method="post">
<div class="sticky-header">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a asp-action="Webhooks" asp-route-storeId="@storeId" text-translate="true">Webhooks</a>
</li>
<li class="breadcrumb-item active" aria-current="page">@ViewData["Title"]</li>
</ol>
<h2 text-translate="true">@ViewData["Title"]</h2>
</nav>
@if (Model.IsNew)
{
<button id="page-primary" name="add" type="submit" class="btn btn-primary" value="New">Add Webhook</button>
}
else
{
<button id="page-primary" name="update" type="submit" class="btn btn-primary" value="Save" >Update Webhook</button>
}
</div>
<partial name="_StatusMessage" />
<div class="row">
<div class="col-xxl-constrain col-xl-8">
2020-11-06 20:42:26 +09:00
<div class="form-group">
<label asp-for="PayloadUrl" class="form-label" text-translate="true">Payload URL</label>
2020-11-06 20:42:26 +09:00
<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" class="form-label"></label>
2020-11-06 20:42:26 +09:00
<div class="input-group">
<input asp-for="Secret" type="password" class="form-control" value="@Model.Secret">
<button type="button" class="btn btn-secondary px-3 only-for-js" title="@StringLocalizer["Toggle password visibility"]" data-toggle-password="#Secret">
<vc:icon symbol="actions-show" />
</button>
2020-11-06 20:42:26 +09:00
</div>
<div class="form-text" html-translate="true">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.</div>
2020-11-06 20:42:26 +09:00
</div>
<div class="form-group">
<label class="form-group d-flex align-items-center">
2022-04-13 21:09:37 -07:00
<input asp-for="AutomaticRedelivery" type="checkbox" class="btcpay-toggle me-3" />
<div>
<span text-translate="true">Automatic redelivery</span>
<div class="form-text" text-translate="true">We will try to redeliver any failed delivery after 10 seconds, 1 minute and up to 6 times after 10 minutes</div>
</div>
2022-04-13 21:09:37 -07:00
</label>
2020-11-06 20:42:26 +09:00
</div>
<div class="form-group">
2022-04-13 21:09:37 -07:00
<label class="d-flex align-items-center mb-2">
<input asp-for="Active" type="checkbox" class="btcpay-toggle me-3" />
<span text-translate="true">Enabled</span>
2022-04-13 21:09:37 -07:00
</label>
2020-11-06 20:42:26 +09:00
</div>
2022-04-13 21:09:37 -07:00
<h3 class="mb-3 mt-5">Events</h3>
<label asp-for="Everything" class="form-label" text-translate="true">Which events would you like to trigger this webhook?</label>
<select asp-for="Everything" class="form-select w-auto mb-3">
<option value="true" text-translate="true">Send me everything</option>
<option value="false" text-translate="true">Send specific events</option>
Bootstrap v5 migration (#2490) * 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
2021-05-19 04:39:27 +02:00
</select>
2020-11-06 20:42:26 +09:00
<div id="event-selector" class="collapse">
<div class="pb-3">
@foreach (var evt in WebhookSender.GetSupportedWebhookTypes())
2020-11-06 20:42:26 +09:00
{
<div class="form-check my-1">
<input name="Events" id="@evt.Key" value="@evt.Key" @(Model.Events.Contains(evt.Key) ? "checked" : "") type="checkbox" class="form-check-input" />
<label for="@evt.Key" class="form-check-label">@evt.Value</label>
</div>
2020-11-06 20:42:26 +09:00
}
</div>
2020-11-06 20:42:26 +09:00
</div>
</div>
</div>
</form>
<div class="row">
<div class="col-xxl-constrain col-xl-8">
2020-11-06 20:42:26 +09:00
@if (!Model.IsNew && Model.Deliveries.Count > 0)
{
<h4 class="mb-3" text-translate="true">Recent deliveries</h4>
2020-11-06 20:42:26 +09:00
<ul class="list-group">
@foreach (var delivery in Model.Deliveries)
{
<li class="list-group-item ">
<form asp-action="RedeliverWebhook"
asp-route-storeId="@Context.GetRouteValue("storeId")"
asp-route-webhookId="@Context.GetRouteValue("webhookId")"
2020-11-06 20:42:26 +09:00
asp-route-deliveryId="@delivery.Id"
method="post">
<div class="d-flex align-items-center">
Bootstrap v5 migration (#2490) * 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
2021-05-19 04:39:27 +02:00
<span class="d-flex align-items-center flex-fill me-3">
2020-11-06 20:42:26 +09:00
@if (delivery.Success)
{
<vc:icon symbol="checkmark" css-class="text-success" />
2020-11-06 20:42:26 +09:00
}
else
{
<span title="@delivery.ErrorMessage">
<vc:icon symbol="cross" css-class="text-danger" />
</span>
2020-11-06 20:42:26 +09:00
}
2023-05-28 23:44:10 +09:00
@if (!delivery.Pruned) {
<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>
2023-05-28 23:44:10 +09:00
}
2020-11-06 20:42:26 +09:00
</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" text-translate="true">
2020-11-06 20:42:26 +09:00
Redeliver
</button>
</span>
</div>
</form>
</li>
}
</ul>
}
</div>
</div>
Bootstrap v5 migration (#2490) * 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
2021-05-19 04:39:27 +02:00
@section PageFootContent {
<partial name="_ValidationScriptsPartial" />
<script>
delegate('change', '#Everything', function (e) {
e.target.dataset.value = e.target.value;
});
document.querySelector('#Everything').dataset.value = @Html.Raw(Json.Serialize(Model.Everything));
</script>
2020-11-06 20:42:26 +09:00
}