Sha256: 002d17f02bb0737dccad941a07bb5d7cb2805e144fc4ce54a5841b89bc6a5566

Contents?: true

Size: 1.45 KB

Versions: 5

Compression:

Stored size: 1.45 KB

Contents

require 'roar/representer'
require 'roar/representer/feature/hypermedia'
require 'representable/json'

module Roar
  module Representer
    module JSON
      def self.included(base)
        base.class_eval do
          include Representer
          include Representable::JSON
          
          extend ClassMethods
          include InstanceMethods # otherwise Representable overrides our #to_json.
        end
      end
      
      module InstanceMethods
        def to_hash(*args)
          before_serialize(*args)
          super
        end
        
        def from_json(document, options={})
          document = '{}' if document.nil? or document.empty?
          
          super
        end
        
        # Generic entry-point for rendering.
        def serialize(*args)
          to_json(*args)
        end
        
        def deserialize(*args)
          from_json(*args)
        end
      end
      
      
      module ClassMethods
        def deserialize(*args)
          from_json(*args)
        end
        
        # TODO: move to instance method, or remove?
        def links_definition_options
          [:links, {:class => Feature::Hypermedia::Hyperlink, :extend => HyperlinkRepresenter, :collection => true}]
        end
      end
      
      require "representable/json/hash"
      # Represents a hyperlink in standard roar+json hash representation. 
      module HyperlinkRepresenter
        include Representable::JSON::Hash
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
roar-0.11.4 lib/roar/representer/json.rb
roar-0.11.3 lib/roar/representer/json.rb
roar-0.11.2 lib/roar/representer/json.rb
roar-0.11.1 lib/roar/representer/json.rb
roar-0.11.0 lib/roar/representer/json.rb