Sha256: 4811e21c5c5664927a67fae2ae27f43944f4246f7c56f33bbfbaa4e70e30cb4e

Contents?: true

Size: 1.4 KB

Versions: 1

Compression:

Stored size: 1.4 KB

Contents

module JsonApiClient
  module Helpers
    module Attributable
      extend ActiveSupport::Concern

      included do
        attr_reader :attributes
        attr_accessor :errors
        initializer do |obj, params|
          obj.attributes = params
        end
      end

      def attributes=(attrs = {})
        @attributes ||= {}.with_indifferent_access
        @attributes.merge!(attrs)
      end

      def update_attributes(attrs = {})
        self.attributes = attrs
        save
      end

      def persisted?
        attributes.has_key?(primary_key)
      end

      def query_params
        attributes.except(primary_key)
      end

      def to_param
        attributes.fetch(primary_key, "").to_s
      end

      def respond_to?(method, include_private = false)
        if (method.to_s =~ /^(.*)=$/) || has_attribute?(method)
          true
        else
          super
        end
      end

      protected

      def method_missing(method, *args, &block)
        if method.to_s =~ /^(.*)=$/
          set_attribute($1, args.first)
        elsif has_attribute?(method)
          attributes[method]
        else
          super
        end
      end

      def read_attribute(name)
        attributes.fetch(name, nil)
      end

      def set_attribute(name, value)
        attributes[name] = value
      end

      def has_attribute?(attr_name)
        attributes.has_key?(attr_name)
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
json_api_client-0.3.0 lib/json_api_client/helpers/attributable.rb