about summary refs log tree commit diff
path: root/LibMatrix/Filters/SyncFilter.cs
blob: c907f6b4f56cdac1ad36f55d0c9ed662d4f89e73 (plain) (blame)
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
using System.Text.Json.Serialization;

namespace LibMatrix.Filters;

public class SyncFilter {
    [JsonPropertyName("account_data")]
    public EventFilter? AccountData { get; set; }

    [JsonPropertyName("presence")]
    public EventFilter? Presence { get; set; }

    [JsonPropertyName("room")]
    public RoomFilter? Room { get; set; }

    public class RoomFilter {
        [JsonPropertyName("account_data")]
        public StateFilter? AccountData { get; set; }

        [JsonPropertyName("ephemeral")]
        public StateFilter? Ephemeral { get; set; }

        [JsonPropertyName("state")]
        public StateFilter? State { get; set; }

        [JsonPropertyName("timeline")]
        public StateFilter? Timeline { get; set; }


        public class StateFilter : EventFilter {
            [JsonPropertyName("contains_url")]
            public bool? ContainsUrl { get; set; }

            [JsonPropertyName("include_redundant_members")]
            public bool? IncludeRedundantMembers { get; set; }

            [JsonPropertyName("lazy_load_members")]
            public bool? LazyLoadMembers { get; set; }

            [JsonPropertyName("rooms")]
            public List<string>? Rooms { get; set; }

            [JsonPropertyName("not_rooms")]
            public List<string>? NotRooms { get; set; }

            [JsonPropertyName("unread_thread_notifications")]
            public bool? UnreadThreadNotifications { get; set; }
        }
    }

    public class EventFilter {
        [JsonPropertyName("limit")]
        public int? Limit { get; set; }

        [JsonPropertyName("types")]
        public List<string>? Types { get; set; }

        [JsonPropertyName("not_types")]
        public List<string>? NotTypes { get; set; }

        [JsonPropertyName("senders")]
        public List<string>? Senders { get; set; }

        [JsonPropertyName("not_senders")]
        public List<string>? NotSenders { get; set; }
    }
}