Files
server/src/Api/AdminConsole/Controllers/ProvidersController.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

127 lines
4.4 KiB
C#
Raw Normal View History

using Bit.Api.AdminConsole.Models.Request.Providers;
using Bit.Api.AdminConsole.Models.Response.Providers;
using Bit.Core;
using Bit.Core.AdminConsole.Repositories;
using Bit.Core.AdminConsole.Services;
using Bit.Core.Billing.Commands;
2021-06-30 09:35:26 +02:00
using Bit.Core.Context;
using Bit.Core.Exceptions;
using Bit.Core.Models.Business;
2021-06-30 09:35:26 +02:00
using Bit.Core.Services;
using Bit.Core.Settings;
2021-06-30 09:35:26 +02:00
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace Bit.Api.AdminConsole.Controllers;
2022-08-29 16:06:55 -04:00
2021-06-30 09:35:26 +02:00
[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;
private readonly IFeatureService _featureService;
private readonly IStartSubscriptionCommand _startSubscriptionCommand;
private readonly ILogger<ProvidersController> _logger;
2022-08-29 16:06:55 -04:00
2021-06-30 09:35:26 +02:00
public ProvidersController(IUserService userService, IProviderRepository providerRepository,
IProviderService providerService, ICurrentContext currentContext, GlobalSettings globalSettings,
IFeatureService featureService, IStartSubscriptionCommand startSubscriptionCommand,
ILogger<ProvidersController> logger)
2021-06-30 09:35:26 +02:00
{
_userService = userService;
_providerRepository = providerRepository;
_providerService = providerService;
_currentContext = currentContext;
_globalSettings = globalSettings;
_featureService = featureService;
_startSubscriptionCommand = startSubscriptionCommand;
_logger = logger;
2022-08-29 16:06:55 -04:00
}
2021-06-30 09:35:26 +02:00
[HttpGet("{id:guid}")]
public async Task<ProviderResponseModel> Get(Guid id)
2022-08-29 16:06:55 -04:00
{
if (!_currentContext.ProviderUser(id))
2021-06-30 09:35:26 +02:00
{
throw new NotFoundException();
}
2021-12-16 15:35:09 +01:00
2021-06-30 09:35:26 +02:00
var provider = await _providerRepository.GetByIdAsync(id);
if (provider == null)
{
throw new NotFoundException();
}
return new ProviderResponseModel(provider);
}
[HttpPut("{id:guid}")]
[HttpPost("{id:guid}")]
2021-06-30 09:35:26 +02:00
public async Task<ProviderResponseModel> Put(Guid id, [FromBody] ProviderUpdateRequestModel model)
2022-08-29 16:06:55 -04:00
{
2021-06-30 09:35:26 +02:00
if (!_currentContext.ProviderProviderAdmin(id))
2022-08-29 16:06:55 -04:00
{
2021-06-30 09:35:26 +02:00
throw new NotFoundException();
}
2021-12-16 15:35:09 +01:00
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)
2022-08-29 16:06:55 -04:00
{
if (!_currentContext.ProviderProviderAdmin(id))
2022-08-29 16:06:55 -04:00
{
throw new NotFoundException();
}
2021-12-16 15:35:09 +01:00
2021-06-30 09:35:26 +02:00
var provider = await _providerRepository.GetByIdAsync(id);
if (provider == null)
{
throw new NotFoundException();
}
2021-12-16 15:35:09 +01:00
2021-06-30 09:35:26 +02:00
var userId = _userService.GetProperUserId(User).Value;
2021-12-16 15:35:09 +01:00
2021-06-30 09:35:26 +02:00
var response =
await _providerService.CompleteSetupAsync(model.ToProvider(provider), userId, model.Token, model.Key);
if (_featureService.IsEnabled(FeatureFlagKeys.EnableConsolidatedBilling))
{
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
};
try
{
await _startSubscriptionCommand.StartSubscription(provider, taxInfo);
}
catch
{
// We don't want to trap the user on the setup page, so we'll let this go through but the provider will be in an un-billable state.
_logger.LogError("Failed to create subscription for provider with ID {ID} during setup", provider.Id);
}
}
2021-06-30 09:35:26 +02:00
return new ProviderResponseModel(response);
}
}