2020-10-12 17:00:50 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-10-12 17:00:50 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
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
|
2020-07-12 15:23:33 +00:00
|
|
|
@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
|
2020-11-10 16:18:53 +00:00
|
|
|
descriptions =
|
|
|
|
Pleroma.Web.ActivityPub.MRF.config_descriptions()
|
|
|
|
|> Enum.reduce(@raw_descriptions, fn description, acc -> [description | acc] end)
|
|
|
|
|
|
|
|
:persistent_term.put(@term, Pleroma.Docs.Generator.convert_to_strings(descriptions))
|
2020-07-12 15:23:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
@spec compiled_descriptions :: Map.t()
|
|
|
|
def compiled_descriptions do
|
|
|
|
:persistent_term.get(@term)
|
|
|
|
end
|
2019-08-30 16:14:01 +00:00
|
|
|
|
|
|
|
@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
|
|
|
|
end
|