65 lines
1.6 KiB
Ruby
65 lines
1.6 KiB
Ruby
class PostAppeal < ApplicationRecord
|
|
class Error < StandardError; end
|
|
|
|
MAX_APPEALS_PER_DAY = 1
|
|
|
|
belongs_to :creator, :class_name => "User"
|
|
belongs_to :post
|
|
validates_presence_of :reason
|
|
validates :reason, presence: true, length: { in: 1..140 }
|
|
validate :validate_post_is_inactive
|
|
validate :validate_creator_is_not_limited
|
|
validates_uniqueness_of :creator_id, :scope => :post_id, :message => "have already appealed this post"
|
|
|
|
scope :resolved, -> { where(post: Post.undeleted.unflagged) }
|
|
scope :unresolved, -> { where(post: Post.deleted.or(Post.flagged)) }
|
|
scope :recent, -> { where("post_appeals.created_at >= ?", 1.day.ago) }
|
|
|
|
module SearchMethods
|
|
def search(params)
|
|
q = super
|
|
q = q.search_attributes(params, :reason)
|
|
q = q.text_attribute_matches(:reason, params[:reason_matches])
|
|
|
|
q = q.resolved if params[:is_resolved].to_s.truthy?
|
|
q = q.unresolved if params[:is_resolved].to_s.falsy?
|
|
|
|
q.apply_default_order(params)
|
|
end
|
|
end
|
|
|
|
extend SearchMethods
|
|
|
|
def resolved?
|
|
post.present? && !post.is_deleted? && !post.is_flagged?
|
|
end
|
|
|
|
def is_resolved
|
|
resolved?
|
|
end
|
|
|
|
def validate_creator_is_not_limited
|
|
if appeal_count_for_creator >= MAX_APPEALS_PER_DAY
|
|
errors[:creator] << "can appeal at most #{MAX_APPEALS_PER_DAY} post a day"
|
|
end
|
|
end
|
|
|
|
def validate_post_is_inactive
|
|
if resolved?
|
|
errors[:post] << "is active"
|
|
end
|
|
end
|
|
|
|
def appeal_count_for_creator
|
|
creator.post_appeals.recent.count
|
|
end
|
|
|
|
def self.searchable_includes
|
|
[:creator, :post]
|
|
end
|
|
|
|
def self.available_includes
|
|
[:creator, :post]
|
|
end
|
|
end
|