Fixing issues with the route preprocess and postprocess events.

This commit is contained in:
MattMo 2022-02-19 22:23:26 -08:00
parent bf254489b8
commit fcbaaf133c
2 changed files with 21 additions and 20 deletions

View File

@ -14,7 +14,7 @@
<AssemblyName>MontoyaTech.Rest.Net</AssemblyName>
<RootNamespace>MontoyaTech.Rest.Net</RootNamespace>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Version>1.0.5</Version>
<Version>1.0.6</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json">

View File

@ -114,23 +114,24 @@ namespace MontoyaTech.Rest.Net
bool handled = false;
bool close = true;
string[] arguments = null;
for (int i = 0; i < this.Routes.Count; i++)
var context = new RouteContext(ctx.Request, ctx.Response);
//Preprocess the route context, if it returns false, then we have to not invoke the route.
try
{
if (this.PreprocessEvent != null && !this.PreprocessEvent.Invoke(context))
handled = true;
}
catch { }
for (int i = 0; i < this.Routes.Count && !handled; i++)
{
if (this.Routes[i].Method.ToUpper() == ctx.Request.HttpMethod.ToUpper() && RouteMatcher.Matches(ctx.Request.Url.AbsolutePath, this.Routes[i].Syntax, out arguments))
{
handled = true;
close = this.Routes[i].CloseResponse;
var context = new RouteContext(ctx.Request, ctx.Response);
//Preprocess the route context, if it returns false, then we have to not invoke the route.
try
{
if (this.PreprocessEvent != null && !this.PreprocessEvent.Invoke(context))
break;
}
catch { }
//Make sure if the route fails we don't die here, just set the response to internal server error.
try
{
@ -141,18 +142,18 @@ namespace MontoyaTech.Rest.Net
ctx.Response.WithStatus(HttpStatusCode.InternalServerError);
}
//Post process the route context.
try
{
if (this.PostprocessEvent != null)
this.PostprocessEvent.Invoke(context);
}
catch { }
break;
}
}
//Post process the route context.
try
{
if (this.PostprocessEvent != null)
this.PostprocessEvent.Invoke(context);
}
catch { }
if (!handled)
ctx.Response.WithStatus(HttpStatusCode.BadRequest);