@using System.Text.Json @using LibMatrix @using LibMatrix.EventTypes.Spec.State @using LibMatrix.Helpers @using LibMatrix.Homeservers @using LibMatrix.Responses @using LibMatrix.RoomTypes @using MatrixRoomUtils.Web.Classes.Constants @if (RoomInfo is not null) {
@if (OwnMemberState != null) { @(OwnMemberState?.DisplayName ?? GlobalProfile?.DisplayName ?? "Loading...") -> }
@RoomInfo.RoomName @if (ChildContent is not null) { @ChildContent }
} else {

Warning: RoomInfo is null!

} @code { [Parameter] public RenderFragment? ChildContent { get; set; } [Parameter] public RoomInfo? RoomInfo { get; set; } [Parameter] public bool ShowOwnProfile { get; set; } = false; [Parameter] public RoomMemberEventContent? OwnMemberState { get; set; } [CascadingParameter] public UserProfileResponse? GlobalProfile { get; set; } [Parameter] public bool LoadData { get; set; } = false; private bool HasOldRoomVersion { get; set; } = false; private bool HasDangerousRoomVersion { get; set; } = false; private static SemaphoreSlim _semaphoreSlim = new(8); private static AuthenticatedHomeserverGeneric? hs { get; set; } protected override async Task OnParametersSetAsync() { RoomInfo.PropertyChanged += (_, a) => { Console.WriteLine(a.PropertyName); StateHasChanged(); }; if (LoadData) { try { await RoomInfo.GetStateEvent("m.room.create"); if (ShowOwnProfile) OwnMemberState ??= (await RoomInfo.GetStateEvent("m.room.member", hs.WhoAmI.UserId)).TypedContent as RoomMemberEventContent; await RoomInfo.GetStateEvent("m.room.name"); await RoomInfo.GetStateEvent("m.room.avatar"); } catch (MatrixException e) { if (e.ErrorCode == "M_FORBIDDEN") { LoadData = false; RoomInfo.StateEvents.Add(new() { Type = "m.room.create", TypedContent = new RoomCreateEventContent() { RoomVersion = "0" } }); RoomInfo.StateEvents.Add(new() { Type = "m.room.name", TypedContent = new RoomNameEventContent() { Name = "M_FORBIDDEN: Are you a member of this room? " + RoomInfo.Room.RoomId } }); } } } await base.OnParametersSetAsync(); } protected override async Task OnInitializedAsync() { await base.OnInitializedAsync(); await _semaphoreSlim.WaitAsync(); hs ??= await MRUStorage.GetCurrentSessionOrNavigate(); if (hs is null) return; try { await CheckRoomVersion(); // await GetRoomInfo(); // await LoadOwnProfile(); } catch (MatrixException e) { if (e is not { ErrorCode: "M_FORBIDDEN" }) { throw; } // RoomName = "Error: " + e.Message; // RoomIcon = "/blobfox_outage.gif"; } catch (Exception e) { Console.WriteLine($"Failed to load room info for {RoomInfo.Room.RoomId}: {e.Message}"); } _semaphoreSlim.Release(); } private async Task LoadOwnProfile() { if (!ShowOwnProfile) return; try { // OwnMemberState ??= (await RoomInfo.GetStateEvent("m.room.member", hs.UserId)).TypedContent as RoomMemberEventContent; GlobalProfile ??= await hs.GetProfileAsync(hs.UserId); } catch (MatrixException e) { if (e is { ErrorCode: "M_FORBIDDEN" }) { Console.WriteLine($"Failed to get profile for {hs.UserId}: {e.Message}"); ShowOwnProfile = false; } else { throw; } } } private async Task CheckRoomVersion() { while (RoomInfo?.CreationEventContent is null) { Console.WriteLine($"Room creation event content for {RoomInfo.Room.RoomId} is null..."); await Task.Delay(Random.Shared.Next(1000, 2500)); } var ce = RoomInfo.CreationEventContent; if (int.TryParse(ce.RoomVersion, out var rv)) { if (rv < 10) HasOldRoomVersion = true; } else // treat unstable room versions as dangerous HasDangerousRoomVersion = true; if (RoomConstants.DangerousRoomVersions.Contains(ce.RoomVersion)) { HasDangerousRoomVersion = true; // RoomName = "Dangerous room: " + RoomName; } } // private async Task GetRoomInfo() { // try { // RoomName ??= ((await RoomInfo.GetStateEvent("m.room.name"))?.TypedContent as RoomNameEventContent)?.Name ?? RoomId; // // var state = (await RoomInfo.GetStateEvent("m.room.avatar")).TypedContent as RoomAvatarEventContent; // if (state?.Url is { } url) { // RoomIcon = await hsResolver.ResolveMediaUri(hs.ServerName, url); // // Console.WriteLine($"Got avatar for room {RoomId}: {roomIcon} ({url})"); // } // } // catch (MatrixException e) { // if (e is not { ErrorCode: "M_FORBIDDEN" }) { // throw; // } // } // } }