1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Application do
14 @name Mix.Project.config()[:name]
15 @version Mix.Project.config()[:version]
16 @repository Mix.Project.config()[:source_url]
20 def version, do: @version
21 def named_version, do: @name <> " " <> @version
22 def repository, do: @repository
25 case Config.get([:http, :user_agent], :default) do
27 info = "#{Pleroma.Web.base_url()} <#{Config.get([:instance, :email], "")}>"
28 named_version() <> "; " <> info
35 # See http://elixir-lang.org/docs/stable/elixir/Application.html
36 # for more information on OTP Applications
37 def start(_type, _args) do
38 Config.Holder.save_default()
39 Pleroma.HTML.compile_scrubbers()
40 Config.DeprecationWarnings.warn()
41 Pleroma.Plugs.HTTPSecurityPlug.warn_if_disabled()
42 Pleroma.ApplicationRequirements.verify!()
46 adapter = Application.get_env(:tesla, :adapter)
48 if adapter == Tesla.Adapter.Gun do
49 if version = Pleroma.OTPVersion.version() do
53 |> Enum.map(&String.to_integer/1)
56 if (major == 22 and minor < 2) or major < 22 do
58 !!!OTP VERSION WARNING!!!
59 You are using gun adapter with OTP version #{version}, which doesn't support correct handling of unordered certificates chains. Please update your Erlang/OTP to at least 22.2.
64 !!!OTP VERSION WARNING!!!
65 To support correct handling of unordered certificates chains - OTP version must be > 22.2.
70 # Define workers and child supervisors to be supervised
76 Pleroma.Plugs.RateLimiter.Supervisor
79 http_children(adapter, @env) ++
82 Pleroma.JobQueueMonitor,
83 {Oban, Config.get(Oban)}
85 task_children(@env) ++
86 streamer_child(@env) ++
87 chat_child(@env, chat_enabled?()) ++
93 # See http://elixir-lang.org/docs/stable/elixir/Supervisor.html
94 # for other strategies and supported options
95 opts = [strategy: :one_for_one, name: Pleroma.Supervisor]
96 Supervisor.start_link(children, opts)
99 def load_custom_modules do
100 dir = Config.get([:modules, :runtime_dir])
102 if dir && File.exists?(dir) do
104 |> Pleroma.Utils.compile_dir()
106 {:error, _errors, _warnings} ->
107 raise "Invalid custom modules"
109 {:ok, modules, _warnings} ->
111 Enum.each(modules, fn mod ->
112 Logger.info("Custom module loaded: #{inspect(mod)}")
121 defp setup_instrumenters do
122 require Prometheus.Registry
124 if Application.get_env(:prometheus, Pleroma.Repo.Instrumenter) do
128 [:pleroma, :repo, :query],
129 &Pleroma.Repo.Instrumenter.handle_event/4,
133 Pleroma.Repo.Instrumenter.setup()
136 Pleroma.Web.Endpoint.MetricsExporter.setup()
137 Pleroma.Web.Endpoint.PipelineInstrumenter.setup()
138 Pleroma.Web.Endpoint.Instrumenter.setup()
141 defp cachex_children do
143 build_cachex("used_captcha", ttl_interval: seconds_valid_interval()),
144 build_cachex("user", default_ttl: 25_000, ttl_interval: 1000, limit: 2500),
145 build_cachex("object", default_ttl: 25_000, ttl_interval: 1000, limit: 2500),
146 build_cachex("rich_media", default_ttl: :timer.minutes(120), limit: 5000),
147 build_cachex("scrubber", limit: 2500),
148 build_cachex("idempotency", expiration: idempotency_expiration(), limit: 2500),
149 build_cachex("web_resp", limit: 2500),
150 build_cachex("emoji_packs", expiration: emoji_packs_expiration(), limit: 10),
151 build_cachex("failed_proxy_url", limit: 2500),
152 build_cachex("banned_urls", default_ttl: :timer.hours(24 * 30), limit: 5_000)
156 defp emoji_packs_expiration,
157 do: expiration(default: :timer.seconds(5 * 60), interval: :timer.seconds(60))
159 defp idempotency_expiration,
160 do: expiration(default: :timer.seconds(6 * 60 * 60), interval: :timer.seconds(60))
162 defp seconds_valid_interval,
163 do: :timer.seconds(Config.get!([Pleroma.Captcha, :seconds_valid]))
165 @spec build_cachex(String.t(), keyword()) :: map()
166 def build_cachex(type, opts),
168 id: String.to_atom("cachex_" <> type),
169 start: {Cachex, :start_link, [String.to_atom(type <> "_cache"), opts]},
173 defp chat_enabled?, do: Config.get([:chat, :enabled])
175 defp streamer_child(env) when env in [:test, :benchmark], do: []
177 defp streamer_child(_) do
181 name: Pleroma.Web.Streamer.registry(),
183 partitions: System.schedulers_online()
188 defp chat_child(_env, true) do
189 [Pleroma.Web.ChatChannel.ChatChannelState]
192 defp chat_child(_, _), do: []
194 defp task_children(:test) do
198 start: {Task, :start_link, [&Pleroma.Web.Push.init/0]},
204 defp task_children(_) do
208 start: {Task, :start_link, [&Pleroma.Web.Push.init/0]},
212 id: :internal_fetch_init,
213 start: {Task, :start_link, [&Pleroma.Web.ActivityPub.InternalFetchActor.init/0]},
219 # start hackney and gun pools in tests
220 defp http_children(_, :test) do
221 hackney_options = Config.get([:hackney_pools, :federation])
222 hackney_pool = :hackney_pool.child_spec(:federation, hackney_options)
223 [hackney_pool, Pleroma.Pool.Supervisor]
226 defp http_children(Tesla.Adapter.Hackney, _) do
227 pools = [:federation, :media]
230 if Config.get([Pleroma.Upload, :proxy_remote]) do
237 options = Config.get([:hackney_pools, pool])
238 :hackney_pool.child_spec(pool, options)
242 defp http_children(Tesla.Adapter.Gun, _), do: [Pleroma.Pool.Supervisor]
244 defp http_children(_, _), do: []