Sha256: 6f0daae5a305dd84a234ff513bdb156d82ec8acb0f3334094942b3def37bc0db

Contents?: true

Size: 1.07 KB

Versions: 1

Compression:

Stored size: 1.07 KB

Contents

module Mongoid
  module Locker
    # Normalizes queries between various Mongoid versions.
    module Wrapper
      # Update the document for the provided Class matching the provided query with the provided setter.
      #
      # @param [Class] The model class
      # @param [Hash] The Mongoid query
      # @param [Hash] The Mongoid setter
      # @return [Boolean] true if the document was successfully updated, false otherwise
      def self.update(klass, query, setter)
        klass.with(safe: true).collection.find(query).update(setter)['n'] == 1
      end

      # Determine whether the provided document is locked in the database or not.
      #
      # @param [Class] The model instance
      # @return [Time] The timestamp of when the document is locked until, nil if not locked.
      def self.locked_until(doc)
        existing_query = { _id: doc.id, doc.locked_until_field => { '$exists' => true } }
        existing = doc.class.where(existing_query).limit(1).only(doc.locked_until_field).first
        existing ? existing[doc.locked_until_field] : nil
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mongoid-locker-1.0.0 lib/mongoid/locker/wrapper3.rb