aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatias Linares <matiaslina@gmail.com>2019-01-06 21:02:29 -0300
committerMatias Linares <matiaslina@gmail.com>2019-01-06 21:02:29 -0300
commit9e392def5355bdec60b17f7a3c86a6928e94a453 (patch)
treeeba96ec0c3aaf35d63048ac99b5d40321619af48
parent7e48cfe9a4226599ea27da9adb85ab39618260b5 (diff)
downloadperl6-matrix-client-9e392def5355bdec60b17f7a3c86a6928e94a453.tar.gz
Add requester page
-rw-r--r--docs/requester.pod670
1 files changed, 70 insertions, 0 deletions
diff --git a/docs/requester.pod6 b/docs/requester.pod6
new file mode 100644
index 0000000..21e0f33
--- /dev/null
+++ b/docs/requester.pod6
@@ -0,0 +1,70 @@
+=begin pod
+
+=TITLE role Matrix::Client::Requester
+
+=SUBTITLE Role for HTTP requests
+
+=for code
+role Matrix::Requester { }
+
+Role that gives the base API for objects that interacts to the matrix server. The
+attributes that can be set can be:
+
+=head1 Attributes
+
+=head2 Str home-server
+
+The url of the home-server.
+
+=head2 Str access-token
+
+access token to make authorized calls to the matrix server.
+
+=head2 Str url-prefix
+
+Prefix to all the paths used in the methods.
+
+=head1 Methods
+
+=head2 get
+
+=for code
+method get(Str $path, :$media = False, *%data)
+
+Do a GET to C<$path>.
+
+All the C<*%data> is used to build the query params for the url.
+
+=head2 post
+
+=for code
+multi method post(Str $path, Str $params, :$media = False)
+multi method post(Str $path, :$media = False, *%params)
+
+Do a POST to C<$path> with C<$params> as JSON body. With the
+named C<*%params>, those are parameters are converted into JSON.
+
+=head2 post-bin
+
+=for code
+method post-bin(Str $path, Buf $buf, :$content-type)
+
+Do a POST to C<$path> with binary data in the body.
+
+=head2 put
+
+=for code
+multi method put(Str $path, Str $params)
+multi method put(Str $path, *%params)
+
+Do a PUT to C<$path> with C<$params> as JSON body. With the named
+C<*%params>, those parameters are converted into JSON.
+
+=head2 delete
+
+=for code
+method delete(Str $path)
+
+Do a DELETE to C<$path>.
+
+=end pod \ No newline at end of file