akkoma/lib/pleroma/web/static_fe/static_fe_controller.ex

37 lines
948 B
Elixir
Raw Normal View History

2019-03-02 14:17:55 +00:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.StaticFE.StaticFEController do
use Pleroma.Web, :controller
alias Pleroma.Web.StaticFE.ActivityRepresenter
2019-03-02 14:17:55 +00:00
require Logger
def show_notice(conn, %{"notice_id" => notice_id}) do
with {:ok, data} <- ActivityRepresenter.represent(notice_id) do
2019-03-02 14:17:55 +00:00
conn
|> put_layout(:static_fe)
|> put_status(200)
|> put_view(Pleroma.Web.StaticFE.StaticFEView)
|> render("notice.html", data)
2019-03-02 14:17:55 +00:00
else
_ ->
conn
|> put_status(404)
|> text("Not found")
end
end
2019-03-02 14:23:26 +00:00
def show(%{path_info: ["notice", notice_id]} = conn, _params),
do: show_notice(conn, %{"notice_id" => notice_id})
2019-03-02 14:17:55 +00:00
# Fallback for unhandled types
def show(conn, _params) do
conn
|> put_status(404)
|> text("Not found")
end
end