about summary refs log tree commit diff
path: root/LibMatrix.EventTypes/MatrixEventContent.cs
diff options
context:
space:
mode:
authorEmma [it/its]@Rory& <root@rory.gay>2024-06-01 19:02:28 +0200
committerEmma [it/its]@Rory& <root@rory.gay>2024-06-01 19:03:05 +0200
commita129b321998614b20e4ebb8a7c1632553ebee981 (patch)
treef4e16f7b1bbeffc21e81f8749e4980994242ff19 /LibMatrix.EventTypes/MatrixEventContent.cs
parentEvent serialisation fix (diff)
downloadLibMatrix-a129b321998614b20e4ebb8a7c1632553ebee981.tar.xz
Split event abstractions
Diffstat (limited to 'LibMatrix.EventTypes/MatrixEventContent.cs')
-rw-r--r--LibMatrix.EventTypes/MatrixEventContent.cs60
1 files changed, 0 insertions, 60 deletions
diff --git a/LibMatrix.EventTypes/MatrixEventContent.cs b/LibMatrix.EventTypes/MatrixEventContent.cs
deleted file mode 100644
index 81b8c52..0000000
--- a/LibMatrix.EventTypes/MatrixEventContent.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-using System.Reflection;
-using System.Text.Json;
-using System.Text.Json.Nodes;
-using System.Text.Json.Serialization;
-using ArcaneLibs.Extensions;
-
-namespace LibMatrix.EventTypes;
-
-// <T> : MatrixEventContent where T : MatrixEventContent<T>, new() {
-/// <summary>
-///     Extensible Event Content, aims to provide an API similar to JsonNode/JsonObject
-///     <seealso cref="System.Text.Json.Nodes.JsonNode"/>
-///     <seealso cref="System.Text.Json.Nodes.JsonObject"/>
-/// </summary>
-[JsonConverter(typeof(MatrixEventContentConverter<MatrixEventContent>))]
-public class MatrixEventContent {
-
-    [JsonExtensionData, JsonInclude]
-    public JsonObject InternalJson { get; set; } = new();
-
-    
-
-    public MatrixEventContent() { }
-
-    public MatrixEventContent(JsonNode json) {
-        InternalJson = json.AsObject();
-    }
-
-    public static implicit operator MatrixEventContent(JsonNode json) => new(json);
-
-    // public static implicit operator JsonNode(MatrixEventContent content) => content.InternalJson;
-
-    [JsonIgnore]
-    public IEnumerable<string> EventTypes => this.GetType().GetCustomAttributes<MatrixEventAttribute>().Select(x => x.EventType);
-
-    [JsonIgnore]
-    public string EventType => EventTypes.First();
-
-    public JsonNode? this[string key] => InternalJson[key];
-    
-    public string ToJson() => InternalJson.ToJson();
-
-
-    public class MatrixEventContentConverter<T> : JsonConverter<T> where T : MatrixEventContent, new() {
-        public override T? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) {
-            // read entire object into a JsonObject
-            var json = JsonNode.Parse(ref reader);
-            return new T { InternalJson = json.AsObject() };
-        }
-
-        public override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options) {
-            value.InternalJson.WriteTo(writer);
-        }
-    }
-}
-
-public class MatrixEventAttribute(string eventType, bool deprecated = false) : Attribute {
-    public string EventType { get; } = eventType;
-    public bool Deprecated { get; } = deprecated;
-}
\ No newline at end of file