Sha256: ac3b722de0eefaa82c1b0e50e35bd05cc2b8af1fba754cc46903401d48c38208

Contents?: true

Size: 1.95 KB

Versions: 34

Compression:

Stored size: 1.95 KB

Contents

require 'orm_adapter'

module ActiveGraph
  module Node
    module ClassMethods
      include OrmAdapter::ToAdapter
    end

    class OrmAdapter < ::OrmAdapter::Base
      module ClassMethods
        include ActiveModel::Callbacks
      end

      def column_names
        klass._decl_props.keys
      end

      def i18n_scope
        :neo4j
      end

      # Get an instance by id of the model
      def get!(id)
        klass.find(wrap_key(id)).tap do |node|
          fail 'No record found' if node.nil?
        end
      end

      # Get an instance by id of the model
      def get(id)
        klass.find_by(klass.id_property_name => wrap_key(id))
      end

      # Find the first instance matching conditions
      def find_first(options = {})
        conditions, order = extract_conditions!(options)
        extract_id!(conditions)
        order = hasherize_order(order)

        result = klass.where(conditions)
        result = result.order(order) unless order.empty?
        result.first
      end

      # Find all models matching conditions
      def find_all(options = {})
        conditions, order, limit, offset = extract_conditions!(options)
        extract_id!(conditions)
        order = hasherize_order(order)

        result = klass.where(conditions)
        result = result.order(order) unless order.empty?
        result = result.skip(offset) if offset
        result = result.limit(limit) if limit
        result.to_a
      end

      # Create a model using attributes
      def create!(attributes = {})
        klass.create!(attributes)
      end

      # @see OrmAdapter::Base#destroy
      def destroy(object)
        object.destroy && true if valid_object?(object)
      end

      private

      def hasherize_order(order)
        (order || []).map { |clause| Hash[*clause] }
      end

      def extract_id!(conditions)
        id = conditions.delete(:id)
        return if not id

        conditions[klass.id_property_name.to_sym] = id
      end
    end
  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
activegraph-11.4.0 lib/active_graph/node/orm_adapter.rb
activegraph-11.3.1 lib/active_graph/node/orm_adapter.rb
activegraph-11.3.0 lib/active_graph/node/orm_adapter.rb
activegraph-11.2.0 lib/active_graph/node/orm_adapter.rb
activegraph-11.1.0 lib/active_graph/node/orm_adapter.rb
activegraph-11.1.0.beta.1 lib/active_graph/node/orm_adapter.rb
activegraph-11.1.0.alpha.4 lib/active_graph/node/orm_adapter.rb
activegraph-11.1.0.alpha.3 lib/active_graph/node/orm_adapter.rb
activegraph-11.1.0.alpha.2 lib/active_graph/node/orm_adapter.rb
activegraph-11.1.0.alpha.1 lib/active_graph/node/orm_adapter.rb
activegraph-10.2.0.beta.1 lib/active_graph/node/orm_adapter.rb
activegraph-11.0.2-java lib/active_graph/node/orm_adapter.rb
activegraph-10.1.1 lib/active_graph/node/orm_adapter.rb
activegraph-11.0.1-java lib/active_graph/node/orm_adapter.rb
activegraph-11.0.0-java lib/active_graph/node/orm_adapter.rb
activegraph-10.1.0 lib/active_graph/node/orm_adapter.rb
activegraph-11.0.0.beta.4-java lib/active_graph/node/orm_adapter.rb
activegraph-10.0.2 lib/active_graph/node/orm_adapter.rb
activegraph-11.0.0.beta.3-java lib/active_graph/node/orm_adapter.rb
activegraph-11.0.0.beta.2-java lib/active_graph/node/orm_adapter.rb