pleroma/lib/pleroma/docs/json.ex

31 lines
977 B
Elixir
Raw Normal View History

2019-08-30 12:21:48 +02:00
defmodule Pleroma.Docs.JSON do
2019-08-30 18:14:01 +02:00
@behaviour Pleroma.Docs.Generator
@external_resource "config/description.exs"
@raw_config Pleroma.Config.Loader.read("config/description.exs")
@raw_descriptions @raw_config[:pleroma][:config_description]
@term __MODULE__.Compiled
@spec compile :: :ok
def compile do
:persistent_term.put(@term, Pleroma.Docs.Generator.convert_to_strings(@raw_descriptions))
end
@spec compiled_descriptions :: Map.t()
def compiled_descriptions do
:persistent_term.get(@term)
end
2019-08-30 18:14:01 +02:00
@spec process(keyword()) :: {:ok, String.t()}
2019-08-30 12:21:48 +02:00
def process(descriptions) do
2019-09-29 10:17:38 +02: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 19:06:22 +02:00
:ok <- IO.write(file, json),
:ok <- File.close(file) do
2019-09-29 10:17:38 +02:00
{:ok, path}
2019-09-03 19:06:22 +02:00
end
2019-08-30 12:21:48 +02:00
end
end