aboutsummaryrefslogtreecommitdiff
path: root/VNLib.Plugins.Essentials.Accounts.Admin/AccountAdminEntry.cs
blob: 008307ce33a4f54f58cc8e9b889c745028d5a022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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);
        }
    }
}