about summary refs log tree commit diff
path: root/MatrixUtils.Web/Pages/ModerationUtilities/UserRoomHistory.razor
blob: 5ba83e4315a1087f37c11d07ee22b398d3a43f3a (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
@page "/UserRoomHistory/{UserId}"
@using LibMatrix.Homeservers
@using LibMatrix
@using LibMatrix.EventTypes.Spec.State
@using LibMatrix.RoomTypes
@using ArcaneLibs.Extensions
@using MatrixUtils.Abstractions
<h3>UserRoomHistory</h3>

<span>Enter mxid: </span>
<FancyTextBox @bind-Value="@UserId"></FancyTextBox>

@if (string.IsNullOrWhiteSpace(UserId)) {
    <p>UserId is null!</p>
}
else {
    <p>Checked @checkedRooms.Count so far...</p>
    @if (currentHs is not null) {
        <p>Checking rooms from @currentHs.UserId's perspective</p>
    }
    else if (checkedRooms.Count > 1) {
        <p>Done!</p>
    }
    @foreach (var (state, rooms) in matchingStates) {
        <u>@state</u>
        <br/>
        @foreach (var roomInfo in rooms) {
            <RoomListItem RoomInfo="roomInfo" LoadData="true"></RoomListItem>
        }
    }
}

@code {
    private string? _userId;

    [Parameter]
    public string? UserId {
        get => _userId;
        set {
            _userId = value;
            FindMember(value);
        }
    }

    private List<AuthenticatedHomeserverGeneric> hss = new();
    private AuthenticatedHomeserverGeneric? currentHs { get; set; }

    protected override async Task OnInitializedAsync() {
        var hs = await RMUStorage.GetCurrentSessionOrNavigate();
        if (hs is null) return;
        var sessions = await RMUStorage.GetAllTokens();
        foreach (var userAuth in sessions) {
            var session = await RMUStorage.GetSession(userAuth);
            if (session is not null) {
                hss.Add(session);
                StateHasChanged();
            }
        }

        StateHasChanged();
        Console.WriteLine("Rerendered!");
        await base.OnInitializedAsync();
        if (!string.IsNullOrWhiteSpace(UserId)) FindMember(UserId);
    }

    public Dictionary<string, List<RoomInfo>> matchingStates = new();
    public List<string> checkedRooms = new();
    private SemaphoreSlim _semaphoreSlim = new(1, 1);

    public async Task FindMember(string mxid) {
        await _semaphoreSlim.WaitAsync();
        if (mxid != UserId) {
            _semaphoreSlim.Release();
            return; //abort if changed
        }
        matchingStates.Clear();
        foreach (var homeserver in hss) {
            currentHs = homeserver;
            var rooms = await homeserver.GetJoinedRooms();
            rooms.RemoveAll(x => checkedRooms.Contains(x.RoomId));
            checkedRooms.AddRange(rooms.Select(x => x.RoomId));
            var tasks = rooms.Select(x => GetMembershipAsync(x, mxid)).ToAsyncEnumerable();
            await foreach (var (room, state) in tasks) {
                if (state is null) continue;
                if (!matchingStates.ContainsKey(state.Membership))
                    matchingStates.Add(state.Membership, new());
                var roomInfo = new RoomInfo() {
                    Room = room
                };
                matchingStates[state.Membership].Add(roomInfo);
                roomInfo.StateEvents.Add(new() {
                    Type = RoomNameEventContent.EventId,
                    TypedContent = new RoomNameEventContent() {
                        Name = await room.GetNameOrFallbackAsync(4)
                    },
                    RoomId = null, Sender = null, EventId = null //TODO implement
                });
                StateHasChanged();
                if (mxid != UserId) {
                    _semaphoreSlim.Release();
                    return; //abort if changed
                }
            }
            StateHasChanged();
        }
        currentHs = null;
        StateHasChanged();
        _semaphoreSlim.Release();
    }

    public async Task<(GenericRoom roomId, RoomMemberEventContent? content)> GetMembershipAsync(GenericRoom room, string mxid) {
        return (room, await room.GetStateOrNullAsync<RoomMemberEventContent>(RoomMemberEventContent.EventId, mxid));
    }

}