home73k/lib/home73k/blog.ex

68 lines
1.8 KiB
Elixir

defmodule Home73k.Blog do
@moduledoc """
Blog content loading & data access functions.
"""
import Home73k, only: [app_blog_content: 0]
alias Home73k.Blog.Post
Application.ensure_all_started(:earmark)
post_paths = "#{app_blog_content()}/**/*.md" |> Path.wildcard()
post_paths_hash = :erlang.md5(post_paths)
posts =
for post_path <- post_paths do
@external_resource Path.relative_to_cwd(post_path)
Post.parse!(post_path)
end
def __mix_recompile__?() do
Path.wildcard("#{app_blog_content()}/**/*.md")
|> :erlang.md5() != unquote(post_paths_hash)
end
@posts Enum.sort_by(posts, & &1.date, {:desc, NaiveDateTime})
# Private function to list all posts
defp list_all_posts, do: @posts
# List only published (not in future) posts
def list_posts, do: list_all_posts() |> Enum.reject(&post_in_future?/1)
# List tags, but only for published (not in future) posts
def list_tags do
list_all_posts()
|> Stream.reject(&post_in_future?/1)
|> Stream.flat_map(& &1.tags)
|> Stream.uniq()
|> Enum.sort()
end
# Count of published (not in future) posts
def post_count, do: list_posts() |> length()
defmodule NotFoundError do
defexception [:message, plug_status: 404]
end
def get_post_by_id!(id) do
case Enum.find(list_posts(), nil, &(&1.id == id)) do
%Post{} = post -> post
nil -> raise NotFoundError, "post with id=#{id} not found"
end
end
def get_posts_by_tag!(tag) do
case Enum.filter(list_posts(), &(tag in &1.tags)) do
[] -> raise NotFoundError, "posts with tag=#{tag} not found"
posts -> posts
end
end
# check if post date is in future
defp post_in_future?(post) do
NaiveDateTime.compare(post.date, NaiveDateTime.utc_now()) == :gt
end
end