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