2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-03-17 16:09:58 +00:00
|
|
|
defmodule Pleroma.Application do
|
|
|
|
use Application
|
2018-11-19 19:58:12 +00:00
|
|
|
import Supervisor.Spec
|
2017-03-17 16:09:58 +00:00
|
|
|
|
2019-02-01 17:11:23 +00:00
|
|
|
@name Mix.Project.config()[:name]
|
2018-11-20 16:55:03 +00:00
|
|
|
@version Mix.Project.config()[:version]
|
2019-02-01 17:11:23 +00:00
|
|
|
@repository Mix.Project.config()[:source_url]
|
2018-11-20 16:55:03 +00:00
|
|
|
def name, do: @name
|
|
|
|
def version, do: @version
|
2019-03-05 03:18:43 +00:00
|
|
|
def named_version, do: @name <> " " <> @version
|
2019-02-01 06:55:10 +00:00
|
|
|
def repository, do: @repository
|
2018-11-20 16:55:03 +00:00
|
|
|
|
2019-03-05 03:18:43 +00:00
|
|
|
def user_agent do
|
2018-11-23 16:40:45 +00:00
|
|
|
info = "#{Pleroma.Web.base_url()} <#{Pleroma.Config.get([:instance, :email], "")}>"
|
|
|
|
named_version() <> "; " <> info
|
|
|
|
end
|
|
|
|
|
2017-03-17 16:09:58 +00:00
|
|
|
# See http://elixir-lang.org/docs/stable/elixir/Application.html
|
|
|
|
# for more information on OTP Applications
|
|
|
|
def start(_type, _args) do
|
2018-05-20 16:05:34 +00:00
|
|
|
import Cachex.Spec
|
2017-03-17 16:09:58 +00:00
|
|
|
|
2019-01-28 13:39:54 +00:00
|
|
|
Pleroma.Config.DeprecationWarnings.warn()
|
2019-01-30 15:32:30 +00:00
|
|
|
setup_instrumenters()
|
2019-01-28 11:09:41 +00:00
|
|
|
|
2017-03-17 16:09:58 +00:00
|
|
|
# Define workers and child supervisors to be supervised
|
2018-03-30 13:01:53 +00:00
|
|
|
children =
|
|
|
|
[
|
|
|
|
# Start the Ecto repository
|
|
|
|
supervisor(Pleroma.Repo, []),
|
2018-11-05 12:24:00 +00:00
|
|
|
worker(Pleroma.Emoji, []),
|
2018-12-14 22:31:19 +00:00
|
|
|
worker(Pleroma.Captcha, []),
|
2018-12-26 21:12:20 +00:00
|
|
|
worker(
|
|
|
|
Cachex,
|
|
|
|
[
|
|
|
|
:used_captcha_cache,
|
|
|
|
[
|
2018-12-27 07:42:03 +00:00
|
|
|
ttl_interval: :timer.seconds(Pleroma.Config.get!([Pleroma.Captcha, :seconds_valid]))
|
2018-12-26 21:12:20 +00:00
|
|
|
]
|
|
|
|
],
|
|
|
|
id: :cachex_used_captcha_cache
|
|
|
|
),
|
2018-11-01 08:30:10 +00:00
|
|
|
worker(
|
|
|
|
Cachex,
|
2018-03-30 13:01:53 +00:00
|
|
|
[
|
2018-11-01 08:30:10 +00:00
|
|
|
:user_cache,
|
|
|
|
[
|
2019-03-05 04:03:13 +00:00
|
|
|
default_ttl: 25_000,
|
2018-11-01 08:30:10 +00:00
|
|
|
ttl_interval: 1000,
|
|
|
|
limit: 2500
|
|
|
|
]
|
|
|
|
],
|
|
|
|
id: :cachex_user
|
|
|
|
),
|
|
|
|
worker(
|
|
|
|
Cachex,
|
2018-03-30 13:01:53 +00:00
|
|
|
[
|
2018-11-01 08:30:10 +00:00
|
|
|
:object_cache,
|
|
|
|
[
|
2019-03-05 04:03:13 +00:00
|
|
|
default_ttl: 25_000,
|
2018-11-01 08:30:10 +00:00
|
|
|
ttl_interval: 1000,
|
|
|
|
limit: 2500
|
|
|
|
]
|
|
|
|
],
|
|
|
|
id: :cachex_object
|
|
|
|
),
|
2019-01-04 23:23:47 +00:00
|
|
|
worker(
|
|
|
|
Cachex,
|
|
|
|
[
|
|
|
|
:rich_media_cache,
|
|
|
|
[
|
|
|
|
default_ttl: :timer.minutes(120),
|
|
|
|
limit: 5000
|
|
|
|
]
|
|
|
|
],
|
|
|
|
id: :cachex_rich_media
|
|
|
|
),
|
2018-12-30 18:33:36 +00:00
|
|
|
worker(
|
|
|
|
Cachex,
|
|
|
|
[
|
|
|
|
:scrubber_cache,
|
|
|
|
[
|
|
|
|
limit: 2500
|
|
|
|
]
|
|
|
|
],
|
|
|
|
id: :cachex_scrubber
|
|
|
|
),
|
2018-05-05 09:15:57 +00:00
|
|
|
worker(
|
|
|
|
Cachex,
|
|
|
|
[
|
|
|
|
:idempotency_cache,
|
|
|
|
[
|
2018-05-20 16:05:34 +00:00
|
|
|
expiration:
|
|
|
|
expiration(
|
|
|
|
default: :timer.seconds(6 * 60 * 60),
|
|
|
|
interval: :timer.seconds(60)
|
|
|
|
),
|
2018-05-05 09:15:57 +00:00
|
|
|
limit: 2500
|
|
|
|
]
|
|
|
|
],
|
|
|
|
id: :cachex_idem
|
|
|
|
),
|
2019-01-30 11:38:38 +00:00
|
|
|
worker(Pleroma.FlakeId, [])
|
2018-03-30 13:01:53 +00:00
|
|
|
] ++
|
2019-01-30 11:38:38 +00:00
|
|
|
hackney_pool_children() ++
|
|
|
|
[
|
|
|
|
worker(Pleroma.Web.Federator.RetryQueue, []),
|
|
|
|
worker(Pleroma.Stats, []),
|
2019-01-31 08:07:49 +00:00
|
|
|
worker(Pleroma.Web.Push, []),
|
2019-01-31 08:23:50 +00:00
|
|
|
worker(Task, [&Pleroma.Web.Federator.init/0], restart: :temporary)
|
2019-01-30 11:38:38 +00:00
|
|
|
] ++
|
2018-11-19 19:58:12 +00:00
|
|
|
streamer_child() ++
|
|
|
|
chat_child() ++
|
|
|
|
[
|
|
|
|
# Start the endpoint when the application starts
|
|
|
|
supervisor(Pleroma.Web.Endpoint, []),
|
|
|
|
worker(Pleroma.Gopher.Server, [])
|
|
|
|
]
|
2017-03-17 16:09:58 +00:00
|
|
|
|
|
|
|
# See http://elixir-lang.org/docs/stable/elixir/Supervisor.html
|
|
|
|
# for other strategies and supported options
|
|
|
|
opts = [strategy: :one_for_one, name: Pleroma.Supervisor]
|
|
|
|
Supervisor.start_link(children, opts)
|
|
|
|
end
|
2018-02-01 17:23:26 +00:00
|
|
|
|
2019-04-04 17:36:57 +00:00
|
|
|
defp setup_instrumenters do
|
2019-03-25 08:29:04 +00:00
|
|
|
require Prometheus.Registry
|
|
|
|
|
|
|
|
:ok =
|
|
|
|
:telemetry.attach(
|
|
|
|
"prometheus-ecto",
|
|
|
|
[:pleroma, :repo, :query],
|
|
|
|
&Pleroma.Repo.Instrumenter.handle_event/4,
|
|
|
|
%{}
|
|
|
|
)
|
|
|
|
|
|
|
|
Prometheus.Registry.register_collector(:prometheus_process_collector)
|
|
|
|
Pleroma.Web.Endpoint.MetricsExporter.setup()
|
|
|
|
Pleroma.Web.Endpoint.PipelineInstrumenter.setup()
|
|
|
|
Pleroma.Web.Endpoint.Instrumenter.setup()
|
|
|
|
Pleroma.Repo.Instrumenter.setup()
|
|
|
|
end
|
|
|
|
|
2019-03-05 03:18:43 +00:00
|
|
|
def enabled_hackney_pools do
|
2019-01-30 11:38:38 +00:00
|
|
|
[:media] ++
|
|
|
|
if Application.get_env(:tesla, :adapter) == Tesla.Adapter.Hackney do
|
|
|
|
[:federation]
|
|
|
|
else
|
|
|
|
[]
|
|
|
|
end ++
|
|
|
|
if Pleroma.Config.get([Pleroma.Uploader, :proxy_remote]) do
|
2019-01-30 20:08:41 +00:00
|
|
|
[:upload]
|
2019-01-30 11:38:38 +00:00
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-19 19:58:12 +00:00
|
|
|
if Mix.env() == :test do
|
2019-03-05 03:18:43 +00:00
|
|
|
defp streamer_child, do: []
|
|
|
|
defp chat_child, do: []
|
2018-11-19 19:58:12 +00:00
|
|
|
else
|
2019-03-05 03:18:43 +00:00
|
|
|
defp streamer_child do
|
2018-11-19 19:58:12 +00:00
|
|
|
[worker(Pleroma.Web.Streamer, [])]
|
|
|
|
end
|
|
|
|
|
2019-03-05 03:18:43 +00:00
|
|
|
defp chat_child do
|
2018-11-19 19:58:12 +00:00
|
|
|
if Pleroma.Config.get([:chat, :enabled]) do
|
|
|
|
[worker(Pleroma.Web.ChatChannel.ChatChannelState, [])]
|
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
end
|
2018-02-01 17:23:26 +00:00
|
|
|
end
|
2019-01-30 11:38:38 +00:00
|
|
|
|
2019-03-05 03:18:43 +00:00
|
|
|
defp hackney_pool_children do
|
2019-01-30 11:38:38 +00:00
|
|
|
for pool <- enabled_hackney_pools() do
|
|
|
|
options = Pleroma.Config.get([:hackney_pools, pool])
|
|
|
|
:hackney_pool.child_spec(pool, options)
|
|
|
|
end
|
|
|
|
end
|
2017-03-17 16:09:58 +00:00
|
|
|
end
|