summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHubert Chathi <hubert@uhoreg.ca>2020-12-26 23:15:50 +0000
committerHubert Chathi <hubert@uhoreg.ca>2020-12-26 23:15:50 +0000
commit480180e0efdeebb050502fd7e7b897595a8406ab (patch)
treec799b80a50d820771313162690a157a5c6e2e621 /lib
parentAdd methods for creating rooms. (diff)
parentwrote interface for account_data (diff)
Merge branch 'account_data' into 'master'
Account data See merge request uhoreg/polyjuice_client!4
Diffstat (limited to 'lib')
-rw-r--r--lib/polyjuice/client/account.ex62
-rw-r--r--lib/polyjuice/client/endpoint/get_account_data.ex55
-rw-r--r--lib/polyjuice/client/endpoint/put_account_data.ex69
3 files changed, 186 insertions, 0 deletions
diff --git a/lib/polyjuice/client/account.ex b/lib/polyjuice/client/account.ex
new file mode 100644
index 0000000..0ad18c0
--- /dev/null
+++ b/lib/polyjuice/client/account.ex
@@ -0,0 +1,62 @@
+# Copyright 2020 Multi Prise <multiestunhappydev@gmail.com>
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+defmodule Polyjuice.Client.Account do
+ @moduledoc """
+ Account related functions.
+ """
+
+ @doc """
+ Get the data on an account
+ `event_type` : type of event queried
+ `user_id`: User concerned by the event
+ """
+ @spec get_data(
+ client_api :: Polyjuice.Client.API.t(),
+ user_id :: String.t(),
+ event_type :: String.t()
+ ) :: {:ok, map()} | any
+ def get_data(client_api, user_id, event_type) do
+ Polyjuice.Client.API.call(
+ client_api,
+ %Polyjuice.Client.Endpoint.GetAccountData{
+ user_id: user_id,
+ type: event_type
+ }
+ )
+ end
+
+ @doc """
+ Put the data on an account
+ `event_type` : type of event requiring modifications
+ `changes`: New changes
+ `user_id`: User concerned by the event
+ """
+ @spec put_data(
+ client_api :: Polyjuice.Client.API.t(),
+ user_id :: String.t(),
+ event_type :: String.t(),
+ changes :: Map.t()
+ ) :: {:ok} | any
+ def put_data(client_api, user_id, event_type, changes) do
+ Polyjuice.Client.API.call(
+ client_api,
+ %Polyjuice.Client.Endpoint.PutAccountData{
+ user_id: user_id,
+ type: event_type,
+ account_data: changes
+ }
+ )
+ end
+end
diff --git a/lib/polyjuice/client/endpoint/get_account_data.ex b/lib/polyjuice/client/endpoint/get_account_data.ex
new file mode 100644
index 0000000..ffb2110
--- /dev/null
+++ b/lib/polyjuice/client/endpoint/get_account_data.ex
@@ -0,0 +1,55 @@
+# Copyright 2020 Multi Prise <multiestunhappdev@gmail.com>
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+defmodule Polyjuice.Client.Endpoint.GetAccountData do
+ @moduledoc """
+ Set some account_data for the client.
+ https://matrix.org/docs/spec/client_server/r0.6.1#get-matrix-client-r0-user-userid-account-data-type
+ """
+
+ @type t :: %__MODULE__{
+ user_id: String.t(),
+ type: String.t()
+ }
+
+ @enforce_keys [:user_id, :type]
+
+ defstruct [
+ :user_id,
+ :type
+ ]
+
+ defimpl Polyjuice.Client.Endpoint.Proto do
+ def http_spec(%Polyjuice.Client.Endpoint.GetAccountData{
+ user_id: user_id,
+ type: type
+ }) do
+ e = &URI.encode_www_form/1
+
+ Polyjuice.Client.Endpoint.HttpSpec.get(
+ :r0,
+ "user/#{e.(user_id)}/account_data/#{e.(type)}",
+ auth_required: true,
+ headers: [
+ {"Accept", "application/json"},
+ {"Content-Type", "application/json"}
+ ]
+ )
+ end
+
+ def transform_http_result(req, status_code, resp_headers, body) do
+ Polyjuice.Client.Endpoint.parse_response(req, status_code, resp_headers, body)
+ end
+ end
+end
diff --git a/lib/polyjuice/client/endpoint/put_account_data.ex b/lib/polyjuice/client/endpoint/put_account_data.ex
new file mode 100644
index 0000000..f29caad
--- /dev/null
+++ b/lib/polyjuice/client/endpoint/put_account_data.ex
@@ -0,0 +1,69 @@
+# Copyright 2020 Multi Prise <multiestunhappdev@gmail.com>
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+defmodule Polyjuice.Client.Endpoint.PutAccountData do
+ @moduledoc """
+ Set some account_data for the client.
+ https://matrix.org/docs/spec/client_server/r0.6.1#put-matrix-client-r0-user-userid-account-data-type
+ """
+
+ @type t :: %__MODULE__{
+ user_id: String.t(),
+ type: String.t(),
+ account_data: Map.t()
+ }
+
+ @enforce_keys [:user_id, :type]
+
+ defstruct [
+ :user_id,
+ :type,
+ :account_data
+ ]
+
+ defimpl Polyjuice.Client.Endpoint.Proto do
+ def http_spec(%Polyjuice.Client.Endpoint.PutAccountData{
+ user_id: user_id,
+ type: type,
+ account_data: account_data
+ }) do
+ e = &URI.encode_www_form/1
+
+ body =
+ account_data
+ |> Jason.encode!()
+
+ Polyjuice.Client.Endpoint.HttpSpec.put(
+ :r0,
+ "user/#{e.(user_id)}/account_data/#{e.(type)}",
+ headers: [
+ {"Accept", "application/json"},
+ {"Content-Type", "application/json"}
+ ],
+ body: body,
+ auth_required: true
+ )
+ end
+
+ def transform_http_result(req, status_code, resp_headers, body) do
+ Polyjuice.Client.Endpoint.parse_response(req, status_code, resp_headers, body)
+ end
+ end
+
+ defimpl Polyjuice.Client.Endpoint.BodyParser do
+ def parse(_req, _body) do
+ :ok
+ end
+ end
+end