1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Application do
8 @name Mix.Project.config()[:name]
9 @version Mix.Project.config()[:version]
10 @repository Mix.Project.config()[:source_url]
12 def version, do: @version
13 def named_version, do: @name <> " " <> @version
14 def repository, do: @repository
17 info = "#{Pleroma.Web.base_url()} <#{Pleroma.Config.get([:instance, :email], "")}>"
18 named_version() <> "; " <> info
21 # See http://elixir-lang.org/docs/stable/elixir/Application.html
22 # for more information on OTP Applications
23 def start(_type, _args) do
26 Pleroma.Config.DeprecationWarnings.warn()
29 # Define workers and child supervisors to be supervised
32 # Start the Ecto repository
33 %{id: Pleroma.Repo, start: {Pleroma.Repo, :start_link, []}, type: :supervisor},
34 %{id: Pleroma.Config.TransferTask, start: {Pleroma.Config.TransferTask, :start_link, []}},
35 %{id: Pleroma.Emoji, start: {Pleroma.Emoji, :start_link, []}},
36 %{id: Pleroma.Captcha, start: {Pleroma.Captcha, :start_link, []}},
38 id: :cachex_used_captcha_cache,
45 :timer.seconds(Pleroma.Config.get!([Pleroma.Captcha, :seconds_valid]))
76 id: :cachex_rich_media,
82 default_ttl: :timer.minutes(120),
101 {Cachex, :start_link,
107 default: :timer.seconds(6 * 60 * 60),
108 interval: :timer.seconds(60)
114 %{id: Pleroma.FlakeId, start: {Pleroma.FlakeId, :start_link, []}},
116 id: Pleroma.ScheduledActivityWorker,
117 start: {Pleroma.ScheduledActivityWorker, :start_link, []}
120 hackney_pool_children() ++
124 start: {Oban, :start_link, [Application.get_env(:pleroma, Oban)]}
127 id: Pleroma.Web.OAuth.Token.CleanWorker,
128 start: {Pleroma.Web.OAuth.Token.CleanWorker, :start_link, []}
132 start: {Pleroma.Stats, :start_link, []}
136 start: {Task, :start_link, [&Pleroma.Web.Push.init/0]},
141 start: {Task, :start_link, [&Pleroma.Web.Federator.init/0]},
145 id: :internal_fetch_init,
146 start: {Task, :start_link, [&Pleroma.Web.ActivityPub.InternalFetchActor.init/0]},
153 # Start the endpoint when the application starts
155 id: Pleroma.Web.Endpoint,
156 start: {Pleroma.Web.Endpoint, :start_link, []},
159 %{id: Pleroma.Gopher.Server, start: {Pleroma.Gopher.Server, :start_link, []}}
162 # See http://elixir-lang.org/docs/stable/elixir/Supervisor.html
163 # for other strategies and supported options
164 opts = [strategy: :one_for_one, name: Pleroma.Supervisor]
165 result = Supervisor.start_link(children, opts)
166 :ok = after_supervisor_start()
170 defp setup_instrumenters do
171 require Prometheus.Registry
173 if Application.get_env(:prometheus, Pleroma.Repo.Instrumenter) do
177 [:pleroma, :repo, :query],
178 &Pleroma.Repo.Instrumenter.handle_event/4,
182 Pleroma.Repo.Instrumenter.setup()
185 Pleroma.Web.Endpoint.MetricsExporter.setup()
186 Pleroma.Web.Endpoint.PipelineInstrumenter.setup()
187 Pleroma.Web.Endpoint.Instrumenter.setup()
190 def enabled_hackney_pools do
192 if Application.get_env(:tesla, :adapter) == Tesla.Adapter.Hackney do
197 if Pleroma.Config.get([Pleroma.Upload, :proxy_remote]) do
204 if Pleroma.Config.get(:env) == :test do
205 defp streamer_child, do: []
206 defp chat_child, do: []
208 defp streamer_child do
209 [%{id: Pleroma.Web.Streamer, start: {Pleroma.Web.Streamer, :start_link, []}}]
213 if Pleroma.Config.get([:chat, :enabled]) do
216 id: Pleroma.Web.ChatChannel.ChatChannelState,
217 start: {Pleroma.Web.ChatChannel.ChatChannelState, :start_link, []}
226 defp hackney_pool_children do
227 for pool <- enabled_hackney_pools() do
228 options = Pleroma.Config.get([:hackney_pools, pool])
229 :hackney_pool.child_spec(pool, options)
233 defp after_supervisor_start do
234 with digest_config <- Application.get_env(:pleroma, :email_notifications)[:digest],
235 true <- digest_config[:active] do
236 # TODO: consider replacing with `quantum` scheduler
237 PleromaJobQueue.schedule(
238 digest_config[:schedule],
240 Pleroma.DigestEmailWorker