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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
|
@page "/Rooms/{RoomId}/Policies"
@using LibMatrix
@using ArcaneLibs.Extensions
@using LibMatrix.EventTypes.Spec.State.Policy
@using System.Diagnostics
@using LibMatrix.RoomTypes
@using System.Collections.Frozen
@using System.Reflection
@using ArcaneLibs.Attributes
@using LibMatrix.EventTypes
@using LibMatrix.EventTypes.Common
@using LibMatrix.EventTypes.Interop.Draupnir
@using LibMatrix.EventTypes.Spec.State.RoomInfo
@using MatrixUtils.Web.Shared.PolicyEditorComponents
@using SpawnDev.BlazorJS.WebWorkers
@inject WebWorkerService WebWorkerService
<h3>Policy list editor - Editing @(RoomName ?? RoomId)</h3>
@if (!string.IsNullOrWhiteSpace(DraupnirShortcode)) {
<span style="margin-right: 2em;">Shortcode: @DraupnirShortcode</span>
}
@if (!string.IsNullOrWhiteSpace(RoomAlias)) {
<span>Alias: @RoomAlias</span>
}
<hr/>
@* <InputCheckbox @bind-Value="EnableAvatars"></InputCheckbox><label>Enable avatars (WILL EXPOSE YOUR IP TO TARGET HOMESERVERS!)</label> *@
<LinkButton OnClick="@(() => { CurrentlyEditingEvent = new() { Type = "", RawContent = new() }; return Task.CompletedTask; })">Create new policy</LinkButton>
<LinkButton OnClick="@(() => { MassCreatePolicies = true; return Task.CompletedTask; })">Create many new policies</LinkButton>
@if (Loading) {
<p>Loading...</p>
}
else if (PolicyEventsByType is not { Count: > 0 }) {
<p>No policies yet</p>
}
else {
var renderSw = Stopwatch.StartNew();
var renderTotalSw = Stopwatch.StartNew();
@foreach (var (type, value) in PolicyEventsByType) {
<p>
@(GetValidPolicyEventsByType(type).Count) active,
@(GetInvalidPolicyEventsByType(type).Count) invalid
(@value.Count total)
@(GetPolicyTypeName(type).ToLower())
</p>
}
Console.WriteLine($"Rendered hearder in {renderSw.GetElapsedAndRestart()}");
@foreach (var type in KnownPolicyTypes.OrderByDescending(t => GetPolicyEventsByType(t).Count)) {
<details>
<summary>
<span>
@($"{GetPolicyTypeName(type)}: {GetPolicyEventsByType(type).Count} policies")
</span>
<hr style="margin: revert;"/>
</summary>
<table class="table table-striped table-hover">
@{
var policies = GetValidPolicyEventsByType(type);
var invalidPolicies = GetInvalidPolicyEventsByType(type);
// enumerate all properties with friendly name
var props = type.GetProperties(BindingFlags.Public | BindingFlags.Instance)
.Where(x => (x.GetFriendlyNameOrNull() ?? x.GetJsonPropertyNameOrNull()) is not null)
.Where(x => x.GetCustomAttribute<TableHideAttribute>() is null)
.ToFrozenSet();
var propNames = props.Select(x => x.GetFriendlyNameOrNull() ?? x.GetJsonPropertyName()!).ToFrozenSet();
var proxySafeProps = type.GetProperties(BindingFlags.Public | BindingFlags.Instance)
.Where(x => props.Any(y => y.Name == x.Name))
.ToFrozenSet();
Console.WriteLine($"{proxySafeProps?.Count} proxy safe props found in {policies.FirstOrDefault()?.TypedContent?.GetType()}");
}
<thead>
<tr>
@foreach (var name in propNames) {
<th>@name</th>
}
<th>Actions</th>
</tr>
</thead>
<tbody style="border-width: 1px;">
@foreach (var policy in policies.OrderBy(x => x.RawContent?["entity"]?.GetValue<string>())) {
<tr>
@{
var typedContent = policy.TypedContent!;
}
@foreach (var prop in proxySafeProps ?? Enumerable.Empty<PropertyInfo>()) {
<td>@prop.GetGetMethod()?.Invoke(typedContent, null)</td>
}
<td>
<div style="display: ruby;">
@if (PowerLevels.UserHasStatePermission(Homeserver.WhoAmI.UserId, policy.Type)) {
<LinkButton OnClick="@(() => { CurrentlyEditingEvent = policy; return Task.CompletedTask; })">Edit</LinkButton>
<LinkButton OnClick="@(() => RemovePolicyAsync(policy))">Remove</LinkButton>
@if (policy.IsLegacyType) {
<LinkButton OnClick="@(() => RemovePolicyAsync(policy))">Update policy type</LinkButton>
}
@if (PolicyTypeIds[typeof(ServerPolicyRuleEventContent)].Contains(policy.Type)) {
<LinkButton OnClick="@(() => { ServerPolicyToMakePermanent = policy; return Task.CompletedTask; })">Make permanent</LinkButton>
@if (CurrentUserIsDraupnir) {
<LinkButton Color="@(ActiveKicks.ContainsKey(policy) ? "#FF0000" : null)" OnClick="@(() => DraupnirKickMatching(policy))">Kick users @(ActiveKicks.ContainsKey(policy) ? $"({ActiveKicks[policy]})" : null)</LinkButton>
}
}
}
else {
<p>No permission to modify</p>
}
</div>
</td>
</tr>
}
</tbody>
</table>
<details>
<summary>
<u>
@("Invalid " + GetPolicyTypeName(type).ToLower())
</u>
</summary>
<table class="table table-striped table-hover">
<thead>
<tr>
<th>State key</th>
<th>Json contents</th>
</tr>
</thead>
<tbody>
@foreach (var policy in invalidPolicies) {
<tr>
<td>@policy.StateKey</td>
<td>
<pre>@policy.RawContent.ToJson(true, false)</pre>
</td>
</tr>
}
</tbody>
</table>
</details>
</details>
}
Console.WriteLine($"Rendered policies in {renderSw.GetElapsedAndRestart()}");
Console.WriteLine($"Rendered in {renderTotalSw.Elapsed}");
}
@if (CurrentlyEditingEvent is not null) {
<PolicyEditorModal PolicyEvent="@CurrentlyEditingEvent" OnClose="@(() => CurrentlyEditingEvent = null)" OnSave="@(e => UpdatePolicyAsync(e))"></PolicyEditorModal>
}
@if (ServerPolicyToMakePermanent is not null) {
<ModalWindow Title="Make policy permanent">
</ModalWindow>
}
@if (MassCreatePolicies) {
<MassPolicyEditorModal Room="@Room" OnClose="@(() => MassCreatePolicies = false)" OnSaved="@(() => { MassCreatePolicies = false; LoadStatesAsync(); })"></MassPolicyEditorModal>
}
@code {
#if DEBUG
private const bool Debug = true;
#else
private const bool Debug = false;
#endif
private bool Loading { get; set; } = true;
[Parameter]
public string RoomId { get; set; }
private bool _enableAvatars;
private StateEventResponse? _currentlyEditingEvent;
private bool _massCreatePolicies;
private StateEventResponse? _serverPolicyToMakePermanent;
private Dictionary<Type, List<StateEventResponse>> PolicyEventsByType { get; set; } = new();
private StateEventResponse? CurrentlyEditingEvent {
get => _currentlyEditingEvent;
set {
_currentlyEditingEvent = value;
StateHasChanged();
}
}
public StateEventResponse? ServerPolicyToMakePermanent {
get => _serverPolicyToMakePermanent;
set {
_serverPolicyToMakePermanent = value;
StateHasChanged();
}
}
private AuthenticatedHomeserverGeneric Homeserver { get; set; }
private GenericRoom Room { get; set; }
private RoomPowerLevelEventContent PowerLevels { get; set; }
public bool CurrentUserIsDraupnir { get; set; }
public string? RoomName { get; set; }
public string? RoomAlias { get; set; }
public string? DraupnirShortcode { get; set; }
public Dictionary<StateEventResponse, int> ActiveKicks { get; set; } = [];
public bool MassCreatePolicies {
get => _massCreatePolicies;
set {
_massCreatePolicies = value;
StateHasChanged();
}
}
protected override async Task OnInitializedAsync() {
var sw = Stopwatch.StartNew();
await base.OnInitializedAsync();
Homeserver = (await sessionStore.GetCurrentHomeserver(navigateOnFailure: true))!;
if (Homeserver is null) return;
Room = Homeserver.GetRoom(RoomId!);
await Task.WhenAll([
Task.Run(async () => { PowerLevels = (await Room.GetPowerLevelsAsync())!; }),
Task.Run(async () => { DraupnirShortcode = (await Room.GetStateOrNullAsync<MjolnirShortcodeEventContent>(MjolnirShortcodeEventContent.EventId))?.Shortcode; }),
Task.Run(async () => { RoomAlias = (await Room.GetCanonicalAliasAsync())?.Alias; }),
Task.Run(async () => { RoomName = await Room.GetNameOrFallbackAsync(); }),
Task.Run(async () => { CurrentUserIsDraupnir = (await Homeserver.GetAccountDataOrNullAsync<object>("org.matrix.mjolnir.protected_rooms")) is not null; }),
]);
await LoadStatesAsync();
Console.WriteLine($"Policy list editor initialized in {sw.Elapsed}!");
}
private async Task LoadStatesAsync() {
Loading = true;
var states = Room.GetFullStateAsync();
PolicyEventsByType.Clear();
await foreach (var state in states) {
if (state is null) continue;
if (!state.MappedType.IsAssignableTo(typeof(PolicyRuleEventContent))) continue;
if (!PolicyEventsByType.ContainsKey(state.MappedType)) PolicyEventsByType.Add(state.MappedType, new());
PolicyEventsByType[state.MappedType].Add(state);
}
Loading = false;
StateHasChanged();
}
private List<StateEventResponse> GetPolicyEventsByType(Type type) => PolicyEventsByType.ContainsKey(type) ? PolicyEventsByType[type] : [];
private List<StateEventResponse> GetValidPolicyEventsByType(Type type) => GetPolicyEventsByType(type)
.Where(x => !string.IsNullOrWhiteSpace(x.RawContent?["recommendation"]?.GetValue<string>())).ToList();
private List<StateEventResponse> GetInvalidPolicyEventsByType(Type type) => GetPolicyEventsByType(type)
.Where(x => string.IsNullOrWhiteSpace(x.RawContent?["recommendation"]?.GetValue<string>())).ToList();
private string? GetPolicyTypeNameOrNull(Type type) => type.GetFriendlyNamePluralOrNull()
?? type.GetCustomAttributes<MatrixEventAttribute>()
.FirstOrDefault(x => !string.IsNullOrWhiteSpace(x.EventName))?.EventName;
private string GetPolicyTypeName(Type type) => GetPolicyTypeNameOrNull(type) ?? type.Name;
private async Task RemovePolicyAsync(StateEventResponse policyEvent) {
await Room.SendStateEventAsync(policyEvent.Type, policyEvent.StateKey, new { });
PolicyEventsByType[policyEvent.MappedType].Remove(policyEvent);
await LoadStatesAsync();
}
private async Task UpdatePolicyAsync(StateEventResponse policyEvent) {
await Room.SendStateEventAsync(policyEvent.Type, policyEvent.StateKey, policyEvent.RawContent);
CurrentlyEditingEvent = null;
await LoadStatesAsync();
}
private async Task UpgradePolicyAsync(StateEventResponse policyEvent) {
policyEvent.RawContent["upgraded_from_type"] = policyEvent.Type;
await LoadStatesAsync();
}
private static FrozenSet<Type> KnownPolicyTypes = StateEvent.KnownStateEventTypes.Where(x => x.IsAssignableTo(typeof(PolicyRuleEventContent))).ToFrozenSet();
// event types, unnamed
private static Dictionary<string, Type> PolicyTypes = KnownPolicyTypes
.ToDictionary(x => x.GetCustomAttributes<MatrixEventAttribute>().First(y => !string.IsNullOrWhiteSpace(y.EventName)).EventName, x => x);
private static Dictionary<Type, string[]> PolicyTypeIds = KnownPolicyTypes
.ToDictionary(x => x, x => x.GetCustomAttributes<MatrixEventAttribute>().Select(y => y.EventName).ToArray());
#region Draupnir interop
private SemaphoreSlim ss = new(16, 16);
private async Task DraupnirKickMatching(StateEventResponse policy) {
try {
var content = policy.TypedContent! as PolicyRuleEventContent;
if (content is null) return;
if (string.IsNullOrWhiteSpace(content.Entity)) return;
var data = await Homeserver.GetAccountDataAsync<DraupnirProtectedRoomsData>(DraupnirProtectedRoomsData.EventId);
var rooms = data.Rooms.Select(Homeserver.GetRoom).ToList();
ActiveKicks.Add(policy, rooms.Count);
StateHasChanged();
await Task.Delay(500);
// for (int i = 0; i < 12; i++) {
// _ = WebWorkerService.TaskPool.Invoke(WasteCpu);
// }
// static async Task runKicks(string roomId, PolicyRuleEventContent content) {
// Console.WriteLine($"Checking {roomId}...");
// // Console.WriteLine($"Checking {room.RoomId}...");
// //
// // try {
// // var members = await room.GetMembersListAsync();
// // foreach (var member in members) {
// // var membership = member.ContentAs<RoomMemberEventContent>();
// // if (member.StateKey == room.Homeserver.WhoAmI.UserId) continue;
// // if (membership?.Membership is "leave" or "ban") continue;
// //
// // if (content.EntityMatches(member.StateKey!))
// // // await room.KickAsync(member.StateKey, content.Reason ?? "No reason given");
// // Console.WriteLine($"Would kick {member.StateKey} from {room.RoomId} (EntityMatches)");
// // }
// // }
// // finally {
// // Console.WriteLine($"Finished checking {room.RoomId}...");
// // }
// }
//
// try {
// var tasks = rooms.Select(room => WebWorkerService.TaskPool.Invoke(runKicks, room.RoomId, content)).ToList();
//
// await Task.WhenAll(tasks);
// }
// catch (Exception e) {
// Console.WriteLine(e);
// }
await NastyInternalsPleaseIgnore.ExecuteKickWithWasmWorkers(WebWorkerService, Homeserver, policy, data.Rooms);
// await Task.Run(async () => {
// foreach (var room in rooms) {
// try {
// Console.WriteLine($"Checking {room.RoomId}...");
// var members = await room.GetMembersListAsync();
// foreach (var member in members) {
// var membership = member.ContentAs<RoomMemberEventContent>();
// if (member.StateKey == room.Homeserver.WhoAmI.UserId) continue;
// if (membership?.Membership is "leave" or "ban") continue;
//
// if (content.EntityMatches(member.StateKey!))
// // await room.KickAsync(member.StateKey, content.Reason ?? "No reason given");
// Console.WriteLine($"Would kick {member.StateKey} from {room.RoomId} (EntityMatches)");
// }
// ActiveKicks[policy]--;
// StateHasChanged();
// }
// finally {
// Console.WriteLine($"Finished checking {room.RoomId}...");
// }
// }
// });
}
finally {
ActiveKicks.Remove(policy);
StateHasChanged();
await Task.Delay(500);
}
}
#region Nasty, nasty internals, please ignore!
private static class NastyInternalsPleaseIgnore {
public static async Task ExecuteKickWithWasmWorkers(WebWorkerService workerService, AuthenticatedHomeserverGeneric hs, StateEventResponse evt, List<string> roomIds) {
try {
// var tasks = roomIds.Select(roomId => workerService.TaskPool.Invoke(ExecuteKickInternal, hs.WellKnownUris.Client, hs.AccessToken, roomId, content.Entity)).ToList();
var tasks = roomIds.Select(roomId => workerService.TaskPool.Invoke(ExecuteKickInternal2, hs.WellKnownUris, hs.AccessToken, roomId, evt)).ToList();
// workerService.TaskPool.Invoke(ExecuteKickInternal, hs.BaseUrl, hs.AccessToken, roomIds, content.Entity);
await Task.WhenAll(tasks);
}
catch (Exception e) {
Console.WriteLine(e);
}
}
private static async Task ExecuteKickInternal(string homeserverBaseUrl, string accessToken, string roomId, string entity) {
try {
Console.WriteLine("args: " + string.Join(", ", homeserverBaseUrl, accessToken, roomId, entity));
Console.WriteLine($"Checking {roomId}...");
var hs = new AuthenticatedHomeserverGeneric(homeserverBaseUrl, new() { Client = homeserverBaseUrl }, null, accessToken);
Console.WriteLine($"Got HS...");
var room = hs.GetRoom(roomId);
Console.WriteLine($"Got room...");
var members = await room.GetMembersListAsync();
Console.WriteLine($"Got members...");
// foreach (var member in members) {
// var membership = member.ContentAs<RoomMemberEventContent>();
// if (member.StateKey == hs.WhoAmI.UserId) continue;
// if (membership?.Membership is "leave" or "ban") continue;
//
// if (entity == member.StateKey)
// // await room.KickAsync(member.StateKey, content.Reason ?? "No reason given");
// Console.WriteLine($"Would kick {member.StateKey} from {room.RoomId} (EntityMatches)");
// }
}
catch (Exception e) {
Console.WriteLine(e);
}
}
private async static Task ExecuteKickInternal2(HomeserverResolverService.WellKnownUris wellKnownUris, string accessToken, string roomId, StateEventResponse policy) {
Console.WriteLine($"Checking {roomId}...");
Console.WriteLine(policy.EventId);
}
}
#endregion
#endregion
}
|