aboutsummaryrefslogtreecommitdiff
path: root/back-end/src/SimpleBookmarkEntry.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-01-20 23:49:29 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2024-01-20 23:49:29 -0500
commit6cb7da37824d02a1898d08d0f9495c77fde4dd1d (patch)
tree95e37ea3c20f416d6a205ee4ab050c307b18eafe /back-end/src/SimpleBookmarkEntry.cs
inital commit
Diffstat (limited to 'back-end/src/SimpleBookmarkEntry.cs')
-rw-r--r--back-end/src/SimpleBookmarkEntry.cs66
1 files changed, 66 insertions, 0 deletions
diff --git a/back-end/src/SimpleBookmarkEntry.cs b/back-end/src/SimpleBookmarkEntry.cs
new file mode 100644
index 0000000..d44aacb
--- /dev/null
+++ b/back-end/src/SimpleBookmarkEntry.cs
@@ -0,0 +1,66 @@
+// Copyright (C) 2024 Vaughn Nugent
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Affero General Public License as
+// published by the Free Software Foundation, either version 3 of the
+// License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Affero General Public License for more details.
+//
+// You should have received a copy of the GNU Affero General Public License
+// along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+/*
+ * This class/file is the entrypoint for all VNLib.Plugins.Essentials
+ * projects. It is dynamically loaded by the VNLib.Plugins.Runtime in a
+ * webserver environment. Some helper libraries are provided to make
+ * development easier such as VNLib.Plugins.Extensions.Loading and
+ * VNLib.Plugins.Extensions.Loading.Sql.
+ */
+
+using System;
+
+using VNLib.Plugins;
+using VNLib.Utils.Logging;
+using VNLib.Plugins.Extensions.Loading;
+using VNLib.Plugins.Extensions.Loading.Sql;
+using VNLib.Plugins.Extensions.Loading.Routing;
+
+using SimpleBookmark.Model;
+using SimpleBookmark.Endpoints;
+
+namespace SimpleBookmark
+{
+
+ public sealed class SimpleBookmarkEntry : PluginBase
+ {
+ ///<inheritdoc/>
+ public override string PluginName { get; } = "SimpleBookmark";
+
+ ///<inheritdoc/>
+ protected override void OnLoad()
+ {
+ //route the bm endpoint
+ this.Route<BookmarkEndpoint>();
+
+ //Ensure database is created after a delay
+ this.ObserveWork(() => this.EnsureDbCreatedAsync<SimpleBookmarkContext>(this), 1000);
+
+ Log.Information("Plugin loaded");
+ }
+
+ ///<inheritdoc/>
+ protected override void OnUnLoad()
+ {
+ Log.Information("Plugin unloaded");
+ }
+
+ protected override void ProcessHostCommand(string cmd)
+ {
+ throw new NotImplementedException();
+ }
+ }
+}