mirror of
https://github.com/bitwarden/server.git
synced 2025-04-23 22:15:10 -05:00

* Use our expiration date if no next billing date * Remove unnecessary null checks * Remove null check
172 lines
5.9 KiB
C#
172 lines
5.9 KiB
C#
using Bit.Core.Models.Table;
|
|
using Bit.Core.Services;
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Security.Cryptography;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
using System.Text;
|
|
|
|
namespace Bit.Core.Models.Business
|
|
{
|
|
public class UserLicense : ILicense
|
|
{
|
|
public UserLicense()
|
|
{ }
|
|
|
|
public UserLicense(User user, SubscriptionInfo subscriptionInfo, ILicensingService licenseService,
|
|
int? version = null)
|
|
{
|
|
LicenseKey = user.LicenseKey;
|
|
Id = user.Id;
|
|
Name = user.Name;
|
|
Email = user.Email;
|
|
Version = version.GetValueOrDefault(1);
|
|
Premium = user.Premium;
|
|
MaxStorageGb = user.MaxStorageGb;
|
|
Issued = DateTime.UtcNow;
|
|
Expires = subscriptionInfo?.UpcomingInvoice?.Date != null ?
|
|
subscriptionInfo.UpcomingInvoice.Date.Value.AddDays(7) :
|
|
user.PremiumExpirationDate?.AddDays(7);
|
|
Refresh = subscriptionInfo?.UpcomingInvoice?.Date;
|
|
Trial = (subscriptionInfo?.Subscription?.TrialEndDate.HasValue ?? false) &&
|
|
subscriptionInfo.Subscription.TrialEndDate.Value > DateTime.UtcNow;
|
|
|
|
Hash = Convert.ToBase64String(ComputeHash());
|
|
Signature = Convert.ToBase64String(licenseService.SignLicense(this));
|
|
}
|
|
|
|
public UserLicense(User user, ILicensingService licenseService, int? version = null)
|
|
{
|
|
LicenseKey = user.LicenseKey;
|
|
Id = user.Id;
|
|
Name = user.Name;
|
|
Email = user.Email;
|
|
Version = version.GetValueOrDefault(1);
|
|
Premium = user.Premium;
|
|
MaxStorageGb = user.MaxStorageGb;
|
|
Issued = DateTime.UtcNow;
|
|
Expires = user.PremiumExpirationDate?.AddDays(7);
|
|
Refresh = user.PremiumExpirationDate?.Date;
|
|
Trial = false;
|
|
|
|
Hash = Convert.ToBase64String(ComputeHash());
|
|
Signature = Convert.ToBase64String(licenseService.SignLicense(this));
|
|
}
|
|
|
|
public string LicenseKey { get; set; }
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Email { get; set; }
|
|
public bool Premium { get; set; }
|
|
public short? MaxStorageGb { get; set; }
|
|
public int Version { get; set; }
|
|
public DateTime Issued { get; set; }
|
|
public DateTime? Refresh { get; set; }
|
|
public DateTime? Expires { get; set; }
|
|
public bool Trial { get; set; }
|
|
public string Hash { get; set; }
|
|
public string Signature { get; set; }
|
|
[JsonIgnore]
|
|
public byte[] SignatureBytes => Convert.FromBase64String(Signature);
|
|
|
|
public byte[] GetDataBytes(bool forHash = false)
|
|
{
|
|
string data = null;
|
|
if (Version == 1)
|
|
{
|
|
var props = typeof(UserLicense)
|
|
.GetProperties(BindingFlags.Public | BindingFlags.Instance)
|
|
.Where(p =>
|
|
!p.Name.Equals(nameof(Signature)) &&
|
|
!p.Name.Equals(nameof(SignatureBytes)) &&
|
|
(
|
|
!forHash ||
|
|
(
|
|
!p.Name.Equals(nameof(Hash)) &&
|
|
!p.Name.Equals(nameof(Issued)) &&
|
|
!p.Name.Equals(nameof(Refresh))
|
|
)
|
|
))
|
|
.OrderBy(p => p.Name)
|
|
.Select(p => $"{p.Name}:{Utilities.CoreHelpers.FormatLicenseSignatureValue(p.GetValue(this, null))}")
|
|
.Aggregate((c, n) => $"{c}|{n}");
|
|
data = $"license:user|{props}";
|
|
}
|
|
else
|
|
{
|
|
throw new NotSupportedException($"Version {Version} is not supported.");
|
|
}
|
|
|
|
return Encoding.UTF8.GetBytes(data);
|
|
}
|
|
|
|
public byte[] ComputeHash()
|
|
{
|
|
using (var alg = SHA256.Create())
|
|
{
|
|
return alg.ComputeHash(GetDataBytes(true));
|
|
}
|
|
}
|
|
|
|
public bool CanUse(User user)
|
|
{
|
|
if (Issued > DateTime.UtcNow || Expires < DateTime.UtcNow)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (Version == 1)
|
|
{
|
|
return user.EmailVerified && user.Email.Equals(Email, StringComparison.InvariantCultureIgnoreCase);
|
|
}
|
|
else
|
|
{
|
|
throw new NotSupportedException($"Version {Version} is not supported.");
|
|
}
|
|
}
|
|
|
|
public bool VerifyData(User user)
|
|
{
|
|
if (Issued > DateTime.UtcNow || Expires < DateTime.UtcNow)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (Version == 1)
|
|
{
|
|
return
|
|
user.LicenseKey != null && user.LicenseKey.Equals(LicenseKey) &&
|
|
user.Premium == Premium &&
|
|
user.Email.Equals(Email, StringComparison.InvariantCultureIgnoreCase);
|
|
}
|
|
else
|
|
{
|
|
throw new NotSupportedException($"Version {Version} is not supported.");
|
|
}
|
|
}
|
|
|
|
public bool VerifySignature(X509Certificate2 certificate)
|
|
{
|
|
using (var rsa = certificate.GetRSAPublicKey())
|
|
{
|
|
return rsa.VerifyData(GetDataBytes(), SignatureBytes, HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1);
|
|
}
|
|
}
|
|
|
|
public byte[] Sign(X509Certificate2 certificate)
|
|
{
|
|
if (!certificate.HasPrivateKey)
|
|
{
|
|
throw new InvalidOperationException("You don't have the private key!");
|
|
}
|
|
|
|
using (var rsa = certificate.GetRSAPrivateKey())
|
|
{
|
|
return rsa.SignData(GetDataBytes(), HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1);
|
|
}
|
|
}
|
|
}
|
|
}
|