debian-mirror-gitlab/app/models/award_emoji.rb

45 lines
1.2 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
class AwardEmoji < ActiveRecord::Base
DOWNVOTE_NAME = "thumbsdown".freeze
UPVOTE_NAME = "thumbsup".freeze
include Participable
2017-08-17 22:00:37 +05:30
include GhostUser
2017-09-10 17:25:29 +05:30
belongs_to :awardable, polymorphic: true # rubocop:disable Cop/PolymorphicAssociations
belongs_to :user
validates :awardable, :user, presence: true
2016-08-24 12:49:21 +05:30
validates :name, presence: true, inclusion: { in: Gitlab::Emoji.emojis_names }
2017-08-17 22:00:37 +05:30
validates :name, uniqueness: { scope: [:user, :awardable_type, :awardable_id] }, unless: :ghost_user?
participant :user
scope :downvotes, -> { where(name: DOWNVOTE_NAME) }
scope :upvotes, -> { where(name: UPVOTE_NAME) }
2018-03-17 18:26:18 +05:30
after_save :expire_etag_cache
after_destroy :expire_etag_cache
2017-08-17 22:00:37 +05:30
class << self
def votes_for_collection(ids, type)
2017-09-10 17:25:29 +05:30
select('name', 'awardable_id', 'COUNT(*) as count')
.where('name IN (?) AND awardable_type = ? AND awardable_id IN (?)', [DOWNVOTE_NAME, UPVOTE_NAME], type, ids)
.group('name', 'awardable_id')
2017-08-17 22:00:37 +05:30
end
end
def downvote?
self.name == DOWNVOTE_NAME
end
def upvote?
self.name == UPVOTE_NAME
end
2018-03-17 18:26:18 +05:30
def expire_etag_cache
awardable.try(:expire_etag_cache)
end
end