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 Pleroma.Config.Holder.save_default()
39 Pleroma.HTML.compile_scrubbers()
40 Config.DeprecationWarnings.warn()
41 Pleroma.Plugs.HTTPSecurityPlug.warn_if_disabled()
42 Pleroma.Repo.check_migrations_applied!()
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.
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
77 Pleroma.Plugs.RateLimiter.Supervisor
80 http_children(adapter, @env) ++
83 Pleroma.JobQueueMonitor,
84 {Oban, Config.get(Oban)}
86 task_children(@env) ++
87 streamer_child(@env) ++
88 chat_child(@env, chat_enabled?()) ++
94 # See http://elixir-lang.org/docs/stable/elixir/Supervisor.html
95 # for other strategies and supported options
96 opts = [strategy: :one_for_one, name: Pleroma.Supervisor]
97 Supervisor.start_link(children, opts)
100 def load_custom_modules do
101 dir = Config.get([:modules, :runtime_dir])
103 if dir && File.exists?(dir) do
105 |> Pleroma.Utils.compile_dir()
107 {:error, _errors, _warnings} ->
108 raise "Invalid custom modules"
110 {:ok, modules, _warnings} ->
112 Enum.each(modules, fn mod ->
113 Logger.info("Custom module loaded: #{inspect(mod)}")
122 defp setup_instrumenters do
123 require Prometheus.Registry
125 if Application.get_env(:prometheus, Pleroma.Repo.Instrumenter) do
129 [:pleroma, :repo, :query],
130 &Pleroma.Repo.Instrumenter.handle_event/4,
134 Pleroma.Repo.Instrumenter.setup()
137 Pleroma.Web.Endpoint.MetricsExporter.setup()
138 Pleroma.Web.Endpoint.PipelineInstrumenter.setup()
139 Pleroma.Web.Endpoint.Instrumenter.setup()
142 defp cachex_children do
144 build_cachex("used_captcha", ttl_interval: seconds_valid_interval()),
145 build_cachex("user", default_ttl: 25_000, ttl_interval: 1000, limit: 2500),
146 build_cachex("object", default_ttl: 25_000, ttl_interval: 1000, limit: 2500),
147 build_cachex("rich_media", default_ttl: :timer.minutes(120), limit: 5000),
148 build_cachex("scrubber", limit: 2500),
149 build_cachex("idempotency", expiration: idempotency_expiration(), limit: 2500),
150 build_cachex("web_resp", limit: 2500),
151 build_cachex("emoji_packs", expiration: emoji_packs_expiration(), limit: 10),
152 build_cachex("failed_proxy_url", limit: 2500)
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 defp build_cachex(type, opts),
167 id: String.to_atom("cachex_" <> type),
168 start: {Cachex, :start_link, [String.to_atom(type <> "_cache"), opts]},
172 defp chat_enabled?, do: Config.get([:chat, :enabled])
174 defp streamer_child(env) when env in [:test, :benchmark], do: []
176 defp streamer_child(_) do
177 [Pleroma.Web.Streamer.supervisor()]
180 defp chat_child(_env, true) do
181 [Pleroma.Web.ChatChannel.ChatChannelState]
184 defp chat_child(_, _), do: []
186 defp task_children(:test) do
190 start: {Task, :start_link, [&Pleroma.Web.Push.init/0]},
196 defp task_children(_) do
200 start: {Task, :start_link, [&Pleroma.Web.Push.init/0]},
204 id: :internal_fetch_init,
205 start: {Task, :start_link, [&Pleroma.Web.ActivityPub.InternalFetchActor.init/0]},
211 # start hackney and gun pools in tests
212 defp http_children(_, :test) do
213 hackney_options = Config.get([:hackney_pools, :federation])
214 hackney_pool = :hackney_pool.child_spec(:federation, hackney_options)
215 [hackney_pool, Pleroma.Pool.Supervisor]
218 defp http_children(Tesla.Adapter.Hackney, _) do
219 pools = [:federation, :media]
222 if Config.get([Pleroma.Upload, :proxy_remote]) do
229 options = Config.get([:hackney_pools, pool])
230 :hackney_pool.child_spec(pool, options)
234 defp http_children(Tesla.Adapter.Gun, _), do: [Pleroma.Pool.Supervisor]
236 defp http_children(_, _), do: []