2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-12-12 09:17:21 +00:00
|
|
|
defmodule Pleroma.Web.Plugs.HTTPSignaturePlug do
|
|
|
|
import Plug.Conn
|
2019-12-19 13:17:18 +00:00
|
|
|
import Phoenix.Controller, only: [get_format: 1, text: 2]
|
2018-02-22 13:57:35 +00:00
|
|
|
require Logger
|
2017-12-12 09:17:21 +00:00
|
|
|
|
|
|
|
def init(options) do
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
2018-05-04 20:59:01 +00:00
|
|
|
def call(%{assigns: %{valid_signature: true}} = conn, _opts) do
|
2018-02-15 18:58:26 +00:00
|
|
|
conn
|
|
|
|
end
|
|
|
|
|
2018-05-04 20:59:01 +00:00
|
|
|
def call(conn, _opts) do
|
2019-12-19 13:17:18 +00:00
|
|
|
if get_format(conn) == "activity+json" do
|
|
|
|
conn
|
|
|
|
|> maybe_assign_valid_signature()
|
|
|
|
|> maybe_require_signature()
|
|
|
|
else
|
|
|
|
conn
|
|
|
|
end
|
2019-12-16 15:24:03 +00:00
|
|
|
end
|
2018-03-11 13:37:23 +00:00
|
|
|
|
2019-12-16 15:24:03 +00:00
|
|
|
defp maybe_assign_valid_signature(conn) do
|
|
|
|
if has_signature_header?(conn) do
|
2019-07-18 15:06:58 +00:00
|
|
|
# set (request-target) header to the appropriate value
|
|
|
|
# we also replace the digest header with the one we computed
|
2019-12-16 15:24:03 +00:00
|
|
|
request_target = String.downcase("#{conn.method}") <> " #{conn.request_path}"
|
2017-12-12 09:17:21 +00:00
|
|
|
|
2019-07-18 15:06:58 +00:00
|
|
|
conn =
|
2019-12-16 15:24:03 +00:00
|
|
|
conn
|
|
|
|
|> put_req_header("(request-target)", request_target)
|
|
|
|
|> case do
|
|
|
|
%{assigns: %{digest: digest}} = conn -> put_req_header(conn, "digest", digest)
|
|
|
|
conn -> conn
|
2019-07-18 15:06:58 +00:00
|
|
|
end
|
2018-04-02 11:13:14 +00:00
|
|
|
|
2019-07-18 15:06:58 +00:00
|
|
|
assign(conn, :valid_signature, HTTPSignatures.validate_conn(conn))
|
|
|
|
else
|
|
|
|
Logger.debug("No signature header!")
|
|
|
|
conn
|
2017-12-12 09:17:21 +00:00
|
|
|
end
|
|
|
|
end
|
2019-12-16 15:24:03 +00:00
|
|
|
|
|
|
|
defp has_signature_header?(conn) do
|
|
|
|
conn |> get_req_header("signature") |> Enum.at(0, false)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp maybe_require_signature(%{assigns: %{valid_signature: true}} = conn), do: conn
|
|
|
|
|
|
|
|
defp maybe_require_signature(conn) do
|
|
|
|
if Pleroma.Config.get([:activitypub, :authorized_fetch_mode], false) do
|
|
|
|
conn
|
|
|
|
|> put_status(:unauthorized)
|
2019-12-19 13:17:18 +00:00
|
|
|
|> text("Request not signed")
|
2019-12-16 15:24:03 +00:00
|
|
|
|> halt()
|
|
|
|
else
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
end
|
2017-12-12 09:17:21 +00:00
|
|
|
end
|