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

* Moved AccountsBilling controller to be owned by Billing * Added org billing history endpoint * Updated GetBillingInvoicesAsync to only retrieve paid, open, and uncollectible invoices, and added option to limit results * Removed invoices and transactions from GetBillingAsync * Limiting the number of invoices and transactions returned * Moved Billing models to Billing namespace * Split billing info and billing history objects * Removed billing method GetBillingBalanceAndSourceAsync * Removed unused using * Cleaned up BillingInfo a bit * Update migration scripts to use `CREATE OR ALTER` instead of checking for the `OBJECT_ID` * Applying limit to aggregated invoices after they return from Stripe
43 lines
1.3 KiB
C#
43 lines
1.3 KiB
C#
using Bit.Api.Billing.Models.Responses;
|
|
using Bit.Core.Services;
|
|
using Bit.Core.Utilities;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Bit.Api.Billing.Controllers;
|
|
|
|
[Route("accounts/billing")]
|
|
[Authorize("Application")]
|
|
public class AccountsBillingController(
|
|
IPaymentService paymentService,
|
|
IUserService userService) : Controller
|
|
{
|
|
[HttpGet("history")]
|
|
[SelfHosted(NotSelfHostedOnly = true)]
|
|
public async Task<BillingHistoryResponseModel> GetBillingHistoryAsync()
|
|
{
|
|
var user = await userService.GetUserByPrincipalAsync(User);
|
|
if (user == null)
|
|
{
|
|
throw new UnauthorizedAccessException();
|
|
}
|
|
|
|
var billingInfo = await paymentService.GetBillingHistoryAsync(user);
|
|
return new BillingHistoryResponseModel(billingInfo);
|
|
}
|
|
|
|
[HttpGet("payment-method")]
|
|
[SelfHosted(NotSelfHostedOnly = true)]
|
|
public async Task<BillingPaymentResponseModel> GetPaymentMethodAsync()
|
|
{
|
|
var user = await userService.GetUserByPrincipalAsync(User);
|
|
if (user == null)
|
|
{
|
|
throw new UnauthorizedAccessException();
|
|
}
|
|
|
|
var billingInfo = await paymentService.GetBillingAsync(user);
|
|
return new BillingPaymentResponseModel(billingInfo);
|
|
}
|
|
}
|