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

[PM-1635] Invalid license error is inaccurate (#4631)

* Resolve the unclear error messages

Signed-off-by: Cy Okeke <cokeke@bitwarden.com>

* Refactor to return the errormessage from userLicense

Signed-off-by: Cy Okeke <cokeke@bitwarden.com>

* Resolve the pr comments

Signed-off-by: Cy Okeke <cokeke@bitwarden.com>

* resolve the error returned message

Signed-off-by: Cy Okeke <cokeke@bitwarden.com>

* Add period at the end of error messages

Signed-off-by: Cy Okeke <cokeke@bitwarden.com>

---------

Signed-off-by: Cy Okeke <cokeke@bitwarden.com>
This commit is contained in:
cyprain-okeke 2024-08-26 14:12:58 +01:00 committed by GitHub
parent a5363c1513
commit e2ec1c4950
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 66 additions and 31 deletions

View File

@ -230,35 +230,52 @@ public class OrganizationLicense : ILicense
public bool CanUse(IGlobalSettings globalSettings, ILicensingService licensingService, out string exception) public bool CanUse(IGlobalSettings globalSettings, ILicensingService licensingService, out string exception)
{ {
if (!Enabled || Issued > DateTime.UtcNow || Expires < DateTime.UtcNow) var errorMessages = new StringBuilder();
if (!Enabled)
{ {
exception = "Invalid license. Your organization is disabled or the license has expired."; errorMessages.AppendLine("Your cloud-hosted organization is currently disabled.");
return false; }
if (Issued > DateTime.UtcNow)
{
errorMessages.AppendLine("The license hasn't been issued yet.");
}
if (Expires < DateTime.UtcNow)
{
errorMessages.AppendLine("The license has expired.");
} }
if (!ValidLicenseVersion) if (!ValidLicenseVersion)
{ {
exception = $"Version {Version} is not supported."; errorMessages.AppendLine($"Version {Version} is not supported.");
return false;
} }
if (InstallationId != globalSettings.Installation.Id || !SelfHost) if (InstallationId != globalSettings.Installation.Id)
{ {
exception = "Invalid license. Make sure your license allows for on-premise " + errorMessages.AppendLine("The installation ID does not match the current installation.");
"hosting of organizations and that the installation id matches your current installation."; }
return false;
if (!SelfHost)
{
errorMessages.AppendLine("The license does not allow for on-premise hosting of organizations.");
} }
if (LicenseType != null && LicenseType != Enums.LicenseType.Organization) if (LicenseType != null && LicenseType != Enums.LicenseType.Organization)
{ {
exception = "Premium licenses cannot be applied to an organization. " errorMessages.AppendLine("Premium licenses cannot be applied to an organization. " +
+ "Upload this license from your personal account settings page."; "Upload this license from your personal account settings page.");
return false;
} }
if (!licensingService.VerifyLicense(this)) if (!licensingService.VerifyLicense(this))
{ {
exception = "Invalid license."; errorMessages.AppendLine("The license verification failed.");
}
if (errorMessages.Length > 0)
{
exception = $"Invalid license. {errorMessages.ToString().TrimEnd()}";
return false; return false;
} }
@ -358,10 +375,8 @@ public class OrganizationLicense : ILicense
return valid; return valid;
} }
else
{ throw new NotSupportedException($"Version {Version} is not supported.");
throw new NotSupportedException($"Version {Version} is not supported.");
}
} }
public bool VerifySignature(X509Certificate2 certificate) public bool VerifySignature(X509Certificate2 certificate)

View File

@ -113,21 +113,43 @@ public class UserLicense : ILicense
} }
} }
public bool CanUse(User user) public bool CanUse(User user, out string exception)
{ {
if (Issued > DateTime.UtcNow || Expires < DateTime.UtcNow) var errorMessages = new StringBuilder();
if (Issued > DateTime.UtcNow)
{ {
return false; errorMessages.AppendLine("The license hasn't been issued yet.");
} }
if (Version == 1) if (Expires < DateTime.UtcNow)
{ {
return user.EmailVerified && user.Email.Equals(Email, StringComparison.InvariantCultureIgnoreCase); errorMessages.AppendLine("The license has expired.");
} }
else
if (Version != 1)
{ {
throw new NotSupportedException($"Version {Version} is not supported."); throw new NotSupportedException($"Version {Version} is not supported.");
} }
if (!user.EmailVerified)
{
errorMessages.AppendLine("The user's email is not verified.");
}
if (!user.Email.Equals(Email, StringComparison.InvariantCultureIgnoreCase))
{
errorMessages.AppendLine("The user's email does not match the license email.");
}
if (errorMessages.Length > 0)
{
exception = $"Invalid license. {errorMessages.ToString().TrimEnd()}";
return false;
}
exception = "";
return true;
} }
public bool VerifyData(User user) public bool VerifyData(User user)
@ -144,10 +166,8 @@ public class UserLicense : ILicense
user.Premium == Premium && user.Premium == Premium &&
user.Email.Equals(Email, StringComparison.InvariantCultureIgnoreCase); user.Email.Equals(Email, StringComparison.InvariantCultureIgnoreCase);
} }
else
{ throw new NotSupportedException($"Version {Version} is not supported.");
throw new NotSupportedException($"Version {Version} is not supported.");
}
} }
public bool VerifySignature(X509Certificate2 certificate) public bool VerifySignature(X509Certificate2 certificate)

View File

@ -891,9 +891,9 @@ public class UserService : UserManager<User>, IUserService, IDisposable
throw new BadRequestException("Invalid license."); throw new BadRequestException("Invalid license.");
} }
if (!license.CanUse(user)) if (!license.CanUse(user, out var exceptionMessage))
{ {
throw new BadRequestException("This license is not valid for this user."); throw new BadRequestException(exceptionMessage);
} }
var dir = $"{_globalSettings.LicenseDirectory}/user"; var dir = $"{_globalSettings.LicenseDirectory}/user";
@ -960,9 +960,9 @@ public class UserService : UserManager<User>, IUserService, IDisposable
throw new BadRequestException("Invalid license."); throw new BadRequestException("Invalid license.");
} }
if (!license.CanUse(user)) if (!license.CanUse(user, out var exceptionMessage))
{ {
throw new BadRequestException("This license is not valid for this user."); throw new BadRequestException(exceptionMessage);
} }
var dir = $"{_globalSettings.LicenseDirectory}/user"; var dir = $"{_globalSettings.LicenseDirectory}/user";