Sha256: 62753f0c8a5d2bea54b76d9493363444c439b02bd69cd8df8ca5fe1349c4811e

Contents?: true

Size: 1.38 KB

Versions: 1

Compression:

Stored size: 1.38 KB

Contents

module PunchingBag
  module ActiveRecord

    module ClassMethods

      # Note: this method will only return items if they have 1 or more hits
      def most_hit(since=nil, limit=5)
        query = joins(:punches).group(Punch.arel_table[:punchable_type], Punch.arel_table[:punchable_id], arel_table.primary_key)
        query = query.where('punches.average_time >= ?', since) unless since.nil?
        query.reorder('SUM(punches.hits) DESC').limit(limit)
      end

      # Note: this method will return all items with 0 or more hits
      def sort_by_popularity(dir='DESC')
        query = joins(arel_table.join(Punch.arel_table, Arel::Nodes::OuterJoin).on(Punch.arel_table[:punchable_id].eq(arel_table.primary_key).and(Punch.arel_table[:punchable_type].eq(self.name))).join_sources.first)
        query = query.group(arel_table.primary_key)
        query.reorder("SUM(punches.hits) #{dir}")
      end
    end

    module InstanceMethods
      def hits(since=nil)
        punches.after(since).sum(:hits)
      end

      def punch(request=nil, options = {})
        count = options[:count] || 1
        PunchingBag.punch(self, request, count)
      end
    end

  end
end

class ActiveRecord::Base
  def self.acts_as_punchable
    extend PunchingBag::ActiveRecord::ClassMethods
    include PunchingBag::ActiveRecord::InstanceMethods
    has_many :punches, :as => :punchable, :dependent => :destroy
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
punching_bag-0.5.0 lib/punching_bag/acts_as_punchable.rb