2019-08-30 10:21:48 +00:00
|
|
|
defmodule Pleroma.Docs.JSON do
|
2019-08-30 16:14:01 +00:00
|
|
|
@behaviour Pleroma.Docs.Generator
|
|
|
|
|
|
|
|
@spec process(keyword()) :: {:ok, String.t()}
|
2019-08-30 10:21:48 +00:00
|
|
|
def process(descriptions) do
|
2019-09-29 08:17:38 +00:00
|
|
|
with path <- "docs/generated_config.json",
|
|
|
|
{:ok, file} <- File.open(path, [:write, :utf8]),
|
|
|
|
formatted_descriptions <-
|
|
|
|
Pleroma.Docs.Generator.convert_to_strings(descriptions),
|
|
|
|
json <- Jason.encode!(formatted_descriptions),
|
2019-09-03 17:06:22 +00:00
|
|
|
:ok <- IO.write(file, json),
|
|
|
|
:ok <- File.close(file) do
|
2019-09-29 08:17:38 +00:00
|
|
|
{:ok, path}
|
2019-09-03 17:06:22 +00:00
|
|
|
end
|
2019-08-30 10:21:48 +00:00
|
|
|
end
|
|
|
|
|
2019-09-29 08:17:38 +00:00
|
|
|
def compile do
|
2020-01-17 13:28:44 +00:00
|
|
|
with config <- Pleroma.Config.Loader.load("config/description.exs") do
|
2019-09-29 08:17:38 +00:00
|
|
|
config[:pleroma][:config_description]
|
|
|
|
|> Pleroma.Docs.Generator.convert_to_strings()
|
|
|
|
|> Jason.encode!()
|
|
|
|
end
|
2019-08-30 10:21:48 +00:00
|
|
|
end
|
|
|
|
end
|