mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
make payment method type required
This commit is contained in:
parent
91bbc3e8f9
commit
506fe28ee7
@ -463,7 +463,7 @@ namespace Bit.Api.Controllers
|
|||||||
throw new BadRequestException("Invalid license.");
|
throw new BadRequestException("Invalid license.");
|
||||||
}
|
}
|
||||||
|
|
||||||
await _userService.SignUpPremiumAsync(user, model.PaymentToken, model.PaymentMethodType,
|
await _userService.SignUpPremiumAsync(user, model.PaymentToken, model.PaymentMethodType.Value,
|
||||||
model.AdditionalStorageGb.GetValueOrDefault(0), license);
|
model.AdditionalStorageGb.GetValueOrDefault(0), license);
|
||||||
return new ProfileResponseModel(user, null, await _userService.TwoFactorIsEnabledAsync(user));
|
return new ProfileResponseModel(user, null, await _userService.TwoFactorIsEnabledAsync(user));
|
||||||
}
|
}
|
||||||
@ -518,7 +518,7 @@ namespace Bit.Api.Controllers
|
|||||||
throw new UnauthorizedAccessException();
|
throw new UnauthorizedAccessException();
|
||||||
}
|
}
|
||||||
|
|
||||||
await _userService.ReplacePaymentMethodAsync(user, model.PaymentToken, model.PaymentMethodType);
|
await _userService.ReplacePaymentMethodAsync(user, model.PaymentToken, model.PaymentMethodType.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpPost("storage")]
|
[HttpPost("storage")]
|
||||||
|
@ -210,7 +210,7 @@ namespace Bit.Api.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
await _organizationService.ReplacePaymentMethodAsync(orgIdGuid, model.PaymentToken,
|
await _organizationService.ReplacePaymentMethodAsync(orgIdGuid, model.PaymentToken,
|
||||||
model.PaymentMethodType);
|
model.PaymentMethodType.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpPost("{id}/upgrade")]
|
[HttpPost("{id}/upgrade")]
|
||||||
|
@ -7,7 +7,7 @@ namespace Bit.Core.Models.Api
|
|||||||
{
|
{
|
||||||
public class PremiumRequestModel : IValidatableObject
|
public class PremiumRequestModel : IValidatableObject
|
||||||
{
|
{
|
||||||
// TODO: Required in future
|
[Required]
|
||||||
public PaymentMethodType? PaymentMethodType { get; set; }
|
public PaymentMethodType? PaymentMethodType { get; set; }
|
||||||
public string PaymentToken { get; set; }
|
public string PaymentToken { get; set; }
|
||||||
[Range(0, 99)]
|
[Range(0, 99)]
|
||||||
|
@ -21,7 +21,6 @@ namespace Bit.Core.Models.Api
|
|||||||
public PlanType PlanType { get; set; }
|
public PlanType PlanType { get; set; }
|
||||||
[Required]
|
[Required]
|
||||||
public string Key { get; set; }
|
public string Key { get; set; }
|
||||||
// TODO: Required in future if not free plan
|
|
||||||
public PaymentMethodType? PaymentMethodType { get; set; }
|
public PaymentMethodType? PaymentMethodType { get; set; }
|
||||||
public string PaymentToken { get; set; }
|
public string PaymentToken { get; set; }
|
||||||
[Range(0, double.MaxValue)]
|
[Range(0, double.MaxValue)]
|
||||||
@ -58,6 +57,11 @@ namespace Bit.Core.Models.Api
|
|||||||
{
|
{
|
||||||
yield return new ValidationResult("Payment required.", new string[] { nameof(PaymentToken) });
|
yield return new ValidationResult("Payment required.", new string[] { nameof(PaymentToken) });
|
||||||
}
|
}
|
||||||
|
if(PlanType != PlanType.Free && !PaymentMethodType.HasValue)
|
||||||
|
{
|
||||||
|
yield return new ValidationResult("Payment method type required.",
|
||||||
|
new string[] { nameof(PaymentMethodType) });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ namespace Bit.Core.Models.Api
|
|||||||
{
|
{
|
||||||
public class PaymentRequestModel
|
public class PaymentRequestModel
|
||||||
{
|
{
|
||||||
// TODO: Required in future
|
[Required]
|
||||||
public PaymentMethodType? PaymentMethodType { get; set; }
|
public PaymentMethodType? PaymentMethodType { get; set; }
|
||||||
[Required]
|
[Required]
|
||||||
public string PaymentToken { get; set; }
|
public string PaymentToken { get; set; }
|
||||||
|
@ -10,7 +10,7 @@ namespace Bit.Core.Services
|
|||||||
{
|
{
|
||||||
public interface IOrganizationService
|
public interface IOrganizationService
|
||||||
{
|
{
|
||||||
Task ReplacePaymentMethodAsync(Guid organizationId, string paymentToken, PaymentMethodType? paymentMethodType);
|
Task ReplacePaymentMethodAsync(Guid organizationId, string paymentToken, PaymentMethodType paymentMethodType);
|
||||||
Task CancelSubscriptionAsync(Guid organizationId, bool? endOfPeriod = null);
|
Task CancelSubscriptionAsync(Guid organizationId, bool? endOfPeriod = null);
|
||||||
Task ReinstateSubscriptionAsync(Guid organizationId);
|
Task ReinstateSubscriptionAsync(Guid organizationId);
|
||||||
Task UpgradePlanAsync(Guid organizationId, PlanType plan, int additionalSeats);
|
Task UpgradePlanAsync(Guid organizationId, PlanType plan, int additionalSeats);
|
||||||
|
@ -43,11 +43,11 @@ namespace Bit.Core.Services
|
|||||||
Task<IdentityResult> DeleteAsync(User user);
|
Task<IdentityResult> DeleteAsync(User user);
|
||||||
Task<IdentityResult> DeleteAsync(User user, string token);
|
Task<IdentityResult> DeleteAsync(User user, string token);
|
||||||
Task SendDeleteConfirmationAsync(string email);
|
Task SendDeleteConfirmationAsync(string email);
|
||||||
Task SignUpPremiumAsync(User user, string paymentToken, PaymentMethodType? paymentMethodType,
|
Task SignUpPremiumAsync(User user, string paymentToken, PaymentMethodType paymentMethodType,
|
||||||
short additionalStorageGb, UserLicense license);
|
short additionalStorageGb, UserLicense license);
|
||||||
Task UpdateLicenseAsync(User user, UserLicense license);
|
Task UpdateLicenseAsync(User user, UserLicense license);
|
||||||
Task AdjustStorageAsync(User user, short storageAdjustmentGb);
|
Task AdjustStorageAsync(User user, short storageAdjustmentGb);
|
||||||
Task ReplacePaymentMethodAsync(User user, string paymentToken, PaymentMethodType? paymentMethodType);
|
Task ReplacePaymentMethodAsync(User user, string paymentToken, PaymentMethodType paymentMethodType);
|
||||||
Task CancelPremiumAsync(User user, bool? endOfPeriod = null);
|
Task CancelPremiumAsync(User user, bool? endOfPeriod = null);
|
||||||
Task ReinstatePremiumAsync(User user);
|
Task ReinstatePremiumAsync(User user);
|
||||||
Task DisablePremiumAsync(Guid userId, DateTime? expirationDate);
|
Task DisablePremiumAsync(Guid userId, DateTime? expirationDate);
|
||||||
|
@ -72,7 +72,7 @@ namespace Bit.Core.Services
|
|||||||
}
|
}
|
||||||
|
|
||||||
public async Task ReplacePaymentMethodAsync(Guid organizationId, string paymentToken,
|
public async Task ReplacePaymentMethodAsync(Guid organizationId, string paymentToken,
|
||||||
PaymentMethodType? paymentMethodType)
|
PaymentMethodType paymentMethodType)
|
||||||
{
|
{
|
||||||
var organization = await GetOrgById(organizationId);
|
var organization = await GetOrgById(organizationId);
|
||||||
if(organization == null)
|
if(organization == null)
|
||||||
@ -80,24 +80,8 @@ namespace Bit.Core.Services
|
|||||||
throw new NotFoundException();
|
throw new NotFoundException();
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!paymentMethodType.HasValue)
|
|
||||||
{
|
|
||||||
if(paymentToken.StartsWith("tok_"))
|
|
||||||
{
|
|
||||||
paymentMethodType = PaymentMethodType.Card;
|
|
||||||
}
|
|
||||||
else if(paymentToken.StartsWith("btok_"))
|
|
||||||
{
|
|
||||||
paymentMethodType = PaymentMethodType.BankAccount;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
paymentMethodType = PaymentMethodType.PayPal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var updated = await _paymentService.UpdatePaymentMethodAsync(organization,
|
var updated = await _paymentService.UpdatePaymentMethodAsync(organization,
|
||||||
paymentMethodType.Value, paymentToken);
|
paymentMethodType, paymentToken);
|
||||||
if(updated)
|
if(updated)
|
||||||
{
|
{
|
||||||
await ReplaceAndUpdateCache(organization);
|
await ReplaceAndUpdateCache(organization);
|
||||||
@ -550,22 +534,6 @@ namespace Bit.Core.Services
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if(!signup.PaymentMethodType.HasValue && !string.IsNullOrWhiteSpace(signup.PaymentToken))
|
|
||||||
{
|
|
||||||
if(signup.PaymentToken.StartsWith("btok_"))
|
|
||||||
{
|
|
||||||
signup.PaymentMethodType = PaymentMethodType.BankAccount;
|
|
||||||
}
|
|
||||||
else if(signup.PaymentToken.StartsWith("tok_"))
|
|
||||||
{
|
|
||||||
signup.PaymentMethodType = PaymentMethodType.Card;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
signup.PaymentMethodType = PaymentMethodType.PayPal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
await _paymentService.PurchaseOrganizationAsync(organization, signup.PaymentMethodType.Value,
|
await _paymentService.PurchaseOrganizationAsync(organization, signup.PaymentMethodType.Value,
|
||||||
signup.PaymentToken, plan, signup.AdditionalStorageGb, signup.AdditionalSeats,
|
signup.PaymentToken, plan, signup.AdditionalStorageGb, signup.AdditionalSeats,
|
||||||
signup.PremiumAccessAddon);
|
signup.PremiumAccessAddon);
|
||||||
|
@ -678,7 +678,7 @@ namespace Bit.Core.Services
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task SignUpPremiumAsync(User user, string paymentToken, PaymentMethodType? paymentMethodType,
|
public async Task SignUpPremiumAsync(User user, string paymentToken, PaymentMethodType paymentMethodType,
|
||||||
short additionalStorageGb, UserLicense license)
|
short additionalStorageGb, UserLicense license)
|
||||||
{
|
{
|
||||||
if(user.Premium)
|
if(user.Premium)
|
||||||
@ -710,24 +710,7 @@ namespace Bit.Core.Services
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if(!paymentMethodType.HasValue)
|
await _paymentService.PurchasePremiumAsync(user, paymentMethodType, paymentToken, additionalStorageGb);
|
||||||
{
|
|
||||||
if(paymentToken.StartsWith("tok_"))
|
|
||||||
{
|
|
||||||
paymentMethodType = PaymentMethodType.Card;
|
|
||||||
}
|
|
||||||
else if(paymentToken.StartsWith("btok_"))
|
|
||||||
{
|
|
||||||
paymentMethodType = PaymentMethodType.BankAccount;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
paymentMethodType = PaymentMethodType.PayPal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
await _paymentService.PurchasePremiumAsync(user, paymentMethodType.Value,
|
|
||||||
paymentToken, additionalStorageGb);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
user.Premium = true;
|
user.Premium = true;
|
||||||
@ -802,31 +785,14 @@ namespace Bit.Core.Services
|
|||||||
await SaveUserAsync(user);
|
await SaveUserAsync(user);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task ReplacePaymentMethodAsync(User user, string paymentToken,
|
public async Task ReplacePaymentMethodAsync(User user, string paymentToken, PaymentMethodType paymentMethodType)
|
||||||
PaymentMethodType? paymentMethodType)
|
|
||||||
{
|
{
|
||||||
if(paymentToken.StartsWith("btok_"))
|
if(paymentToken.StartsWith("btok_"))
|
||||||
{
|
{
|
||||||
throw new BadRequestException("Invalid token.");
|
throw new BadRequestException("Invalid token.");
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!paymentMethodType.HasValue)
|
var updated = await _paymentService.UpdatePaymentMethodAsync(user, paymentMethodType, paymentToken);
|
||||||
{
|
|
||||||
if(paymentToken.StartsWith("tok_"))
|
|
||||||
{
|
|
||||||
paymentMethodType = PaymentMethodType.Card;
|
|
||||||
}
|
|
||||||
else if(paymentToken.StartsWith("btok_"))
|
|
||||||
{
|
|
||||||
paymentMethodType = PaymentMethodType.BankAccount;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
paymentMethodType = PaymentMethodType.PayPal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var updated = await _paymentService.UpdatePaymentMethodAsync(user, paymentMethodType.Value, paymentToken);
|
|
||||||
if(updated)
|
if(updated)
|
||||||
{
|
{
|
||||||
await SaveUserAsync(user);
|
await SaveUserAsync(user);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user