summaryrefslogtreecommitdiff
path: root/lib/polyjuice/client/well_known.ex
blob: c63803fdf5cbd474dbdd59ad69e8bfb1863cb1aa (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# 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.WellKnown do
  @moduledoc """
  Look up and interpret a server's `.well-known` file.

  https://matrix.org/docs/spec/client_server/latest#well-known-uri
  """

  @doc """
  Get and parse a server's `.well-known` file based on its server name.

  If the homeserver information is correct, returns a tuple of the form `{:ok,
  homeserver_url, identity_server_url, well_known}`, where
  `identity_server_url` is either a string giving the identity server's URL,
  `nil` indicating no identity server was specified, or `:fail_error`
  indicating an error in fetching the identity server URL; and `well_known` is
  the full contents of the well_known file.

  This function is essentially equivalent to calling `get_for_server` followed
  by `get_homeserver` and `get_identity_server`.

  """
  @spec discover_server(server_name :: String.t()) ::
          {:ok, String.t(), String.t() | nil | :fail_error, map}
          | {:error, :ignore}
          | {:error, :fail_prompt}
          | {:error, :fail_error}
  def discover_server(server_name) when is_binary(server_name) do
    with {:ok, json} <- get_for_server(server_name),
         {:ok, hs_url} <- get_homeserver(json) do
      case get_identity_server(json) do
        {:ok, is_url} ->
          {:ok, hs_url, is_url, json}

        {:error, err} ->
          {:ok, hs_url, err, json}
      end
    else
      err ->
        err
    end
  end

  @doc """
  Get a server's `.well-known` file based on its server name.
  """
  @spec get_for_server(server_name :: String.t()) ::
          map
          | {:error, :ignore}
          | {:error, :fail_prompt}
          | {:error, :fail_error}
  def get_for_server(server_name) when is_binary(server_name) do
    url =
      %URI{
        scheme: "https",
        host: server_name,
        authority: server_name,
        path: "/.well-known/matrix/client",
        port: 443
      }
      |> to_string()

    case :hackney.request(:get, url, [], "", follow_redirect: true) do
      {:ok, 404, _, _} ->
        {:error, :ignore}

      {:ok, code, _headers, _client_ref} when code != 200 ->
        {:error, :fail_prompt}

      {:ok, 200, _headers, client_ref} ->
        with {:ok, body} <- :hackney.body(client_ref),
             {:ok, %{}} = ret <- Jason.decode(body) do
          ret
        else
          _ ->
            {:error, :fail_prompt}
        end

      _ ->
        # if we can't find the server, treat it like a 404
        {:error, :ignore}
    end
  end

  @doc """
  Get the homeserver that's specified in a `.well-known` file.
  """
  @spec get_homeserver(map) :: {:ok, String.t()} | {:error, :fail_error} | {:error, :fail_prompt}
  def get_homeserver(%{} = well_known) do
    with %{"m.homeserver" => %{"base_url" => base_url}} <- well_known do
      with %{host: host, scheme: scheme, path: path} = parsed_url
           when host != nil and (scheme == "http" or scheme == "https") <- URI.parse(base_url),
           slashed_url =
             (if path != nil and !String.ends_with?(path, "/") do
                %{parsed_url | path: path <> "/"}
              else
                parsed_url
              end),
           {:ok, %{"versions" => v}} when is_list(v) <-
             URI.merge(slashed_url, "_matrix/client/versions") |> validate_server() do
        {:ok, to_string(slashed_url)}
      else
        _ -> {:error, :fail_error}
      end
    else
      _ ->
        {:error, :fail_prompt}
    end
  end

  @doc """
  Get the identity server that's specified in a `.well-known` file.
  """
  @spec get_identity_server(map) :: {:ok, String.t()} | {:error, :fail_error}
  def get_identity_server(%{} = well_known) do
    case well_known do
      %{"m.identity_server" => is_info} ->
        with %{"base_url" => base_url} <- is_info,
             %{host: host, scheme: scheme, path: path} = parsed_url
             when host != nil and (scheme == "http" or scheme == "https") <- URI.parse(base_url),
             slashed_url =
               (if path != nil and !String.ends_with?(path, "/") do
                  %{parsed_url | path: path <> "/"}
                else
                  parsed_url
                end),
             {:ok, %{}} <- URI.merge(slashed_url, "_matrix/identity/api/v1") |> validate_server() do
          {:ok, to_string(slashed_url)}
        else
          _ -> {:error, :fail_error}
        end

      _ ->
        {:ok, nil}
    end
  end

  # check that a given URL returns something JSON-y
  defp validate_server(%URI{} = url) do
    case :hackney.request(:get, to_string(url), [], "", []) do
      {:ok, 200, headers, client_ref} ->
        with "application/json" <- Polyjuice.Client.Endpoint.get_header(headers, "content-type"),
             {:ok, body} <- :hackney.body(client_ref),
             {:ok, json} <- Jason.decode(body) do
          {:ok, json}
        else
          _ ->
            {:error, :fail_error}
        end

      _ ->
        {:error, :fail_error}
    end
  end
end