mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
Filled custom error handling gaps for SSO (#922)
* Filled custom error handling gaps for SSO * Removed explicit logger from HomeController
This commit is contained in:
parent
55e0f82139
commit
1c3ba46246
@ -4,6 +4,8 @@ using Microsoft.AspNetCore.Authorization;
|
|||||||
using IdentityServer4.Services;
|
using IdentityServer4.Services;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Bit.Sso.Models;
|
using Bit.Sso.Models;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using Microsoft.AspNetCore.Diagnostics;
|
||||||
|
|
||||||
namespace Bit.Sso.Controllers
|
namespace Bit.Sso.Controllers
|
||||||
{
|
{
|
||||||
@ -24,18 +26,38 @@ namespace Bit.Sso.Controllers
|
|||||||
return DateTime.UtcNow;
|
return DateTime.UtcNow;
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("~/Error")]
|
[Route("~/Error")]
|
||||||
[HttpGet("~/Home/Error")]
|
[Route("~/Home/Error")]
|
||||||
|
[AllowAnonymous]
|
||||||
public async Task<IActionResult> Error(string errorId)
|
public async Task<IActionResult> Error(string errorId)
|
||||||
{
|
{
|
||||||
var vm = new ErrorViewModel();
|
var vm = new ErrorViewModel();
|
||||||
|
|
||||||
// retrieve error details from identityserver
|
// retrieve error details from identityserver
|
||||||
var message = await _interaction.GetErrorContextAsync(errorId);
|
var message = string.IsNullOrWhiteSpace(errorId) ? null :
|
||||||
|
await _interaction.GetErrorContextAsync(errorId);
|
||||||
if (message != null)
|
if (message != null)
|
||||||
{
|
{
|
||||||
vm.Error = message;
|
vm.Error = message;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
vm.RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier;
|
||||||
|
var exceptionHandlerPathFeature = HttpContext.Features.Get<IExceptionHandlerPathFeature>();
|
||||||
|
var exception = exceptionHandlerPathFeature?.Error;
|
||||||
|
if (exception is InvalidOperationException opEx && opEx.Message.Contains("schemes are: "))
|
||||||
|
{
|
||||||
|
// Messages coming from aspnetcore with a message
|
||||||
|
// similar to "The registered sign-in schemes are: {schemes}."
|
||||||
|
// will expose other Org IDs and sign-in schemes enabled on
|
||||||
|
// the server. These errors should be truncated to just the
|
||||||
|
// scheme impacted (always the first sentence)
|
||||||
|
var cleanupPoint = opEx.Message.IndexOf(". ") + 1;
|
||||||
|
var exMessage = opEx.Message.Substring(0, cleanupPoint);
|
||||||
|
exception = new InvalidOperationException(exMessage, opEx);
|
||||||
|
}
|
||||||
|
vm.Exception = exception;
|
||||||
|
}
|
||||||
|
|
||||||
return View("Error", vm);
|
return View("Error", vm);
|
||||||
}
|
}
|
||||||
|
@ -5,11 +5,24 @@ namespace Bit.Sso.Models
|
|||||||
{
|
{
|
||||||
public class ErrorViewModel
|
public class ErrorViewModel
|
||||||
{
|
{
|
||||||
|
private string _requestId;
|
||||||
|
|
||||||
public ErrorMessage Error { get; set; }
|
public ErrorMessage Error { get; set; }
|
||||||
|
public Exception Exception { get; set; }
|
||||||
|
|
||||||
public string Message => Error?.Error;
|
public string Message => Error?.Error;
|
||||||
public string Description => Error?.ErrorDescription;
|
public string Description => Error?.ErrorDescription ?? Exception?.Message;
|
||||||
public string RequestId => Error?.RequestId;
|
|
||||||
public string RedirectUri => Error?.RedirectUri;
|
public string RedirectUri => Error?.RedirectUri;
|
||||||
|
public string RequestId
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return Error?.RequestId ?? _requestId;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
_requestId = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -79,8 +79,11 @@ namespace Bit.Sso
|
|||||||
IHostApplicationLifetime appLifetime,
|
IHostApplicationLifetime appLifetime,
|
||||||
GlobalSettings globalSettings,
|
GlobalSettings globalSettings,
|
||||||
ILogger<Startup> logger)
|
ILogger<Startup> logger)
|
||||||
|
{
|
||||||
|
if (env.IsDevelopment() || globalSettings.SelfHosted)
|
||||||
{
|
{
|
||||||
IdentityModelEventSource.ShowPII = true;
|
IdentityModelEventSource.ShowPII = true;
|
||||||
|
}
|
||||||
|
|
||||||
app.UseSerilog(env, appLifetime, globalSettings);
|
app.UseSerilog(env, appLifetime, globalSettings);
|
||||||
|
|
||||||
@ -101,6 +104,10 @@ namespace Bit.Sso
|
|||||||
app.UseDeveloperExceptionPage();
|
app.UseDeveloperExceptionPage();
|
||||||
app.UseCookiePolicy();
|
app.UseCookiePolicy();
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
app.UseExceptionHandler("/Error");
|
||||||
|
}
|
||||||
|
|
||||||
app.UseCoreLocalization();
|
app.UseCoreLocalization();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user