Current section
Files
Jump to
Current section
Files
lib/glific_web/endpoint.ex
defmodule GlificWeb.Endpoint do
use Phoenix.Endpoint, otp_app: :glific
use Absinthe.Phoenix.Endpoint
plug(GlificWeb.Plugs.AppsignalAbsinthePlug)
@moduledoc false
# 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.
@session_options [
store: :cookie,
key: "_glific_key",
signing_salt: "nE0doVhV"
]
socket("/socket", GlificWeb.UserSocket,
websocket: [
path: "",
subprotocols: ["graphql-transport-ws"]
]
)
socket("/live", Phoenix.LiveView.Socket, websocket: [connect_info: [session: @session_options]])
# Serve at "/" the static files from "priv/static" directory.
#
# You should set gzip to true if you are running phx.digest
# when deploying your static files in production.
plug(Plug.Static,
at: "/",
from: :glific,
gzip: false,
only: GlificWeb.static_paths()
)
# Code reloading can be explicitly enabled under the
# :code_reloader configuration of your endpoint.
if code_reloading? do
socket("/phoenix/live_reload/socket", Phoenix.LiveReloader.Socket)
plug(Phoenix.LiveReloader)
plug(Phoenix.CodeReloader)
plug(Phoenix.Ecto.CheckRepoStatus, otp_app: :glific)
end
plug(Phoenix.LiveDashboard.RequestLogger, param_key: "request_logger")
plug(Plug.RequestId)
plug(Plug.Telemetry, event_prefix: [:phoenix, :endpoint])
plug(:parse_body)
opts = [
parsers: [:urlencoded, :multipart, :json],
pass: ["*/*"],
json_decoder: Phoenix.json_library()
]
@parser_without_cache Plug.Parsers.init(opts)
@parser_with_cache Plug.Parsers.init(
[body_reader: {GlificWeb.Misc.BodyReader, :cache_raw_body, []}] ++ opts
)
# All endpoints that start with "webhooks" have their body cached.
defp parse_body(%{path_info: ["webhook" | _]} = conn, _),
do: Plug.Parsers.call(conn, @parser_with_cache)
defp parse_body(conn, _),
do: Plug.Parsers.call(conn, @parser_without_cache)
plug(Plug.MethodOverride)
plug(Plug.Head)
plug(Plug.Session, @session_options)
plug(CORSPlug)
# add the subdomain/domain
plug(GlificWeb.SubdomainPlug)
plug(GlificWeb.EnsurePlug)
# we'll use the raw_body here for webhook
plug(GlificWeb.StripeWebhook)
# gigalixir puts us behind a proxy, hence using this to get the right
# IP
plug(RemoteIp)
plug(GlificWeb.Router)
end