omplement mdii uploader
This commit is contained in:
parent
58af0787be
commit
698cb3587c
|
@ -1,6 +1,8 @@
|
||||||
defmodule Pleroma.Uploaders.Mdii do
|
defmodule Pleroma.Uploaders.Mdii do
|
||||||
@behaviour Pleroma.Uploaders.Uploader
|
@behaviour Pleroma.Uploaders.Uploader
|
||||||
|
|
||||||
|
@httpoison Application.get_env(:pleroma, :httpoison)
|
||||||
|
|
||||||
def put_file(name, uuid, path, content_type, _should_dedupe) do
|
def put_file(name, uuid, path, content_type, _should_dedupe) do
|
||||||
settings = Application.get_env(:pleroma, Pleroma.Uploaders.Mdii)
|
settings = Application.get_env(:pleroma, Pleroma.Uploaders.Mdii)
|
||||||
host_name = Keyword.fetch!(settings, :host_name)
|
host_name = Keyword.fetch!(settings, :host_name)
|
||||||
|
@ -8,12 +10,15 @@ def put_file(name, uuid, path, content_type, _should_dedupe) do
|
||||||
{:ok, file_data} = File.read(path)
|
{:ok, file_data} = File.read(path)
|
||||||
|
|
||||||
File.rm!(path)
|
File.rm!(path)
|
||||||
|
|
||||||
|
extension = Regex.replace(~r/^image\//, content_type, "")
|
||||||
|
query = "https://#{host_name}/mdii.cgi?#{extension}"
|
||||||
|
|
||||||
remote_file_name = "00000"
|
with {:ok, %{status_code: 200, body: body}} <-
|
||||||
extension = "png"
|
@httpoison.get(url, file_data) do
|
||||||
|
remote_file_name = body
|
||||||
public_url = "https://#{host_name}/#{remote_file_name}.#{extension}"
|
public_url = "https://#{host_name}/#{remote_file_name}.#{extension}"
|
||||||
|
{:ok, public_url}
|
||||||
{:ok, public_url}
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue