Replace the `method_attributes` and `hidden_attributes` methods with
`api_attributes`. `api_attributes` can be used as a class macro:
# include only the given attributes.
api_attributes :id, :created_at, :creator_name, ...
# include all default attributes plus the `creator_name` method.
api_attributes including: [:creator_name]
or as an instance method:
def api_attributes
[:id, :created_at, :creator_name, ...]
end
By default, all attributes are included except for IP addresses and
tsvector columns.
70 lines
1.7 KiB
Ruby
70 lines
1.7 KiB
Ruby
class PostAppeal < ApplicationRecord
|
|
class Error < Exception ; end
|
|
|
|
belongs_to :creator, :class_name => "User"
|
|
belongs_to :post
|
|
validates_presence_of :reason, :creator_ip_addr
|
|
validate :validate_post_is_inactive
|
|
validate :validate_creator_is_not_limited
|
|
before_validation :initialize_creator, :on => :create
|
|
validates_uniqueness_of :creator_id, :scope => :post_id, :message => "have already appealed this post"
|
|
|
|
api_attributes including: [:is_resolved]
|
|
|
|
module SearchMethods
|
|
def resolved
|
|
joins(:post).where("posts.is_deleted = false and posts.is_flagged = false")
|
|
end
|
|
|
|
def unresolved
|
|
joins(:post).where("posts.is_deleted = true or posts.is_flagged = true")
|
|
end
|
|
|
|
def recent
|
|
where("created_at >= ?", 1.day.ago)
|
|
end
|
|
|
|
def search(params)
|
|
q = super
|
|
q = q.search_attributes(params, :creator, :post, :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 >= Danbooru.config.max_appeals_per_day
|
|
errors[:creator] << "can appeal at most #{Danbooru.config.max_appeals_per_day} post a day"
|
|
end
|
|
end
|
|
|
|
def validate_post_is_inactive
|
|
if resolved?
|
|
errors[:post] << "is active"
|
|
end
|
|
end
|
|
|
|
def initialize_creator
|
|
self.creator_id = CurrentUser.id
|
|
self.creator_ip_addr = CurrentUser.ip_addr
|
|
end
|
|
|
|
def appeal_count_for_creator
|
|
creator.post_appeals.recent.count
|
|
end
|
|
end
|