mirror of https://github.com/abpframework/abp.git
committed by
GitHub
3 changed files with 64 additions and 2 deletions
@ -0,0 +1,35 @@ |
|||
using System; |
|||
using System.Linq; |
|||
using Microsoft.AspNetCore.Http; |
|||
using Microsoft.AspNetCore.Http.Extensions; |
|||
using Microsoft.AspNetCore.Routing; |
|||
using Microsoft.Extensions.Options; |
|||
|
|||
namespace Volo.Blogging; |
|||
|
|||
public class BloggingRouteConstraint : IRouteConstraint |
|||
{ |
|||
protected BloggingUrlOptions BloggingUrlOptions { get; } |
|||
|
|||
public BloggingRouteConstraint(IOptions<BloggingUrlOptions> bloggingUrlOptions) |
|||
{ |
|||
BloggingUrlOptions = bloggingUrlOptions.Value; |
|||
} |
|||
|
|||
public virtual bool Match(HttpContext httpContext, IRouter route, string routeKey, RouteValueDictionary values, RouteDirection routeDirection) |
|||
{ |
|||
if (BloggingUrlOptions.RoutePrefix != "/" || !BloggingUrlOptions.IgnoredPaths.Any()) |
|||
{ |
|||
return true; |
|||
} |
|||
|
|||
var displayUrl = httpContext.Request.GetDisplayUrl(); |
|||
|
|||
if (BloggingUrlOptions.IgnoredPaths.Any(path => displayUrl.Contains(path, StringComparison.InvariantCultureIgnoreCase))) |
|||
{ |
|||
return false; |
|||
} |
|||
|
|||
return true; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue