1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.Endpoint do
6 use Phoenix.Endpoint, otp_app: :pleroma
8 require Pleroma.Constants
12 socket("/socket", Pleroma.Web.UserSocket)
14 plug(Plug.Telemetry, event_prefix: [:phoenix, :endpoint])
16 plug(Pleroma.Web.Plugs.SetLocalePlug)
18 plug(Pleroma.Web.Plugs.HTTPSecurityPlug)
19 plug(Pleroma.Web.Plugs.UploadedMedia)
21 @static_cache_control "public, no-cache"
23 # InstanceStatic needs to be before Plug.Static to be able to override shipped-static files
24 # If you're adding new paths to `only:` you'll need to configure them in InstanceStatic as well
25 # Cache-control headers are duplicated in case we turn off etags in the future
27 Pleroma.Web.Plugs.InstanceStatic,
30 only: ["emoji", "images"],
32 cache_control_for_etags: "public, max-age=1209600",
34 "cache-control" => "public, max-age=1209600"
38 plug(Pleroma.Web.Plugs.InstanceStatic,
41 cache_control_for_etags: @static_cache_control,
43 "cache-control" => @static_cache_control
47 # Careful! No `only` restriction here, as we don't know what frontends contain.
48 plug(Pleroma.Web.Plugs.FrontendStatic,
50 frontend_type: :primary,
52 cache_control_for_etags: @static_cache_control,
54 "cache-control" => @static_cache_control
58 plug(Plug.Static.IndexHtml, at: "/pleroma/admin/")
60 plug(Pleroma.Web.Plugs.FrontendStatic,
62 frontend_type: :admin,
64 cache_control_for_etags: @static_cache_control,
66 "cache-control" => @static_cache_control
70 # Serve at "/" the static files from "priv/static" directory.
72 # You should set gzip to true if you are running phoenix.digest
73 # when deploying your static files in production.
78 only: Pleroma.Constants.static_only_files(),
79 # credo:disable-for-previous-line Credo.Check.Readability.MaxLineLength
81 cache_control_for_etags: @static_cache_control,
83 "cache-control" => @static_cache_control
88 at: "/pleroma/admin/",
89 from: {:pleroma, "priv/static/adminfe/"}
92 # Code reloading can be explicitly enabled under the
93 # :code_reloader configuration of your endpoint.
95 plug(Phoenix.CodeReloader)
98 plug(Pleroma.Web.Plugs.TrailingFormatPlug)
100 plug(Plug.Logger, log: :debug)
105 {:multipart, length: {Config, :get, [[:instance, :upload_limit]]}},
110 length: Config.get([:instance, :upload_limit]),
111 body_reader: {Pleroma.Web.Plugs.DigestPlug, :read_body, []}
114 plug(Plug.MethodOverride)
117 secure_cookies = Config.get([__MODULE__, :secure_cookie_flag])
121 do: "__Host-pleroma_key",
125 Config.get([__MODULE__, :extra_cookie_attrs])
128 # The session will be stored in the cookie and signed,
129 # this means its contents can be read but not tampered with.
130 # Set :encryption_salt if you would also like to encrypt it.
135 signing_salt: Config.get([__MODULE__, :signing_salt], "CqaoopA2"),
137 secure: secure_cookies,
141 plug(Pleroma.Web.Plugs.RemoteIp)
143 defmodule Instrumenter do
144 use Prometheus.PhoenixInstrumenter
147 defmodule PipelineInstrumenter do
148 use Prometheus.PlugPipelineInstrumenter
151 defmodule MetricsExporter do
152 use Prometheus.PlugExporter
155 defmodule MetricsExporterCaller do
158 def init(opts), do: opts
160 def call(conn, opts) do
161 prometheus_config = Application.get_env(:prometheus, MetricsExporter, [])
162 ip_whitelist = List.wrap(prometheus_config[:ip_whitelist])
165 !prometheus_config[:enabled] ->
168 ip_whitelist != [] and
169 !Enum.find(ip_whitelist, fn ip ->
170 Pleroma.Helpers.InetHelper.parse_address(ip) == {:ok, conn.remote_ip}
175 MetricsExporter.call(conn, opts)
180 plug(PipelineInstrumenter)
182 plug(MetricsExporterCaller)
184 plug(Pleroma.Web.Router)
187 Dynamically loads configuration from the system environment
190 It receives the endpoint configuration from the config files
191 and must return the updated configuration.
193 def load_from_system_env(config) do
194 port = System.get_env("PORT") || raise "expected the PORT environment variable to be set"
195 {:ok, Keyword.put(config, :http, [:inet6, port: port])}
199 String.replace_leading(url(), "http", "ws")