mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
PM-7999 | Reseller billing e-mail can be blank causing downstream errors for org creation (#4733)
This commit is contained in:
parent
d71916aee5
commit
64a7cba013
@ -162,27 +162,13 @@ public class ProvidersController : Controller
|
|||||||
[SelfHosted(NotSelfHostedOnly = true)]
|
[SelfHosted(NotSelfHostedOnly = true)]
|
||||||
public async Task<IActionResult> Edit(Guid id)
|
public async Task<IActionResult> Edit(Guid id)
|
||||||
{
|
{
|
||||||
var provider = await _providerRepository.GetByIdAsync(id);
|
var provider = await GetEditModel(id);
|
||||||
if (provider == null)
|
if (provider == null)
|
||||||
{
|
{
|
||||||
return RedirectToAction("Index");
|
return RedirectToAction("Index");
|
||||||
}
|
}
|
||||||
|
|
||||||
var users = await _providerUserRepository.GetManyDetailsByProviderAsync(id);
|
return View(provider);
|
||||||
var providerOrganizations = await _providerOrganizationRepository.GetManyDetailsByProviderAsync(id);
|
|
||||||
|
|
||||||
var isConsolidatedBillingEnabled = _featureService.IsEnabled(FeatureFlagKeys.EnableConsolidatedBilling);
|
|
||||||
|
|
||||||
if (!isConsolidatedBillingEnabled || !provider.IsBillable())
|
|
||||||
{
|
|
||||||
return View(new ProviderEditModel(provider, users, providerOrganizations, new List<ProviderPlan>()));
|
|
||||||
}
|
|
||||||
|
|
||||||
var providerPlans = await _providerPlanRepository.GetByProviderId(id);
|
|
||||||
|
|
||||||
return View(new ProviderEditModel(
|
|
||||||
provider, users, providerOrganizations,
|
|
||||||
providerPlans.ToList(), GetGatewayCustomerUrl(provider), GetGatewaySubscriptionUrl(provider)));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
@ -198,6 +184,20 @@ public class ProvidersController : Controller
|
|||||||
return RedirectToAction("Index");
|
return RedirectToAction("Index");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (provider.Type != model.Type)
|
||||||
|
{
|
||||||
|
var oldModel = await GetEditModel(id);
|
||||||
|
ModelState.AddModelError(nameof(model.Type), "Provider type cannot be changed.");
|
||||||
|
return View(oldModel);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!ModelState.IsValid)
|
||||||
|
{
|
||||||
|
var oldModel = await GetEditModel(id);
|
||||||
|
ModelState[nameof(ProviderEditModel.BillingEmail)]!.RawValue = oldModel.BillingEmail;
|
||||||
|
return View(oldModel);
|
||||||
|
}
|
||||||
|
|
||||||
model.ToProvider(provider);
|
model.ToProvider(provider);
|
||||||
|
|
||||||
await _providerRepository.ReplaceAsync(provider);
|
await _providerRepository.ReplaceAsync(provider);
|
||||||
@ -236,6 +236,32 @@ public class ProvidersController : Controller
|
|||||||
return RedirectToAction("Edit", new { id });
|
return RedirectToAction("Edit", new { id });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private async Task<ProviderEditModel> GetEditModel(Guid id)
|
||||||
|
{
|
||||||
|
var provider = await _providerRepository.GetByIdAsync(id);
|
||||||
|
if (provider == null)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
var users = await _providerUserRepository.GetManyDetailsByProviderAsync(id);
|
||||||
|
var providerOrganizations = await _providerOrganizationRepository.GetManyDetailsByProviderAsync(id);
|
||||||
|
|
||||||
|
var isConsolidatedBillingEnabled = _featureService.IsEnabled(FeatureFlagKeys.EnableConsolidatedBilling);
|
||||||
|
|
||||||
|
|
||||||
|
if (!isConsolidatedBillingEnabled || !provider.IsBillable())
|
||||||
|
{
|
||||||
|
return new ProviderEditModel(provider, users, providerOrganizations, new List<ProviderPlan>());
|
||||||
|
}
|
||||||
|
|
||||||
|
var providerPlans = await _providerPlanRepository.GetByProviderId(id);
|
||||||
|
|
||||||
|
return new ProviderEditModel(
|
||||||
|
provider, users, providerOrganizations,
|
||||||
|
providerPlans.ToList(), GetGatewayCustomerUrl(provider), GetGatewaySubscriptionUrl(provider));
|
||||||
|
}
|
||||||
|
|
||||||
[RequirePermission(Permission.Provider_ResendEmailInvite)]
|
[RequirePermission(Permission.Provider_ResendEmailInvite)]
|
||||||
public async Task<IActionResult> ResendInvite(Guid ownerId, Guid providerId)
|
public async Task<IActionResult> ResendInvite(Guid ownerId, Guid providerId)
|
||||||
{
|
{
|
||||||
|
@ -1,13 +1,15 @@
|
|||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using Bit.Core.AdminConsole.Entities.Provider;
|
using Bit.Core.AdminConsole.Entities.Provider;
|
||||||
|
using Bit.Core.AdminConsole.Enums.Provider;
|
||||||
using Bit.Core.AdminConsole.Models.Data.Provider;
|
using Bit.Core.AdminConsole.Models.Data.Provider;
|
||||||
using Bit.Core.Billing.Entities;
|
using Bit.Core.Billing.Entities;
|
||||||
using Bit.Core.Billing.Enums;
|
using Bit.Core.Billing.Enums;
|
||||||
using Bit.Core.Enums;
|
using Bit.Core.Enums;
|
||||||
|
using Bit.SharedWeb.Utilities;
|
||||||
|
|
||||||
namespace Bit.Admin.AdminConsole.Models;
|
namespace Bit.Admin.AdminConsole.Models;
|
||||||
|
|
||||||
public class ProviderEditModel : ProviderViewModel
|
public class ProviderEditModel : ProviderViewModel, IValidatableObject
|
||||||
{
|
{
|
||||||
public ProviderEditModel() { }
|
public ProviderEditModel() { }
|
||||||
|
|
||||||
@ -30,6 +32,7 @@ public class ProviderEditModel : ProviderViewModel
|
|||||||
GatewaySubscriptionId = provider.GatewaySubscriptionId;
|
GatewaySubscriptionId = provider.GatewaySubscriptionId;
|
||||||
GatewayCustomerUrl = gatewayCustomerUrl;
|
GatewayCustomerUrl = gatewayCustomerUrl;
|
||||||
GatewaySubscriptionUrl = gatewaySubscriptionUrl;
|
GatewaySubscriptionUrl = gatewaySubscriptionUrl;
|
||||||
|
Type = provider.Type;
|
||||||
}
|
}
|
||||||
|
|
||||||
[Display(Name = "Billing Email")]
|
[Display(Name = "Billing Email")]
|
||||||
@ -52,6 +55,8 @@ public class ProviderEditModel : ProviderViewModel
|
|||||||
public string GatewaySubscriptionId { get; set; }
|
public string GatewaySubscriptionId { get; set; }
|
||||||
public string GatewayCustomerUrl { get; }
|
public string GatewayCustomerUrl { get; }
|
||||||
public string GatewaySubscriptionUrl { get; }
|
public string GatewaySubscriptionUrl { get; }
|
||||||
|
[Display(Name = "Provider Type")]
|
||||||
|
public ProviderType Type { get; set; }
|
||||||
|
|
||||||
public virtual Provider ToProvider(Provider existingProvider)
|
public virtual Provider ToProvider(Provider existingProvider)
|
||||||
{
|
{
|
||||||
@ -65,4 +70,18 @@ public class ProviderEditModel : ProviderViewModel
|
|||||||
|
|
||||||
private static int GetSeatMinimum(IEnumerable<ProviderPlan> providerPlans, PlanType planType)
|
private static int GetSeatMinimum(IEnumerable<ProviderPlan> providerPlans, PlanType planType)
|
||||||
=> providerPlans.FirstOrDefault(providerPlan => providerPlan.PlanType == planType)?.SeatMinimum ?? 0;
|
=> providerPlans.FirstOrDefault(providerPlan => providerPlan.PlanType == planType)?.SeatMinimum ?? 0;
|
||||||
|
|
||||||
|
public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
|
||||||
|
{
|
||||||
|
switch (Type)
|
||||||
|
{
|
||||||
|
case ProviderType.Reseller:
|
||||||
|
if (string.IsNullOrWhiteSpace(BillingEmail))
|
||||||
|
{
|
||||||
|
var billingEmailDisplayName = nameof(BillingEmail).GetDisplayAttribute<CreateProviderModel>()?.GetName() ?? nameof(BillingEmail);
|
||||||
|
yield return new ValidationResult($"The {billingEmailDisplayName} field is required.");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,6 +16,8 @@
|
|||||||
@await Html.PartialAsync("_ViewInformation", Model)
|
@await Html.PartialAsync("_ViewInformation", Model)
|
||||||
@await Html.PartialAsync("Admins", Model)
|
@await Html.PartialAsync("Admins", Model)
|
||||||
<form method="post" id="edit-form">
|
<form method="post" id="edit-form">
|
||||||
|
<div asp-validation-summary="All" class="alert alert-danger"></div>
|
||||||
|
<input type="hidden" asp-for="Type" readonly>
|
||||||
<h2>General</h2>
|
<h2>General</h2>
|
||||||
<dl class="row">
|
<dl class="row">
|
||||||
<dt class="col-sm-4 col-lg-3">Name</dt>
|
<dt class="col-sm-4 col-lg-3">Name</dt>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user