aboutsummaryrefslogtreecommitdiff
path: root/VNLib.Plugins.Essentials.Accounts.Admin/AccountAdminEntry.cs
diff options
context:
space:
mode:
Diffstat (limited to 'VNLib.Plugins.Essentials.Accounts.Admin/AccountAdminEntry.cs')
-rw-r--r--VNLib.Plugins.Essentials.Accounts.Admin/AccountAdminEntry.cs67
1 files changed, 67 insertions, 0 deletions
diff --git a/VNLib.Plugins.Essentials.Accounts.Admin/AccountAdminEntry.cs b/VNLib.Plugins.Essentials.Accounts.Admin/AccountAdminEntry.cs
new file mode 100644
index 0000000..008307c
--- /dev/null
+++ b/VNLib.Plugins.Essentials.Accounts.Admin/AccountAdminEntry.cs
@@ -0,0 +1,67 @@
+using System;
+using System.Text.Json;
+using System.Runtime.CompilerServices;
+
+using VNLib.Utils.Logging;
+using VNLib.Plugins.Essentials.Sessions;
+
+namespace VNLib.Plugins.Essentials.Accounts.Admin
+{
+
+ internal static class Constants
+ {
+ public const ushort ADMIN_GROUP_ID = 0x1fff;
+ [Flags]
+ enum AdminLevelMask
+ {
+
+ }
+ /// <summary>
+ /// Determines if the current session belongs to an admin account
+ /// </summary>
+ /// <param name="session"></param>
+ /// <returns>True if the current user has administrator permissions</returns>
+ [MethodImpl(MethodImplOptions.AggressiveInlining)]
+ public static bool IsAdmin(this in SessionInfo session) => session.HasGroup(ADMIN_GROUP_ID);
+
+ /// <summary>
+ /// Gets the plugin config local-only flag
+ /// </summary>
+ /// <param name="plugin"></param>
+ /// <returns>True if the config demands all requests happen on the local network only</returns>
+ public static bool LocalOnlyEnabled(this PluginBase plugin)
+ {
+ return plugin.PluginConfig.TryGetProperty("local_only", out JsonElement el) && el.GetBoolean();
+ }
+ }
+
+ public sealed class AccountAdminEntry : PluginBase
+ {
+ public override string PluginName => "Essentials.Admin";
+
+ protected override void OnLoad()
+ {
+ try
+ {
+
+ }
+ catch (KeyNotFoundException knf)
+ {
+ Log.Error("Missing required account configuration variables {mess}", knf.Message);
+ return;
+ }
+ //Write loaded to log
+ Log.Information("Plugin loaded");
+ }
+
+ protected override void OnUnLoad()
+ {
+ Log.Information("Plugin unloaded");
+ }
+
+ protected override void ProcessHostCommand(string cmd)
+ {
+ Log.Debug(cmd);
+ }
+ }
+} \ No newline at end of file