2018-12-23 13:04:54 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 08:41:47 -07:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 13:04:54 -07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-12-12 02:17:21 -07:00
|
|
|
defmodule Pleroma.Web.Plugs.HTTPSignaturePlug do
|
2018-05-19 01:03:53 -06:00
|
|
|
alias Pleroma.Web.ActivityPub.Utils
|
2019-03-04 19:52:23 -07:00
|
|
|
alias Pleroma.Web.HTTPSignatures
|
2017-12-12 02:17:21 -07:00
|
|
|
import Plug.Conn
|
2018-02-22 06:57:35 -07:00
|
|
|
require Logger
|
2017-12-12 02:17:21 -07:00
|
|
|
|
|
|
|
def init(options) do
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
2018-05-04 14:59:01 -06:00
|
|
|
def call(%{assigns: %{valid_signature: true}} = conn, _opts) do
|
2018-02-15 11:58:26 -07:00
|
|
|
conn
|
|
|
|
end
|
|
|
|
|
2018-05-04 14:59:01 -06:00
|
|
|
def call(conn, _opts) do
|
2018-05-26 05:52:05 -06:00
|
|
|
user = Utils.get_ap_id(conn.params["actor"])
|
2018-02-22 06:57:35 -07:00
|
|
|
Logger.debug("Checking sig for #{user}")
|
2018-04-02 05:13:14 -06:00
|
|
|
[signature | _] = get_req_header(conn, "signature")
|
2018-03-11 07:37:23 -06:00
|
|
|
|
2018-04-02 05:13:14 -06:00
|
|
|
cond do
|
|
|
|
signature && String.contains?(signature, user) ->
|
2018-07-31 17:17:47 -06:00
|
|
|
# set (request-target) header to the appropriate value
|
|
|
|
# we also replace the digest header with the one we computed
|
2018-04-02 05:13:14 -06:00
|
|
|
conn =
|
|
|
|
conn
|
|
|
|
|> put_req_header(
|
|
|
|
"(request-target)",
|
|
|
|
String.downcase("#{conn.method}") <> " #{conn.request_path}"
|
|
|
|
)
|
|
|
|
|
2018-07-31 17:17:47 -06:00
|
|
|
conn =
|
|
|
|
if conn.assigns[:digest] do
|
|
|
|
conn
|
|
|
|
|> put_req_header("digest", conn.assigns[:digest])
|
|
|
|
else
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
|
2018-04-02 05:13:14 -06:00
|
|
|
assign(conn, :valid_signature, HTTPSignatures.validate_conn(conn))
|
2017-12-12 02:17:21 -07:00
|
|
|
|
2018-04-02 05:13:14 -06:00
|
|
|
signature ->
|
|
|
|
Logger.debug("Signature not from actor")
|
|
|
|
assign(conn, :valid_signature, false)
|
|
|
|
|
|
|
|
true ->
|
|
|
|
Logger.debug("No signature header!")
|
|
|
|
conn
|
2017-12-12 02:17:21 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|