Current section
Files
Jump to
Current section
Files
lib/orion_web/assets.ex
defmodule OrionWeb.Assets do
# Plug to serve dependency-specific assets for Orion.
@moduledoc false
import Plug.Conn
phoenix_js_paths =
for app <- [:phoenix, :phoenix_html, :phoenix_live_view] do
path = Application.app_dir(app, ["priv", "static", "#{app}.js"])
Module.put_attribute(__MODULE__, :external_resource, path)
path
end
css_path = Path.join(__DIR__, "../../dist/css/app.css")
@external_resource css_path
@css File.read!(css_path)
js_path = Path.join(__DIR__, "../../dist/js/app.js")
@external_resource js_path
@js """
#{for path <- phoenix_js_paths, do: path |> File.read!() |> String.replace("//# sourceMappingURL=", "// ")}
#{File.read!(js_path)}
"""
@hashes %{
:css => Base.encode16(:crypto.hash(:md5, @css), case: :lower),
:js => Base.encode16(:crypto.hash(:md5, @js), case: :lower)
}
def init(asset) when asset in [:css, :js], do: asset
def call(conn, asset) do
{contents, content_type} = contents_and_type(asset)
conn
|> put_private(:plug_skip_csrf_protection, true)
|> put_resp_header("content-type", content_type)
|> put_resp_header("cache-control", "public, max-age=31536000, immutable")
|> send_resp(200, contents)
|> halt()
end
defp contents_and_type(:css), do: {@css, "text/css"}
defp contents_and_type(:js), do: {@js, "text/javascript"}
@doc """
Returns the current hash for the given `asset`.
"""
def current_hash(:css), do: @hashes.css
def current_hash(:js), do: @hashes.js
end