about summary refs log tree commit diff
path: root/ExampleBots/MediaModeratorPoC/StateEventTypes/BasePolicy.cs
diff options
context:
space:
mode:
authorEmma [it/its]@Rory& <root@rory.gay>2023-11-23 05:42:33 +0100
committerEmma [it/its]@Rory& <root@rory.gay>2023-11-23 05:42:33 +0100
commit3e934eee892f69a8f78b94950993000522702769 (patch)
tree6aa0d3d26c9a07a7a3e097fe28abb785400bfbd6 /ExampleBots/MediaModeratorPoC/StateEventTypes/BasePolicy.cs
parentAdd license retroactively, matching where the code originated from (MatrixRoo... (diff)
downloadLibMatrix-3e934eee892f69a8f78b94950993000522702769.tar.xz
Moderation bot work
Diffstat (limited to 'ExampleBots/MediaModeratorPoC/StateEventTypes/BasePolicy.cs')
-rw-r--r--ExampleBots/MediaModeratorPoC/StateEventTypes/BasePolicy.cs43
1 files changed, 0 insertions, 43 deletions
diff --git a/ExampleBots/MediaModeratorPoC/StateEventTypes/BasePolicy.cs b/ExampleBots/MediaModeratorPoC/StateEventTypes/BasePolicy.cs
deleted file mode 100644
index 7735314..0000000
--- a/ExampleBots/MediaModeratorPoC/StateEventTypes/BasePolicy.cs
+++ /dev/null
@@ -1,43 +0,0 @@
-using System.ComponentModel.DataAnnotations;
-using System.Text.Json.Serialization;
-using LibMatrix;
-using LibMatrix.Interfaces;
-
-namespace MediaModeratorPoC.StateEventTypes;
-
-public abstract class BasePolicy : EventContent {
-    /// <summary>
-    ///     Entity this policy applies to
-    /// </summary>
-    [JsonPropertyName("entity")]
-    public string Entity { get; set; }
-
-    /// <summary>
-    ///     Reason this policy exists
-    /// </summary>
-    [JsonPropertyName("reason")]
-    public string? Reason { get; set; }
-
-    /// <summary>
-    ///     Suggested action to take, one of `ban`, `kick`, `mute`, `redact`, `spoiler`, `warn` or `warn_admins`
-    /// </summary>
-    [JsonPropertyName("recommendation")]
-    [AllowedValues("ban", "kick", "mute", "redact", "spoiler", "warn", "warn_admins")]
-    public string Recommendation { get; set; } = "warn";
-
-    /// <summary>
-    ///     Expiry time in milliseconds since the unix epoch, or null if the ban has no expiry.
-    /// </summary>
-    [JsonPropertyName("support.feline.policy.expiry.rev.2")] //stable prefix: expiry, msc pending
-    public long? Expiry { get; set; }
-
-    //utils
-    /// <summary>
-    ///     Readable expiry time, provided for easy interaction
-    /// </summary>
-    [JsonPropertyName("gay.rory.matrix_room_utils.readable_expiry_time_utc")]
-    public DateTime? ExpiryDateTime {
-        get => Expiry == null ? null : DateTimeOffset.FromUnixTimeMilliseconds(Expiry.Value).DateTime;
-        set => Expiry = value is null ? null : ((DateTimeOffset)value).ToUnixTimeMilliseconds();
-    }
-}