mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
220 lines
12 KiB
Text
220 lines
12 KiB
Text
@using BTCPayServer.Services
|
|
@using BTCPayServer.Services.Mails;
|
|
@model BTCPayServer.Services.PoliciesSettings
|
|
@inject SettingsRepository _SettingsRepository
|
|
@{
|
|
ViewData.SetActivePage(ServerNavPages.Policies);
|
|
}
|
|
|
|
<h3 class="mb-4">@ViewData["Title"]</h3>
|
|
|
|
@if (!ViewContext.ModelState.IsValid)
|
|
{
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
|
}
|
|
|
|
<form method="post">
|
|
<div class="form-group mb-5">
|
|
<h4 class="mb-3">Existing User Settings</h4>
|
|
<div class="form-check my-3">
|
|
<input asp-for="AllowLightningInternalNodeForAll" type="checkbox" class="form-check-input"/>
|
|
<label asp-for="AllowLightningInternalNodeForAll" class="form-check-label"></label>
|
|
<a href="https://docs.btcpayserver.org/FAQ/LightningNetwork/#how-many-users-can-use-lightning-network-in-btcpay" target="_blank" rel="noreferrer noopener">
|
|
<span class="fa fa-question-circle-o text-secondary" title="More information..."></span>
|
|
</a>
|
|
<span asp-validation-for="AllowLightningInternalNodeForAll" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-check my-3">
|
|
<input asp-for="AllowHotWalletForAll" type="checkbox" class="form-check-input"/>
|
|
<label asp-for="AllowHotWalletForAll" class="form-check-label"></label>
|
|
<a href="https://docs.btcpayserver.org/CreateWallet/#requirements-to-create-wallets" target="_blank" rel="noreferrer noopener">
|
|
<span class="fa fa-question-circle-o text-secondary" title="More information..."></span>
|
|
</a>
|
|
<span asp-validation-for="AllowHotWalletForAll" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-check my-3">
|
|
<input asp-for="AllowHotWalletRPCImportForAll" type="checkbox" class="form-check-input"/>
|
|
<label asp-for="AllowHotWalletRPCImportForAll" class="form-check-label"></label>
|
|
<span asp-validation-for="AllowHotWalletRPCImportForAll" class="text-danger"></span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group mb-5">
|
|
<h4 class="mb-3">New User Settings</h4>
|
|
<div class="form-check my-3">
|
|
@{
|
|
var emailSettings = (await _SettingsRepository.GetSettingAsync<EmailSettings>()) ?? new EmailSettings();
|
|
/* The "|| Model.RequiresConfirmedEmail" check is for the case when a user had checked
|
|
the checkbox without first configuring the e-mail settings so that they can uncheck it. */
|
|
var isEmailConfigured = emailSettings.IsComplete() || Model.RequiresConfirmedEmail;
|
|
}
|
|
<input asp-for="RequiresConfirmedEmail" type="checkbox" class="form-check-input" disabled="@(isEmailConfigured ? null : "disabled")"/>
|
|
<label asp-for="RequiresConfirmedEmail" class="form-check-label"></label>
|
|
<a href="https://docs.btcpayserver.org/FAQ/ServerSettings/#how-to-allow-registration-on-my-btcpay-server" target="_blank" rel="noreferrer noopener">
|
|
<span class="fa fa-question-circle-o text-secondary" title="More information..."></span>
|
|
</a>
|
|
<span asp-validation-for="RequiresConfirmedEmail" class="text-danger"></span>
|
|
@if (!isEmailConfigured)
|
|
{
|
|
<div class="mb-2">
|
|
<span class="text-secondary">Your email server has not been configured. <a asp-controller="UIServer" asp-action="Emails">Please configure it first.</a></span>
|
|
</div>
|
|
}
|
|
</div>
|
|
<div class="form-check my-3">
|
|
<input asp-for="LockSubscription" type="checkbox" class="form-check-input"/>
|
|
<label asp-for="LockSubscription" class="form-check-label"></label>
|
|
<span asp-validation-for="LockSubscription" class="text-danger"></span>
|
|
</div>
|
|
|
|
<div class="form-check my-3">
|
|
<input asp-for="DisableNonAdminCreateUserApi" type="checkbox" class="form-check-input"/>
|
|
<label asp-for="DisableNonAdminCreateUserApi" class="form-check-label"></label>
|
|
<span asp-validation-for="DisableNonAdminCreateUserApi" class="text-danger"></span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group mb-5">
|
|
<h4 class="mb-3">Notification Settings</h4>
|
|
<div class="form-check my-3">
|
|
<input asp-for="DisableInstantNotifications" type="checkbox" class="form-check-input"/>
|
|
<label asp-for="DisableInstantNotifications" class="form-check-label"></label>
|
|
<a href="https://docs.btcpayserver.org/Notifications/#notifications" target="_blank" rel="noreferrer noopener">
|
|
<span class="fa fa-question-circle-o text-secondary" title="More information..."></span>
|
|
</a>
|
|
<span asp-validation-for="DisableInstantNotifications" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-check my-3">
|
|
<input asp-for="DisableStoresToUseServerEmailSettings" type="checkbox" class="form-check-input"/>
|
|
<label asp-for="DisableStoresToUseServerEmailSettings" class="form-check-label"></label>
|
|
<a href="https://docs.btcpayserver.org/Notifications/#server-emails" target="_blank" rel="noreferrer noopener">
|
|
<span class="fa fa-question-circle-o text-secondary" title="More information..."></span>
|
|
</a>
|
|
<span asp-validation-for="DisableStoresToUseServerEmailSettings" class="text-danger"></span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group mb-5">
|
|
<h4 class="mb-3">Maintenance Settings</h4>
|
|
@if (ViewBag.UpdateUrlPresent)
|
|
{
|
|
<div class="form-check my-3">
|
|
<input asp-for="CheckForNewVersions" type="checkbox" class="form-check-input"/>
|
|
<label asp-for="CheckForNewVersions" class="form-check-label"></label>
|
|
<span asp-validation-for="CheckForNewVersions" class="text-danger"></span>
|
|
</div>
|
|
}
|
|
<div class="form-check my-3">
|
|
<input asp-for="DiscourageSearchEngines" type="checkbox" class="form-check-input"/>
|
|
<label asp-for="DiscourageSearchEngines" class="form-check-label"></label>
|
|
<a href="https://docs.btcpayserver.org/FAQ/ServerSettings/#how-to-hide-my-btcpay-server-from-search-engines" target="_blank" rel="noreferrer noopener">
|
|
<span class="fa fa-question-circle-o text-secondary" title="More information..."></span>
|
|
</a>
|
|
<span asp-validation-for="DiscourageSearchEngines" class="text-danger"></span>
|
|
</div>
|
|
</div>
|
|
|
|
<h4 class="mb-3">Customization Settings</h4>
|
|
|
|
<div class="form-group">
|
|
<label asp-for="RootAppId" class="form-label"></label>
|
|
<select asp-for="RootAppId" asp-items="@(new SelectList(ViewBag.AppsList, nameof(SelectListItem.Value), nameof(SelectListItem.Text), Model.RootAppId))" class="form-select w-auto"></select>
|
|
@if (!Model.DomainToAppMapping.Any())
|
|
{
|
|
<button id="AddDomainButton" type="submit" name="command" value="add-domain" class="btn btn-link px-0">Map specific domains to specific apps</button>
|
|
}
|
|
</div>
|
|
|
|
@if (Model.DomainToAppMapping.Any())
|
|
{
|
|
<h5 class="mt-5 mb-0">
|
|
Domain to app mapping
|
|
<button id="AddDomainButton" type="submit" name="command" value="add-domain" class="btn btn-secondary btn-sm ms-2">Add domain mapping</button>
|
|
</h5>
|
|
<div class="list-group list-group-flush mb-2">
|
|
@for (var index = 0; index < Model.DomainToAppMapping.Count; index++)
|
|
{
|
|
<div class="list-group-item px-0 pt-3">
|
|
<div class="row">
|
|
<div class="col-12 col-lg-8">
|
|
<div class="form-group">
|
|
<label asp-for="DomainToAppMapping[index].Domain" class="form-label"></label>
|
|
<input asp-for="DomainToAppMapping[index].Domain" class="form-control"/>
|
|
<span asp-validation-for="DomainToAppMapping[index].Domain" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="DomainToAppMapping[index].AppId" class="form-label"></label>
|
|
<select asp-for="DomainToAppMapping[index].AppId"
|
|
asp-items="@(new SelectList(ViewBag.AppsList, nameof(SelectListItem.Value), nameof(SelectListItem.Text), Model.DomainToAppMapping[index].AppId))"
|
|
class="form-select w-auto">
|
|
</select>
|
|
<span asp-validation-for="DomainToAppMapping[index].AppId" class="text-danger"></span>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-lg-2 pull-right">
|
|
<button type="submit" title="Remove domain mapping" name="command" value="@($"remove-domain:{index}")"
|
|
class="d-block d-lg-none d-xl-none btn btn-danger mb-2">
|
|
Remove Destination
|
|
</button>
|
|
<button type="submit" title="Remove domain mapping" name="command" value="@($"remove-domain:{index}")"
|
|
class="d-none d-lg-block btn btn-outline-danger text-decoration-none h-100 align-middle border-0 fs-4">
|
|
<span class="fa fa-times"></span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
}
|
|
</div>
|
|
}
|
|
|
|
<button class="btn btn-link px-0" type="button" id="ExplorerLinksButton" data-bs-toggle="collapse" data-bs-target="#explorer-links" aria-expanded="false" aria-controls="explorer-links">
|
|
Override the block explorers used
|
|
</button>
|
|
|
|
<div class="mb-3">
|
|
<div class="collapse show collapse-on-js" id="explorer-links">
|
|
@inject BTCPayNetworkProvider BTCPayNetworkProvider
|
|
@{
|
|
var networks = BTCPayNetworkProvider.GetAll().ToArray();
|
|
}
|
|
|
|
@for (var i = 0; i < networks.Count(); i++)
|
|
{
|
|
var network = networks.ElementAt(i);
|
|
var existingOverride = Model.BlockExplorerLinks?.SingleOrDefault(tuple => tuple.CryptoCode.Equals(network.CryptoCode, StringComparison.InvariantCultureIgnoreCase));
|
|
var linkValue = existingOverride?.Link ?? network.BlockExplorerLinkDefault;
|
|
if (Model.BlockExplorerLinks.Count < i + 1)
|
|
{
|
|
Model.BlockExplorerLinks.Add(new PoliciesSettings.BlockExplorerOverrideItem() {CryptoCode = network.CryptoCode, Link = network.BlockExplorerLinkDefault});
|
|
}
|
|
<div class="form-group m-0 py-4">
|
|
<label class="form-label">@network.DisplayName (@network.CryptoCode)</label>
|
|
<input type="hidden" asp-for="BlockExplorerLinks[i].CryptoCode" value="@network.CryptoCode"/>
|
|
<div class="input-group">
|
|
<input type="text" class="form-control" asp-for="BlockExplorerLinks[i].Link" value="@linkValue" rel="noreferrer noopener" data-default-link="@network.BlockExplorerLinkDefault"/>
|
|
<button type="button" class="btn btn-secondary only-for-js" title="Revert to default">
|
|
<span class="fa fa-refresh"></span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
|
|
<button id="SaveButton" type="submit" class="btn btn-primary" name="command" value="Save">Save</button>
|
|
</form>
|
|
|
|
@section PageFootContent {
|
|
<script>
|
|
for (let element of document.getElementsByClassName("revert-default")) {
|
|
element.addEventListener("click", function (){
|
|
element.parentElement.previousElementSibling.value = element.parentElement.previousElementSibling.getAttribute("data-default-link")
|
|
});
|
|
}
|
|
for (let element of document.getElementsByClassName("collapse-on-js")){
|
|
if (element.classList.contains("show")){
|
|
element.classList.remove("show");
|
|
}
|
|
}
|
|
</script>
|
|
}
|