Sha256: 53898589b0b90ac7651c61a992175ca374226c4bbfc7bc1cb8ab2766d78d46ff

Contents?: true

Size: 2 KB

Versions: 1

Compression:

Stored size: 2 KB

Contents

module Merit
  extend ActiveSupport::Concern

  module ClassMethods
    def has_merit(options = {})
      # MeritableModel#sash_id is more stable than Sash#meritable_model_id
      # That's why MeritableModel belongs_to Sash. Can't use
      # dependent: destroy as it may raise FK constraint exceptions. See:
      # https://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets/1079-belongs_to-dependent-destroy-should-destroy-self-before-assocation
      belongs_to :sash, class_name: 'Merit::Sash'

      _merit_orm_specific_config
      _merit_delegate_methods_to_sash
      _merit_define_badge_related_entries_method
      _merit_sash_initializer
    end

    # Delegate methods from meritable models to their sash
    def _merit_delegate_methods_to_sash
      methods = %w(badge_ids badges points
        add_badge rm_badge
        add_points substract_points subtract_points)
      methods.each { |method| delegate method, to: :_sash }
    end

    def _merit_orm_specific_config
      if Merit.orm == :mongoid
        field :sash_id
        field :points, type: Integer, default: 0
        field :level, type: Integer, default: 0
        def find_by_id(id)
          where(_id: id).first
        end
      end
    end

    def _merit_define_badge_related_entries_method
      meritable_class_name = name.demodulize
      Badge._define_related_entries_method(meritable_class_name)
    end

    # _sash initializes a sash if doesn't have one yet.
    # From Rails 3.2 we can override association methods to do so
    # transparently, but merit supports Rails ~> 3.0.0. See:
    # http://blog.hasmanythrough.com/2012/1/20/modularized-association-methods-in-rails-3-2
    def _merit_sash_initializer
      define_method(:_sash) do
        if sash.nil?
          self.update_attribute :sash_id, Sash.create.id
        end
        self.sash
      end
    end
  end
end

if Object.const_defined?('ActiveRecord')
  ActiveRecord::Base.send :include, Merit
end
if Object.const_defined?('Mongoid')
  Mongoid::Document.send :include, Merit
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
merit-1.7.1 lib/merit/model_additions.rb