aboutsummaryrefslogtreecommitdiff
path: root/back-end/src/SimpleBookmarkEntry.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-02-02 21:14:19 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2024-02-02 21:14:19 -0500
commit52645b724834e669788a45edb9d135f243432540 (patch)
tree56a5ea56fdf339f00934b3e4cd88212ea3608b29 /back-end/src/SimpleBookmarkEntry.cs
parentdd5e5164262c5ff7ecf6db1003d41d81e6364c09 (diff)
download file formats, button tweaks, more cache infra
Diffstat (limited to 'back-end/src/SimpleBookmarkEntry.cs')
-rw-r--r--back-end/src/SimpleBookmarkEntry.cs45
1 files changed, 44 insertions, 1 deletions
diff --git a/back-end/src/SimpleBookmarkEntry.cs b/back-end/src/SimpleBookmarkEntry.cs
index d44aacb..48fcb2a 100644
--- a/back-end/src/SimpleBookmarkEntry.cs
+++ b/back-end/src/SimpleBookmarkEntry.cs
@@ -22,6 +22,9 @@
*/
using System;
+using System.Linq;
+using System.Text;
+using System.Text.Json;
using VNLib.Plugins;
using VNLib.Utils.Logging;
@@ -37,6 +40,7 @@ namespace SimpleBookmark
public sealed class SimpleBookmarkEntry : PluginBase
{
+
///<inheritdoc/>
public override string PluginName { get; } = "SimpleBookmark";
@@ -49,7 +53,8 @@ namespace SimpleBookmark
//Ensure database is created after a delay
this.ObserveWork(() => this.EnsureDbCreatedAsync<SimpleBookmarkContext>(this), 1000);
- Log.Information("Plugin loaded");
+ Log.Information("Plugin Loaded");
+ PrintHelloMessage();
}
///<inheritdoc/>
@@ -62,5 +67,43 @@ namespace SimpleBookmark
{
throw new NotImplementedException();
}
+
+ private void PrintHelloMessage()
+ {
+ const string template =
+@"
+******************************************************************************
+ Simple-Bookmark - A linkding inspired, self hosted, bookmark manager
+ By Vaughn Nugent - vnpublic @proton.me
+ https://www.vaughnnugent.com/resources/software
+ License: GNU Affero General Public License v3.0
+ This application comes with ABSOLUTELY NO WARRANTY.
+
+ Documentation: https://www.vaughnnugent.com/resources/software/articles?tags=docs,_simple-bookmark
+ GitHub: https://github.com/VnUgE/simple-bookmark
+
+ Your server is now running at the following locations:{0}
+******************************************************************************";
+
+ string[] interfaces = HostConfig.GetProperty("virtual_hosts")
+ .EnumerateArray()
+ .Select(e =>
+ {
+ JsonElement el = e.GetProperty("interface");
+ string ipAddress = el.GetProperty("address").GetString()!;
+ int port = el.GetProperty("port").GetInt32();
+ return $"{ipAddress}:{port}";
+ })
+ .ToArray();
+
+ StringBuilder sb = new();
+ foreach (string intf in interfaces)
+ {
+ sb.Append("\n\t");
+ sb.AppendLine(intf);
+ }
+
+ Log.Information(template, sb);
+ }
}
}