aboutsummaryrefslogtreecommitdiff
path: root/VNLib.Plugins.Essentials.Accounts.Admin/Endpoints/UsersEndpoint.cs
diff options
context:
space:
mode:
Diffstat (limited to 'VNLib.Plugins.Essentials.Accounts.Admin/Endpoints/UsersEndpoint.cs')
-rw-r--r--VNLib.Plugins.Essentials.Accounts.Admin/Endpoints/UsersEndpoint.cs77
1 files changed, 77 insertions, 0 deletions
diff --git a/VNLib.Plugins.Essentials.Accounts.Admin/Endpoints/UsersEndpoint.cs b/VNLib.Plugins.Essentials.Accounts.Admin/Endpoints/UsersEndpoint.cs
new file mode 100644
index 0000000..9f29a29
--- /dev/null
+++ b/VNLib.Plugins.Essentials.Accounts.Admin/Endpoints/UsersEndpoint.cs
@@ -0,0 +1,77 @@
+using System;
+using System.Linq;
+using System.Net;
+using System.Text.Json;
+
+using VNLib.Utils;
+using VNLib.Plugins.Essentials.Users;
+using VNLib.Plugins.Essentials.Extensions;
+using VNLib.Plugins.Essentials.Accounts.Admin.Model;
+using VNLib.Plugins.Extensions.Data;
+using VNLib.Plugins.Extensions.Loading.Sql;
+using VNLib.Plugins.Extensions.Loading.Users;
+using VNLib.Plugins.Essentials.Accounts.Admin.Helpers;
+using VNLib.Plugins.Extensions.Loading;
+
+namespace VNLib.Plugins.Essentials.Accounts.Admin.Endpoints
+{
+ [ConfigurationName("users")]
+ internal class UsersEndpoint : LocalNetworkProtectedEndpoint
+ {
+
+ readonly IUserManager Manager;
+ readonly UserStore UserStore;
+
+ public UsersEndpoint(PluginBase plugin, Dictionary<string, JsonElement> config)
+ {
+ this.LocalOnly = plugin.LocalOnlyEnabled();
+ string? path = config["path"].GetString();
+ //Store user-manager
+ Manager = plugin.GetUserManager();
+ //Create the indirect user context store
+ UserStore = new(plugin.GetContextOptions());
+
+ InitPathAndLog(path, plugin.Log);
+ }
+
+
+ protected override ERRNO PreProccess(HttpEntity entity)
+ {
+ return base.PreProccess(entity) && entity.Session.IsAdmin();
+ }
+
+ protected override async ValueTask<VfReturnType> GetAsync(HttpEntity entity)
+ {
+ //Get single account
+ if(entity.QueryArgs.TryGetNonEmptyValue("id", out string? userId))
+ {
+ //Load account
+ using IUser? user = await Manager.GetUserFromIDAsync(userId);
+ AccountData? acc = user?.GetProfile();
+ //If account not found, return 404
+ if(acc == null)
+ {
+ entity.CloseResponse(HttpStatusCode.NotFound);
+ }
+ else
+ {
+ entity.CloseResponseJson(HttpStatusCode.OK, acc);
+ }
+ }
+ else
+ {
+ //Get a user page
+ int page = entity.QueryArgs.GetPageOrDefault(0);
+ int limit = entity.QueryArgs.GetLimitOrDefault(50, 0, 200);
+ //Rent list and get the requested page
+ List<User> rental = UserStore.ListRental.Rent();
+ _ = await UserStore.GetPageAsync(rental, page, limit);
+ //Set response
+ entity.CloseResponseJson(HttpStatusCode.OK, rental);
+ //Return list to store
+ UserStore.ListRental.Return(rental);
+ }
+ return VfReturnType.VirtualSkip;
+ }
+ }
+}