2018-10-11 17:37:39 +02:00
|
|
|
defmodule MobilizonWeb.PageController do
|
2018-01-14 17:56:50 +01:00
|
|
|
@moduledoc """
|
|
|
|
Controller to load our webapp
|
|
|
|
"""
|
2018-10-11 17:37:39 +02:00
|
|
|
use MobilizonWeb, :controller
|
2019-03-04 17:20:18 +01:00
|
|
|
alias Mobilizon.Service.Metadata
|
|
|
|
alias Mobilizon.Actors
|
|
|
|
alias Mobilizon.Actors.Actor
|
|
|
|
alias Mobilizon.Events
|
|
|
|
alias Mobilizon.Events.{Event, Comment}
|
2018-01-13 23:33:03 +01:00
|
|
|
|
2018-07-27 10:45:35 +02:00
|
|
|
plug(:put_layout, false)
|
2019-03-05 10:13:19 +01:00
|
|
|
action_fallback(MobilizonWeb.FallbackController)
|
2017-12-08 09:58:14 +01:00
|
|
|
|
|
|
|
def index(conn, _params) do
|
2018-10-10 14:57:35 +02:00
|
|
|
conn
|
2018-10-11 17:47:02 +02:00
|
|
|
|> put_resp_content_type("text/html")
|
|
|
|
|> send_file(200, "priv/static/index.html")
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
2019-03-04 17:20:18 +01:00
|
|
|
|
|
|
|
def actor(conn, %{"name" => name}) do
|
|
|
|
case get_format(conn) do
|
|
|
|
"html" ->
|
|
|
|
with {status, %Actor{} = actor} when status in [:ok, :commit] <-
|
|
|
|
Actors.get_cached_local_actor_by_name(name) do
|
|
|
|
render_with_meta(conn, actor)
|
2019-03-05 10:13:19 +01:00
|
|
|
else
|
|
|
|
_ -> {:error, :not_found}
|
2019-03-04 17:20:18 +01:00
|
|
|
end
|
|
|
|
|
2019-03-05 10:13:19 +01:00
|
|
|
# "activity-json" matches "application/activity+json" inside our config
|
|
|
|
"activity-json" ->
|
2019-03-04 17:20:18 +01:00
|
|
|
MobilizonWeb.ActivityPubController.call(conn, :actor)
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
{:error, :not_found}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def event(conn, %{"uuid" => uuid}) do
|
|
|
|
case get_format(conn) do
|
|
|
|
"html" ->
|
|
|
|
with {status, %Event{} = event} when status in [:ok, :commit] <-
|
|
|
|
Events.get_cached_event_full_by_uuid(uuid),
|
|
|
|
true <- event.visibility in [:public, :unlisted] do
|
|
|
|
render_with_meta(conn, event)
|
2019-03-05 10:13:19 +01:00
|
|
|
else
|
|
|
|
_ -> {:error, :not_found}
|
2019-03-04 17:20:18 +01:00
|
|
|
end
|
|
|
|
|
2019-03-05 10:13:19 +01:00
|
|
|
"activity-json" ->
|
2019-03-04 17:20:18 +01:00
|
|
|
MobilizonWeb.ActivityPubController.call(conn, :event)
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
{:error, :not_found}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def comment(conn, %{"uuid" => uuid}) do
|
|
|
|
case get_format(conn) do
|
|
|
|
"html" ->
|
|
|
|
with {status, %Comment{} = comment} when status in [:ok, :commit] <-
|
|
|
|
Events.get_cached_comment_full_by_uuid(uuid) do
|
|
|
|
# Comments are always public for now
|
|
|
|
# TODO : Make comments maybe restricted
|
|
|
|
# true <- comment.public do
|
|
|
|
render_with_meta(conn, comment)
|
2019-03-05 10:13:19 +01:00
|
|
|
else
|
|
|
|
_ -> {:error, :not_found}
|
2019-03-04 17:20:18 +01:00
|
|
|
end
|
|
|
|
|
2019-03-05 10:13:19 +01:00
|
|
|
"activity-json" ->
|
2019-03-04 17:20:18 +01:00
|
|
|
MobilizonWeb.ActivityPubController.call(conn, :comment)
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
{:error, :not_found}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Inject OpenGraph information
|
|
|
|
defp render_with_meta(conn, object) do
|
|
|
|
{:ok, index_content} = File.read(index_file_path())
|
|
|
|
tags = Metadata.build_tags(object)
|
|
|
|
response = String.replace(index_content, "<!--server-generated-meta-->", tags)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("text/html")
|
|
|
|
|> send_resp(200, response)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp index_file_path() do
|
|
|
|
Path.join(Application.app_dir(:mobilizon, "priv/static/"), "index.html")
|
|
|
|
end
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|