mirror of
https://github.com/bitwarden/server.git
synced 2025-05-28 23:04:50 -05:00

* Require provider payment method during setup behind FF * Fix failing test * Run dotnet format * Rui's feedback
143 lines
4.4 KiB
C#
143 lines
4.4 KiB
C#
using Bit.Api.AdminConsole.Models.Request.Providers;
|
|
using Bit.Api.AdminConsole.Models.Response.Providers;
|
|
using Bit.Core.AdminConsole.Repositories;
|
|
using Bit.Core.AdminConsole.Services;
|
|
using Bit.Core.Context;
|
|
using Bit.Core.Exceptions;
|
|
using Bit.Core.Models.Business;
|
|
using Bit.Core.Services;
|
|
using Bit.Core.Settings;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Bit.Api.AdminConsole.Controllers;
|
|
|
|
[Route("providers")]
|
|
[Authorize("Application")]
|
|
public class ProvidersController : Controller
|
|
{
|
|
private readonly IUserService _userService;
|
|
private readonly IProviderRepository _providerRepository;
|
|
private readonly IProviderService _providerService;
|
|
private readonly ICurrentContext _currentContext;
|
|
private readonly GlobalSettings _globalSettings;
|
|
|
|
public ProvidersController(IUserService userService, IProviderRepository providerRepository,
|
|
IProviderService providerService, ICurrentContext currentContext, GlobalSettings globalSettings)
|
|
{
|
|
_userService = userService;
|
|
_providerRepository = providerRepository;
|
|
_providerService = providerService;
|
|
_currentContext = currentContext;
|
|
_globalSettings = globalSettings;
|
|
}
|
|
|
|
[HttpGet("{id:guid}")]
|
|
public async Task<ProviderResponseModel> Get(Guid id)
|
|
{
|
|
if (!_currentContext.ProviderUser(id))
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
var provider = await _providerRepository.GetByIdAsync(id);
|
|
if (provider == null)
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
return new ProviderResponseModel(provider);
|
|
}
|
|
|
|
[HttpPut("{id:guid}")]
|
|
[HttpPost("{id:guid}")]
|
|
public async Task<ProviderResponseModel> Put(Guid id, [FromBody] ProviderUpdateRequestModel model)
|
|
{
|
|
if (!_currentContext.ProviderProviderAdmin(id))
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
var provider = await _providerRepository.GetByIdAsync(id);
|
|
if (provider == null)
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
await _providerService.UpdateAsync(model.ToProvider(provider, _globalSettings));
|
|
return new ProviderResponseModel(provider);
|
|
}
|
|
|
|
[HttpPost("{id:guid}/setup")]
|
|
public async Task<ProviderResponseModel> Setup(Guid id, [FromBody] ProviderSetupRequestModel model)
|
|
{
|
|
if (!_currentContext.ProviderProviderAdmin(id))
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
var provider = await _providerRepository.GetByIdAsync(id);
|
|
if (provider == null)
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
var userId = _userService.GetProperUserId(User).Value;
|
|
|
|
var taxInfo = new TaxInfo
|
|
{
|
|
BillingAddressCountry = model.TaxInfo.Country,
|
|
BillingAddressPostalCode = model.TaxInfo.PostalCode,
|
|
TaxIdNumber = model.TaxInfo.TaxId,
|
|
BillingAddressLine1 = model.TaxInfo.Line1,
|
|
BillingAddressLine2 = model.TaxInfo.Line2,
|
|
BillingAddressCity = model.TaxInfo.City,
|
|
BillingAddressState = model.TaxInfo.State
|
|
};
|
|
|
|
var tokenizedPaymentSource = model.PaymentSource?.ToDomain();
|
|
|
|
var response =
|
|
await _providerService.CompleteSetupAsync(model.ToProvider(provider), userId, model.Token, model.Key,
|
|
taxInfo, tokenizedPaymentSource);
|
|
|
|
return new ProviderResponseModel(response);
|
|
}
|
|
|
|
[HttpPost("{id}/delete-recover-token")]
|
|
[AllowAnonymous]
|
|
public async Task PostDeleteRecoverToken(Guid id, [FromBody] ProviderVerifyDeleteRecoverRequestModel model)
|
|
{
|
|
var provider = await _providerRepository.GetByIdAsync(id);
|
|
if (provider == null)
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
await _providerService.DeleteAsync(provider, model.Token);
|
|
}
|
|
|
|
[HttpDelete("{id}")]
|
|
[HttpPost("{id}/delete")]
|
|
public async Task Delete(Guid id)
|
|
{
|
|
if (!_currentContext.ProviderProviderAdmin(id))
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
var provider = await _providerRepository.GetByIdAsync(id);
|
|
if (provider == null)
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
var user = await _userService.GetUserByPrincipalAsync(User);
|
|
if (user == null)
|
|
{
|
|
throw new UnauthorizedAccessException();
|
|
}
|
|
|
|
await _providerService.DeleteAsync(provider);
|
|
}
|
|
}
|