From e03a435e48bdc59cd32aad8f47b31630b446945e Mon Sep 17 00:00:00 2001 From: Matias Linares Date: Tue, 13 Feb 2018 20:55:57 -0300 Subject: Use new error handling and responses --- lib/Matrix/Client.pm6 | 70 ++++++++++++++------------------------------------- 1 file changed, 19 insertions(+), 51 deletions(-) (limited to 'lib/Matrix') diff --git a/lib/Matrix/Client.pm6 b/lib/Matrix/Client.pm6 index 5091319..9867c77 100644 --- a/lib/Matrix/Client.pm6 +++ b/lib/Matrix/Client.pm6 @@ -1,6 +1,7 @@ use HTTP::Request::Common; use URI::Encode; use JSON::Tiny; +use Matrix::Response; use Matrix::Client::Common; use Matrix::Client::Room; use Matrix::Client::Requester; @@ -26,7 +27,7 @@ submethod BUILD(:$!home-server!, :$!auth-file = 'auth') { } method login(Str $username, Str $pass) returns Bool { - return True if $!logged; + return if $!logged; # Handle POST my $data = to-json { @@ -36,16 +37,12 @@ method login(Str $username, Str $pass) returns Bool { }; my $res = $.post("/login", $data); - if $res.is-success { - spurt $!auth-file, $res.content; - my $data = from-json($res.content); - $!access-token = $data; - $!user-id = $data; - $!device-id = $data; - True - } else { - False - } + spurt $!auth-file, $res.content; + + my $data = from-json($res.content); + $!access-token = $data; + $!user-id = $data; + $!device-id = $data; } method save-auth-data() { @@ -70,37 +67,21 @@ method register($username, $password, Bool :$bind-email? = False) { auth => { type => "m.login.dummy" }); - if $res.is-success { - my $data = from-json $res.content; - $!access-token = $data; - $.user-id = $data; - } else { - die "Error with the homeserver: " ~ $res.content; - } -} - -method check-res($res) { - if $res.is-success { - True - } else { - warn "Error with response: {$res.status-line}: {$res.content}"; - False - } + my $data = from-json $res.content; + $!access-token = $data; + $.user-id = $data; } # User Data method profile(Str :$user-id?) { my $id = $user-id // $.user-id; - my $res = $.get("/profile/" ~ $id); - $.check-res($res); - $res + $.get("/profile/" ~ $id) } method display-name(Str :$user-id?) { my $id = $user-id // $.user-id; my $res = $.get("/profile/" ~ $id ~ "/displayname"); - $.check-res($res); my $data = from-json($res.content); @@ -108,15 +89,13 @@ method display-name(Str :$user-id?) { } method change-display-name(Str:D $display-name!) { - my $res = $.put("/profile/" ~ $.user-id ~ "/displayname", - displayname => $display-name); - return $.check-res($res); + $.put("/profile/" ~ $.user-id ~ "/displayname", + displayname => $display-name) } method avatar-url(Str :$user-id?) { my $id = $user-id // $.user-id; my $res = $.get("/profile/" ~ $id ~ "/avatar_url"); - $.check-res($res); my $data = from-json($res.content); $data // "" @@ -128,20 +107,16 @@ multi method change-avatar(IO::Path $avatar) { } multi method change-avatar(Str:D $mxc-url!) { - my $res = $.put("/profile/" ~ $.user-id ~ "/avatar_url", - avatar_url => $mxc-url); - return $.check-res($res); + $.put("/profile/" ~ $.user-id ~ "/avatar_url", + avatar_url => $mxc-url); } # Syncronization multi method sync() { - my $res = $.get("/sync", - timeout => 30000 - ); + my $res = $.get("/sync", timeout => 30000); - $.check-res($res); - $res + Matrix::Response::Sync.new($res.content) } multi method sync(Str :$sync-filter, Str :$since = "") { @@ -151,8 +126,7 @@ multi method sync(Str :$sync-filter, Str :$since = "") { since => $since ); - $.check-res($res); - $res + Matrix::Response::Sync.new($res.content) } multi method sync(:$sync-filter is copy, :$since = "") { @@ -173,7 +147,6 @@ method rooms(Bool :$sync = False) { return @!rooms unless $sync; my $res = $.get("/sync", timeout => "30000"); - return () unless $res.is-success; @!rooms = (); my $data = from-json($res.content); for $data.kv -> $id, $json { @@ -191,10 +164,6 @@ method rooms(Bool :$sync = False) { method joined-rooms() { my $res = $.get('/joined_rooms'); - unless $res.is-success { - note "Error getting joined rooms: {$res.status}"; - return (); - } my $data = from-json($res.content); return $data.Seq.map(-> $room-id { Matrix::Client::Room.new( @@ -225,7 +194,6 @@ method upload(IO::Path $path, Str $filename?) { content-type => "image/png", filename => $fn, ); - $.check-res($res); my $data = from-json($res.content); $data // ""; } -- cgit v1.2.3-54-g00ecf