aboutsummaryrefslogtreecommitdiff
path: root/plugins/VNLib.Plugins.Essentials.Content.Routing/src/PageRouterEntry.cs
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/VNLib.Plugins.Essentials.Content.Routing/src/PageRouterEntry.cs')
-rw-r--r--plugins/VNLib.Plugins.Essentials.Content.Routing/src/PageRouterEntry.cs31
1 files changed, 16 insertions, 15 deletions
diff --git a/plugins/VNLib.Plugins.Essentials.Content.Routing/src/PageRouterEntry.cs b/plugins/VNLib.Plugins.Essentials.Content.Routing/src/PageRouterEntry.cs
index 10b7075..0c04047 100644
--- a/plugins/VNLib.Plugins.Essentials.Content.Routing/src/PageRouterEntry.cs
+++ b/plugins/VNLib.Plugins.Essentials.Content.Routing/src/PageRouterEntry.cs
@@ -1,5 +1,5 @@
/*
-* Copyright (c) 2022 Vaughn Nugent
+* Copyright (c) 2023 Vaughn Nugent
*
* Library: VNLib
* Package: VNLib.Plugins.Essentials.Content.Routing
@@ -23,32 +23,33 @@
*/
using System;
-using System.Threading.Tasks;
-using System.Collections.Generic;
+using System.ComponentModel.Design;
using VNLib.Utils.Logging;
+using VNLib.Plugins.Attributes;
+using VNLib.Plugins.Extensions.Loading;
+
namespace VNLib.Plugins.Essentials.Content.Routing
{
- public sealed class PageRouterEntry : PluginBase, IPageRouter
+ public sealed class PageRouterEntry : PluginBase
{
public override string PluginName => "Essentials.Router";
private Router PageRouter;
- public ValueTask<FileProcessArgs> RouteAsync(HttpEntity entity) => PageRouter.RouteAsync(entity);
+
+ [ServiceConfigurator]
+ public void ConfigureServices(IServiceContainer services)
+ {
+ //Deploy the page router to the host
+ services.AddService(typeof(IPageRouter), PageRouter);
+ }
protected override void OnLoad()
{
- try
- {
- //Init router
- PageRouter = new(this);
- Log.Information("Plugin loaded");
- }
- catch (KeyNotFoundException knf)
- {
- Log.Error("Plugin failed to load, missing required configuration variables {err}", knf.Message);
- }
+ //Init router
+ PageRouter = this.GetOrCreateSingleton<Router>();
+ Log.Information("Plugin loaded");
}
protected override void OnUnLoad()