about summary refs log tree commit diff
path: root/LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-08-08 02:44:16 +0200
committerRory& <root@rory.gay>2024-08-08 02:44:16 +0200
commitbba7333ee6581a92bbbc7479d72325e704fe7fa6 (patch)
treebfbc301f5ee9c51a672534b7ec8eea64c71569c3 /LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses
parentSync storage (diff)
downloadLibMatrix-bba7333ee6581a92bbbc7479d72325e704fe7fa6.tar.xz
More synapse admin apis
Diffstat (limited to 'LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses')
-rw-r--r--LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses/AdminRoomListResult.cs (renamed from LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses/AdminRoomListingResult.cs)8
-rw-r--r--LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses/AdminUserListResult.cs58
-rw-r--r--LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses/SynapseAdminEventReportListResult.cs58
3 files changed, 120 insertions, 4 deletions
diff --git a/LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses/AdminRoomListingResult.cs b/LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses/AdminRoomListResult.cs
index 7ab96ac..c9d7e52 100644
--- a/LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses/AdminRoomListingResult.cs
+++ b/LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses/AdminRoomListResult.cs
@@ -1,8 +1,8 @@
 using System.Text.Json.Serialization;
 
-namespace LibMatrix.Responses.Admin;
+namespace LibMatrix.Homeservers.ImplementationDetails.Synapse.Models.Responses;
 
-public class AdminRoomListingResult {
+public class AdminRoomListResult {
     [JsonPropertyName("offset")]
     public int Offset { get; set; }
 
@@ -16,9 +16,9 @@ public class AdminRoomListingResult {
     public int? PrevBatch { get; set; }
 
     [JsonPropertyName("rooms")]
-    public List<AdminRoomListingResultRoom> Rooms { get; set; } = new();
+    public List<AdminRoomListResultRoom> Rooms { get; set; } = new();
 
-    public class AdminRoomListingResultRoom {
+    public class AdminRoomListResultRoom {
         [JsonPropertyName("room_id")]
         public required string RoomId { get; set; }
 
diff --git a/LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses/AdminUserListResult.cs b/LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses/AdminUserListResult.cs
new file mode 100644
index 0000000..9b0c481
--- /dev/null
+++ b/LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses/AdminUserListResult.cs
@@ -0,0 +1,58 @@
+using System.Text.Json.Serialization;
+
+namespace LibMatrix.Homeservers.ImplementationDetails.Synapse.Models.Responses;
+
+public class AdminUserListResult {
+    [JsonPropertyName("offset")]
+    public int Offset { get; set; }
+
+    [JsonPropertyName("total")]
+    public int Total { get; set; }
+
+    [JsonPropertyName("next_token")]
+    public string? NextToken { get; set; }
+
+    [JsonPropertyName("users")]
+    public List<AdminUserListResultUser> Users { get; set; } = new();
+
+    public class AdminUserListResultUser {
+        [JsonPropertyName("name")]
+        public string Name { get; set; }
+
+        [JsonPropertyName("is_guest")]
+        public bool? IsGuest { get; set; }
+
+        [JsonPropertyName("admin")]
+        public bool? Admin { get; set; }
+
+        [JsonPropertyName("user_type")]
+        public string? UserType { get; set; }
+
+        [JsonPropertyName("deactivated")]
+        public bool Deactivated { get; set; }
+
+        [JsonPropertyName("erased")]
+        public bool Erased { get; set; }
+
+        [JsonPropertyName("shadow_banned")]
+        public bool ShadowBanned { get; set; }
+
+        [JsonPropertyName("displayname")]
+        public string? DisplayName { get; set; }
+
+        [JsonPropertyName("avatar_url")]
+        public string? AvatarUrl { get; set; }
+
+        [JsonPropertyName("creation_ts")]
+        public long CreationTs { get; set; }
+
+        [JsonPropertyName("last_seen_ts")]
+        public long? LastSeenTs { get; set; }
+
+        [JsonPropertyName("locked")]
+        public bool Locked { get; set; }
+
+        [JsonPropertyName("approved")]
+        public bool Approved { get; set; }
+    }
+}
\ No newline at end of file
diff --git a/LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses/SynapseAdminEventReportListResult.cs b/LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses/SynapseAdminEventReportListResult.cs
new file mode 100644
index 0000000..030108a
--- /dev/null
+++ b/LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses/SynapseAdminEventReportListResult.cs
@@ -0,0 +1,58 @@
+using System.Text.Json.Serialization;
+
+namespace LibMatrix.Homeservers.ImplementationDetails.Synapse.Models.Responses;
+
+public class SynapseAdminEventReportListResult {
+    [JsonPropertyName("offset")]
+    public int Offset { get; set; }
+
+    [JsonPropertyName("total")]
+    public int Total { get; set; }
+
+    [JsonPropertyName("next_token")]
+    public string? NextToken { get; set; }
+
+    [JsonPropertyName("event_reports")]
+    public List<SynapseAdminEventReportListResultReport> Reports { get; set; } = new();
+
+    public class SynapseAdminEventReportListResultReport {
+        [JsonPropertyName("name")]
+        public string Name { get; set; }
+
+        [JsonPropertyName("is_guest")]
+        public bool? IsGuest { get; set; }
+
+        [JsonPropertyName("admin")]
+        public bool? Admin { get; set; }
+
+        [JsonPropertyName("user_type")]
+        public string? UserType { get; set; }
+
+        [JsonPropertyName("deactivated")]
+        public bool Deactivated { get; set; }
+
+        [JsonPropertyName("erased")]
+        public bool Erased { get; set; }
+
+        [JsonPropertyName("shadow_banned")]
+        public bool ShadowBanned { get; set; }
+
+        [JsonPropertyName("displayname")]
+        public string? DisplayName { get; set; }
+
+        [JsonPropertyName("avatar_url")]
+        public string? AvatarUrl { get; set; }
+
+        [JsonPropertyName("creation_ts")]
+        public long CreationTs { get; set; }
+
+        [JsonPropertyName("last_seen_ts")]
+        public long? LastSeenTs { get; set; }
+
+        [JsonPropertyName("locked")]
+        public bool Locked { get; set; }
+
+        [JsonPropertyName("approved")]
+        public bool Approved { get; set; }
+    }
+}
\ No newline at end of file