aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/encoders/hash.rb
blob: 477148484303e955bf8ca93e2dd4753fdab4cf5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
require 'active_support/core_ext/array/wrap'

class Hash
  private
    # Returns a JSON string representing the hash.
    #
    # Without any +options+, the returned JSON string will include all
    # the hash keys. For example:
    #
    #   { :name => "Konata Izumi", 'age' => 16, 1 => 2 }.to_json
    #   # => {"name": "Konata Izumi", "1": 2, "age": 16}
    #
    # The keys in the JSON string are unordered due to the nature of hashes.
    #
    # The <tt>:only</tt> and <tt>:except</tt> options can be used to limit the
    # attributes included, and will accept 1 or more hash keys to include/exclude.
    #
    #   { :name => "Konata Izumi", 'age' => 16, 1 => 2 }.to_json(:only => [:name, 'age'])
    #   # => {"name": "Konata Izumi", "age": 16}
    #
    #   { :name => "Konata Izumi", 'age' => 16, 1 => 2 }.to_json(:except => 1)
    #   # => {"name": "Konata Izumi", "age": 16}
    #
    # The +options+ also filter down to any hash values. This is particularly
    # useful for converting hashes containing ActiveRecord objects or any object
    # that responds to options in their <tt>to_json</tt> method. For example:
    #
    #   users = User.find(:all)
    #   { :users => users, :count => users.size }.to_json(:include => :posts)
    #
    # would pass the <tt>:include => :posts</tt> option to <tt>users</tt>,
    # allowing the posts association in the User model to be converted to JSON
    # as well.
    def rails_to_json(options = nil, *args) #:nodoc:
      hash_keys = self.keys

      if options
        if except = options[:except]
          hash_keys = hash_keys - Array.wrap(except)
        elsif only = options[:only]
          hash_keys = hash_keys & Array.wrap(only)
        end
      end

      result = '{'
      result << hash_keys.map do |key|
        "#{ActiveSupport::JSON.encode(key.to_s)}:#{ActiveSupport::JSON.encode(self[key], options, *args)}"
      end * ','
      result << '}'
    end
end