2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 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
|
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
|
2018-04-02 11:13:14 +00:00
|
|
|
[signature | _] = get_req_header(conn, "signature")
|
2018-03-11 13:37:23 +00:00
|
|
|
|
2019-07-18 15:06:58 +00:00
|
|
|
if signature do
|
|
|
|
# set (request-target) header to the appropriate value
|
|
|
|
# we also replace the digest header with the one we computed
|
|
|
|
conn =
|
|
|
|
conn
|
|
|
|
|> put_req_header(
|
|
|
|
"(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 =
|
|
|
|
if conn.assigns[:digest] do
|
|
|
|
conn
|
|
|
|
|> put_req_header("digest", conn.assigns[:digest])
|
|
|
|
else
|
|
|
|
conn
|
|
|
|
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
|
|
|
|
end
|