akkoma/lib/pleroma/web/endpoint.ex

138 lines
3.7 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2018-12-31 15:41:47 +00:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2017-03-17 16:09:58 +00:00
defmodule Pleroma.Web.Endpoint do
use Phoenix.Endpoint, otp_app: :pleroma
2018-11-16 20:35:08 +00:00
socket("/socket", Pleroma.Web.UserSocket)
2018-03-30 13:01:53 +00:00
2017-03-17 16:09:58 +00:00
# Serve at "/" the static files from "priv/static" directory.
#
# You should set gzip to true if you are running phoenix.digest
# when deploying your static files in production.
plug(CORSPlug)
2018-11-12 15:08:02 +00:00
plug(Pleroma.Plugs.HTTPSecurityPlug)
2018-11-23 16:40:45 +00:00
plug(Pleroma.Plugs.UploadedMedia)
2018-03-30 13:01:53 +00:00
@static_cache_control "public, no-cache"
# InstanceStatic needs to be before Plug.Static to be able to override shipped-static files
# If you're adding new paths to `only:` you'll need to configure them in InstanceStatic as well
# Cache-control headers are duplicated in case we turn off etags in the future
plug(Pleroma.Plugs.InstanceStatic,
at: "/",
gzip: true,
cache_control_for_etags: @static_cache_control,
headers: %{
"cache-control" => @static_cache_control
}
)
2018-03-30 13:01:53 +00:00
plug(
Plug.Static,
at: "/",
from: :pleroma,
2018-11-10 11:18:25 +00:00
only:
~w(index.html robots.txt static finmoji emoji packs sounds images instance sw.js sw-pleroma.js favicon.png schemas doc),
# credo:disable-for-previous-line Credo.Check.Readability.MaxLineLength
gzip: true,
cache_control_for_etags: @static_cache_control,
headers: %{
"cache-control" => @static_cache_control
}
2018-03-30 13:01:53 +00:00
)
2017-03-17 16:09:58 +00:00
plug(Plug.Static.IndexHtml, at: "/pleroma/admin/")
plug(Plug.Static,
at: "/pleroma/admin/",
from: {:pleroma, "priv/static/adminfe/"}
)
2017-03-17 16:09:58 +00:00
# Code reloading can be explicitly enabled under the
# :code_reloader configuration of your endpoint.
if code_reloading? do
2018-03-30 13:01:53 +00:00
plug(Phoenix.CodeReloader)
2017-03-17 16:09:58 +00:00
end
2018-03-30 13:01:53 +00:00
plug(TrailingFormatPlug)
plug(Plug.RequestId)
plug(Plug.Logger)
2017-03-17 16:09:58 +00:00
2018-03-30 13:01:53 +00:00
plug(
Plug.Parsers,
2017-03-17 16:09:58 +00:00
parsers: [:urlencoded, :multipart, :json],
pass: ["*/*"],
json_decoder: Jason,
2019-05-30 08:33:58 +00:00
length: Pleroma.Config.get([:instance, :upload_limit]),
body_reader: {Pleroma.Web.Plugs.DigestPlug, :read_body, []}
2018-03-30 13:01:53 +00:00
)
2017-03-17 16:09:58 +00:00
2018-03-30 13:01:53 +00:00
plug(Plug.MethodOverride)
plug(Plug.Head)
2017-03-17 16:09:58 +00:00
2019-03-11 17:37:26 +00:00
secure_cookies = Pleroma.Config.get([__MODULE__, :secure_cookie_flag])
cookie_name =
2019-03-11 17:37:26 +00:00
if secure_cookies,
do: "__Host-pleroma_key",
else: "pleroma_key"
extra =
Pleroma.Config.get([__MODULE__, :extra_cookie_attrs])
|> Enum.join(";")
2017-03-17 16:09:58 +00:00
# The session will be stored in the cookie and signed,
# this means its contents can be read but not tampered with.
# Set :encryption_salt if you would also like to encrypt it.
2018-03-30 13:01:53 +00:00
plug(
Plug.Session,
2017-03-17 16:09:58 +00:00
store: :cookie,
key: cookie_name,
signing_salt: Pleroma.Config.get([__MODULE__, :signing_salt], "CqaoopA2"),
2018-08-28 20:34:31 +00:00
http_only: true,
2019-03-11 17:37:26 +00:00
secure: secure_cookies,
extra: extra
2018-03-30 13:01:53 +00:00
)
2017-03-17 16:09:58 +00:00
2019-01-30 15:32:30 +00:00
# Note: the plug and its configuration is compile-time this can't be upstreamed yet
if proxies = Pleroma.Config.get([__MODULE__, :reverse_proxies]) do
plug(RemoteIp, proxies: proxies)
end
defmodule Instrumenter do
use Prometheus.PhoenixInstrumenter
end
defmodule PipelineInstrumenter do
use Prometheus.PlugPipelineInstrumenter
end
defmodule MetricsExporter do
use Prometheus.PlugExporter
end
plug(PipelineInstrumenter)
plug(MetricsExporter)
2018-03-30 13:01:53 +00:00
plug(Pleroma.Web.Router)
2017-03-17 16:09:58 +00:00
@doc """
Dynamically loads configuration from the system environment
on startup.
It receives the endpoint configuration from the config files
and must return the updated configuration.
"""
def load_from_system_env(config) do
port = System.get_env("PORT") || raise "expected the PORT environment variable to be set"
{:ok, Keyword.put(config, :http, [:inet6, port: port])}
end
def websocket_url do
String.replace_leading(url(), "http", "ws")
end
2017-03-17 16:09:58 +00:00
end