mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
Log swallowed HttpRequestExceptions (#1866)
Co-authored-by: Hinton <oscar@oscarhinton.com>
This commit is contained in:
parent
0e88720d3a
commit
95acc79ebb
@ -11,7 +11,7 @@
|
|||||||
"internalAdmin": "http://localhost:62911",
|
"internalAdmin": "http://localhost:62911",
|
||||||
"internalIdentity": "http://localhost:33656",
|
"internalIdentity": "http://localhost:33656",
|
||||||
"internalApi": "http://localhost:4000",
|
"internalApi": "http://localhost:4000",
|
||||||
"internalVault": "http://localhost:4001",
|
"internalVault": "https://localhost:8080",
|
||||||
"internalSso": "http://localhost:51822"
|
"internalSso": "http://localhost:51822"
|
||||||
},
|
},
|
||||||
"events": {
|
"events": {
|
||||||
|
@ -6,18 +6,22 @@ using System.Threading.Tasks;
|
|||||||
using Bit.Admin.Models;
|
using Bit.Admin.Models;
|
||||||
using Bit.Core.Settings;
|
using Bit.Core.Settings;
|
||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
|
using Microsoft.AspNetCore.Http;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
namespace Bit.Admin.Controllers
|
namespace Bit.Admin.Controllers
|
||||||
{
|
{
|
||||||
public class HomeController : Controller
|
public class HomeController : Controller
|
||||||
{
|
{
|
||||||
private readonly GlobalSettings _globalSettings;
|
private readonly GlobalSettings _globalSettings;
|
||||||
private HttpClient _httpClient = new HttpClient();
|
private readonly HttpClient _httpClient = new HttpClient();
|
||||||
|
private readonly ILogger<HomeController> _logger;
|
||||||
|
|
||||||
public HomeController(GlobalSettings globalSettings)
|
public HomeController(GlobalSettings globalSettings, ILogger<HomeController> logger)
|
||||||
{
|
{
|
||||||
_globalSettings = globalSettings;
|
_globalSettings = globalSettings;
|
||||||
|
_logger = logger;
|
||||||
}
|
}
|
||||||
|
|
||||||
[Authorize]
|
[Authorize]
|
||||||
@ -40,10 +44,10 @@ namespace Bit.Admin.Controllers
|
|||||||
|
|
||||||
public async Task<IActionResult> GetLatestDockerHubVersion(string repository, CancellationToken cancellationToken)
|
public async Task<IActionResult> GetLatestDockerHubVersion(string repository, CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
|
var requestUri = $"https://hub.docker.com/v2/repositories/bitwarden/{repository}/tags/";
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var response = await _httpClient.GetAsync(
|
var response = await _httpClient.GetAsync(requestUri, cancellationToken);
|
||||||
$"https://hub.docker.com/v2/repositories/bitwarden/{repository}/tags/", cancellationToken);
|
|
||||||
if (response.IsSuccessStatusCode)
|
if (response.IsSuccessStatusCode)
|
||||||
{
|
{
|
||||||
using var jsonDocument = await JsonDocument.ParseAsync(await response.Content.ReadAsStreamAsync(cancellationToken), cancellationToken: cancellationToken);
|
using var jsonDocument = await JsonDocument.ParseAsync(await response.Content.ReadAsStreamAsync(cancellationToken), cancellationToken: cancellationToken);
|
||||||
@ -60,17 +64,21 @@ namespace Bit.Admin.Controllers
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (HttpRequestException) { }
|
catch (HttpRequestException e)
|
||||||
|
{
|
||||||
|
_logger.LogError(e, $"Error encountered while sending GET request to {requestUri}");
|
||||||
|
return new JsonResult("Unable to fetch latest version") { StatusCode = StatusCodes.Status500InternalServerError };
|
||||||
|
}
|
||||||
|
|
||||||
return new JsonResult("-");
|
return new JsonResult("-");
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<IActionResult> GetInstalledWebVersion(CancellationToken cancellationToken)
|
public async Task<IActionResult> GetInstalledWebVersion(CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
|
var requestUri = $"{_globalSettings.BaseServiceUri.InternalVault}/version.json";
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var response = await _httpClient.GetAsync(
|
var response = await _httpClient.GetAsync(requestUri, cancellationToken);
|
||||||
$"{_globalSettings.BaseServiceUri.InternalVault}/version.json", cancellationToken);
|
|
||||||
if (response.IsSuccessStatusCode)
|
if (response.IsSuccessStatusCode)
|
||||||
{
|
{
|
||||||
using var jsonDocument = await JsonDocument.ParseAsync(await response.Content.ReadAsStreamAsync(cancellationToken), cancellationToken: cancellationToken);
|
using var jsonDocument = await JsonDocument.ParseAsync(await response.Content.ReadAsStreamAsync(cancellationToken), cancellationToken: cancellationToken);
|
||||||
@ -78,7 +86,11 @@ namespace Bit.Admin.Controllers
|
|||||||
return new JsonResult(root.GetProperty("version").GetString());
|
return new JsonResult(root.GetProperty("version").GetString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (HttpRequestException) { }
|
catch (HttpRequestException e)
|
||||||
|
{
|
||||||
|
_logger.LogError(e, $"Error encountered while sending GET request to {requestUri}");
|
||||||
|
return new JsonResult("Unable to fetch installed version") { StatusCode = StatusCodes.Status500InternalServerError };
|
||||||
|
}
|
||||||
|
|
||||||
return new JsonResult("-");
|
return new JsonResult("-");
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"internalAdmin": "http://localhost:62911",
|
"internalAdmin": "http://localhost:62911",
|
||||||
"internalIdentity": "http://localhost:33656",
|
"internalIdentity": "http://localhost:33656",
|
||||||
"internalApi": "http://localhost:4000",
|
"internalApi": "http://localhost:4000",
|
||||||
"internalVault": "http://localhost:4001",
|
"internalVault": "https://localhost:8080",
|
||||||
"internalSso": "http://localhost:51822"
|
"internalSso": "http://localhost:51822"
|
||||||
},
|
},
|
||||||
"mail": {
|
"mail": {
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"internalAdmin": "http://localhost:62911",
|
"internalAdmin": "http://localhost:62911",
|
||||||
"internalIdentity": "http://localhost:33656",
|
"internalIdentity": "http://localhost:33656",
|
||||||
"internalApi": "http://localhost:4000",
|
"internalApi": "http://localhost:4000",
|
||||||
"internalVault": "http://localhost:4001",
|
"internalVault": "https://localhost:8080",
|
||||||
"internalSso": "http://localhost:51822"
|
"internalSso": "http://localhost:51822"
|
||||||
},
|
},
|
||||||
"mail": {
|
"mail": {
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"internalAdmin": "http://localhost:62911",
|
"internalAdmin": "http://localhost:62911",
|
||||||
"internalIdentity": "http://localhost:33656",
|
"internalIdentity": "http://localhost:33656",
|
||||||
"internalApi": "http://localhost:4000",
|
"internalApi": "http://localhost:4000",
|
||||||
"internalVault": "http://localhost:4001",
|
"internalVault": "https://localhost:8080",
|
||||||
"internalSso": "http://localhost:51822"
|
"internalSso": "http://localhost:51822"
|
||||||
},
|
},
|
||||||
"mail": {
|
"mail": {
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"internalAdmin": "http://localhost:62911",
|
"internalAdmin": "http://localhost:62911",
|
||||||
"internalIdentity": "http://localhost:33656",
|
"internalIdentity": "http://localhost:33656",
|
||||||
"internalApi": "http://localhost:4000",
|
"internalApi": "http://localhost:4000",
|
||||||
"internalVault": "http://localhost:4001",
|
"internalVault": "https://localhost:8080",
|
||||||
"internalSso": "http://localhost:51822"
|
"internalSso": "http://localhost:51822"
|
||||||
},
|
},
|
||||||
"events": {
|
"events": {
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"internalAdmin": "http://localhost:62911",
|
"internalAdmin": "http://localhost:62911",
|
||||||
"internalIdentity": "http://localhost:33656",
|
"internalIdentity": "http://localhost:33656",
|
||||||
"internalApi": "http://localhost:4000",
|
"internalApi": "http://localhost:4000",
|
||||||
"internalVault": "http://localhost:4001",
|
"internalVault": "https://localhost:8080",
|
||||||
"internalSso": "http://localhost:51822"
|
"internalSso": "http://localhost:51822"
|
||||||
},
|
},
|
||||||
"attachment": {
|
"attachment": {
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"internalAdmin": "http://localhost:62911",
|
"internalAdmin": "http://localhost:62911",
|
||||||
"internalIdentity": "http://localhost:33656",
|
"internalIdentity": "http://localhost:33656",
|
||||||
"internalApi": "http://localhost:4000",
|
"internalApi": "http://localhost:4000",
|
||||||
"internalVault": "http://localhost:4001",
|
"internalVault": "https://localhost:8080",
|
||||||
"internalSso": "http://localhost:51822"
|
"internalSso": "http://localhost:51822"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user