blob: 2a5abb43fb845bbcf4902599c92cf7e9b0419220 (
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
|
using System.Net.Http.Json;
using System.Text.Json;
namespace MatrixRoomUtils;
public class Room
{
private readonly HttpClient _httpClient;
public string RoomId { get; set; }
public Room(HttpClient httpClient, string roomId)
{
_httpClient = httpClient;
RoomId = roomId;
}
public async Task<JsonElement?> GetStateAsync(string type, string state_key="")
{
Console.WriteLine($"{RoomId}::_qry[{type}::{state_key}]");
var res = await _httpClient.GetAsync($"/_matrix/client/r0/rooms/{RoomId}/state/{type}/{state_key}");
if (!res.IsSuccessStatusCode)
{
Console.WriteLine($"{RoomId}::_qry[{type}::{state_key}]->status=={res.StatusCode}");
return null;
}
return await res.Content.ReadFromJsonAsync<JsonElement>();
}
public async Task<string?> GetNameAsync()
{
Console.WriteLine($"{RoomId}::_qry_name");
var res = await GetStateAsync("m.room.name");
if (!res.HasValue)
{
Console.WriteLine($"{RoomId}::_qry_name->null");
return null;
}
Console.WriteLine($"{RoomId}::_qry_name->{res.Value.ToString()}");
var resn = res?.GetProperty("name").GetString();
Console.WriteLine($"Got name: {resn}");
return resn;
}
}
|