mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-05 08:03:11 +00:00
49 lines
1.1 KiB
Elixir
49 lines
1.1 KiB
Elixir
|
defmodule Pleroma.Uploaders.Swift.Keystone do
|
||
|
use HTTPoison.Base
|
||
|
|
||
|
@settings Application.get_env(:pleroma, Pleroma.Uploaders.Swift)
|
||
|
|
||
|
def process_url(url) do
|
||
|
Enum.join(
|
||
|
[Keyword.fetch!(@settings, :auth_url), url],
|
||
|
"/"
|
||
|
)
|
||
|
end
|
||
|
|
||
|
def process_response_body(body) do
|
||
|
body
|
||
|
|> Poison.decode!()
|
||
|
end
|
||
|
|
||
|
def get_token() do
|
||
|
username = Keyword.fetch!(@settings, :username)
|
||
|
password = Keyword.fetch!(@settings, :password)
|
||
|
tenant_id = Keyword.fetch!(@settings, :tenant_id)
|
||
|
|
||
|
case post(
|
||
|
"/tokens",
|
||
|
make_auth_body(username, password, tenant_id),
|
||
|
["Content-Type": "application/json"],
|
||
|
hackney: [:insecure]
|
||
|
) do
|
||
|
{:ok, %HTTPoison.Response{status_code: 200, body: body}} ->
|
||
|
body["access"]["token"]["id"]
|
||
|
|
||
|
{:ok, %HTTPoison.Response{status_code: _}} ->
|
||
|
""
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def make_auth_body(username, password, tenant) do
|
||
|
Poison.encode!(%{
|
||
|
:auth => %{
|
||
|
:passwordCredentials => %{
|
||
|
:username => username,
|
||
|
:password => password
|
||
|
},
|
||
|
:tenantId => tenant
|
||
|
}
|
||
|
})
|
||
|
end
|
||
|
end
|