mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
27 lines
782 B
C#
27 lines
782 B
C#
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.Billing.Extensions;
|
|
|
|
public static class SubscriberExtensions
|
|
{
|
|
/// <summary>
|
|
/// We are taking only first 30 characters of the SubscriberName because stripe provide for 30 characters for
|
|
/// custom_fields,see the link: https://stripe.com/docs/api/invoices/create
|
|
/// </summary>
|
|
/// <param name="subscriber"></param>
|
|
/// <returns></returns>
|
|
public static string GetFormattedInvoiceName(this ISubscriber subscriber)
|
|
{
|
|
var subscriberName = subscriber.SubscriberName();
|
|
|
|
if (string.IsNullOrWhiteSpace(subscriberName))
|
|
{
|
|
return string.Empty;
|
|
}
|
|
|
|
return subscriberName.Length <= 30
|
|
? subscriberName
|
|
: subscriberName[..30];
|
|
}
|
|
}
|