jackfiled
a483ddc671
All checks were successful
Build blog docker image / Build-Blog-Image (push) Successful in 3m57s
Reviewed-on: #3
35 lines
1.4 KiB
C#
35 lines
1.4 KiB
C#
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using YaeBlog.Core.Abstractions;
|
|
using YaeBlog.Core.Processors;
|
|
using YaeBlog.Core.Services;
|
|
|
|
namespace YaeBlog.Core.Extensions;
|
|
|
|
public static class WebApplicationExtensions
|
|
{
|
|
public static void UseYaeBlog(this WebApplication application)
|
|
{
|
|
application.UsePostRenderProcessor<ImagePostRenderProcessor>();
|
|
application.UsePostRenderProcessor<CodeBlockPostRenderProcessor>();
|
|
application.UsePostRenderProcessor<TablePostRenderProcessor>();
|
|
application.UsePostRenderProcessor<HeadlinePostRenderProcessor>();
|
|
}
|
|
|
|
private static void UsePreRenderProcessor<T>(this WebApplication application) where T : IPreRenderProcessor
|
|
{
|
|
RendererService rendererService = application.Services.GetRequiredService<RendererService>();
|
|
T preRenderProcessor = application.Services.GetRequiredService<T>();
|
|
|
|
rendererService.AddPreRenderProcessor(preRenderProcessor);
|
|
}
|
|
|
|
private static void UsePostRenderProcessor<T>(this WebApplication application) where T : IPostRenderProcessor
|
|
{
|
|
RendererService rendererService = application.Services.GetRequiredService<RendererService>();
|
|
T postRenderProcessor = application.Services.GetRequiredService<T>();
|
|
|
|
rendererService.AddPostRenderProcessor(postRenderProcessor);
|
|
}
|
|
}
|