2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-10-19 15:37:24 +00:00
|
|
|
defmodule Pleroma.Web.TwitterAPI.UtilView do
|
|
|
|
use Pleroma.Web, :view
|
2022-09-08 10:19:22 +00:00
|
|
|
import Phoenix.HTML
|
2017-10-19 15:37:24 +00:00
|
|
|
import Phoenix.HTML.Form
|
2022-09-08 10:19:22 +00:00
|
|
|
import Phoenix.HTML.Link
|
2020-10-12 23:49:37 +00:00
|
|
|
alias Pleroma.Config
|
2021-05-31 20:09:11 +00:00
|
|
|
alias Pleroma.Web.Endpoint
|
2022-02-21 23:42:25 +00:00
|
|
|
alias Pleroma.Web.Gettext
|
2020-06-03 17:40:48 +00:00
|
|
|
|
|
|
|
def status_net_config(instance) do
|
|
|
|
"""
|
|
|
|
<config>
|
|
|
|
<site>
|
|
|
|
<name>#{Keyword.get(instance, :name)}</name>
|
2021-05-31 20:09:11 +00:00
|
|
|
<site>#{Endpoint.url()}</site>
|
2020-06-03 17:40:48 +00:00
|
|
|
<textlimit>#{Keyword.get(instance, :limit)}</textlimit>
|
|
|
|
<closed>#{!Keyword.get(instance, :registrations_open)}</closed>
|
|
|
|
</site>
|
|
|
|
</config>
|
|
|
|
"""
|
|
|
|
end
|
2020-10-12 23:49:37 +00:00
|
|
|
|
|
|
|
def render("frontend_configurations.json", _) do
|
|
|
|
Config.get(:frontend_configurations, %{})
|
|
|
|
|> Enum.into(%{})
|
|
|
|
end
|
2017-10-19 15:37:24 +00:00
|
|
|
end
|