63 lines
1.6 KiB
Ruby
63 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Report < ApplicationRecord
|
|
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, optional: true
|
|
belongs_to :comment, optional: true
|
|
belongs_to :item, polymorphic: true
|
|
|
|
after_commit :send_report_notification, :on => :create
|
|
|
|
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(id)
|
|
end
|
|
end
|