aboutsummaryrefslogtreecommitdiff
path: root/lib/Matrix
diff options
context:
space:
mode:
authorMatias Linares <matiaslina@gmail.com>2019-06-29 19:03:28 -0300
committerMatias Linares <matiaslina@gmail.com>2019-06-29 19:03:28 -0300
commit4f9159b228cb2533eccab11f82690171a1484ee5 (patch)
tree0512743142627e304d2c3df63b8a10f371bc19cb /lib/Matrix
parent5bb94eac4f7613cc5275a68eaa095e0be37003fd (diff)
downloadperl6-matrix-client-4f9159b228cb2533eccab11f82690171a1484ee5.tar.gz
Use Authorization header instead query param
Diffstat (limited to 'lib/Matrix')
-rw-r--r--lib/Matrix/Client/Requester.pm641
1 files changed, 33 insertions, 8 deletions
diff --git a/lib/Matrix/Client/Requester.pm6 b/lib/Matrix/Client/Requester.pm6
index 1a60014..edaf2da 100644
--- a/lib/Matrix/Client/Requester.pm6
+++ b/lib/Matrix/Client/Requester.pm6
@@ -27,13 +27,22 @@ method !access-token-arg {
}
method get(Str $path, :$media = False, *%data) {
- my $query = "?{self!access-token-arg}";
+ my $query = "?";
for %data.kv -> $k,$v {
$query ~= "&$k=$v" if $v.so;
}
my $encoded-path = $path.subst('#', '%23');
my $uri = $.base-url(:$media) ~ $encoded-path ~ uri_encode($query);
- return self!handle-error($!ua.get($uri));
+
+ my $req = HTTP::Request.new(GET => $uri);
+
+ if $!access-token.so {
+ $req.header.field(Authorization => "Bearer {$!access-token}");
+ }
+
+ return self!handle-error(
+ $!ua.request($req)
+ );
}
method base-url(Bool :$media? = False --> Str) {
@@ -46,9 +55,12 @@ method base-url(Bool :$media? = False --> Str) {
multi method post(Str $path, Str $json, :$media = False) {
my $encoded-path = $path.subst('#', '%23');
- my $url = $.base-url(:$media) ~ $encoded-path ~ "?{self!access-token-arg}";
+ my $url = $.base-url(:$media) ~ $encoded-path;
my $req = HTTP::Request.new(POST => $url,
Content-Type => 'application/json');
+ if $!access-token.so {
+ $req.header.field(Authorization => "Bearer {$!access-token}");
+ }
$req.add-content($json);
return self!handle-error($!ua.request($req));
}
@@ -60,19 +72,27 @@ multi method post(Str $path, :$media = False, *%params) {
method post-bin(Str $path, Buf $buf, :$content-type) {
my $encoded-path = $path.subst('#', '%23');
- my $req = POST($.base-url(:media)
- ~ $encoded-path
- ~ "?{self!access-token-arg}",
+ my $req = POST(
+ $.base-url(:media) ~ $encoded-path,
content => $buf,
Content-Type => $content-type
);
+
+ if $!access-token.so {
+ $req.header.field(Authorization => "Bearer {$!access-token}");
+ }
+
return self!handle-error($!ua.request($req));
}
multi method put(Str $path, Str $json) {
my $encoded-path = $path.subst('#', '%23');
- my $req = HTTP::Request.new(PUT => $.base-url() ~ $encoded-path ~ "?{self!access-token-arg}",
+ my $req = HTTP::Request.new(PUT => $.base-url() ~ $encoded-path,
Content-Type => 'application/json');
+ if $!access-token.so {
+ $req.header.field(Authorization => "Bearer {$!access-token}");
+ }
+
$req.add-content($json);
return self!handle-error($!ua.request($req))
}
@@ -84,7 +104,12 @@ multi method put(Str $path, *%params) {
method delete(Str $path) {
my $encoded-path = $path.subst('#', '%23');
my $req = HTTP::Request.new(
- DELETE => $.base-url ~ $encoded-path ~ "?{self!access-token-arg}",
+ DELETE => $.base-url ~ $encoded-path,
Content-Type => 'application/json');
+ if $!access-token.so {
+ $req.header.field(
+ Authorization => "Bearer $!access-token"
+ );
+ }
return self!handle-error($!ua.request($req))
}