about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Pages/Rooms/PolicyList.razor
blob: adedbd30ecf180b98355bcc3b4f5dcc3aafbf41e (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
@page "/Rooms/{RoomId}/Policies"
@using LibMatrix
@using LibMatrix.Homeservers
@using ArcaneLibs.Extensions
@using LibMatrix.EventTypes.Spec.State
<h3>Policy list editor - Editing @RoomId</h3>
<hr/>

<p>
    This policy list contains @PolicyEvents.Count(x => x.Type == "m.policy.rule.server") server bans,
    @PolicyEvents.Count(x => x.Type == "m.policy.rule.room") room bans and
    @PolicyEvents.Count(x => x.Type == "m.policy.rule.user") user bans.
</p>
<InputCheckbox @bind-Value="_enableAvatars" @oninput="GetAllAvatars"></InputCheckbox><label>Enable avatars (WILL EXPOSE YOUR IP TO TARGET HOMESERVERS!)</label>


@if (!PolicyEvents.Any(x => x.Type == "m.policy.rule.server")) {
    <p>No server policies</p>
}
else {
    <h3>Server policies</h3>
    <hr/>
    <table class="table table-striped table-hover" style="width: fit-Content;">
        <thead>
        <tr>
            <th scope="col" style="max-width: 50vw;">Server</th>
            <th scope="col">Reason</th>
            <th scope="col">Expires</th>
            <th scope="col">Actions</th>
        </tr>
        </thead>
        <tbody>
        @foreach (var policyEvent in PolicyEvents.Where(x => x.Type == "m.policy.rule.server" && (x.TypedContent as PolicyRuleEventContent).Entity is not null)) {
            var policyData = policyEvent.TypedContent as PolicyRuleEventContent;
            <tr>
                <td>Entity: @policyData.Entity<br/>State: @policyEvent.StateKey</td>
                <td>@policyData.Reason</td>
                <td>
                    @policyData.ExpiryDateTime
                </td>
                <td>
                    <button class="btn" @* @onclick="async () => await RemovePolicyAsync(policyEvent)" *@>Edit</button>
                    @* <button class="btn btn-danger" $1$ @onclick="async () => await RemovePolicyAsync(policyEvent)" #1#>Remove</button> *@
                </td>
            </tr>
        }
        </tbody>
    </table>
    <details>
        <summary>Redacted events</summary>
        <table class="table table-striped table-hover" style="width: fit-Content;">
            <thead>
            <tr>
                <th scope="col" style="max-width: 50vw;">State key</th>
                <th scope="col">Serialised Contents</th>
            </tr>
            </thead>
            <tbody>
            @foreach (var policyEvent in PolicyEvents.Where(x => x.Type == "m.policy.rule.server" && (x.TypedContent as PolicyRuleEventContent).Entity == null)) {
                var policyData = policyEvent.TypedContent as PolicyRuleEventContent;
                <tr>
                    <td>@policyEvent.StateKey</td>
                    <td>@policyEvent.RawContent.ToJson(false, true)</td>
                </tr>
            }
            </tbody>
        </table>
    </details>
}
@if (!PolicyEvents.Any(x => x.Type == "m.policy.rule.room")) {
    <p>No room policies</p>
}
else {
    <h3>Room policies</h3>
    <hr/>
    <table class="table table-striped table-hover" style="width: fit-Content;">
        <thead>
        <tr>
            <th scope="col" style="max-width: 50vw;">Room</th>
            <th scope="col">Reason</th>
            <th scope="col">Expires</th>
            <th scope="col">Actions</th>
        </tr>
        </thead>
        <tbody>
        @foreach (var policyEvent in PolicyEvents.Where(x => x.Type == "m.policy.rule.room" && (x.TypedContent as PolicyRuleEventContent).Entity is not null)) {
            var policyData = policyEvent.TypedContent as PolicyRuleEventContent;
            <tr>
                <td>Entity: @policyData.Entity<br/>State: @policyEvent.StateKey</td>
                <td>@policyData.Reason</td>
                <td>
                    @policyData.ExpiryDateTime
                </td>
                <td>
                    <button class="btn btn-danger" @* @onclick="async () => await RemovePolicyAsync(policyEvent)" *@>Remove</button>
                </td>
            </tr>
        }
        </tbody>
    </table>
    <details>
        <summary>Redacted events</summary>
        <table class="table table-striped table-hover" style="width: fit-Content;">
            <thead>
            <tr>
                <th scope="col" style="max-width: 50vw;">State key</th>
                <th scope="col">Serialised Contents</th>
            </tr>
            </thead>
            <tbody>
            @foreach (var policyEvent in PolicyEvents.Where(x => x.Type == "m.policy.rule.room" && (x.TypedContent as PolicyRuleEventContent).Entity == null)) {
                <tr>
                    <td>@policyEvent.StateKey</td>
                    <td>@policyEvent.RawContent!.ToJson(false, true)</td>
                </tr>
            }
            </tbody>
        </table>
    </details>
}
@if (!PolicyEvents.Any(x => x.Type == "m.policy.rule.user")) {
    <p>No user policies</p>
}
else {
    <h3>User policies</h3>
    <hr/>
    <table class="table table-striped table-hover" style="width: fit-Content;">
        <thead>
        <tr>
            @if (_enableAvatars) {
                <th scope="col"></th>
            }
            <th scope="col" style="max-width: 0.2vw; word-wrap: anywhere;">User</th>
            <th scope="col">Reason</th>
            <th scope="col">Expires</th>
            <th scope="col">Actions</th>
        </tr>
        </thead>
        <tbody>
        @foreach (var policyEvent in PolicyEvents.Where(x => x.Type == "m.policy.rule.user" && (x.TypedContent as PolicyRuleEventContent).Entity is not null)) {
            var policyData = policyEvent.TypedContent as PolicyRuleEventContent;
            <tr>
                @if (_enableAvatars) {
                    <td scope="col">
                        <img style="width: 48px; height: 48px; aspect-ratio: unset; border-radius: 50%;" src="@(avatars.ContainsKey(policyData.Entity) ? avatars[policyData.Entity] : "")"/>
                    </td>
                }
                <td style="word-wrap: anywhere;">Entity: @string.Join("", policyData.Entity.Take(64))<br/>State: @string.Join("", policyEvent.StateKey.Take(64))</td>
                <td>@policyData.Reason</td>
                <td>
                    @policyData.ExpiryDateTime
                </td>
                <td>
                    <button class="btn btn-danger" @* @onclick="async () => await RemovePolicyAsync(policyEvent)" *@>Remove</button>
                </td>
            </tr>
        }
        </tbody>
    </table>
    <details>
        <summary>Redacted events</summary>
        <table class="table table-striped table-hover" style="width: fit-Content;">
            <thead>
            <tr>
                <th scope="col">State key</th>
                <th scope="col">Serialised Contents</th>
            </tr>
            </thead>
            <tbody>
            @foreach (var policyEvent in PolicyEvents.Where(x => x.Type == "m.policy.rule.user" && (x.TypedContent as PolicyRuleEventContent).Entity == null)) {
                <tr>
                    <td>@policyEvent.StateKey</td>
                    <td>@policyEvent.RawContent.ToJson(false, true)</td>
                </tr>
            }
            </tbody>
        </table>
    </details>
}

<LogView></LogView>

@code {
    //get room list
    // - sync withroom list filter
    // Type = support.feline.msc3784
    //support.feline.policy.lists.msc.v1

    [Parameter]
    public string? RoomId { get; set; }

    private bool _enableAvatars;

    static readonly Dictionary<string, string?> avatars = new();
    static readonly Dictionary<string, RemoteHomeserver> servers = new();

    public static List<StateEventResponse> PolicyEvents { get; set; } = new();

    protected override async Task OnInitializedAsync() {
        await base.OnInitializedAsync();
        var hs = await MRUStorage.GetCurrentSessionOrNavigate();
        if (hs is null) return;
        RoomId = RoomId.Replace('~', '.');
        await LoadStatesAsync();
        Console.WriteLine("Policy list editor initialized!");
    }

    private async Task LoadStatesAsync() {
        var hs = await MRUStorage.GetCurrentSessionOrNavigate();
        if (hs is null) return;

        var room = hs.GetRoom(RoomId);

        var states = room.GetFullStateAsync();
        await foreach (var state in states) {
            if (!state.Type.StartsWith("m.policy.rule")) continue;
            PolicyEvents.Add(state);
        }


        // var stateEventsQuery = await room.GetStateAsync("");
        // var stateEvents = stateEventsQuery.Value.Deserialize<List<StateEventResponse>>();
        // PolicyEvents = stateEvents.Where(x => x.Type.StartsWith("m.policy.rule"))
            // .Select(x => JsonSerializer.Deserialize<StateEventResponse>(JsonSerializer.Serialize(x))).ToList();
        StateHasChanged();
    }

    private async Task GetAvatar(string userId) {
        try {
            if (avatars.ContainsKey(userId)) return;
            var hs = userId.Split(':')[1];
            var server = servers.ContainsKey(hs) ? servers[hs] : new RemoteHomeserver(userId.Split(':')[1]);
            if (!servers.ContainsKey(hs)) servers.Add(hs, server);
            var profile = await server.GetProfileAsync(userId);
            avatars.Add(userId, await hsResolver.ResolveMediaUri(server.BaseUrl, profile.AvatarUrl));
            servers.Add(userId, server);
            StateHasChanged();
        }
        catch {
    // ignored
        }
    }

    private async Task GetAllAvatars() {
        foreach (var policyEvent in PolicyEvents.Where(x => x.Type == "m.policy.rule.user" && (x.TypedContent as PolicyRuleEventContent).Entity is not null)) {
            await GetAvatar((policyEvent.TypedContent as PolicyRuleEventContent).Entity);
        }
        StateHasChanged();
    }

}