Packages
phoenix
1.4.17
1.8.9
1.8.8
1.8.7
1.8.6
1.8.5
1.8.4
1.8.3
1.8.2
1.8.1
1.8.0
1.8.0-rc.4
1.8.0-rc.3
1.8.0-rc.2
1.8.0-rc.1
1.8.0-rc.0
1.7.24
1.7.23
1.7.22
1.7.21
1.7.20
1.7.19
1.7.18
1.7.17
1.7.16
1.7.15
1.7.14
1.7.13
1.7.12
1.7.11
1.7.10
1.7.9
1.7.8
1.7.7
1.7.6
1.7.5
1.7.4
1.7.3
1.7.2
1.7.1
1.7.0
1.7.0-rc.3
1.7.0-rc.2
1.7.0-rc.1
1.7.0-rc.0
1.6.17
1.6.16
1.6.15
1.6.14
1.6.13
1.6.12
1.6.11
1.6.10
1.6.9
1.6.8
1.6.7
1.6.6
1.6.5
1.6.4
1.6.3
1.6.2
1.6.1
1.6.0
1.6.0-rc.1
1.6.0-rc.0
1.5.15
1.5.14
1.5.13
1.5.12
1.5.11
1.5.10
1.5.9
1.5.8
1.5.7
1.5.6
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.5.0-rc.0
1.4.18
1.4.17
1.4.16
1.4.15
1.4.14
1.4.13
1.4.12
1.4.11
1.4.10
1.4.9
1.4.8
1.4.7
1.4.6
1.4.5
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.4.0-rc.3
1.4.0-rc.2
1.4.0-rc.1
1.4.0-rc.0
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.3.0-rc.3
1.3.0-rc.2
1.3.0-rc.1
1.3.0-rc.0
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.2.0-rc.1
1.2.0-rc.0
1.1.9
1.1.8
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.17.1
0.17.0
0.16.1
0.16.0
0.15.0
0.14.0
0.13.1
0.13.0
0.12.0
0.11.0
0.10.0
0.9.0
0.8.0
0.7.2
0.7.1
0.7.0
0.6.2
0.6.1
0.6.0
0.5.0
0.4.1
0.4.0
0.3.1
0.3.0
0.2.11
0.2.10
0.2.9
0.2.8
0.2.7
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.0
Productive. Reliable. Fast. A productive web framework that does not compromise speed or maintainability.
Security advisory:
This version has known vulnerabilities.
View advisories
Current section
Files
Jump to
Current section
Files
lib/phoenix/endpoint/supervisor.ex
defmodule Phoenix.Endpoint.Supervisor do
# This module contains the logic used by most functions in Phoenix.Endpoint
# as well the supervisor for sockets, adapters, watchers, etc.
@moduledoc false
require Logger
use Supervisor
alias Phoenix.Endpoint.{CowboyAdapter, Cowboy2Adapter}
@doc """
Starts the endpoint supervision tree.
"""
def start_link(otp_app, mod) do
case Supervisor.start_link(__MODULE__, {otp_app, mod}, name: mod) do
{:ok, _} = ok ->
warmup(mod)
log_access_info(otp_app, mod)
ok
{:error, _} = error ->
error
end
end
@doc false
def init({otp_app, mod}) do
id = :crypto.strong_rand_bytes(16) |> Base.encode64
default_conf = [endpoint_id: id] ++ config(otp_app, mod)
secret_conf =
case mod.init(:supervisor, default_conf) do
{:ok, conf} ->
if !Application.get_env(otp_app, mod) and conf == default_conf do
Logger.warn(
"no configuration found for otp_app #{inspect(otp_app)} and module #{inspect(mod)}"
)
end
conf
other ->
raise ArgumentError, "expected init/2 callback to return {:ok, config}, got: #{inspect other}"
end
# Drop all secrets from secret_conf before passing it around
conf = Keyword.drop(secret_conf, [:secret_key_base])
server? = server?(conf)
if server? and conf[:code_reloader] do
Phoenix.CodeReloader.Server.check_symlinks()
end
children =
config_children(mod, secret_conf, otp_app) ++
pubsub_children(mod, conf) ++
socket_children(mod) ++
server_children(mod, conf, otp_app, server?) ++
watcher_children(mod, conf, server?)
# Supervisor.init(children, strategy: :one_for_one)
{:ok, {{:one_for_one, 3, 5}, children}}
end
defp pubsub_children(_mod, conf) do
pub_conf = conf[:pubsub]
if adapter = pub_conf[:adapter] do
unless pub_conf[:name] do
raise ArgumentError, "an adapter was given to :pubsub but no :name was defined, " <>
"please pass the :name option accordingly"
end
pub_conf = [fastlane: Phoenix.Channel.Server] ++ pub_conf
[supervisor(adapter, [pub_conf[:name], pub_conf])]
else
[]
end
end
defp socket_children(endpoint) do
endpoint.__sockets__
|> Enum.uniq_by(&elem(&1, 1))
|> Enum.map(fn {_, socket, opts} -> socket.child_spec([endpoint: endpoint] ++ opts) end)
end
defp config_children(mod, conf, otp_app) do
args = [mod, conf, defaults(otp_app, mod), [name: Module.concat(mod, "Config")]]
[worker(Phoenix.Config, args)]
end
defp server_children(mod, config, otp_app, server?) do
if server? do
user_adapter = user_adapter(mod, config)
autodetected_adapter = cowboy_version_adapter()
warn_on_different_adapter_version(user_adapter, autodetected_adapter, mod)
adapter = user_adapter || autodetected_adapter
for {scheme, port} <- [http: 4000, https: 4040], opts = config[scheme] do
port = :proplists.get_value(:port, opts, port)
unless port do
raise "server can't start because :port in #{scheme} config is nil, " <>
"please use a valid port number"
end
opts = [port: port_to_integer(port), otp_app: otp_app] ++ :proplists.delete(:port, opts)
adapter.child_spec(scheme, mod, opts)
end
else
[]
end
end
defp user_adapter(endpoint, config) do
case config[:handler] do
nil ->
config[:adapter]
Phoenix.Endpoint.CowboyHandler ->
Logger.warn "Phoenix.Endpoint.CowboyHandler is deprecated, please use Phoenix.Endpoint.CowboyAdapter instead"
CowboyAdapter
other ->
Logger.warn "The :handler option in #{inspect endpoint} is deprecated, please use :adapter instead"
other
end
end
defp cowboy_version_adapter() do
case Application.spec(:cowboy, :vsn) do
[?1 | _] -> CowboyAdapter
_ -> Cowboy2Adapter
end
end
defp warn_on_different_adapter_version(CowboyAdapter, Cowboy2Adapter, endpoint) do
Logger.warn("""
You have specified #{inspect CowboyAdapter} for Cowboy v1.x \
in the :adapter configuration of your Phoenix endpoint #{inspect endpoint} \
but your mix.exs has fetched Cowboy v2.x.
If you wish to use Cowboy 1, please update mix.exs to point to the \
correct Cowboy version:
{:plug_cowboy, "~> 1.0"}
If you want to use Cowboy 2, then please remove the :adapter option \
in your config.exs file or set it to:
adapter: Phoenix.Endpoint.Cowboy2Adapter
""")
raise "aborting due to adapter mismatch"
end
defp warn_on_different_adapter_version(_user, _autodetected, _endpoint), do: :ok
defp watcher_children(_mod, conf, server?) do
if server? do
Enum.map(conf[:watchers], fn {cmd, args} ->
worker(Phoenix.Endpoint.Watcher, watcher_args(cmd, args),
id: {cmd, args}, restart: :transient)
end)
else
[]
end
end
defp watcher_args(cmd, cmd_args) do
{args, opts} = Enum.split_while(cmd_args, &is_binary(&1))
[cmd, args, opts]
end
@doc """
The endpoint configuration used at compile time.
"""
def config(otp_app, endpoint) do
Phoenix.Config.from_env(otp_app, endpoint, defaults(otp_app, endpoint))
end
@doc """
Checks if Endpoint's web server has been configured to start.
"""
def server?(otp_app, endpoint) when is_atom(otp_app) and is_atom(endpoint) do
otp_app
|> config(endpoint)
|> server?()
end
def server?(conf) when is_list(conf) do
Keyword.get(conf, :server, Application.get_env(:phoenix, :serve_endpoints, false))
end
defp defaults(otp_app, module) do
[otp_app: otp_app,
# Compile-time config
code_reloader: false,
debug_errors: false,
render_errors: [view: render_errors(module), accepts: ~w(html), layout: false],
# Runtime config
cache_static_manifest: nil,
check_origin: true,
http: false,
https: false,
reloadable_apps: nil,
reloadable_compilers: [:gettext, :phoenix, :elixir],
secret_key_base: nil,
static_url: nil,
url: [host: "localhost", path: "/"],
# Supervisor config
pubsub: [pool_size: 1],
watchers: []]
end
defp render_errors(module) do
module
|> Module.split
|> Enum.at(0)
|> Module.concat("ErrorView")
end
@doc """
Callback that changes the configuration from the app callback.
"""
def config_change(endpoint, changed, removed) do
res = Phoenix.Config.config_change(endpoint, changed, removed)
warmup(endpoint)
res
end
@doc """
Builds the endpoint url from its configuration.
The result is wrapped in a `{:cache, value}` tuple so
the `Phoenix.Config` layer knows how to cache it.
"""
def url(endpoint) do
{:cache, build_url(endpoint, endpoint.config(:url)) |> String.Chars.URI.to_string()}
end
@doc """
Builds the host for caching.
"""
def host(endpoint) do
{:cache, host_to_binary(endpoint.config(:url)[:host] || "localhost")}
end
@doc """
Builds the path for caching.
"""
def path(endpoint) do
{:cache, empty_string_if_root(endpoint.config(:url)[:path] || "/")}
end
@doc """
Builds the script_name for caching.
"""
def script_name(endpoint) do
{:cache, String.split(endpoint.config(:url)[:path] || "/", "/", trim: true)}
end
@doc """
Builds the static url from its configuration.
The result is wrapped in a `{:cache, value}` tuple so
the `Phoenix.Config` layer knows how to cache it.
"""
def static_url(endpoint) do
url = endpoint.config(:static_url) || endpoint.config(:url)
{:cache, build_url(endpoint, url) |> String.Chars.URI.to_string()}
end
@doc """
Builds a struct url for user processing.
The result is wrapped in a `{:cache, value}` tuple so
the `Phoenix.Config` layer knows how to cache it.
"""
def struct_url(endpoint) do
url = endpoint.config(:url)
{:cache, build_url(endpoint, url)}
end
defp build_url(endpoint, url) do
build_url(endpoint.config(:https), endpoint.config(:http), url)
end
defp build_url(https, http, url) do
{scheme, port} =
cond do
https ->
{"https", https[:port]}
http ->
{"http", http[:port]}
true ->
{"http", 80}
end
scheme = url[:scheme] || scheme
host = host_to_binary(url[:host] || "localhost")
port = port_to_integer(url[:port] || port)
%URI{scheme: scheme, port: port, host: host}
end
@doc """
Returns the script path root.
"""
def static_path(endpoint) do
script_path = (endpoint.config(:static_url) || endpoint.config(:url))[:path] || "/"
{:cache, empty_string_if_root(script_path)}
end
defp empty_string_if_root("/"), do: ""
defp empty_string_if_root(other), do: other
@doc """
Returns a two item tuple with the first element containing the
static path of a file in the static root directory
and the second element containing the sha512 of that file (for SRI).
When the file exists, it includes a timestamp. When it doesn't exist,
just the static path is returned.
The result is wrapped in a `{:cache | :nocache, value}` tuple so
the `Phoenix.Config` layer knows how to cache it.
"""
@invalid_local_url_chars ["\\"]
def static_lookup(_endpoint, "//" <> _ = path) do
raise_invalid_path(path)
end
def static_lookup(_endpoint, "/" <> _ = path) do
if String.contains?(path, @invalid_local_url_chars) do
raise ArgumentError, "unsafe characters detected for path #{inspect path}"
else
{:nocache, {path, nil}}
end
end
def static_lookup(_endpoint, path) when is_binary(path) do
raise_invalid_path(path)
end
defp raise_invalid_path(path) do
raise ArgumentError, "expected a path starting with a single / but got #{inspect path}"
end
# TODO: Deprecate {:system, env_var} once we require Elixir v1.7+
defp host_to_binary({:system, env_var}), do: host_to_binary(System.get_env(env_var))
defp host_to_binary(host), do: host
# TODO: Deprecate {:system, env_var} once we require Elixir v1.7+
defp port_to_integer({:system, env_var}), do: port_to_integer(System.get_env(env_var))
defp port_to_integer(port) when is_binary(port), do: String.to_integer(port)
defp port_to_integer(port) when is_integer(port), do: port
def pubsub_server(endpoint) do
{:cache, endpoint.config(:pubsub)[:name]}
end
@doc """
Invoked to warm up caches on start and config change.
"""
def warmup(endpoint) do
endpoint.host
endpoint.path("/")
endpoint.script_name
warmup_url(endpoint)
warmup_static(endpoint)
:ok
rescue
_ -> :ok
end
defp warmup_url(endpoint) do
endpoint.url
endpoint.static_url
endpoint.struct_url
end
defp warmup_static(endpoint) do
warmup_static(endpoint, cache_static_manifest(endpoint))
endpoint.static_path("/")
end
defp warmup_static(endpoint, %{"latest" => latest, "digests" => digests}) do
Enum.each(latest, fn {key, _} ->
Phoenix.Config.cache(endpoint, {:__phoenix_static__, "/" <> key}, fn _ ->
{:cache, static_cache(digests, Map.get(latest, key))}
end)
end)
end
defp warmup_static(_endpoint, _manifest) do
raise ArgumentError, "expected warmup_static/2 to include 'latest' and 'digests' keys in manifest"
end
defp static_cache(digests, value) do
{"/#{value}?vsn=d", static_integrity(digests[value]["sha512"])}
end
defp static_integrity(nil), do: nil
defp static_integrity(sha), do: "sha512-#{sha}"
defp cache_static_manifest(endpoint) do
if inner = endpoint.config(:cache_static_manifest) do
{app, inner} =
case inner do
{_, _} = inner -> inner
inner when is_binary(inner) -> {endpoint.config(:otp_app), inner}
_ -> raise ArgumentError, ":cache_static_manifest must be a binary or a tuple"
end
outer = Application.app_dir(app, inner)
if File.exists?(outer) do
outer |> File.read!() |> Phoenix.json_library().decode!()
else
Logger.error "Could not find static manifest at #{inspect outer}. " <>
"Run \"mix phx.digest\" after building your static files " <>
"or remove the configuration from \"config/prod.exs\"."
end
else
%{}
end
end
defp log_access_info(otp_app, endpoint) do
if Phoenix.Endpoint.server?(otp_app, endpoint) do
Logger.info("Access #{inspect(endpoint)} at #{endpoint.url()}")
end
end
end