aboutsummaryrefslogtreecommitdiff
path: root/VNLib.Plugins.Essentials.Accounts.Admin/AccountAdminEntry.cs
blob: cd1978e9ffcd4196af88f5e50d829e9f56022fa1 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
* Copyright (c) 2022 Vaughn Nugent
* 
* Library: VNLib
* Package: VNLib.Plugins.Essentials.Accounts.Admin
* File: AccountAdminEntry.cs 
*
* AccountAdminEntry.cs is part of VNLib.Plugins.Essentials.Accounts.Admin which is part of the larger 
* VNLib collection of libraries and utilities.
*
* VNLib.Plugins.Essentials.Accounts.Admin is free software: you can redistribute it and/or modify 
* it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 2 of the License,
* or (at your option) any later version.
*
* VNLib.Plugins.Essentials.Accounts.Admin 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 
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License 
* along with VNLib.Plugins.Essentials.Accounts.Admin. If not, see http://www.gnu.org/licenses/.
*/

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);
        }
    }
}