filter exif data #187

This commit is contained in:
Tristan Mahé 2018-06-26 13:45:47 -07:00
commit cb21bf5fc2
3 changed files with 13 additions and 2 deletions

View file

@ -80,6 +80,14 @@ defmodule Pleroma.Upload do
}
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
settings = Application.get_env(:pleroma, Pleroma.Upload)
Keyword.fetch!(settings, :uploads)