forked from AkkomaGang/akkoma
better config
This commit is contained in:
parent
52224de39f
commit
55abd8482e
2 changed files with 7 additions and 4 deletions
|
@ -23,7 +23,9 @@
|
||||||
public_endpoint: "https://s3.amazonaws.com",
|
public_endpoint: "https://s3.amazonaws.com",
|
||||||
force_media_proxy: false
|
force_media_proxy: false
|
||||||
|
|
||||||
config :pleroma, Pleroma.Uploaders.Mdii, host_name: "mdii.sakura.ne.jp"
|
config :pleroma, Pleroma.Uploaders.Mdii,
|
||||||
|
cgi: "https://mdii.sakura.ne.jp/mdii-post.cgi",
|
||||||
|
files: "https://mdii.sakura.ne.jp"
|
||||||
|
|
||||||
config :pleroma, :emoji, shortcode_globs: ["/emoji/custom/**/*.png"]
|
config :pleroma, :emoji, shortcode_globs: ["/emoji/custom/**/*.png"]
|
||||||
|
|
||||||
|
|
|
@ -5,18 +5,19 @@ defmodule Pleroma.Uploaders.Mdii do
|
||||||
|
|
||||||
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)
|
cgi = Keyword.fetch!(settings, :cgi)
|
||||||
|
files = Keyword.fetch!(settings, :files)
|
||||||
|
|
||||||
{:ok, file_data} = File.read(path)
|
{:ok, file_data} = File.read(path)
|
||||||
|
|
||||||
File.rm!(path)
|
File.rm!(path)
|
||||||
|
|
||||||
extension = String.split(name, ".") |> List.last()
|
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
|
with {:ok, %{status_code: 200, body: body}} <- @httpoison.post(query, file_data) do
|
||||||
remote_file_name = String.split(body) |> List.first()
|
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}
|
{:ok, public_url}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue