summaryrefslogtreecommitdiff
path: root/lib/polyjuice/client/media.ex
blob: 2a3702576d5dbe9d31c17dac48bb62f5e79fa87f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Copyright 2020 Hubert Chathi <hubert@uhoreg.ca>
#
# 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.Media do
  @moduledoc """
  Media-related functions.
  """
  require Logger

  @doc """
  Upload a file to the media repository.

  `data` may be either a binary, indicating the file contents, or a tuple
  `{:file, path}`, where `path` is a path to the file to be uploaded.

  `opts` is a keyword list of options.  Recognized options are:
  - `filename:` the filename to use for the uploaded file.  This is required
    when `data` is a binary.  If not specified, and `data` is of the form
    `{:file, path}`, then the filename defaults to the basename of the path.
  - `mimetype:` the mimetype to use for the uploaded file.  Defaults to
    `application/octet-stream`.
  """
  @spec upload(
          client_api :: Polyjuice.Client.API.t(),
          data :: binary | {:file, String.t()},
          opts :: Keyword.t()
        ) :: {:ok, String.t()} | any
  def upload(client_api, data, opts \\ []) do
    filename =
      Keyword.get_lazy(opts, :filename, fn ->
        case data do
          {:file, name} ->
            Path.basename(name)
        end
      end)

    mimetype = Keyword.get(opts, :mimetype, "application/octet-stream")

    Polyjuice.Client.API.call(
      client_api,
      %Polyjuice.Client.Endpoint.PostMediaUpload{
        filename: filename,
        data: data,
        mimetype: mimetype
      }
    )
  end

  @doc """
  Download a file from the media repository.

  `url` may be either a binary or a `URI` (giving an `mxc://` URI to download),
  or a `{server_name, media_id}` tuple.  `filename` is an (optional) filename to
  request that the server use, and `allow_remote` indicates whether the server
  should fetch media from remote servers if necessary (defaults to true).

  If successful, returns a tuple of the form `{:ok, filename, content_type, body}`,
  where `body` is a `Stream` such that `Enum.join(body)` is the file contents.
  """
  @spec download(
          client_api :: Polyjuice.Client.API.t(),
          url :: String.t() | URI.t() | {String.t(), String.t()},
          filename :: String.t(),
          allow_remote :: boolean
        ) :: {:ok, String.t(), String.t(), Stream.t()} | any
  def download(client_api, url, filename \\ nil, allow_remote \\ true) do
    Polyjuice.Client.API.call(
      client_api,
      %Polyjuice.Client.Endpoint.GetMediaDownload{
        url: url,
        allow_remote:
          cond do
            is_boolean(filename) -> filename
            is_boolean(allow_remote) -> allow_remote
          end,
        filename:
          cond do
            is_boolean(filename) -> nil
            true -> filename
          end
      }
    )
  end

  # 13.8.2.4   GET /_matrix/media/r0/thumbnail/{serverName}/{mediaId}
  # 13.8.2.5   GET /_matrix/media/r0/preview_url
  # 13.8.2.6   GET /_matrix/media/r0/config
end