2020-01-26 21:36:50 +01:00
|
|
|
defmodule Mobilizon.Web.Endpoint do
|
2018-01-14 17:56:50 +01:00
|
|
|
@moduledoc """
|
2018-10-11 17:37:39 +02:00
|
|
|
Endpoint for Mobilizon app
|
2018-01-14 17:56:50 +01:00
|
|
|
"""
|
2018-10-11 17:37:39 +02:00
|
|
|
use Phoenix.Endpoint, otp_app: :mobilizon
|
2019-12-03 11:29:51 +01:00
|
|
|
use Absinthe.Phoenix.Endpoint
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2019-10-05 19:07:50 +02:00
|
|
|
# For e2e tests
|
|
|
|
if Application.get_env(:mobilizon, :sql_sandbox) do
|
|
|
|
plug(Phoenix.Ecto.SQL.Sandbox,
|
|
|
|
at: "/sandbox",
|
|
|
|
header: "x-session-id",
|
|
|
|
repo: Mobilizon.Storage.Repo
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2020-01-26 21:36:50 +01:00
|
|
|
socket("/graphql_socket", Mobilizon.Web.GraphQLSocket,
|
2019-12-03 11:29:51 +01:00
|
|
|
websocket: true,
|
|
|
|
longpoll: false
|
|
|
|
)
|
|
|
|
|
2020-01-26 21:36:50 +01:00
|
|
|
plug(Mobilizon.Web.Plugs.UploadedMedia)
|
2019-10-05 19:07:50 +02:00
|
|
|
|
2017-12-08 09:58:14 +01: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.
|
2018-07-27 10:45:35 +02:00
|
|
|
plug(
|
|
|
|
Plug.Static,
|
|
|
|
at: "/",
|
2020-02-18 08:57:00 +01:00
|
|
|
from: {:mobilizon, "priv/static"},
|
2018-07-27 10:45:35 +02:00
|
|
|
gzip: false,
|
2020-02-18 08:57:00 +01:00
|
|
|
only:
|
|
|
|
~w(index.html manifest.json service-worker.js css fonts images js favicon.ico robots.txt),
|
|
|
|
only_matching: ["precache-manifest"]
|
2018-07-27 10:45:35 +02:00
|
|
|
)
|
2017-12-08 09:58:14 +01:00
|
|
|
|
|
|
|
# Code reloading can be explicitly enabled under the
|
|
|
|
# :code_reloader configuration of your endpoint.
|
|
|
|
if code_reloading? do
|
2018-07-27 10:45:35 +02:00
|
|
|
socket("/phoenix/live_reload/socket", Phoenix.LiveReloader.Socket)
|
|
|
|
plug(Phoenix.LiveReloader)
|
|
|
|
plug(Phoenix.CodeReloader)
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
|
2018-07-27 10:45:35 +02:00
|
|
|
plug(CORSPlug)
|
|
|
|
plug(Plug.RequestId)
|
|
|
|
plug(Plug.Logger)
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2018-07-27 10:45:35 +02:00
|
|
|
plug(
|
|
|
|
Plug.Parsers,
|
2019-10-18 14:10:39 +02:00
|
|
|
parsers: [:urlencoded, {:multipart, length: 10_000_000}, :json, Absinthe.Plug.Parser],
|
2017-12-08 09:58:14 +01:00
|
|
|
pass: ["*/*"],
|
2019-02-14 14:19:55 +01:00
|
|
|
json_decoder: Jason
|
2018-07-27 10:45:35 +02:00
|
|
|
)
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2018-07-27 10:45:35 +02:00
|
|
|
plug(Plug.MethodOverride)
|
|
|
|
plug(Plug.Head)
|
2017-12-08 09:58:14 +01: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-07-27 10:45:35 +02:00
|
|
|
plug(
|
|
|
|
Plug.Session,
|
2017-12-08 09:58:14 +01:00
|
|
|
store: :cookie,
|
2018-10-11 17:37:39 +02:00
|
|
|
key: "_mobilizon_key",
|
2017-12-08 09:58:14 +01:00
|
|
|
signing_salt: "F9CCTF22"
|
2018-07-27 10:45:35 +02:00
|
|
|
)
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2020-01-26 21:36:50 +01:00
|
|
|
plug(Mobilizon.Web.Router)
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|