diff options
author | hakabahitoyo <hakabahitoyo@example.com> | 2018-11-16 20:41:12 +0900 |
---|---|---|
committer | hakabahitoyo <hakabahitoyo@example.com> | 2018-11-16 20:41:12 +0900 |
commit | 55abd8482ed604587ffa9f5f3f64d36d4d5aa296 (patch) | |
tree | 0f0fd89d6e6ad9a3a27ff5849fb7fea292b7c715 /lib | |
parent | 52224de39fe757077448853a7e1546c0f01509af (diff) | |
download | pleroma-55abd8482ed604587ffa9f5f3f64d36d4d5aa296.tar.gz |
better config
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/uploaders/mdii.ex | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/pleroma/uploaders/mdii.ex b/lib/pleroma/uploaders/mdii.ex index 71f3d1be7..c62bab077 100644 --- a/lib/pleroma/uploaders/mdii.ex +++ b/lib/pleroma/uploaders/mdii.ex @@ -5,18 +5,19 @@ defmodule Pleroma.Uploaders.Mdii do def put_file(name, uuid, path, content_type, _should_dedupe) do settings = Application.get_env(:pleroma, Pleroma.Uploaders.Mdii) - host_name = Keyword.fetch!(settings, :host_name) + cgi = Keyword.fetch!(settings, :cgi) + files = Keyword.fetch!(settings, :files) {:ok, file_data} = File.read(path) File.rm!(path) extension = String.split(name, ".") |> List.last() - query = "https://#{host_name}/mdii-post.cgi?#{extension}" + query = "#{cgi}?#{extension}" with {:ok, %{status_code: 200, body: body}} <- @httpoison.post(query, file_data) do remote_file_name = String.split(body) |> List.first() - public_url = "https://#{host_name}/#{remote_file_name}.#{extension}" + public_url = "#{files}/#{remote_file_name}.#{extension}" {:ok, public_url} end end |