70 lines
1.8 KiB
Ruby
70 lines
1.8 KiB
Ruby
class Report < ActiveRecord::Base
|
|
POST, COMMENT = %w(post comment).map(&:freeze)
|
|
|
|
validates :user_id, presence: true
|
|
validates :item_id, presence: true
|
|
validates :item_type, presence: true, :inclusion => { :in => %w(post comment),
|
|
:message => 'Type should match `post` or `comment`!'}
|
|
validates :text, presence: true
|
|
|
|
validate :entry_does_not_exist, :on => :create
|
|
validate :post_or_comment_does_exist, :on => :create
|
|
|
|
belongs_to :user
|
|
belongs_to :post
|
|
belongs_to :comment
|
|
|
|
after_commit :send_report_notification, :on => :create
|
|
|
|
def item
|
|
if item_type == POST
|
|
Post.find_by(id: item_id)
|
|
elsif item_type == COMMENT
|
|
Comment.find_by(id: item_id)
|
|
end
|
|
end
|
|
|
|
def reported_author
|
|
item.author if item
|
|
end
|
|
|
|
def entry_does_not_exist
|
|
if Report.where(item_id: item_id, item_type: item_type).exists?(user_id: user_id)
|
|
errors[:base] << 'You cannot report the same post twice.'
|
|
end
|
|
end
|
|
|
|
def post_or_comment_does_exist
|
|
if Post.find_by_id(item_id).nil? && Comment.find_by_id(item_id).nil?
|
|
errors[:base] << 'Post or comment was already deleted or doesn\'t exists.'
|
|
end
|
|
end
|
|
|
|
def destroy_reported_item
|
|
case item
|
|
when Post
|
|
if item.author.local?
|
|
item.author.owner.retract(item)
|
|
else
|
|
item.destroy
|
|
end
|
|
when Comment
|
|
if item.author.local?
|
|
item.author.owner.retract(item)
|
|
elsif item.parent.author.local?
|
|
item.parent.author.owner.retract(item)
|
|
else
|
|
item.destroy
|
|
end
|
|
end
|
|
mark_as_reviewed
|
|
end
|
|
|
|
def mark_as_reviewed
|
|
Report.where(item_id: item_id, item_type: item_type).update_all(reviewed: true)
|
|
end
|
|
|
|
def send_report_notification
|
|
Workers::Mail::ReportWorker.perform_async(self.item_type, self.item_id)
|
|
end
|
|
end
|