filter exif data #187
This commit is contained in:
parent
fc012491a5
commit
cb21bf5fc2
3 changed files with 13 additions and 2 deletions
|
@ -10,7 +10,9 @@
|
||||||
|
|
||||||
config :pleroma, Pleroma.Repo, types: Pleroma.PostgresTypes
|
config :pleroma, Pleroma.Repo, types: Pleroma.PostgresTypes
|
||||||
|
|
||||||
config :pleroma, Pleroma.Upload, uploads: "uploads"
|
config :pleroma, Pleroma.Upload,
|
||||||
|
uploads: "uploads",
|
||||||
|
strip_exif: false
|
||||||
|
|
||||||
# Configures the endpoint
|
# Configures the endpoint
|
||||||
config :pleroma, Pleroma.Web.Endpoint,
|
config :pleroma, Pleroma.Web.Endpoint,
|
||||||
|
|
|
@ -80,6 +80,14 @@ def store(%{"img" => "data:image/" <> image_data}, should_dedupe) do
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def strip_exif_data(file) do
|
||||||
|
settings = Application.get_env(:pleroma, Pleroma.Upload)
|
||||||
|
@do_strip = Keyword.fetch!(settings, :strip_exif)
|
||||||
|
if @do_strip == true do
|
||||||
|
Mogrify.open(file) |> Mogrify.custom("strip") |> Mogrify.save(in_place: true)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def upload_path do
|
def upload_path do
|
||||||
settings = Application.get_env(:pleroma, Pleroma.Upload)
|
settings = Application.get_env(:pleroma, Pleroma.Upload)
|
||||||
Keyword.fetch!(settings, :uploads)
|
Keyword.fetch!(settings, :uploads)
|
||||||
|
|
3
mix.exs
3
mix.exs
|
@ -47,7 +47,8 @@ defp deps do
|
||||||
{:jason, "~> 1.0"},
|
{:jason, "~> 1.0"},
|
||||||
{:ex_machina, "~> 2.0", only: :test},
|
{:ex_machina, "~> 2.0", only: :test},
|
||||||
{:credo, "~> 0.7", only: [:dev, :test]},
|
{:credo, "~> 0.7", only: [:dev, :test]},
|
||||||
{:mock, "~> 0.3.0", only: :test}
|
{:mock, "~> 0.3.0", only: :test},
|
||||||
|
{:mogrify, "~> 0.6.1"}
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue