55 lines
1.4 KiB
Elixir
55 lines
1.4 KiB
Elixir
defmodule MusicLibraryWeb.CoverController do
|
|
use MusicLibraryWeb, :controller
|
|
|
|
alias MusicLibrary.Assets
|
|
alias MusicLibrary.Assets.Transform
|
|
alias MusicLibrary.Records.Cover
|
|
|
|
# 1 year in seconds
|
|
@cache_duration 60 * 60 * 24 * 365
|
|
|
|
def show(conn, %{"transform_payload" => payload}) do
|
|
transform = Transform.decode!(payload)
|
|
|
|
case Assets.get(transform.hash) do
|
|
nil ->
|
|
not_found(conn)
|
|
|
|
%{content: content} ->
|
|
image_data =
|
|
if transform.width do
|
|
# TODO: find a way to cache computation, or pre-compute thumb and store it
|
|
{:ok, thumb_data} = Cover.resize(content, transform.width)
|
|
thumb_data
|
|
else
|
|
content
|
|
end
|
|
|
|
case get_req_header(conn, "if-none-match") do
|
|
[^payload] -> extend_cache(conn)
|
|
_ -> respond_with_cache(conn, image_data, payload)
|
|
end
|
|
end
|
|
end
|
|
|
|
defp not_found(conn) do
|
|
conn
|
|
|> put_status(:not_found)
|
|
|> text("Not found")
|
|
end
|
|
|
|
defp extend_cache(conn) do
|
|
conn
|
|
|> put_resp_header("cache-control", "public, max-age=#{@cache_duration}")
|
|
|> send_resp(304, "")
|
|
end
|
|
|
|
defp respond_with_cache(conn, data, etag) do
|
|
conn
|
|
|> put_resp_content_type("image/jpeg", "utf-8")
|
|
|> put_resp_header("cache-control", "public, max-age=#{@cache_duration}")
|
|
|> put_resp_header("etag", etag)
|
|
|> send_resp(200, data)
|
|
end
|
|
end
|