mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Add Additional Logging to Self-hosted installs for F4E (#1999)
* Add logging to SH logs * Fix tests
This commit is contained in:
parent
6b484e29a7
commit
53241f16e0
@ -14,6 +14,7 @@ using Bit.Core.Settings;
|
|||||||
using Bit.Core.Utilities;
|
using Bit.Core.Utilities;
|
||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
namespace Bit.Admin.Controllers
|
namespace Bit.Admin.Controllers
|
||||||
{
|
{
|
||||||
@ -34,6 +35,7 @@ namespace Bit.Admin.Controllers
|
|||||||
private readonly GlobalSettings _globalSettings;
|
private readonly GlobalSettings _globalSettings;
|
||||||
private readonly IReferenceEventService _referenceEventService;
|
private readonly IReferenceEventService _referenceEventService;
|
||||||
private readonly IUserService _userService;
|
private readonly IUserService _userService;
|
||||||
|
private readonly ILogger<OrganizationsController> _logger;
|
||||||
|
|
||||||
public OrganizationsController(
|
public OrganizationsController(
|
||||||
IOrganizationRepository organizationRepository,
|
IOrganizationRepository organizationRepository,
|
||||||
@ -49,7 +51,8 @@ namespace Bit.Admin.Controllers
|
|||||||
IApplicationCacheService applicationCacheService,
|
IApplicationCacheService applicationCacheService,
|
||||||
GlobalSettings globalSettings,
|
GlobalSettings globalSettings,
|
||||||
IReferenceEventService referenceEventService,
|
IReferenceEventService referenceEventService,
|
||||||
IUserService userService)
|
IUserService userService,
|
||||||
|
ILogger<OrganizationsController> logger)
|
||||||
{
|
{
|
||||||
_organizationRepository = organizationRepository;
|
_organizationRepository = organizationRepository;
|
||||||
_organizationUserRepository = organizationUserRepository;
|
_organizationUserRepository = organizationUserRepository;
|
||||||
@ -65,6 +68,7 @@ namespace Bit.Admin.Controllers
|
|||||||
_globalSettings = globalSettings;
|
_globalSettings = globalSettings;
|
||||||
_referenceEventService = referenceEventService;
|
_referenceEventService = referenceEventService;
|
||||||
_userService = userService;
|
_userService = userService;
|
||||||
|
_logger = logger;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<IActionResult> Index(string name = null, string userEmail = null, bool? paid = null,
|
public async Task<IActionResult> Index(string name = null, string userEmail = null, bool? paid = null,
|
||||||
@ -199,6 +203,7 @@ namespace Bit.Admin.Controllers
|
|||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
TempData["ConnectionError"] = ex.Message;
|
TempData["ConnectionError"] = ex.Message;
|
||||||
|
_logger.LogWarning(ex, "Error while attempting to do billing sync for organization with id '{OrganizationId}'", id);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_globalSettings.SelfHosted)
|
if (_globalSettings.SelfHosted)
|
||||||
|
@ -74,6 +74,10 @@ namespace Bit.Api.Controllers
|
|||||||
case OrganizationConnectionType.CloudBillingSync:
|
case OrganizationConnectionType.CloudBillingSync:
|
||||||
var typedModel = new OrganizationConnectionRequestModel<BillingSyncConfig>(model);
|
var typedModel = new OrganizationConnectionRequestModel<BillingSyncConfig>(model);
|
||||||
var license = await _licensingService.ReadOrganizationLicenseAsync(model.OrganizationId);
|
var license = await _licensingService.ReadOrganizationLicenseAsync(model.OrganizationId);
|
||||||
|
if (!_licensingService.VerifyLicense(license))
|
||||||
|
{
|
||||||
|
throw new BadRequestException("Cannot verify license file.");
|
||||||
|
}
|
||||||
typedModel.ParsedConfig.CloudOrganizationId = license.Id;
|
typedModel.ParsedConfig.CloudOrganizationId = license.Id;
|
||||||
var connection = await _createOrganizationConnectionCommand.CreateAsync(typedModel.ToData());
|
var connection = await _createOrganizationConnectionCommand.CreateAsync(typedModel.ToData());
|
||||||
return new OrganizationConnectionResponseModel(connection, typeof(BillingSyncConfig));
|
return new OrganizationConnectionResponseModel(connection, typeof(BillingSyncConfig));
|
||||||
|
@ -87,6 +87,7 @@ namespace Bit.Core.OrganizationFeatures.OrganizationSponsorships.FamiliesForEnte
|
|||||||
|
|
||||||
if (response == null)
|
if (response == null)
|
||||||
{
|
{
|
||||||
|
_logger.LogDebug("Organization sync failed for '{OrgId}'", organizationId);
|
||||||
throw new BadRequestException("Organization sync failed");
|
throw new BadRequestException("Organization sync failed");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -124,11 +124,19 @@ namespace Bit.Core.Services
|
|||||||
|
|
||||||
if (!response.IsSuccessStatusCode)
|
if (!response.IsSuccessStatusCode)
|
||||||
{
|
{
|
||||||
|
_logger.LogInformation("Unsuccessful token response with status code {StatusCode}", response.StatusCode);
|
||||||
|
|
||||||
if (response.StatusCode == HttpStatusCode.BadRequest)
|
if (response.StatusCode == HttpStatusCode.BadRequest)
|
||||||
{
|
{
|
||||||
_nextAuthAttempt = DateTime.UtcNow.AddDays(1);
|
_nextAuthAttempt = DateTime.UtcNow.AddDays(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (_logger.IsEnabled(LogLevel.Debug))
|
||||||
|
{
|
||||||
|
var responseBody = await response.Content.ReadAsStringAsync();
|
||||||
|
_logger.LogDebug("Error response body:\n{ResponseBody}", responseBody);
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -83,9 +83,39 @@ namespace Bit.Api.Test.Controllers
|
|||||||
|
|
||||||
[Theory]
|
[Theory]
|
||||||
[BitAutoData]
|
[BitAutoData]
|
||||||
public async Task CreateConnection_Success(OrganizationConnectionRequestModel model, BillingSyncConfig config,
|
public async Task CreateConnection_BillingSyncType_InvalidLicense_Throws(OrganizationConnectionRequestModel model,
|
||||||
Guid cloudOrgId, SutProvider<OrganizationConnectionsController> sutProvider)
|
BillingSyncConfig config, Guid cloudOrgId, OrganizationLicense organizationLicense,
|
||||||
|
SutProvider<OrganizationConnectionsController> sutProvider)
|
||||||
{
|
{
|
||||||
|
model.Type = OrganizationConnectionType.CloudBillingSync;
|
||||||
|
organizationLicense.Id = cloudOrgId;
|
||||||
|
|
||||||
|
model.Config = JsonDocumentFromObject(config);
|
||||||
|
var typedModel = new OrganizationConnectionRequestModel<BillingSyncConfig>(model);
|
||||||
|
typedModel.ParsedConfig.CloudOrganizationId = cloudOrgId;
|
||||||
|
|
||||||
|
sutProvider.GetDependency<ICurrentContext>()
|
||||||
|
.OrganizationOwner(model.OrganizationId)
|
||||||
|
.Returns(true);
|
||||||
|
|
||||||
|
sutProvider.GetDependency<ILicensingService>()
|
||||||
|
.ReadOrganizationLicenseAsync(model.OrganizationId)
|
||||||
|
.Returns(organizationLicense);
|
||||||
|
|
||||||
|
sutProvider.GetDependency<ILicensingService>()
|
||||||
|
.VerifyLicense(organizationLicense)
|
||||||
|
.Returns(false);
|
||||||
|
|
||||||
|
await Assert.ThrowsAsync<BadRequestException>(async () => await sutProvider.Sut.CreateConnection(model));
|
||||||
|
}
|
||||||
|
|
||||||
|
[Theory]
|
||||||
|
[BitAutoData]
|
||||||
|
public async Task CreateConnection_Success(OrganizationConnectionRequestModel model, BillingSyncConfig config,
|
||||||
|
Guid cloudOrgId, OrganizationLicense organizationLicense, SutProvider<OrganizationConnectionsController> sutProvider)
|
||||||
|
{
|
||||||
|
organizationLicense.Id = cloudOrgId;
|
||||||
|
|
||||||
model.Config = JsonDocumentFromObject(config);
|
model.Config = JsonDocumentFromObject(config);
|
||||||
var typedModel = new OrganizationConnectionRequestModel<BillingSyncConfig>(model);
|
var typedModel = new OrganizationConnectionRequestModel<BillingSyncConfig>(model);
|
||||||
typedModel.ParsedConfig.CloudOrganizationId = cloudOrgId;
|
typedModel.ParsedConfig.CloudOrganizationId = cloudOrgId;
|
||||||
@ -95,10 +125,11 @@ namespace Bit.Api.Test.Controllers
|
|||||||
sutProvider.GetDependency<ICurrentContext>().OrganizationOwner(model.OrganizationId).Returns(true);
|
sutProvider.GetDependency<ICurrentContext>().OrganizationOwner(model.OrganizationId).Returns(true);
|
||||||
sutProvider.GetDependency<ILicensingService>()
|
sutProvider.GetDependency<ILicensingService>()
|
||||||
.ReadOrganizationLicenseAsync(Arg.Any<Guid>())
|
.ReadOrganizationLicenseAsync(Arg.Any<Guid>())
|
||||||
.Returns(new OrganizationLicense
|
.Returns(organizationLicense);
|
||||||
{
|
|
||||||
Id = cloudOrgId,
|
sutProvider.GetDependency<ILicensingService>()
|
||||||
});
|
.VerifyLicense(organizationLicense)
|
||||||
|
.Returns(true);
|
||||||
|
|
||||||
await sutProvider.Sut.CreateConnection(model);
|
await sutProvider.Sut.CreateConnection(model);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user