Class: Shopify::ShopifyModel

Inherits:
Object
  • Object
show all
Defined in:
lib/shopify.rb

Direct Known Subclasses

Article, CustomCollection

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(shop, attrs = {}) ⇒ ShopifyModel

Returns a new instance of ShopifyModel.



140
141
142
143
144
# File 'lib/shopify.rb', line 140

def initialize(shop, attrs={})
  @new_record = true
  attrs.each { |k,v| instance_variable_set("@#{k}", v) }
  @shop = shop
end

Instance Attribute Details

#shopObject

Returns the value of attribute shop.



145
146
147
# File 'lib/shopify.rb', line 145

def shop
  @shop
end

Class Method Details

.children_of(parent_klass) ⇒ Object



107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'lib/shopify.rb', line 107

def children_of(parent_klass)
  @parent = parent_klass
  parent_klass_name = parent_klass.name.gsub(/.*::/,'')
  klass_name = self.name.gsub(/.*::/,'')
  # Defines the getter method in the parent class
  # TODO: Make the object cache the results of queries, per set of parameters,
  #       and reload only when you include true as the first argument.
  parent_klass.class_eval "
    def #{klass_name.snake_case.pluralize}(query_params={})
      @#{klass_name.snake_case.pluralize} ||= begin
        json = Shopify.get(\"/#{parent_klass_name.snake_case.pluralize}/\#{id}/#{klass_name.snake_case.pluralize}.xml\", shop.options(:query => query_params))
        case 
        when json['#{parent_klass_name.snake_case}_#{klass_name.snake_case.pluralize}']
          json['#{parent_klass_name.snake_case}_#{klass_name.snake_case.pluralize}']
        when json['#{klass_name.snake_case.pluralize}']
          json['#{klass_name.snake_case.pluralize}']
        else
          json
        end
      end
      @#{klass_name.snake_case.pluralize} = (@#{klass_name.snake_case.pluralize}.is_a?(Array) ? @#{klass_name.snake_case.pluralize}.collect {|i| #{klass_name}.instantiate(shop, i)} : [#{klass_name}.instantiate(shop, @#{klass_name.snake_case.pluralize})]) unless @#{klass_name.snake_case.pluralize}.is_a?(#{klass_name}) || @#{klass_name.snake_case.pluralize}.is_a?(Array) && @#{klass_name.snake_case.pluralize}[0].is_a?(#{klass_name})
      @#{klass_name.snake_case.pluralize}
    end
  "
end

.instantiate(shop, attrs = {}) ⇒ Object



137
138
139
# File 'lib/shopify.rb', line 137

def self.instantiate(shop, attrs={})
  new(shop, attrs.merge('new_record' => false))
end

.is_child?Boolean

Returns:

  • (Boolean)


132
133
134
# File 'lib/shopify.rb', line 132

def is_child?
  (@parent ||= nil)
end

.load_api_classes(api) ⇒ Object



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/shopify.rb', line 46

def load_api_classes(api)
  api.each_key do |klass_name|
    next unless klass_name.is_a?(String)
    singular = klass_name.singular
    mode = singular == klass_name ? [:singular] : []
    klass = Shopify.const_set(singular, Class.new(ShopifyModel))

    # Set up the top_level or children_of setting
    self == ShopifyModel ?
      klass.send(:top_level, *mode) :
      klass.send(:children_of, self)

    # Set up the properties
    klass.send(:attr_accessor, *api[klass_name].delete(:properties).split(', ').map {|s| s.to_sym})
    
    # If there are any children to be had, set them up
    klass.load_api_classes(api[klass_name])
  end
end

.top_level(*options) ⇒ Object



66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# File 'lib/shopify.rb', line 66

def top_level(*options)
  klass_name = self.name.gsub(/.*::/,'')
  if options.include?(:singular)
    # Defines the singular accessor in the Shopify object
    # TODO: Make the object cache the results of queries, per set of parameters,
    #       and reload only when you include true as the first argument.
    Shopify.class_eval "
      def #{klass_name.snake_case}(query_params={})
        json = Shopify.get(\"/#{klass_name.snake_case}.xml\", options(:query => query_params))
        begin
          #{klass_name}.instantiate(self, json['#{klass_name.snake_case}'])
        rescue => e
          warn \"Error: \#{e.inspect}\"
          json
        end
      end
    "
  else
    # Defines the plural accessor in the Shopify object
    # TODO: Make the object cache the results of queries, per set of parameters,
    #       and reload only when you include true as the first argument.
    Shopify.class_eval "
      def #{klass_name.snake_case.pluralize}(query_params={})
        json = Shopify.get(\"/#{klass_name.snake_case.pluralize}.xml\", options(:query => query_params))
        if json['#{klass_name.snake_case.pluralize}']
          json['#{klass_name.snake_case.pluralize}'].collect {|i| #{klass_name}.instantiate(self, i)}
        else
          json
        end
      end
      def #{klass_name.snake_case}(id)
        json = Shopify.get(\"/#{klass_name.snake_case.pluralize}/\#{id}.xml\", options)
        if json['#{klass_name.snake_case}']
          #{klass_name}.instantiate(self, json['#{klass_name.snake_case}'])
        else
          json
        end
      end
    "
  end
end

Instance Method Details

#inspectObject



147
148
149
# File 'lib/shopify.rb', line 147

def inspect
  "<#{self.class.name} shop=#{@shop.host} #{instance_variables.reject {|i| i=='@shop' || instance_variable_get(i).to_s==''}.map {|i| "#{i}=#{instance_variable_get(i).inspect}"}.join(' ')}>"
end