class Badge < ActiveRecord::Base belongs_to :badge_grouping # badge ids Welcome = 5 NicePost = 6 GoodPost = 7 GreatPost = 8 Autobiographer = 9 Editor = 10 FirstLike = 11 FirstShare = 12 FirstFlag = 13 FirstLink = 14 FirstQuote = 15 ReadGuidelines = 16 Reader = 17 # other consts AutobiographerMinBioLength = 10 module Queries Reader = < 50 GROUP BY pt.user_id, pt.topic_id, t.posts_count HAVING count(*) = t.posts_count ) SQL ReadGuidelines = < p2.topic_id AND not quote GROUP BY l1.user_id ) ids JOIN topic_links l ON l.id = ids.id SQL FirstShare = < 0 GROUP BY p.user_id SQL Welcome = < #{Badge::AutobiographerMinBioLength} AND uploaded_avatar_id IS NOT NULL SQL def self.like_badge(count) # we can do better with dates, but its hard work " SELECT p.user_id, p.id post_id, p.updated_at granted_at FROM badge_posts p WHERE p.like_count >= #{count.to_i} " end def self.trust_level(level) # we can do better with dates, but its hard work figuring this out historically " SELECT u.id user_id, current_timestamp granted_at FROM users u WHERE trust_level >= #{level.to_i} " end end belongs_to :badge_type has_many :user_badges, dependent: :destroy validates :name, presence: true, uniqueness: true validates :badge_type, presence: true validates :allow_title, inclusion: [true, false] validates :multiple_grant, inclusion: [true, false] scope :enabled, ->{ where(enabled: true) } def self.trust_level_badge_ids (1..4).to_a end def self.like_badge_counts @like_badge_counts ||= { NicePost => 10, GoodPost => 25, GreatPost => 50 } end def reset_grant_count! self.grant_count = UserBadge.where(badge_id: id).count save! end def single_grant? !self.multiple_grant? end def default_name=(val) self.name ||= val end def default_badge_grouping_id=(val) self.badge_grouping_id ||= val end end # == Schema Information # # Table name: badges # # id :integer not null, primary key # name :string(255) not null # description :text # badge_type_id :integer not null # grant_count :integer default(0), not null # created_at :datetime # updated_at :datetime # allow_title :boolean default(FALSE), not null # multiple_grant :boolean default(FALSE), not null # icon :string(255) default("fa-certificate") # listable :boolean default(TRUE) # target_posts :boolean default(FALSE) # query :text # enabled :boolean default(TRUE), not null # auto_revoke :boolean default(TRUE), not null # badge_grouping_id :integer # # Indexes # # index_badges_on_name (name) UNIQUE #