Files
danbooru/app/models/post_appeal.rb
evazion ee4516f5fe searchable: refactor searchable_includes.
Pass searchable associations directly to search_attributes instead of
defining them separately in searchable_includes.
2020-12-16 23:57:07 -06:00

41 lines
1.1 KiB
Ruby

class PostAppeal < ApplicationRecord
belongs_to :creator, :class_name => "User"
belongs_to :post
validates :reason, length: { maximum: 140 }
validate :validate_post_is_appealable, on: :create
validate :validate_creator_is_not_limited, on: :create
validates :creator, uniqueness: { scope: :post, message: "have already appealed this post" }, on: :create
enum status: {
pending: 0,
succeeded: 1,
rejected: 2
}
scope :expired, -> { pending.where("post_appeals.created_at < ?", Danbooru.config.moderation_period.ago) }
module SearchMethods
def search(params)
q = search_attributes(params, :id, :created_at, :updated_at, :reason, :status, :creator, :post)
q = q.text_attribute_matches(:reason, params[:reason_matches])
q.apply_default_order(params)
end
end
extend SearchMethods
def validate_creator_is_not_limited
errors.add(:creator, "have reached your appeal limit") if creator.is_appeal_limited?
end
def validate_post_is_appealable
errors.add(:post, "cannot be appealed") if post.is_status_locked? || !post.is_appealable?
end
def self.available_includes
[:creator, :post]
end
end