Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F84167113
json.ex
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
json.ex
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.Docs.JSON
do
@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
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
))
end
@spec
compiled_descriptions
::
Map
.
t
()
def
compiled_descriptions
do
:persistent_term
.
get
(
@term
)
end
@spec
process
(
keyword
())
::
{
:ok
,
String
.
t
()}
def
process
(
descriptions
)
do
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
),
:ok
<-
IO
.
write
(
file
,
json
),
:ok
<-
File
.
close
(
file
)
do
{
:ok
,
path
}
end
end
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Thu, Jun 4, 7:21 PM (6 h, 5 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1537550
Default Alt Text
json.ex (1 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment