mirror of
https://github.com/bitwarden/server
synced 2025-12-21 18:53:41 +00:00
* Moved license models to billing * Moved LicensingService to billing * Moved license command and queries to billing * Moved LicenseController to billing
29 lines
954 B
C#
29 lines
954 B
C#
#nullable enable
|
|
|
|
using System.Security.Claims;
|
|
using Bit.Core.AdminConsole.Entities;
|
|
using Bit.Core.Billing.Models.Business;
|
|
using Bit.Core.Entities;
|
|
using Bit.Core.Models.Business;
|
|
|
|
namespace Bit.Core.Billing.Services;
|
|
|
|
public interface ILicensingService
|
|
{
|
|
Task ValidateOrganizationsAsync();
|
|
Task ValidateUsersAsync();
|
|
Task<bool> ValidateUserPremiumAsync(User user);
|
|
bool VerifyLicense(ILicense license);
|
|
byte[] SignLicense(ILicense license);
|
|
Task<OrganizationLicense?> ReadOrganizationLicenseAsync(Organization organization);
|
|
Task<OrganizationLicense?> ReadOrganizationLicenseAsync(Guid organizationId);
|
|
ClaimsPrincipal? GetClaimsPrincipalFromLicense(ILicense license);
|
|
|
|
Task<string?> CreateOrganizationTokenAsync(
|
|
Organization organization,
|
|
Guid installationId,
|
|
SubscriptionInfo subscriptionInfo);
|
|
|
|
Task<string?> CreateUserTokenAsync(User user, SubscriptionInfo subscriptionInfo);
|
|
}
|