use JSON::Tiny; use Matrix::Client::Common; use Matrix::Client::Requester; unit class Matrix::Client::Room does Matrix::Client::Requester; has $!name; has $.id; multi submethod BUILD(Str :$!id!, :$!home-server!, :$!access-token!, :$json?) { $!url-prefix = "/rooms/$!id"; if so $json { my @events = $json.clone; for @events -> $ev { if $ev eq "m.room.name" { $!name = $ev; } } } } method !get-name() { my $res = $.get('/state/m.room.name'); if $res.is-success { $!name = from-json($res.content) } else { warn "Error {$res.status-line}, content {$res.content}"; } } method name() { unless $!name.so { self!get-name() } $!name } method messages() { my $res = $.get("/messages"); my $data = from-json($res.content); return $data.clone; } method send(Str $body!, Str :$type? = "m.text") { $Matrix::Client::Common::TXN-ID++; my $res = $.put( "/send/m.room.message/{$Matrix::Client::Common::TXN-ID}", msgtype => $type, body => $body ); from-json($res.content) } method leave() { $.post('/leave') } method gist(--> Str) { "Room" } method Str(--> Str) { "Room" }