2e8821efdf
Co-authored-by: Clarissa Lima Borges <clarissa@commitchange.com>
58 lines
1.6 KiB
Ruby
58 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
|
|
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
|
|
class SupporterNote < ApplicationRecord
|
|
include Model::Eventable
|
|
include Model::Jbuilder
|
|
|
|
# :content,
|
|
# :supporter_id, :supporter
|
|
|
|
belongs_to :supporter
|
|
has_one :nonprofit, through: :supporter
|
|
has_many :activities, as: :attachment, dependent: :destroy
|
|
belongs_to :user
|
|
|
|
validates :content, length: { minimum: 1 }
|
|
validates :supporter_id, presence: true
|
|
# TODO replace with Discard gem
|
|
|
|
define_model_callbacks :discard
|
|
|
|
after_discard :publish_deleted
|
|
|
|
after_create_commit :publish_created
|
|
after_update_commit :publish_updated
|
|
|
|
# TODO replace with discard gem
|
|
def discard!
|
|
run_callbacks(:discard) do
|
|
self.deleted = true
|
|
save!
|
|
end
|
|
end
|
|
|
|
def to_builder(*expand)
|
|
init_builder(*expand) do |json|
|
|
json.(self, :deleted, :content)
|
|
|
|
json.add_builder_expansion :supporter, :nonprofit, :user
|
|
end
|
|
end
|
|
|
|
private
|
|
def publish_created
|
|
Houdini.event_publisher.announce(:supporter_note_created, to_event('supporter_note.created', :supporter, :nonprofit, :user).attributes!)
|
|
end
|
|
|
|
def publish_updated
|
|
if !deleted
|
|
Houdini.event_publisher.announce(:supporter_note_updated, to_event('supporter_note.updated', :supporter, :nonprofit, :user).attributes!)
|
|
end
|
|
end
|
|
|
|
def publish_deleted
|
|
Houdini.event_publisher.announce(:supporter_note_deleted, to_event('supporter_note.deleted', :supporter, :nonprofit, :user).attributes!)
|
|
end
|
|
end
|