Add CSP Policy for pictures
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
f5e81fab3f
commit
e97206077c
@ -29,8 +29,12 @@ defmodule Mobilizon.Service.Pictures.Provider do
|
|||||||
iex> search("London")
|
iex> search("London")
|
||||||
%Information{url: "https://some_url_to.a/picture.jpeg", author: %{name: "An author", url: "https://url.to/profile"}, source: %{name: "The source name", url: "The source URL" }}
|
%Information{url: "https://some_url_to.a/picture.jpeg", author: %{name: "An author", url: "https://url.to/profile"}, source: %{name: "The source name", url: "The source URL" }}
|
||||||
"""
|
"""
|
||||||
@callback search(location :: String.t(), options :: keyword) ::
|
@callback search(location :: String.t(), options :: keyword) :: Information.t()
|
||||||
[Information.t()]
|
|
||||||
|
@doc """
|
||||||
|
The CSP configuration to add for the service to work
|
||||||
|
"""
|
||||||
|
@callback csp() :: keyword()
|
||||||
|
|
||||||
@spec endpoint(atom()) :: String.t()
|
@spec endpoint(atom()) :: String.t()
|
||||||
def endpoint(provider) do
|
def endpoint(provider) do
|
||||||
|
@ -16,7 +16,7 @@ defmodule Mobilizon.Service.Pictures.Unsplash do
|
|||||||
@doc """
|
@doc """
|
||||||
Unsplash implementation for `c:Mobilizon.Service.Geospatial.Provider.geocode/3`.
|
Unsplash implementation for `c:Mobilizon.Service.Geospatial.Provider.geocode/3`.
|
||||||
"""
|
"""
|
||||||
@spec search(String.t(), keyword()) :: list(Information.t())
|
@spec search(String.t(), keyword()) :: Information.t()
|
||||||
def search(location, _options \\ []) do
|
def search(location, _options \\ []) do
|
||||||
url = "#{unsplash_endpoint()}#{@unsplash_api}?query=#{location}&orientation=landscape"
|
url = "#{unsplash_endpoint()}#{@unsplash_api}?query=#{location}&orientation=landscape"
|
||||||
|
|
||||||
@ -42,6 +42,16 @@ defmodule Mobilizon.Service.Pictures.Unsplash do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@impl Provider
|
||||||
|
@doc """
|
||||||
|
Returns the CSP configuration for this search provider to work
|
||||||
|
"""
|
||||||
|
def csp do
|
||||||
|
:mobilizon
|
||||||
|
|> Application.get_env(__MODULE__, [])
|
||||||
|
|> Keyword.get(:csp_policy, [])
|
||||||
|
end
|
||||||
|
|
||||||
defp unsplash_app_name do
|
defp unsplash_app_name do
|
||||||
Application.get_env(:mobilizon, __MODULE__) |> get_in([:app_name])
|
Application.get_env(:mobilizon, __MODULE__) |> get_in([:app_name])
|
||||||
end
|
end
|
||||||
|
@ -9,8 +9,7 @@ defmodule Mobilizon.Web.Plugs.HTTPSecurityPlug do
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
alias Mobilizon.Config
|
alias Mobilizon.Config
|
||||||
alias Mobilizon.Service.FrontEndAnalytics
|
alias Mobilizon.Service.{FrontEndAnalytics, GlobalSearch, Pictures}
|
||||||
alias Mobilizon.Service.GlobalSearch
|
|
||||||
import Plug.Conn
|
import Plug.Conn
|
||||||
|
|
||||||
require Logger
|
require Logger
|
||||||
@ -142,7 +141,11 @@ defmodule Mobilizon.Web.Plugs.HTTPSecurityPlug do
|
|||||||
config_policy = Keyword.get(options, type, Config.get([:http_security, :csp_policy, type]))
|
config_policy = Keyword.get(options, type, Config.get([:http_security, :csp_policy, type]))
|
||||||
front_end_analytics_policy = [Keyword.get(FrontEndAnalytics.csp(), type, [])]
|
front_end_analytics_policy = [Keyword.get(FrontEndAnalytics.csp(), type, [])]
|
||||||
global_search_policy = [Keyword.get(GlobalSearch.service().csp(), type, [])]
|
global_search_policy = [Keyword.get(GlobalSearch.service().csp(), type, [])]
|
||||||
|
pictures_policy = [Keyword.get(Pictures.service().csp(), type, [])]
|
||||||
|
|
||||||
Enum.join(config_policy ++ front_end_analytics_policy ++ global_search_policy, " ")
|
Enum.join(
|
||||||
|
config_policy ++ front_end_analytics_policy ++ global_search_policy ++ pictures_policy,
|
||||||
|
" "
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user