2018-05-17 11:32:23 +02:00
|
|
|
defmodule Eventos.Events.Comment do
|
2018-06-14 18:15:27 +02:00
|
|
|
@moduledoc """
|
|
|
|
An actor comment (for instance on an event or on a group)
|
|
|
|
"""
|
|
|
|
|
2018-05-17 11:32:23 +02:00
|
|
|
use Ecto.Schema
|
|
|
|
import Ecto.Changeset
|
|
|
|
|
|
|
|
alias Eventos.Events.Event
|
2018-05-18 09:56:21 +02:00
|
|
|
alias Eventos.Actors.Actor
|
|
|
|
alias Eventos.Actors.Comment
|
2018-05-17 11:32:23 +02:00
|
|
|
|
|
|
|
schema "comments" do
|
2018-07-27 10:45:35 +02:00
|
|
|
field(:text, :string)
|
|
|
|
field(:url, :string)
|
|
|
|
field(:local, :boolean, default: true)
|
|
|
|
field(:uuid, Ecto.UUID)
|
|
|
|
belongs_to(:actor, Actor, foreign_key: :actor_id)
|
|
|
|
belongs_to(:attributed_to, Actor, foreign_key: :attributed_to_id)
|
|
|
|
belongs_to(:event, Event, foreign_key: :event_id)
|
|
|
|
belongs_to(:in_reply_to_comment, Comment, foreign_key: :in_reply_to_comment_id)
|
|
|
|
belongs_to(:origin_comment, Comment, foreign_key: :origin_comment_id)
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2018-08-24 11:34:00 +02:00
|
|
|
timestamps(type: :utc_datetime)
|
2018-05-17 11:32:23 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc false
|
|
|
|
def changeset(comment, attrs) do
|
2018-06-14 17:25:55 +02:00
|
|
|
uuid = Ecto.UUID.generate()
|
2018-07-27 10:45:35 +02:00
|
|
|
|
2018-08-24 11:34:00 +02:00
|
|
|
# TODO : really change me right away
|
|
|
|
url =
|
|
|
|
if Map.has_key?(attrs, "url"),
|
|
|
|
do: attrs["url"],
|
|
|
|
else: "#{EventosWeb.Endpoint.url()}/comments/#{uuid}"
|
|
|
|
|
2018-05-17 11:32:23 +02:00
|
|
|
comment
|
2018-06-14 17:25:55 +02:00
|
|
|
|> cast(attrs, [:url, :text, :actor_id, :event_id, :in_reply_to_comment_id, :attributed_to_id])
|
|
|
|
|> put_change(:uuid, uuid)
|
2018-08-24 11:34:00 +02:00
|
|
|
|> put_change(:url, url)
|
|
|
|
|> validate_required([:text, :actor_id, :url])
|
2018-05-17 11:32:23 +02:00
|
|
|
end
|
|
|
|
end
|