Fix GraphiQL CSP headers
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
6d3a6f001f
commit
bac2d3188c
|
@ -15,25 +15,26 @@ defmodule Mobilizon.Web.Plugs.HTTPSecurityPlug do
|
||||||
|
|
||||||
def init(opts), do: opts
|
def init(opts), do: opts
|
||||||
|
|
||||||
def call(conn, _options) do
|
def call(conn, options \\ []) do
|
||||||
if Config.get([:http_security, :enabled]) do
|
if Config.get([:http_security, :enabled]) do
|
||||||
conn
|
conn
|
||||||
|> merge_resp_headers(headers())
|
|> merge_resp_headers(headers(options))
|
||||||
|> maybe_send_sts_header(Config.get([:http_security, :sts]))
|
|> maybe_send_sts_header(Config.get([:http_security, :sts]))
|
||||||
else
|
else
|
||||||
conn
|
conn
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
defp headers do
|
defp headers(options) do
|
||||||
referrer_policy = Config.get([:http_security, :referrer_policy])
|
referrer_policy =
|
||||||
|
Keyword.get(options, :referrer_policy, Config.get([:http_security, :referrer_policy]))
|
||||||
|
|
||||||
[
|
[
|
||||||
{"x-xss-protection", "0"},
|
{"x-xss-protection", "0"},
|
||||||
{"x-frame-options", "DENY"},
|
{"x-frame-options", "DENY"},
|
||||||
{"x-content-type-options", "nosniff"},
|
{"x-content-type-options", "nosniff"},
|
||||||
{"referrer-policy", referrer_policy},
|
{"referrer-policy", referrer_policy},
|
||||||
{"content-security-policy", csp_string()}
|
{"content-security-policy", csp_string(options)}
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -55,14 +56,14 @@ defmodule Mobilizon.Web.Plugs.HTTPSecurityPlug do
|
||||||
@style_src "style-src 'self' "
|
@style_src "style-src 'self' "
|
||||||
@font_src "font-src 'self' "
|
@font_src "font-src 'self' "
|
||||||
|
|
||||||
defp csp_string do
|
defp csp_string(options) do
|
||||||
scheme = Config.get([Pleroma.Web.Endpoint, :url])[:scheme]
|
scheme = Keyword.get(options, :scheme, Config.get([Pleroma.Web.Endpoint, :url])[:scheme])
|
||||||
static_url = Mobilizon.Web.Endpoint.static_url()
|
static_url = Mobilizon.Web.Endpoint.static_url()
|
||||||
websocket_url = Mobilizon.Web.Endpoint.websocket_url()
|
websocket_url = Mobilizon.Web.Endpoint.websocket_url()
|
||||||
|
|
||||||
img_src = [@img_src | get_csp_config(:img_src)]
|
img_src = [@img_src | get_csp_config(:img_src, options)]
|
||||||
|
|
||||||
media_src = [@media_src | get_csp_config(:media_src)]
|
media_src = [@media_src | get_csp_config(:media_src, options)]
|
||||||
|
|
||||||
connect_src = [
|
connect_src = [
|
||||||
@connect_src,
|
@connect_src,
|
||||||
|
@ -70,7 +71,7 @@ defmodule Mobilizon.Web.Plugs.HTTPSecurityPlug do
|
||||||
?\s,
|
?\s,
|
||||||
websocket_url,
|
websocket_url,
|
||||||
?\s,
|
?\s,
|
||||||
get_csp_config(:connect_src)
|
get_csp_config(:connect_src, options)
|
||||||
]
|
]
|
||||||
|
|
||||||
script_src =
|
script_src =
|
||||||
|
@ -83,19 +84,22 @@ defmodule Mobilizon.Web.Plugs.HTTPSecurityPlug do
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
|
|
||||||
script_src = [script_src | get_csp_config(:script_src)]
|
script_src = [script_src | get_csp_config(:script_src, options)]
|
||||||
|
|
||||||
style_src = [@style_src | get_csp_config(:style_src)]
|
style_src =
|
||||||
|
if Config.get(:env) == :dev, do: [@style_src | "'unsafe-inline' "], else: @style_src
|
||||||
|
|
||||||
font_src = [@font_src | get_csp_config(:font_src)]
|
style_src = [style_src | get_csp_config(:style_src, options)]
|
||||||
|
|
||||||
|
font_src = [@font_src | get_csp_config(:font_src, options)]
|
||||||
|
|
||||||
frame_src = if Config.get(:env) == :dev, do: "frame-src 'self' ", else: "frame-src 'none' "
|
frame_src = if Config.get(:env) == :dev, do: "frame-src 'self' ", else: "frame-src 'none' "
|
||||||
frame_src = [frame_src | get_csp_config(:frame_src)]
|
frame_src = [frame_src | get_csp_config(:frame_src, options)]
|
||||||
|
|
||||||
frame_ancestors =
|
frame_ancestors =
|
||||||
if Config.get(:env) == :dev, do: "frame-ancestors 'self' ", else: "frame-ancestors 'none' "
|
if Config.get(:env) == :dev, do: "frame-ancestors 'self' ", else: "frame-ancestors 'none' "
|
||||||
|
|
||||||
frame_ancestors = [frame_ancestors | get_csp_config(:frame_ancestors)]
|
frame_ancestors = [frame_ancestors | get_csp_config(:frame_ancestors, options)]
|
||||||
|
|
||||||
insecure = if scheme == "https", do: "upgrade-insecure-requests"
|
insecure = if scheme == "https", do: "upgrade-insecure-requests"
|
||||||
|
|
||||||
|
@ -126,6 +130,9 @@ defmodule Mobilizon.Web.Plugs.HTTPSecurityPlug do
|
||||||
|
|
||||||
defp maybe_send_sts_header(conn, _), do: conn
|
defp maybe_send_sts_header(conn, _), do: conn
|
||||||
|
|
||||||
defp get_csp_config(type),
|
defp get_csp_config(type, options) do
|
||||||
do: [:http_security, :csp_policy, type] |> Config.get() |> Enum.join(" ")
|
options
|
||||||
|
|> Keyword.get(type, Config.get([:http_security, :csp_policy, type]))
|
||||||
|
|> Enum.join(" ")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -9,6 +9,16 @@ defmodule Mobilizon.Web.Router do
|
||||||
plug(Mobilizon.Web.Auth.Pipeline)
|
plug(Mobilizon.Web.Auth.Pipeline)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
pipeline :graphiql do
|
||||||
|
plug(Mobilizon.Web.Auth.Pipeline)
|
||||||
|
|
||||||
|
plug(Mobilizon.Web.Plugs.HTTPSecurityPlug,
|
||||||
|
script_src: ["cdn.jsdelivr.net"],
|
||||||
|
style_src: ["cdn.jsdelivr.net"],
|
||||||
|
font_src: ["cdn.jsdelivr.net"]
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
pipeline :host_meta do
|
pipeline :host_meta do
|
||||||
plug(:accepts, ["xrd-xml"])
|
plug(:accepts, ["xrd-xml"])
|
||||||
end
|
end
|
||||||
|
@ -144,7 +154,8 @@ defmodule Mobilizon.Web.Router do
|
||||||
|
|
||||||
## MOBILIZON
|
## MOBILIZON
|
||||||
scope "/graphiql" do
|
scope "/graphiql" do
|
||||||
pipe_through(:graphql)
|
pipe_through(:graphiql)
|
||||||
|
|
||||||
forward("/", Absinthe.Plug.GraphiQL, schema: Mobilizon.GraphQL.Schema)
|
forward("/", Absinthe.Plug.GraphiQL, schema: Mobilizon.GraphQL.Schema)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue