Sha256: cffe31e8bbddba85b9648cd3e5eb2f7eb506b02496134d1f57eec27e8c0a5bb9

Contents?: true

Size: 1.23 KB

Versions: 8

Compression:

Stored size: 1.23 KB

Contents

module CouchPotato
  module Persistence
    module Json
      def self.included(base)
        base.extend ClassMethods
      end
      
      # returns a JSON representation of a model in order to store it in CouchDB
      def to_json(*args)
        to_hash.to_json(*args)
      end
      
      # returns all the attributes, the ruby class and the _id and _rev of a model as a Hash
      def to_hash
        (self.class.properties).inject({}) do |props, property|
          property.serialize(props, self)
          props
        end.merge(JSON.create_id => self.class.name).merge(id_and_rev_json)
      end
      
      private
      
      def id_and_rev_json
        ['_id', '_rev', '_deleted'].inject({}) do |hash, key|
          hash[key] = self.send(key) unless self.send(key).nil?
          hash
        end
      end
      
      module ClassMethods
        
        # creates a model instance from JSON
        def json_create(json)
          return if json.nil?
          instance = self.new
          instance._id = json[:_id] || json['_id']
          instance._rev = json[:_rev] || json['_rev']
          properties.each do |property|
            property.build(instance, json)
          end
          instance
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
couch_potato-0.2.20 lib/couch_potato/persistence/json.rb
couch_potato-0.2.19 lib/couch_potato/persistence/json.rb
couch_potato-0.2.18 lib/couch_potato/persistence/json.rb
couch_potato-0.2.17 lib/couch_potato/persistence/json.rb
couch_potato-0.2.16 lib/couch_potato/persistence/json.rb
couch_potato-0.2.15 lib/couch_potato/persistence/json.rb
couch_potato-0.2.14 lib/couch_potato/persistence/json.rb
couch_potato-0.2.13 lib/couch_potato/persistence/json.rb