■ RoutingEndpointConventionBuilderExtensions 클래스의 WithMetadata<T> 확장 메소드를 사용해 엔드포인트를 감사하는 방법을 보여준다. (audit)
▶ AuditPolicyAttribute.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
using System; namespace TestProject { /// <summary> /// 감사 정책 어트리뷰트 /// </summary> public class AuditPolicyAttribute : Attribute { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 감사 필요 여부 - NeedsAudit /// <summary> /// 감사 필요 여부 /// </summary> public bool NeedsAudit { get; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - AuditPolicyAttribute(needsAudit) /// <summary> /// 생성자 /// </summary> /// <param name="needsAudit">감사 필요 여부</param> public AuditPolicyAttribute(bool needsAudit) { NeedsAudit = needsAudit; } #endregion } } |
▶ Startup.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Routing; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using System; namespace TestProject { /// <summary> /// 시작 /// </summary> public class Startup { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 구성 - Configuration /// <summary> /// 구성 /// </summary> public IConfiguration Configuration { get; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - Startup(configuration) /// <summary> /// 생성자 /// </summary> /// <param name="configuration">구성</param> public Startup(IConfiguration configuration) { Configuration = configuration; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Public #region 서비스 컬렉션 구성하기 - ConfigureServices(services) /// <summary> /// 서비스 컬렉션 구성하기 /// </summary> /// <param name="services">서비스 컬렉션</param> public void ConfigureServices(IServiceCollection services) { services.AddControllersWithViews(); } #endregion #region 구성하기 - Configure(app, environment) /// <summary> /// 구성하기 /// </summary> /// <param name="app">애플리케이션 빌더</param> /// <param name="environment">웹 호스트 환경</param> public void Configure(IApplicationBuilder app, IWebHostEnvironment environment) { if(environment.IsDevelopment()) { app.UseDeveloperExceptionPage(); } // 위치 1 : 라우팅 실행 전. 라우팅이 실행되기 전에 요청에 영향을 미칠 수 있다. app.UseHttpMethodOverride(); app.UseRouting(); // 위치 2 : 라우팅 실행 후. 미들웨어는 메타 데이터를 기반으로 일치시킬 수 있다. app.Use ( next => context => { Endpoint endpoint = context.GetEndpoint(); if(endpoint?.Metadata.GetMetadata<AuditPolicyAttribute>()?.NeedsAudit == true) { Console.WriteLine($"ACCESS TO SENSITIVE DATA AT : {DateTime.UtcNow}"); } return next(context); } ); app.UseEndpoints ( endpoints => { endpoints.MapGet ( "/", async context => { await context.Response.WriteAsync("Hello world!"); } ); // 메타 데이터를 사용하여 감사 정책을 구성한다. endpoints.MapGet ( "/sensitive", async context => { await context.Response.WriteAsync("sensitive data"); } ) .WithMetadata(new AuditPolicyAttribute(needsAudit : true)); } ); } #endregion } } |